Differences between revisions 1 and 4 (spanning 3 versions)
Revision 1 as of 2018-03-19 14:03:48
Size: 2422
Editor: EricPalmer
Comment:
Revision 4 as of 2018-03-23 11:31:22
Size: 3555
Editor: EricPalmer
Comment:
Deletions are marked like this. Additions are marked like this.
Line 11: Line 11:
 * SPC filesystem is mounted on /opt/local/spc
 * AltWG filesystem is mounted on /opt/local/spc/alt
 * The distribution directories are mounted on ormacsrv1.lpl.arizona.edu
   * spc_distro - Where SPC puts the model for FDS consumption (unofficial releases)
   * spc_eval - Where SPC puts the model for AltWG to review for team release
   * fds_distro - Where FDS puts updated SPK and TSE Files
Line 13: Line 19:
 * Root directory - This is not the actual root directory of a Unix file system, but the top directory of the SPC modeling. It will contain the other directories needed to support.  * Root directory ||ops || - This is not the actual root directory of a Unix file system, but the top directory of the SPC modeling. It will contain the other directories needed to support.
Line 16: Line 22:
   * ORex - We will be using the specific shape model version name for the working directory. The expected naming scheme:    * ORex - We will be using the specific shape model version name for the working directory. The expected naming scheme: [[OREx Software]]
Line 20: Line 26:
 * Murphy -- we have directories for volatile backup of [[landmark]] files and [[sumfiles]]  * Murphy - We have directories for volatile backup of [[landmark]] files and [[sumfiles]]
 * finished - Where we put a model when it is published and shared out to other customers
 * log - We track the blocks in this along with its artifacts
Line 22: Line 30:
Directories with subdirectories
Line 25: Line 33:
/root/F3G-Nav/
                   ORex/
                            DATA/
                   base/
                            IMAGEFILES/
                            SHAPEFILES/
                   lsupport/
                   orig/
                   results/
                   test/
/path/ops/OSIRIS-REx/
      DATA/
      NEW_IMAGES_YYYY_DDD/

/path/ops/Approach150.v1
      BIGFILES/
      IMAGEFILES/
      LMKFILES/
      LIMBVECT/
      MAPFILES/
      NOMINALS/
      SHAPEFILES/
      SUMFILE/
      TESTFILES/
      TESTFILES1/
      lsupport/
      scripts
      support
Line 36: Line 52:
== User inputs ==
 * '''testID''' - Name of the F3 test directory (for example, 'F3E-Limbs')
 * '''blockID''' - User-specified identifier for typescript textfile name (for example, 'Block-01-01-TestDirSetUp-Orig')

The following need to exist, but only needs an END in it
{{{
   echo END > LMRKLIST.TXT
   echo END > PICTLIST.TXT
   echo END > BIGLIST.TXT
}}}
Line 42: Line 63:
=== 1. Initial inputs === === Build [[make_script.txt]] and [[INIT_LITHOS.TXT]] ===
These files should already be developed and updated for the mission. They need to be in the working directory.

=== Install a starting shape model ===
SPC requires a base shape model to be installed. This can be a sphere, triaxial ellipsoid or more detailed shape model. This must be installed in the /path/ops/working/SHAPEFILES. It must be called SHAPE.TXT, but we use symbolic links to enable providence. We are using the spc/bin/ tool relink.sh to set up the link.
Line 44: Line 70:
# User inputs:
testID=F3G-Nav
blockID=Block-01-01-TestDirSetUp-Orig
cd /path/ops/Approach150B.v1/SHAPEFILES
relink.sh SHAPE-nolan.txt SHAPE.TXT
ls -l
Line 49: Line 76:
=== 2. Set-up === === Link scripts ===
We install Bob's official script into the scripts directory. He calls these from make_scriptT.in
Line 51: Line 79:
# Set-Up
cd /SPC_Test/$testID
script
date
pwd
cd /path/ops/Approach150.v1/
relink.sh /opt/local/spc/ops/scripts scripts
}}}


=== Link support ===
We have an authorized set of scripts located in /opt/local/spc/ops/support. We link this within the working directory. This holds bigmap input files and make_script scripts.
{{{
cd /path/ops/Approach150.v1/
relink.sh /opt/local/spc/ops/support support
}}}

=== Create lsupport ===
We have a subdirectory for semi-temporary files that any user can create whenever needed. There is no CM on this directory, but it is backed up.
{{{
cd /path/ops/Approach150.v1/
mkdir lsupport
}}}


