The archive file doubletlattice.zip contains the files:
dl.c | The source code |
The sample cases provided are | |
dlTest.INPUT | The sample case input data |
dlTest.BC | input boundary conditions for dlTest |
dlTest.AIC | aerodynamic influence coefficients for dlTest |
dlTest.OUTPUT | output from the above input |
To compile the program:
gcc -lm -o dl.exe dl.c
Mac and Linux users will usually omit the .exe extension for the executable file.
To execute:
dl dl.INPUT dl.BC dl.AIC dl.OUTPUT
Some of the output data does not go to the OUTPUT, but to the program console. At this time, I think you should capture this data as well
dl dlINPUT dl.BC dl.AIC dl.OUTPUT > dl.CONSOLE
This may get revised in a later release. Check back!