This looks like a problem with declaring variables, functions and subroutines. I found that it’s critical to get right the order in which the files are passed to the compiler.
-
Therefore I had a lot of errors when I changed the order of the lines in the DOS batch file (see code snippet below). I have defined some different locations for some of my files, because the code is under development and some source files are in BRANCHES rather than the TRUNK. The order should be the same as in your DOS batch file though.
-
Also, if you have added any new subroutines which USE variables, parameters or functions defined elsewhere, it’s important that these are defined in a module or file above the file in which they are used.
-
It’s worth having a look at the first line of output from the DOS window. It may contain a small error, which you can rectify and which will make all the subsequent errors go away. This is because the subsequent errors arise because one of the files has not been compiled successfully and so the variables, parameters or functions required later are not available. There’s limited space in the DOS window and you tend to lose the earlier output when there are a lot of error messages. Try redirecting the output to a text file, which you can open later and scroll back up to the first error returned by DOS. The DOS command might look something like this below (with your path inserted).
C:\wtg_sim.… …\CMD_Release>Compile_FAST DLL > TemporaryOutputs.txt
[code]REM ----------------------------------------------------------------------------
REM -------------------- LIST OF ALL SOURCE FILES ------------------------------
REM ----------------------------------------------------------------------------
SET NWTC_Files=
SET NWTC_Files=%NWTC_Files% “%NWTC_Lib_Loc%\SingPrec.f90”
SET NWTC_Files=%NWTC_Files% “%NWTC_Lib_Loc%\SysIVF.f90”
SET NWTC_Files=%NWTC_Files% “%NWTC_Lib_Loc%\NWTC_IO.f90”
SET NWTC_Files=%NWTC_Files% “%NWTC_Lib_Loc%\NWTC_Num.f90”
SET NWTC_Files=%NWTC_Files% “%NWTC_Lib_Loc%\NWTC_Aero.f90”
SET NWTC_Files=%NWTC_Files% “%NWTC_Lib_Loc%\NWTC_Library.f90”
SET Wind_Files=
SET Wind_Files=%Wind_Files% “%Wind_Loc%\SharedInflowDefs.f90”
SET Wind_Files=%Wind_Files% “%Wind_Loc%\HHWind.f90”
SET Wind_Files=%Wind_Files% “%Wind_Loc%\FFWind.f90”
SET Wind_Files=%Wind_Files% “%Wind_Loc%\HAWCWind.f90”
SET Wind_Files=%Wind_Files% “%Wind_Loc%\FDWind.f90”
SET Wind_Files=%Wind_Files% “%Wind_Loc%\CTWind.f90”
SET Wind_Files=%Wind_Files% “%Wind_Loc%\UserWind.f90”
SET Wind_Files=%Wind_Files% “%Wind_Loc%\InflowWindMod.f90”
SET AeroDyn_Files=
REM “resource” file (unchanged from trunk)
SET AeroDyn_Files=%AeroDyn_Files% “%AeroDyn_Loc2%\SharedTypes.f90”
SET AeroDyn_Files=%AeroDyn_Files% “%AeroDyn_Loc1%\AeroMods.f90”
SET AeroDyn_Files=%AeroDyn_Files% “%AeroDyn_Loc2%\GenSubs.f90”
SET AeroDyn_Files=%AeroDyn_Files% “%AeroDyn_Loc1%\AeroSubs.f90”
SET AeroDyn_Files=%AeroDyn_Files% “%AeroDyn_Loc1%\AeroDyn.f90”
SET FAST_Files=
SET FAST_Files=%FAST_Files% “%FAST_LOC2%\fftpack.f”
SET FAST_Files=%FAST_Files% “%FAST_LOC2%\FFTMod.f90”
SET FAST_Files=%FAST_Files% “%FAST_LOC1%\HydroCalc.f90”
SET FAST_Files=%FAST_Files% “%FAST_LOC1%\FAST_Mods.f90”
SET FAST_Files=%FAST_Files% “%FAST_LOC2%\Noise.f90”
SET FAST_Files=%FAST_Files% “%FAST_LOC1%\FAST_IO.f90”
SET FAST_Files=%FAST_Files% “%FAST_LOC1%\FAST.f90”
SET FAST_Files=%FAST_Files% “%FAST_LOC2%\FAST_Lin.f90”
SET FAST_Files=%FAST_Files% “%FAST_LOC2%\FAST2ADAMS.f90”
IF /I “%1”==“DLL” GOTO dllFiles
SET FAST_Files=%FAST_Files% “%FAST_LOC2%\PitchCntrl_ACH.f90”
SET FAST_Files=%FAST_Files% “%FAST_LOC2%\UserSubs.f90”
SET FAST_Files=%FAST_Files% “%FAST_LOC2%\UserVSCont_KP.f90”
GOTO endFASTfiles
:dllFiles
SET FAST_Files=%FAST_Files% “%DLL_Loc%\LRLayerDLLInterface.f90”
SET FAST_Files=%FAST_Files% “%FAST_LOC2%\UserSubs_forBladedDLL.f90”
SET FAST_Files=%FAST_Files% “%FAST_LOC2%\UserVSCont_KP_forBladedDLL.f90”
REM NOTE: UserSubs_forBladedDLL.f90 is a copy of UserSubs.f90 with SUBROUTINES UserHSSBr() and UserYawCont() commented out
REM UserVSCont_KP_forBladedDLL.f90 is a copy of UserVSCont_KP.f90 with SUBROUTINE UserVSCont() commented out
SET ROOT_NAME=%ROOT_NAME%_DLL
:endFASTfiles
SET FAST_Files=%FAST_Files% “%FAST_LOC2%\AeroCalc.f90”
SET FAST_Files=%FAST_Files% “%FAST_LOC2%\SetVersion.f90”
SET FAST_Files=%FAST_Files% “%FAST_LOC2%\FAST_Prog.f90”
:ivf
REM ----------------------------------------------------------------------------
REM ---------------- COMPILE WITH INTEL VISUAL FORTRAN -------------------------
REM ----------------------------------------------------------------------------
REM compile
ECHO.
ECHO Compiling FAST, AeroDyn, and NWTC_Library routines to create %ROOT_NAME%.exe:
ifort %COMPOPTS% %NWTC_Files% %Wind_Files% %AeroDyn_Files% %FAST_Files% %LINKOPTS% /out:%ROOT_NAME%.exe
[/code]
I hope this is helpful.
Kind Regards,
Mark