Hi all I wrote a fortran program which need as inputs :
- a binary file named : Filename
- the fortran unit of this binary file : Fileunit
- 4 real values : freqA , freqZ , dsx , dsy
- 1 integer : dfreq
The ouput is a 3D array named ' radmat '
I actually want to know how to run my fortran program [the excutable is called ' ishellexe '], i think i need to specify in the same line the input values , but i do not know how please help me
#!/bin/csh -f echo'' echo' modal acoustic radiation impedance ' setxvar=($argv[1])
set dfreq = $xvar[7] set dsx = $xvar[11] set dsy = $xvar[12] set freqA = $xvar[13] set freqZ = $xvar[14] set Fileunit = $xvar[27] set Filename = $xvar[31]
set Filename = ‘eval echo $Filename‘
ishellexe
echo ' end of computation' echo ''