If you ever a need to take over a production run from another user, follow this procedure:
Create a clone of the production case. The case name needs to be the same, but the new filepath needs to be different.
> $CCSMROOT/scripts/create_clone -clone $CASEROOT -case $NEWCASEROOT |
Configure the case for the new user:
> cd $NEWCASEROOT > configure -case |
Rebuild for the new user:
> ./$CASE.$MACH.build |
Copy the restart and rpointer files from the original run directory:
> cp $CASEROOT/run/$CASE* $NEWCASEROOT/run/. > cp $CASEROOT/run/rpointer* $NEWCASEROOT/run/. |
Copy the archive directory contents:
> cp $ORIGDIR/archive/$CASE $NEWDIR/archive/$CASE |
Submit the run:
> bsub < $CASE.$MACH.run |
Here is an example:
> $CCSMROOT/scripts/create_clone -clone /user/b40.1850 -case /newuser/b40.B2000 > cd /newuser/b40.B2000 > configure -case > ./b40.B2000.yellowstone.build > cp /user/b40.B2000/run/b40.B2000* /newuser/b40.B2000/run/. > cp /user/b40.B2000/run/rpointer* /newuser/b40.B2000/run/. > cp -r /ptmp/user/archive/b40.B2000/* /ptmp/newuser/archive/b40.B2000/. > bsub < b40.B2000.yellowstone.run |