Differences between revisions 2 and 12 (spanning 10 versions)
Revision 2 as of 2018-11-20 16:59:43
Size: 1225
Editor: EricPalmer
Comment:
Revision 12 as of 2019-07-24 13:03:51
Size: 1627
Editor: JohnWeirich
Comment:
Deletions are marked like this. Additions are marked like this.
Line 11: Line 11:
Set the ID Set the ID. This should be the current ID, not the new one (which will really just be moved)
Line 14: Line 15:
echo "Shifting the model, ID = $shapeVar" >> notes echo "Shifting the model, $ID = shapeVar" | tee -a notes
Line 22: Line 23:
echo shape-$ID=512 | shape_info | tee -a ../notes
cp shape-$ID-512 shift-far320v1.txt
echo shape-$ID-512 | shape_info | tee -a ../notes
cp shape-$ID-512 shift-$ID.txt
Line 32: Line 33:
Notice, the shape model cannot have the .TXT at the end with the [[shift]] program. FDS sends the offset with the sign flipped from what the [shift]] program will use. FDS should have a note about this along with their delivery.
Line 35: Line 37:
shift /usr/local/bin/shift
Line 38: Line 40:
shift-far320v1 shift-<whatever>
Line 56: Line 58:
relink shift-$ID.txt SHAPE.TXT | tee -a notes echo shift-$ID.txt | shape_info | tee -a ../notes
relink.sh shift-$ID.txt SHAPE.TXT | tee -a ../notes
Line 60: Line 63:

=== Finish the Block ===
While this completes the block, you still need to do the following procedures to make the shape model solid
   * [[Block 5 - Iterate v2]]
   * [[Block 13 - BuildShape v2]]
Line 75: Line 72:

=== Continue the process ===
While this completes the block, you still need to do the following procedures to make the shape model solid
   * [[Block 5 - Iterate v2]]
   * [[Block 13 - BuildShape v2]]




Block 14 - Shift V2

Description

If the model has more than <criteria> of deviation from the center of figure, then shift it to be centered

Procedure

Set-up

Set the ID. This should be the current ID, not the new one (which will really just be moved)

ID=farV03
echo "Shifting the model, $ID = shapeVar" | tee -a notes

Record the current offset and make a new model that will be adjusted

  • cd SHAPEFILES
    echo shape-$ID-512 | shape_info | tee -a ../notes
    cp shape-$ID-512 shift-$ID.txt
    cd ..

Run the shift command.

(Comment -- Unsure if the shape needs to be installed before geometry is run) Notice, the shape model cannot have the .TXT at the end with the shift program. FDS sends the offset with the sign flipped from what the [shift]] program will use. FDS should have a note about this along with their delivery.

  • murphy
    /usr/local/bin/shift
    OffsetX OffsetY OffsetZ
    y
    shift-<whatever>
    n
    y
    
    geometry
    20
    1
    n
    n

Install Shape

Install the shape and review the fit to our main images

  • cd SHAPEFILES
    echo shift-$ID.txt | shape_info | tee -a ../notes
    relink.sh shift-$ID.txt SHAPE.TXT | tee -a ../notes
    cd ..
    evalReg.sh lsupport/theEight

Finish the Block

  • echo 11 | blockFinish far\

Continue the process

While this completes the block, you still need to do the following procedures to make the shape model solid


(Compiled by EEP)

Block 14 - Shift v2 (last edited 2019-07-24 13:04:06 by JohnWeirich)