Skip to content

Commit 3711ded

Browse files
Merge branch 'develop' into feature/fix-versioning
* develop: Fix preamble id (#996) Add missing "atmos" into job dependencies (#998) Bugfix in arch.sh to remove hardwired "htar" (#992) Add in stubs for aerosol DA tasks + bugfix for setup_expt where cycled and ATMA are used (#990)
2 parents cbdea98 + 1f14229 commit 3711ded

File tree

15 files changed

+117
-16
lines changed

15 files changed

+117
-16
lines changed

jobs/rocoto/aeroanlfinal.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#! /usr/bin/env bash
2+
3+
source "$HOMEgfs/ush/preamble.sh"
4+
5+
###############################################################
6+
# Source FV3GFS workflow modules
7+
. $HOMEgfs/ush/load_fv3gfs_modules.sh
8+
status=$?
9+
[[ $status -ne 0 ]] && exit $status
10+
11+
###############################################################
12+
echo "Do nothing for now"

jobs/rocoto/aeroanlinit.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#! /usr/bin/env bash
2+
3+
source "$HOMEgfs/ush/preamble.sh"
4+
5+
###############################################################
6+
# Source FV3GFS workflow modules
7+
. $HOMEgfs/ush/load_fv3gfs_modules.sh
8+
status=$?
9+
[[ $status -ne 0 ]] && exit $status
10+
11+
###############################################################
12+
echo "Do nothing for now"

jobs/rocoto/aeroanlrun.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#! /usr/bin/env bash
2+
3+
source "$HOMEgfs/ush/preamble.sh"
4+
5+
###############################################################
6+
# Source FV3GFS workflow modules
7+
. $HOMEgfs/ush/load_fv3gfs_modules.sh
8+
status=$?
9+
[[ $status -ne 0 ]] && exit $status
10+
11+
###############################################################
12+
echo "Do nothing for now"

jobs/rocoto/arch.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ if [ $CDUMP = "gfs" ]; then
213213
# Aerosols
214214
if [ $DO_AERO = "YES" ]; then
215215
for targrp in chem; do
216-
htar -P -cvf $ATARDIR/$CDATE/${targrp}.tar $(cat $ARCH_LIST/${targrp}.txt)
216+
$TARCMD -P -cvf $ATARDIR/$CDATE/${targrp}.tar $(cat $ARCH_LIST/${targrp}.txt)
217217
status=$?
218218
if [ $status -ne 0 -a $CDATE -ge $firstday ]; then
219219
echo "HTAR $CDATE ${targrp}.tar failed"

jobs/rocoto/atmanalpost.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
#!/bin/bash -x
1+
#! /usr/bin/env bash
2+
3+
source "$HOMEgfs/ush/preamble.sh"
24

35
###############################################################
46
# Source FV3GFS workflow modules

jobs/rocoto/atmanalprep.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
#!/bin/bash -x
1+
#! /usr/bin/env bash
2+
3+
source "$HOMEgfs/ush/preamble.sh"
24

35
###############################################################
46
# Source FV3GFS workflow modules

jobs/rocoto/atmanalrun.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
#!/bin/bash -x
1+
#! /usr/bin/env bash
2+
3+
source "$HOMEgfs/ush/preamble.sh"
24

35
###############################################################
46
# Source FV3GFS workflow modules

jobs/rocoto/atmensanalpost.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
#!/bin/bash -x
1+
#! /usr/bin/env bash
2+
3+
source "$HOMEgfs/ush/preamble.sh"
24

35
###############################################################
46
# Source FV3GFS workflow modules

jobs/rocoto/atmensanalprep.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
#!/bin/bash -x
1+
#! /usr/bin/env bash
2+
3+
source "$HOMEgfs/ush/preamble.sh"
24

35
###############################################################
46
# Source FV3GFS workflow modules

jobs/rocoto/atmensanalrun.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
#!/bin/bash -x
1+
#! /usr/bin/env bash
2+
3+
source "$HOMEgfs/ush/preamble.sh"
24

35
###############################################################
46
# Source FV3GFS workflow modules

0 commit comments

Comments
 (0)