General Program Information
Input Definitions
Inputs Needed to Call the Channel Function
Inputs Defined within the Channel Function
origin - is a 3*1 matrix with x,y,z positions corresponding to the point where the first lamella will be drawn.
amp - specifies the amplitude of the lamina
w - specifies the width of an individual lamina
l - specifies the length of an individual lamina
t - specifies the thickness of an individual lamina
periods - specifies the period of one curve of the lamina.
angle - specifies the angle of the lamina relative to the floor of the tank.
numbaffles - specifies the number baffles in the tank
numbafflescol -
xspace -
yspace -
Technical Program Outline
lamina0 - The zoomwinA function creates a close-up view based on two points to specify the window size.
p1:
- x: origin0 - w - zc
- y: origin1
- z: origin2
p2:
- x: origin0 + w + zc
- y: origin1 + 1 + zc
- z: origin2
for loop - a for loop is created for the range from i = 0 to i = (periods*4).
laminalast - Every time the program runs through the for loop another sine wave is drawn.
laminalast:
- x: origin0 + sin(πi/2)*amp
- y: origin1 + i*(x/(periods*4)
- z: origin2
laminai+1 - Uses the 'point' function to turn the 3*1 matrix laminalast into a text format that AutoCad can read.
laminai+2 - Uses the 'concat' function create a character string out of a space and the point (origin - zcpoint).
laminai+3 - Uses the 'point' function to turn the 3*1 matrix (laminalast + zcpoint) into a text format that AutoCad can read.
laminai+4 - Enters the command "offset" into AutoCad. The offset function is used to move the selected object a specified distance from its original location.
laminai+5 - Enters the variable "t" into AutoCad. t represents the distance that the selected object is to be offset. The command 'stringit' turns the the variable "t" into a dimensionless number.
laminai+6 - Uses the 'point' function to turn the 3*1 matrix 'origin' into a text format that AutoCad can read.
laminai+7 - Uses the 'point' function to turn the following 3*1 matrix into a text format that AutoCad can read.
- x: origin0 + t
- y: origin1
- z: origin2
line0 - Uses the 'concat' function to create a character string out of the point 'origin' a space and the point converted in line laminai+7.
line1 - Uses the 'concat' function to creat a character string out of the point 'laminalast' a space and the point described below into Autocad.
- x: laminalast0 + t
- y: laminalast1
- z: laminalast2
laminai+8 - Uses the 'concat' function to create a character string out of a space, the AutoCad command "line," a space, the character string created in line0, and a space. The purpose of the character string is to create a line in AutoCad between the two specified points.
laminai+9 - Uses the 'concat' function to create a character string out of a the AutoCad command "line," a space, the character string created in line1 and a space. The purpose of the character string is to create a line in AutoCad between the two specified.
laminai+10 - Uses the 'concat' function to create a character string out of the AutoCad command "z e region w," a space, a point described below, a space, the second point described below and a space. The purpose of the character string is to create a region based on the two points specified.
first point:
- x: origin0 - amp
- y: origin1
- z: origin2
second point:
- x: laminalast0 + t + amp
- y: laminalast1
- z: laminalast2
z: zoom
e: extents
region: creates a region based on two specified points.
w: specifies corners for the window in which the region is to be created.
laminai+11 - Uses the concat function to create a character string out of the AutoCad command "extrude," a space, the point 'origin,' a space, a space, the variable 'l,' a space and the "0."
laminai+12 -
laminai+13 -
laminai+14 -
laminai+15 -
laminai+16 -
lamina -