quack/utils/create_function.sh

43 lines
590 B
Bash
Raw Normal View History

2019-02-07 22:49:12 +01:00
#!/bin/bash
if [ $# != 2 ]
then
echo "Two arguments required [name of function] [name of result]"
fi
if [ $# = 2 ]
then
NAME=$1
echo "function ${NAME}() result(${RES})
! Description of the function
implicit none
include 'parameters.h'
! Input variables
integer,intent(in) ::
double precision,intent(in) ::
! Local variables
integer ::
double precision ::
! Output variables
integer,intent(out) ::
double precision,intent(out) ::
! Initalization
end function ${NAME}" > ${NAME}.f90
fi