#!/bin/csh -f
#
# shell script for generating a connector problem
# usage: connector4.sh <plastic_permittivity> <passed_directly>
# all args must be given always (interface does no error checking)
# use passed directly arg as "-d" to turn off all discretization (for plots)
#
set cubegen = "../bin/cubegen -e0"
set ex = $1$2
set offset = "0.0 0.0 0.0"
set op = $2
#### build the pins
echo "* 16 pin connector, plastic permittivity = $1, options: ${op}" >connector4${ex}.lst
pin 19.5 19.5 0.0 $1 4 $2
pin 13.0 19.5 0.0 $1 4 $2
pin 6.5 19.5 0.0 $1 4 $2
pin 0.0 19.5 0.0 $1 4 $2
#
pin 19.5 13.0 0.0 $1 4 $2
pin 13.0 13.0 0.0 $1 4 $2
pin 6.5 13.0 0.0 $1 4 $2
pin 0.0 13.0 0.0 $1 4 $2
#
pin 19.5 6.5 0.0 $1 4 $2
pin 13.0 6.5 0.0 $1 4 $2
pin 6.5 6.5 0.0 $1 4 $2
pin 0.0 6.5 0.0 $1 4 $2
#
pin 19.5 0.0 0.0 $1 4 $2
pin 13.0 0.0 0.0 $1 4 $2
pin 6.5 0.0 0.0 $1 4 $2
pin 0.0 0.0 0.0 $1 4 $2
#### build the sides
${cubegen} $3 -xo-7.8 -yo-2.6 -zo5.2 -xh5.2 -yh26.0 -zh18.8 -b ${op} -n4 > side_l4${ex}.qui
${cubegen} $3 -xo23.4 -yo-2.6 -zo5.2 -xh5.2 -yh26.0 -zh18.8 -b ${op} -n4 > side_r4${ex}.qui
${cubegen} $3 -xo-7.8 -yo-2.6 -xh5.2 -yh26.0 -zh5.2 -t -pfl ${op} -n4 > corner_l4${ex}.qui
${cubegen} $3 -xo23.4 -yo-2.6 -xh5.2 -yh26.0 -zh5.2 -t -pbr ${op} -n4 > corner_r4${ex}.qui
${cubegen} $3 -xo-2.6 -yo-2.6 -xh26.0 -yh26.0 -zh5.2 -t -b -pfl -pbr ${op} -n4 > back4${ex}.qui
#### add sides, side caps and back caps to .lst file
echo "* body4${ex}.lst" > body4${ex}.lst
echo "D side_l4${ex}.qui 1.0 $1 ${offset} -3.5 0.0 7.0 -" >> body4${ex}.lst
echo "D side_r4${ex}.qui 1.0 $1 ${offset} 24.0 0.0 7.0 -" >> body4${ex}.lst
echo "D corner_l4${ex}.qui 1.0 $1 ${offset} -3.5 0.0 2.5 -" >> body4${ex}.lst
echo "D corner_r4${ex}.qui 1.0 $1 ${offset} 24.0 0.0 2.5 -" >> body4${ex}.lst
echo "D back4${ex}.qui 1.0 $1 ${offset} 0.0 0.0 2.5 -" >> body4${ex}.lst
cat body4${ex}.lst >> connector4${ex}.lst
syntax highlighted by Code2HTML, v. 0.9.1