=== Finish and check ===
{{{
# Set write permissions
chmod -R g+w /path/ops/

# Print details
Line 59: Line 108:
=== 3. Synchronize to base directory ===
{{{
# sync to F3-base directory
rsync --delete -ha ../F3-base/orig .
rsync -ha ../F3-base/base/IMAGEFILES base/
}}}
 (./) Not sure if this will be a step in general version. Need to fix numbering.
{{{
## VARIANCE-F3G:
rm orig/DATA
ln -s ../ORex/DATA orig/DATA
## END OF VARIANCE
}}}
Line 73: Line 109:
=== 4. Print details ===
{{{
# Print details
ls -l orig
cat orig/README
ls -l base/IMAGEFILES
cat base/IMAGEFILES/README
}}}

=== 5. Complete procedure ===

{{{
# Block Complete
exit
# Save block log
if [ ! -d /SPC_Test/$testID/log ]; then
  mkdir /SPC_Test/$testID/log
fi
mv typescript /SPC_Test/$testID/log/log-typescript-${blockID}

}}}
Line 97: Line 112:
''(Compiled by DL)''

CategoryHowTos
''(Compiled by EP)''

Block 1 - Setup v2

Description

These are what is needed to set up a SPC directory with the assumption that it will be used for OSIRIS-REX

Assumptions

  • Bourne-Again Shell (bash)
  • Group OREX\spc
  • SPC filesystem is mounted on /opt/local/spc
  • AltWG filesystem is mounted on /opt/local/spc/alt
  • The distribution directories are mounted on ormacsrv1.lpl.arizona.edu
    • spc_distro - Where SPC puts the model for FDS consumption (unofficial releases)
    • spc_eval - Where SPC puts the model for AltWG to review for team release
    • fds_distro - Where FDS puts updated SPK and TSE Files

Directories

  • Root directory ||ops || - This is not the actual root directory of a Unix file system, but the top directory of the SPC modeling. It will contain the other directories needed to support.

  • Working directory - This is where SPC is done (the actual commands)
    • Traditionally - The working directory is the name of the object.
    • ORex - We will be using the specific shape model version name for the working directory. The expected naming scheme: OREx Software

  • Data directory || OSIRIS_REX||

    • DATA - Where the kernels go
    • NEW_IMAGES_YYYY_DDD - Where the images goes
  • Murphy - We have directories for volatile backup of landmark files and sumfiles

  • finished - Where we put a model when it is published and shared out to other customers
  • log - We track the blocks in this along with its artifacts

Directories with subdirectories

/path/ops/OSIRIS-REx/
      DATA/
      NEW_IMAGES_YYYY_DDD/

/path/ops/Approach150.v1
      BIGFILES/
      IMAGEFILES/
      LMKFILES/
      LIMBVECT/
      MAPFILES/
      NOMINALS/
      SHAPEFILES/
      SUMFILE/
      TESTFILES/
      TESTFILES1/
      lsupport/
      scripts
      support

The following need to exist, but only needs an END in it

   echo END > LMRKLIST.TXT
   echo END > PICTLIST.TXT
   echo END > BIGLIST.TXT

Procedure

Build [[make_script.txt]] and [[INIT_LITHOS.TXT]]

These files should already be developed and updated for the mission. They need to be in the working directory.

Install a starting shape model

SPC requires a base shape model to be installed. This can be a sphere, triaxial ellipsoid or more detailed shape model. This must be installed in the /path/ops/working/SHAPEFILES. It must be called SHAPE.TXT, but we use symbolic links to enable providence. We are using the spc/bin/ tool relink.sh to set up the link.

cd /path/ops/Approach150B.v1/SHAPEFILES
relink.sh SHAPE-nolan.txt SHAPE.TXT
ls -l

We install Bob's official script into the scripts directory. He calls these from make_scriptT.in

cd /path/ops/Approach150.v1/
relink.sh /opt/local/spc/ops/scripts scripts

We have an authorized set of scripts located in /opt/local/spc/ops/support. We link this within the working directory. This holds bigmap input files and make_script scripts.

cd /path/ops/Approach150.v1/
relink.sh /opt/local/spc/ops/support support

Create lsupport

We have a subdirectory for semi-temporary files that any user can create whenever needed. There is no CM on this directory, but it is backed up.

cd /path/ops/Approach150.v1/
mkdir lsupport

Finish and check

# Set write permissions
chmod -R g+w /path/ops/

# Print details
ls -l


(Compiled by EP)

Block 1 - Setup v2 (last edited 2018-03-23 15:34:18 by EricPalmer)