Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add 'valid time' variable using ISO string format #1073

Merged
merged 23 commits into from
Mar 17, 2022
Merged
Show file tree
Hide file tree
Changes from 22 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
d8fe3ff
Update FV3 submodule url
DusanJovic-NOAA Feb 16, 2022
7372e9d
Merge branch 'ufs-community:develop' into valid_time
DusanJovic-NOAA Mar 2, 2022
482334c
Update FV3
DusanJovic-NOAA Mar 2, 2022
ae6431e
Skip comparing 'time_iso' in compare_ncfile.py
DusanJovic-NOAA Mar 3, 2022
9a3f872
Merge remote-tracking branch 'origin/develop' into valid_time
DusanJovic-NOAA Mar 13, 2022
efcf61d
Update FV3
DusanJovic-NOAA Mar 14, 2022
d1b3a3f
Update FV3
DusanJovic-NOAA Mar 15, 2022
17a3325
Merge remote-tracking branch 'origin/develop' into valid_time
DusanJovic-NOAA Mar 15, 2022
f99d4b5
Update FV3
DusanJovic-NOAA Mar 15, 2022
fc5fd09
Update FV3
DusanJovic-NOAA Mar 16, 2022
9d061a9
Require cmake version 3.19
DusanJovic-NOAA Mar 16, 2022
72eae7f
Merge remote-tracking branch 'origin/develop' into valid_time
DusanJovic-NOAA Mar 16, 2022
e9adc34
Update BL_DATE
DusanJovic-NOAA Mar 16, 2022
8c34c93
[AutoRT] cheyenne.gnu Job Completed.
BrianCurtis-NOAA Mar 16, 2022
f70de96
[AutoRT] hera.gnu Job Completed.
BrianCurtis-NOAA Mar 16, 2022
ee76f07
Add wcoss_cray log
DusanJovic-NOAA Mar 16, 2022
e96683d
[AutoRT] hera.intel Job Completed.
BrianCurtis-NOAA Mar 16, 2022
bccac96
[AutoRT] orion.intel Job Completed.
BrianCurtis-NOAA Mar 16, 2022
659d11e
Add jet.intel log
DusanJovic-NOAA Mar 16, 2022
5fd38fc
[AutoRT] gaea.intel Job Completed.
BrianCurtis-NOAA Mar 16, 2022
9dd9303
[AutoRT] cheyenne.intel Job Completed.
BrianCurtis-NOAA Mar 16, 2022
847670b
Add wcoss_dell_p3 log
DusanJovic-NOAA Mar 17, 2022
17a432d
revert .gitmodules, update FV3
DusanJovic-NOAA Mar 17, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
[submodule "FV3"]
path = FV3
url = https://github.com/NOAA-EMC/fv3atm
branch = develop
#url = https://github.com/NOAA-EMC/fv3atm
#branch = develop
url = https://github.com/DusanJovic-NOAA/fv3atm
branch = valid_time
[submodule "WW3"]
path = WW3
url = https://github.com/NOAA-EMC/WW3
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.18)
cmake_minimum_required(VERSION 3.19)

project(ufs
VERSION 1.0
Expand Down
324 changes: 162 additions & 162 deletions tests/RegressionTests_cheyenne.gnu.log

Large diffs are not rendered by default.

1,026 changes: 513 additions & 513 deletions tests/RegressionTests_cheyenne.intel.log

Large diffs are not rendered by default.

1,014 changes: 507 additions & 507 deletions tests/RegressionTests_gaea.intel.log

Large diffs are not rendered by default.

320 changes: 160 additions & 160 deletions tests/RegressionTests_hera.gnu.log

Large diffs are not rendered by default.

1,046 changes: 523 additions & 523 deletions tests/RegressionTests_hera.intel.log

Large diffs are not rendered by default.

934 changes: 467 additions & 467 deletions tests/RegressionTests_jet.intel.log

Large diffs are not rendered by default.

1,040 changes: 520 additions & 520 deletions tests/RegressionTests_orion.intel.log

Large diffs are not rendered by default.

682 changes: 341 additions & 341 deletions tests/RegressionTests_wcoss_cray.log

Large diffs are not rendered by default.

1,048 changes: 524 additions & 524 deletions tests/RegressionTests_wcoss_dell_p3.log

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions tests/compare_ncfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
sys.exit(2)

for varname in nc1.variables.keys():
if varname == "time_iso":
continue
# First check if each variable has the same dimension
if np.shape(nc1[varname][:])!=np.shape(nc2[varname][:]):
print(varname,"dimension is different")
Expand Down
2 changes: 1 addition & 1 deletion tests/rt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then
TEST_35D=true
fi

BL_DATE=20220304
BL_DATE=20220316
if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]] || [[ $MACHINE_ID = gaea.* ]] || [[ $MACHINE_ID = jet.* ]] || [[ $MACHINE_ID = s4.* ]]; then
RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}}
else
Expand Down