2012-03-02 01:04:42 +05:30
SHELL = /bin/sh
########################################################################################
# Makefile to compile the Material subroutine for BVP solution using spectral method
########################################################################################
# Be sure to remove all files compiled with different options by using "make clean"
########################################################################################
# OPTIONS = standard (alternative): meaning
#-------------------------------------------------------------
# F90 = ifort (gfortran): compiler, choose Intel or GNU
# COMPILERNAME = overwrite name of Compiler, e.g. using mpich-g90 instead of ifort
# PORTABLE = TRUE (FALSE): decision, if executable is optimized for the machine on which it was built.
# OPTIMIZATION = DEFENSIVE (OFF,AGGRESSIVE,ULTRA): Optimization mode: O2, O0, O3 + further options for most files, O3 + further options for all files
# OPENMP = TRUE (FALSE): OpenMP multiprocessor support
2014-02-06 16:11:34 +05:30
# FFTW_ROOT = root path FFTW, needed
# IMKL_ROOT = root path IMKL, first option for BLAS/LAPACK funtionality
# ACML_ROOT = root path ACML, second option for BLAS/LAPACK funtionality
# LAPACK_ROOT = root path LAPACK, third option for BLAS/LAPACK funtionality
2013-09-14 16:29:35 +05:30
# PREFIX = arbitrary prefix (before compilername)
# OPTION = arbitrary option (just before file to compile)
# SUFFIX = arbitrary suffix (after file to compile)
2012-03-02 01:04:42 +05:30
# STANDARD_CHECK = checking for Fortran 2008, compiler dependend
########################################################################################
2014-07-23 18:56:05 +05:30
i f n e q ( "" , "$(wildcard $(HOME)/.damask/damask.conf)" )
include $( HOME) /.damask/damask.conf
2014-01-24 18:00:27 +05:30
e l s e
include /etc/damask.conf
e n d i f
2014-07-23 18:56:05 +05:30
i f d e f P E T S C _ D I R
i n c l u d e $( PETSC_DIR ) / c o n f / v a r i a b l e s
INCLUDE_DIRS := $( PETSC_FC_INCLUDES) -DPETSc -I../lib
2014-09-18 20:53:11 +05:30
LIBRARIES := $( PETSC_WITH_EXTERNAL_LIB)
2014-08-25 03:37:53 +05:30
COMPILERNAME ?= $( FC)
LINKERNAME ?= $( FLINKER)
2014-07-23 18:56:05 +05:30
e l s e
2014-08-25 03:37:53 +05:30
COMPILERNAME ?= $( F90)
LINKERNAME ?= $( F90)
2014-01-24 18:00:27 +05:30
INCLUDE_DIRS := -I../lib
2014-07-23 18:56:05 +05:30
LIBRARIES := -lfftw3
e n d i f
2014-08-21 00:43:28 +05:30
LIB_DIRS := -L$( FFTW_ROOT) /lib64 -L$( FFTW_ROOT) /lib
RUN_PATH := -Wl,-rpath,$( FFTW_ROOT) /lib64,-rpath,$( FFTW_ROOT) /lib
2012-06-20 18:19:46 +05:30
2012-03-02 01:04:42 +05:30
i f e q "$(FASTBUILD)" "YES"
2012-07-03 18:06:54 +05:30
OPENMP := OFF
OPTIMIZATION := OFF
2012-06-15 21:40:21 +05:30
e l s e
2012-03-02 01:04:42 +05:30
OPENMP ?= ON
OPTIMIZATION ?= DEFENSIVE
2012-06-15 21:40:21 +05:30
e n d i f
2012-03-02 01:04:42 +05:30
i f e q "$(OPTIMIZATION)" "OFF"
OPTI := OFF
MAXOPTI := OFF
e n d i f
i f e q "$(OPTIMIZATION)" "DEFENSIVE"
OPTI := DEFENSIVE
MAXOPTI := DEFENSIVE
e n d i f
i f e q "$(OPTIMIZATION)" "AGGRESSIVE"
OPTI := AGGRESSIVE
MAXOPTI := DEFENSIVE
e n d i f
i f e q "$(OPTIMIZATION)" "ULTRA"
OPTI := AGGRESSIVE
MAXOPTI := AGGRESSIVE
e n d i f
i f n d e f O P T I
OPTI := DEFENSIVE
MAXOPTI := DEFENSIVE
e n d i f
i f e q "$(PORTABLE)" "FALSE"
PORTABLE_SWITCH = -msse3
e n d i f
2014-01-29 17:50:56 +05:30
# names for linking IMKL
IMKL_COMPILER_ifort := intel
IMKL_COMPILER_gfortran := gf
2014-01-24 18:00:27 +05:30
# settings for multicore support
i f e q "$(OPENMP)" "ON"
OPENMP_FLAG_ifort = -openmp -openmp-report0 -parallel
OPENMP_FLAG_gfortran = -fopenmp
2014-09-18 20:53:11 +05:30
LIBRARIES += -lpthread
2014-04-29 22:13:59 +05:30
i f e q "$(F90)" "ifort"
LIBRARIES += -liomp5
e n d i f
2014-01-24 18:00:27 +05:30
e n d i f
2012-03-02 01:04:42 +05:30
2014-04-29 22:13:59 +05:30
i f n d e f P E T S C _ D I R #petsc provides linking options agains selected blas/lapack already
2014-01-25 05:45:04 +05:30
i f n e q "x$(IMKL_ROOT)" "x"
2014-02-06 16:11:34 +05:30
LIB_DIRS += -L$( IMKL_ROOT) /lib/intel64
RUN_PATH := $( RUN_PATH) ,-rpath,$( IMKL_ROOT) /lib/intel64
2014-01-25 05:45:04 +05:30
INCLUDE_DIRS += -I$( IMKL_ROOT) /include
2014-04-29 22:13:59 +05:30
LIBRARIES += -lmkl_$( IMKL_COMPILER_$( F90) ) _lp64 -lmkl_core -lmkl_sequential -lm
2014-01-24 18:00:27 +05:30
e l s e
2014-01-25 05:45:04 +05:30
i f n e q "x$(ACML_ROOT)" "x"
2014-04-29 22:13:59 +05:30
LIB_DIRS += -L$( ACML_ROOT) /$( F90) 64/lib
RUN_PATH := $( RUN_PATH) ,-rpath,$( ACML_ROOT) /$( F90) 64/lib
LIBRARIES += -lacml
2013-02-08 21:13:15 +05:30
e l s e
2014-01-25 05:45:04 +05:30
i f n e q "x$(LAPACK_ROOT)" "x"
2014-01-27 19:40:49 +05:30
LIB_DIRS += -L$( LAPACK_ROOT) /lib64 -L$( LAPACK_ROOT) /lib
2014-02-06 16:11:34 +05:30
RUN_PATH := $( RUN_PATH) ,-rpath,$( LAPACK_ROOT) /lib64,-rpath,$( LAPACK_ROOT) /lib
2013-02-08 21:13:15 +05:30
LIBRARIES += -llapack
e n d i f
e n d i f
e n d i f
2014-04-29 22:13:59 +05:30
e n d i f
2013-02-08 21:13:15 +05:30
2013-06-07 12:57:12 +05:30
#hdf5
i f e q "$(HDF5)" "ON"
2013-11-07 18:22:36 +05:30
LIBRARIES += -lhdf5hl_fortran -lhdf5_hl -lhdf5_fortran -lhdf5
2014-08-21 00:43:28 +05:30
LIB_DIRS += -L$( HDF5_ROOT) /lib64 -L$( HDF5_ROOT) /lib
RUN_PATH := $( RUN_PATH) ,-rpath,$( HDF5_ROOT) /lib64,-rpath,$( HDF5_ROOT) /lib
2014-01-27 19:40:49 +05:30
INCLUDE_DIRS += -I$( HDF5_ROOT) /include -DHDF
2013-06-07 12:57:12 +05:30
e n d i f
2012-03-02 01:04:42 +05:30
2014-08-21 23:18:20 +05:30
#newstate
i f e q "$(STATE)" "NEWH"
INCLUDE_DIRS += -DNEWSTATE
e n d i f
2012-03-02 01:04:42 +05:30
i f d e f S T A N D A R D _ C H E C K
2012-06-15 21:40:21 +05:30
STANDARD_CHECK_ifort = $( STANDARD_CHECK)
STANDARD_CHECK_gfortran = $( STANDARD_CHECK)
2012-03-02 01:04:42 +05:30
e n d i f
i f n e q "$(FASTBUILD)" "YES"
2014-02-03 22:17:16 +05:30
STANDARD_CHECK_ifort ?= -stand f08 -standard-semantics
2013-02-13 23:24:56 +05:30
STANDARD_CHECK_gfortran ?= -std= f2008 -pedantic-errors
2012-03-02 01:04:42 +05:30
e n d i f
2012-12-15 21:51:10 +05:30
#-std=f2008ts: for newer gfortran
2013-02-13 23:24:56 +05:30
#-pedantic: more strict on standard, enables some warnings
# -pedantic-errors: like pedantic, but errors instead of warnings
2012-03-02 01:04:42 +05:30
OPTIMIZATION_OFF_ifort := -O0 -no-ip
OPTIMIZATION_OFF_gfortran := -O0
OPTIMIZATION_DEFENSIVE_ifort := -O2
OPTIMIZATION_DEFENSIVE_gfortran := -O2
2014-01-28 13:04:13 +05:30
OPTIMIZATION_AGGRESSIVE_ifort := -O3 $( PORTABLE_SWITCH) -no-prec-div -fp-model fast = 2 -ipo
2012-03-02 01:04:42 +05:30
OPTIMIZATION_AGGRESSIVE_gfortran := -O3 $( PORTABLE_SWITCH) -ffast-math -funroll-loops -ftree-vectorize
2012-03-20 17:56:21 +05:30
2014-04-30 19:43:21 +05:30
LINK_OPTIONS_ifort := -shared-intel
2014-01-24 18:00:27 +05:30
COMPILE_OPTIONS_ifort := -fpp\
2012-10-19 14:14:21 +05:30
-ftz\
2014-04-30 19:43:21 +05:30
-assume byterecl
2014-04-29 22:13:59 +05:30
2012-03-20 17:56:21 +05:30
i f n e q "$(FASTBUILD)" "YES"
2013-03-31 01:13:06 +05:30
COMPILE_OPTIONS_ifort += -diag-enable sc3\
2014-02-04 01:00:28 +05:30
-diag-disable 5268\
2012-03-02 01:04:42 +05:30
-warn declarations\
-warn general\
-warn usage\
-warn interfaces\
-warn ignore_loc\
-warn alignments\
2013-12-19 14:19:47 +05:30
-warn unused
2012-03-02 01:04:42 +05:30
e n d i f
2013-02-08 21:13:15 +05:30
###################################################################################################
#COMPILE SWITCHES
2014-09-09 21:29:41 +05:30
#-shared-intel: Link against shared Intel libraries instead of static ones
2012-03-02 01:04:42 +05:30
#-fpp: preprocessor
2012-10-19 14:14:21 +05:30
#-ftz: flush unterflow to zero, automatically set if O<0,1,2,3> >0
2013-12-19 14:19:47 +05:30
#-assume byterecl record length is given in bytes (also set by -standard-semantics)
2012-03-02 01:04:42 +05:30
#-fimplicit-none: assume "implicit-none" even if not present in source
#-diag-disable: disables warnings, where
# warning ID 5268: the text exceeds right hand column allowed on the line (we have only comments there)
#-warn: enables warnings, where
2013-03-28 13:10:30 +05:30
# declarations: any undeclared names (alternative name: -implicitnone)
2012-03-02 01:04:42 +05:30
# general: warning messages and informational messages are issued by the compiler
# usage: questionable programming practices
# interfaces: checks the interfaces of all SUBROUTINEs called and FUNCTIONs invoked in your compilation against an external set of interface blocks
# ignore_loc: %LOC is stripped from an actual argument
# alignments: data that is not naturally aligned
# unused: declared variables that are never used
2012-03-06 20:22:48 +05:30
# stderrors: warnings about Fortran standard violations are changed to errors (STANDARD_CHECK)
2012-03-02 01:04:42 +05:30
#
###################################################################################################
2013-02-08 21:13:15 +05:30
#MORE OPTIONS FOR DEBUGGING DURING COMPILATION
2012-03-02 01:04:42 +05:30
#-warn: enables warnings, where
# truncated_source: Determines whether warnings occur when source exceeds the maximum column width in fixed-format files. (too many warnings because we have comments beyond character 132)
# uncalled: Determines whether warnings occur when a statement function is never called
# all:
2013-03-28 13:10:30 +05:30
# -name as_is: case sensitive Fortran!
2013-02-08 21:13:15 +05:30
DEBUG_OPTIONS_ifort := -g\
-traceback\
-gen-interfaces\
-fp-stack-check\
2013-02-13 23:24:56 +05:30
-check bounds,format,output_conversion,pointers,uninit\
2014-02-10 00:00:31 +05:30
-ftrapuv\
2013-12-19 14:19:47 +05:30
-fpe-all0\
2014-02-03 22:17:16 +05:30
-warn errors\
2014-02-06 16:11:34 +05:30
-warn stderrors\
-debug-parameters all
2014-02-03 22:17:16 +05:30
2013-02-08 21:13:15 +05:30
###################################################################################################
#COMPILE SWITCHES FOR RUNTIME DEBUGGING
2012-03-02 01:04:42 +05:30
#-g: Generate symbolic debugging information in the object file
#-traceback: Generate extra information in the object file to provide source file traceback information when a severe error occurs at run time.
#-gen-interfaces: Generate an interface block for each routine. http://software.intel.com/en-us/blogs/2012/01/05/doctor-fortran-gets-explicit-again/
#-fp-stack-check: Generate extra code after every function call to ensure that the floating-point (FP) stack is in the expected state.
2014-02-10 00:00:31 +05:30
#-ftrapuv Trap uninitalized variables
2012-03-02 01:04:42 +05:30
#-check: checks at runtime, where
# bounds: check if an array index is too small (<1) or too large!
# format: Checking for the data type of an item being formatted for output.
# output_conversion: Checking for the fit of data items within a designated format descriptor field.
# pointers: Checking for certain disassociated or uninitialized pointers or unallocated allocatable objects.
# uninit: Checking for uninitialized variables.
2012-10-19 14:14:21 +05:30
#-fpe-all0 capture all floating-point exceptions, sets -ftz automatically
2013-12-19 14:19:47 +05:30
#-warn: enables warnings, where
# errors: warnings are changed to errors
2014-02-03 22:17:16 +05:30
# stderrors: warnings about Fortran standard violations are changed to errors
2013-02-08 21:13:15 +05:30
# information on http://software.intel.com/en-us/articles/determining-root-cause-of-sigsegv-or-sigbus-errors/
2012-03-02 01:04:42 +05:30
###################################################################################################
2013-02-08 21:13:15 +05:30
#MORE OPTIONS FOR RUNTIME DEBUGGING
#-heap-arrays: should not be done for OpenMP, but set "ulimit -s unlimited" on shell. Probably it helps also to unlimit other limits
#-check: checks at runtime, where
# arg_temp_created: will cause a lot of warnings because we create a bunch of temporary arrays (performance?)
2013-03-28 13:10:30 +05:30
# stack:
2014-05-01 02:43:06 +05:30
LINK_OPTIONS_gfortran := -Wl,-undefined,dynamic_lookup
2014-04-30 19:43:21 +05:30
COMPILE_OPTIONS_gfortran := -xf95-cpp-input
2012-03-20 17:56:21 +05:30
i f n e q "$(FASTBUILD)" "YES"
2013-03-31 01:13:06 +05:30
COMPILE_OPTIONS_gfortran += -ffree-line-length-132\
2012-03-02 01:04:42 +05:30
-fimplicit-none\
2013-03-28 13:10:30 +05:30
-fmodule-private\
2012-03-02 01:04:42 +05:30
-Wall\
2012-12-15 21:51:10 +05:30
-Wextra\
2013-02-13 23:24:56 +05:30
-Wcharacter-truncation\
-Wunderflow\
2012-12-15 21:51:10 +05:30
-Wsuggest-attribute= pure\
-Wsuggest-attribute= noreturn\
2013-02-13 23:24:56 +05:30
-Wconversion-extra\
-Wimplicit-procedure
2012-03-02 01:04:42 +05:30
e n d i f
2013-02-08 21:13:15 +05:30
###################################################################################################
#COMPILE SWITCHES
2014-04-29 22:13:59 +05:30
#-shared
#-Wl,-undefined,dynamic_lookup:ensure to link against dynamic libraries
2012-03-02 01:04:42 +05:30
#-xf95-cpp-input: preprocessor
#-ffree-line-length-132: restrict line length to the standard 132 characters
#-fno-range-check: disables checking if result can be represented by variable. Needs to be set to enable DAMASK_NaN
#-fimplicit-none: assume "implicit-none" even if not present in source
2013-03-28 13:10:30 +05:30
#-fmodule-private: assume "private" even if not present in source
2012-03-02 01:04:42 +05:30
#-Wcharacter-truncation: warn if character expressions (strings) are truncated
#-Wunderflow: produce a warning when numerical constant expressions are encountered, which yield an UNDERFLOW during compilation
2013-02-13 23:24:56 +05:30
#-Wsuggest-attribute=pure:
2013-01-24 03:20:01 +05:30
#-Wsuggest-attribute=noreturn:
2013-02-13 23:24:56 +05:30
#-Wconversion-extra
#-Wimplicit-procedure
#-Wall: sets the following Fortran options:
# -Waliasing: warn about possible aliasing of dummy arguments. Specifically, it warns if the same actual argument is associated with a dummy argument with "INTENT(IN)" and a dummy argument with "INTENT(OUT)" in a call with an explicit interface.
2013-12-19 14:19:47 +05:30
# -Wampersand: checks if a character expression is continued proberly by an ampersand at the end of the line and at the beginning of the new line
# -Warray-bounds: checks if array reference is out of bounds at compile time. use -fcheck-bounds to also check during runtime
2013-02-13 23:24:56 +05:30
# -Wconversion: warn about implicit conversions between different type
# -Wsurprising: warn when "suspicious" code constructs are encountered. While technically legal these usually indicate that an error has been made.
# -Wc-binding-type:
# -Wintrinsics-std: only standard intrisics are available, e.g. "call flush(6)" will cause an error
# -Wno-tabs: do not allow tabs in source
# -Wintrinsic-shadow: warn if a user-defined procedure or module procedure has the same name as an intrinsic
# -Wline-truncation:
# -Wtarget-lifetime:
# -Wreal-q-constant: warn about real-literal-constants with 'q' exponent-letter
# -Wunused: a number of unused-xxx warnings
# these are general (non -Fortran options) implied by -Wall
# -Waddress
# -Warray-bounds (only with -O2)
# -Wc++11-compat
# -Wchar-subscripts
# -Wcomment
# -Wformat
# -Wmaybe-uninitialized
# -Wnonnull
# -Wparentheses
# -Wpointer-sign
# -Wreorder
# -Wreturn-type
# -Wsequence-point
# -Wstrict-aliasing
# -Wstrict-overflow=1
# -Wswitch
# -Wtrigraphs
# -Wuninitialized
# -Wunknown-pragmas
# -Wunused-function
# -Wunused-label
# -Wunused-value
# -Wunused-variable
# -Wvolatile-register-var
#-Wextra: sets the following Fortran options:
# -Wunuses-parameter:
# -Wcompare-reals:
# these are general (non -Fortran options) implied by -Wextra
# -Wclobbered
# -Wempty-body
# -Wignored-qualifiers
# -Wmissing-field-initializers
# -Woverride-init
# -Wsign-compare
# -Wtype-limits
# -Wuninitialized
# -Wunused-but-set-parameter (only with -Wunused or -Wall)
# -Wno-globals
2012-03-02 01:04:42 +05:30
###################################################################################################
2013-02-13 23:24:56 +05:30
#MORE OPTIONS FOR DEBUGGING DURING COMPILATION
#-Warray-temporarieswarnings: because we have many temporary arrays (performance issue?):
#-Wimplicit-interface: no interfaces for lapack routines
#-Wunsafe-loop-optimizations: warn if the loop cannot be optimized due to nontrivial assumptions.
#-Wstrict-overflow:
2013-02-08 21:13:15 +05:30
DEBUG_OPTIONS_gfortran := -g\
-fbacktrace\
2013-02-13 23:24:56 +05:30
-fdump-core\
-fcheck= all\
2013-02-08 21:13:15 +05:30
-ffpe-trap= invalid,zero,overflow
2013-02-13 23:24:56 +05:30
2013-02-08 21:13:15 +05:30
###################################################################################################
#COMPILE SWITCHES FOR RUNTIME DEBUGGING
2012-10-19 14:14:21 +05:30
#-ffpe-trap=invalid,\ stop execution if floating point exception is detected (NaN is silent)
# zero,\
2013-02-13 23:24:56 +05:30
# overflow
#-fcheck=all: sets the following Fortran options:
#array-temps
#bounds
#do
#mem
#pointer
#recursion
2013-02-08 21:13:15 +05:30
###################################################################################################
2013-02-13 23:24:56 +05:30
#MORE OPTIONS FOR RUNTIME DEBUGGING
2013-02-08 21:13:15 +05:30
#-ffpe-trap=precision,\
# denormal, \
# underflow
i f e q "$(DEBUG)" "ON"
2013-09-14 16:29:35 +05:30
COMPILE_OPTIONS_$(F90) += $( DEBUG_OPTIONS_$( F90) )
2013-02-08 21:13:15 +05:30
e n d i f
2013-09-14 16:29:35 +05:30
COMPILE_OPTIONS_$(F90) += $( OPTIONS)
2012-08-28 21:38:17 +05:30
PRECISION_ifort := -real-size 64 -integer-size 32 -DFLOAT= 8 -DINT= 4
2012-11-08 23:56:10 +05:30
#-real-size 32: set precision to one of those 32/64/128 (= 4/8/16 bytes) for standard real (=8 for pReal)
#-integer-size 16: set precision to one of those 16/32/64 (= 2/4/8 bytes) for standard integer (=4 for pInt)
2012-08-29 10:49:35 +05:30
PRECISION_gfortran := -fdefault-real-8 -fdefault-double-8 -DFLOAT= 8 -DINT= 4
2012-11-08 23:56:10 +05:30
#-fdefault-real-8: set precision to 8 bytes for standard real (=8 for pReal). Will set size of double to 16 bytes as long as -fdefault-double-8 is not set
#-fdefault-double-8: set precision to 8 bytes for double real, would be 16 bytes because -fdefault-real-8 is used
#-fdefault-integer-8: Use it to set precision to 8 bytes for integer, don't use it for the standard case of pInt=4 (there is no -fdefault-integer-4)
2012-03-02 01:04:42 +05:30
2012-08-28 21:38:17 +05:30
###################################################################################################
2014-08-25 03:37:53 +05:30
COMPILE = $( OPENMP_FLAG_$( F90) ) $( COMPILE_OPTIONS_$( F90) ) $( STANDARD_CHECK_$( F90) ) $( OPTIMIZATION_$( OPTI) _$( F90) ) $( INCLUDE_DIRS) $( PRECISION_$( F90) )
2012-08-28 21:38:17 +05:30
COMPILE_MAXOPTI = $( OPENMP_FLAG_$( F90) ) $( COMPILE_OPTIONS_$( F90) ) $( STANDARD_CHECK_$( F90) ) $( OPTIMIZATION_$( MAXOPTI) _$( F90) ) $( INCLUDE_DIRS) $( PRECISION_$( F90) ) -DSpectral
2012-03-02 01:04:42 +05:30
###################################################################################################
2014-09-03 22:42:06 +05:30
DAMAGE_FILES = \
damage_none.o damage_local.o
2014-09-22 23:45:19 +05:30
2014-09-03 22:42:06 +05:30
THERMAL_FILES = \
2014-09-10 20:35:28 +05:30
thermal_none.o thermal_adiabatic.o
2014-09-22 23:45:19 +05:30
2014-08-25 03:37:53 +05:30
CONSTITUTIVE_FILES = \
constitutive_dislotwin.o constitutive_dislokmc.o constitutive_j2.o constitutive_phenopowerlaw.o \
constitutive_titanmod.o constitutive_nonlocal.o constitutive_none.o \
constitutive_damage.o constitutive_thermal.o constitutive.o
HOMOGENIZATION_FILES = \
homogenization_RGC.o homogenization_isostrain.o homogenization_none.o homogenization.o
#####################
# Spectral Solver
#####################
2014-09-11 15:21:38 +05:30
DAMASK_spectral.exe : IGNORE := \#
2014-08-25 03:37:53 +05:30
DAMASK_spectral.exe : COMPILE += -DSpectral
DAMASK_spectral.exe : COMPILE_MAXOPTI += -DSpectral
DAMASK_spectral.exe : MESHNAME := mesh .f 90
DAMASK_spectral.exe : INTERFACENAME := DAMASK_spectral_interface .f 90
SPECTRAL_FILES = prec.o DAMASK_interface.o IO.o libs.o numerics.o debug.o math.o \
2012-03-02 01:04:42 +05:30
FEsolving.o mesh.o material.o lattice.o \
2014-08-25 03:37:53 +05:30
$( DAMAGE_FILES) $( THERMAL_FILES) $( CONSTITUTIVE_FILES) \
crystallite.o $( HOMOGENIZATION_FILES) CPFEM.o \
DAMASK_spectral_utilities.o DAMASK_spectral_solverBasic.o
2012-08-29 00:49:47 +05:30
i f d e f P E T S C _ D I R
2013-07-24 18:36:16 +05:30
PETSC_FILES = DAMASK_spectral_solverAL.o \
2014-04-29 23:20:59 +05:30
DAMASK_spectral_solverBasicPETSc.o \
DAMASK_spectral_solverPolarisation.o
2014-08-25 03:37:53 +05:30
SPECTRAL_FILES += $( PETSC_FILES)
2012-08-29 00:49:47 +05:30
e n d i f
2012-10-19 14:14:21 +05:30
DAMASK_spectral.exe : DAMASK_spectral_driver .o
2014-08-25 03:37:53 +05:30
$( PREFIX) $( LINKERNAME) $( OPENMP_FLAG_$( F90) ) $( LINK_OPTIONS_$( F90) ) $( STANDARD_CHECK_$( F90) ) $( OPTIMIZATION_$( MAXOPTI) _$( F90) ) \
-o DAMASK_spectral.exe DAMASK_spectral_driver.o \
$( SPECTRAL_FILES) $( LIBRARIES) $( LIB_DIRS) $( RUN_PATH) $( SUFFIX)
2012-03-02 01:04:42 +05:30
2012-10-19 14:14:21 +05:30
DAMASK_spectral_driver.o : DAMASK_spectral_driver .f 90 DAMASK_spectral_solverBasic .o $( PETSC_FILES )
$( PREFIX) $( COMPILERNAME) $( COMPILE_MAXOPTI) -c DAMASK_spectral_driver.f90 $( SUFFIX)
2012-08-06 18:13:05 +05:30
2014-08-25 03:37:53 +05:30
DAMASK_spectral_solverAL.o : DAMASK_spectral_solverAL .f 90 \
2012-10-19 14:14:21 +05:30
DAMASK_spectral_utilities.o
2012-08-06 18:13:05 +05:30
2014-08-25 03:37:53 +05:30
DAMASK_spectral_solverBasic.o : DAMASK_spectral_solverBasic .f 90 \
2012-10-19 14:14:21 +05:30
DAMASK_spectral_utilities.o
2012-08-14 22:28:23 +05:30
2014-08-25 03:37:53 +05:30
DAMASK_spectral_solverPolarisation.o : DAMASK_spectral_solverPolarisation .f 90 \
2013-07-24 18:36:16 +05:30
DAMASK_spectral_utilities.o
2014-08-25 03:37:53 +05:30
DAMASK_spectral_solverBasicPETSc.o : DAMASK_spectral_solverBasicPETSc .f 90 \
2012-10-19 14:14:21 +05:30
DAMASK_spectral_utilities.o
2012-08-06 18:13:05 +05:30
2014-08-25 03:37:53 +05:30
DAMASK_spectral_utilities.o : DAMASK_spectral_utilities .f 90 \
2012-08-06 18:13:05 +05:30
CPFEM.o
2014-08-25 03:37:53 +05:30
#####################
# FEM Solver
#####################
2014-09-11 15:21:38 +05:30
VPATH := ../private/FEM/code
2014-08-25 03:37:53 +05:30
DAMASK_FEM.exe : COMPILE += -DFEM -DmultiphysicsOut
DAMASK_FEM.exe : COMPILE_MAXOPTI += -DFEM -DmultiphysicsOut
DAMASK_FEM.exe : MESHNAME := ../private /FEM /code /meshFEM .f 90
DAMASK_FEM.exe : INTERFACENAME := ../private /FEM /code /DAMASK_FEM_interface .f 90
DAMASK_FEM.exe : INCLUDE_DIRS += -I ./
FEM_FILES = prec.o DAMASK_interface.o FEZoo.o IO.o libs.o numerics.o debug.o math.o \
FEsolving.o mesh.o material.o lattice.o \
$( DAMAGE_FILES) $( THERMAL_FILES) $( CONSTITUTIVE_FILES) \
crystallite.o $( HOMOGENIZATION_FILES) CPFEM.o \
FEM_utilities.o FEM_mech.o FEM_thermal.o FEM_damage.o
DAMASK_FEM.exe : DAMASK_FEM_driver .o
$( PREFIX) $( LINKERNAME) $( OPENMP_FLAG_$( F90) ) $( LINK_OPTIONS_$( F90) ) $( STANDARD_CHECK_$( F90) ) $( OPTIMIZATION_$( MAXOPTI) _$( F90) ) \
-o DAMASK_FEM.exe DAMASK_FEM_driver.o \
$( FEM_FILES) $( LIBRARIES) $( LIB_DIRS) $( RUN_PATH) $( SUFFIX)
DAMASK_FEM_driver.o : DAMASK_FEM_driver .f 90 FEM_mech .o FEM_thermal .o FEM_damage .o
$( PREFIX) $( COMPILERNAME) $( COMPILE_MAXOPTI) -c ../private/FEM/code/DAMASK_FEM_driver.f90 $( SUFFIX)
FEM_mech.o : FEM_mech .f 90 \
FEM_utilities.o
FEM_thermal.o : FEM_thermal .f 90 \
FEM_utilities.o
FEM_damage.o : FEM_damage .f 90 \
FEM_utilities.o
FEM_utilities.o : FEM_utilities .f 90 \
CPFEM.o
2014-09-11 15:21:38 +05:30
FEZoo.o : $( wildcard FEZoo .f 90) \
2014-08-25 03:37:53 +05:30
IO.o
2014-09-11 15:21:38 +05:30
$( IGNORE) $( PREFIX) $( COMPILERNAME) $( COMPILE) -c ../private/FEM/code/FEZoo.f90 $( SUFFIX)
2014-09-19 23:29:06 +05:30
touch FEZoo.o
2014-08-25 03:37:53 +05:30
2012-12-15 21:51:10 +05:30
CPFEM.o : CPFEM .f 90\
homogenization.o
2012-03-02 01:04:42 +05:30
2012-12-15 21:51:10 +05:30
homogenization.o : homogenization .f 90\
2014-03-14 04:50:50 +05:30
homogenization_none.o \
2012-12-15 21:51:10 +05:30
homogenization_RGC.o \
homogenization_isostrain.o
2012-03-02 01:04:42 +05:30
2012-12-15 21:51:10 +05:30
homogenization_RGC.o : homogenization_RGC .f 90 \
crystallite.o
2012-03-02 01:04:42 +05:30
2012-12-15 21:51:10 +05:30
homogenization_isostrain.o : homogenization_isostrain .f 90 \
crystallite.o
2012-03-02 01:04:42 +05:30
2014-03-14 04:50:50 +05:30
homogenization_none.o : homogenization_none .f 90 \
crystallite.o
2012-12-15 21:51:10 +05:30
crystallite.o : crystallite .f 90 \
2014-08-08 19:32:20 +05:30
constitutive.o
2012-03-02 01:04:42 +05:30
2012-12-15 21:51:10 +05:30
constitutive.o : constitutive .f 90 \
2014-07-03 19:02:21 +05:30
constitutive_nonlocal.o \
constitutive_titanmod.o \
constitutive_dislotwin.o \
2014-08-08 16:34:40 +05:30
constitutive_dislokmc.o \
2014-07-03 19:02:21 +05:30
constitutive_phenopowerlaw.o \
constitutive_j2.o \
2014-08-08 19:32:20 +05:30
constitutive_none.o \
constitutive_thermal.o \
constitutive_damage.o
2012-03-02 01:04:42 +05:30
2012-12-15 21:51:10 +05:30
constitutive_nonlocal.o : constitutive_nonlocal .f 90 \
lattice.o
2012-03-02 01:04:42 +05:30
2012-12-15 21:51:10 +05:30
constitutive_titanmod.o : constitutive_titanmod .f 90 \
lattice.o
2012-03-02 01:04:42 +05:30
2014-08-08 16:34:40 +05:30
constitutive_dislokmc.o : constitutive_dislokmc .f 90 \
lattice.o
2012-12-15 21:51:10 +05:30
constitutive_dislotwin.o : constitutive_dislotwin .f 90 \
lattice.o
2012-03-02 01:04:42 +05:30
2012-12-15 21:51:10 +05:30
constitutive_phenopowerlaw.o : constitutive_phenopowerlaw .f 90 \
lattice.o
2012-03-02 01:04:42 +05:30
2012-12-15 21:51:10 +05:30
constitutive_j2.o : constitutive_j 2.f 90 \
lattice.o
2012-03-02 01:04:42 +05:30
2012-12-15 21:51:10 +05:30
constitutive_none.o : constitutive_none .f 90 \
lattice.o
2012-07-03 19:29:38 +05:30
2014-06-25 04:48:39 +05:30
constitutive_damage.o : constitutive_damage .f 90 \
2014-09-03 22:42:06 +05:30
$( DAMAGE_FILES)
2014-06-25 04:48:39 +05:30
damage_none.o : damage_none .f 90 \
2014-07-04 16:16:23 +05:30
lattice.o
2014-06-25 04:48:39 +05:30
2014-08-01 20:24:57 +05:30
damage_local.o : damage_local .f 90 \
lattice.o
2014-06-25 04:48:39 +05:30
constitutive_thermal.o : constitutive_thermal .f 90 \
2014-09-03 22:42:06 +05:30
$( THERMAL_FILES)
2014-06-25 04:48:39 +05:30
thermal_none.o : thermal_none .f 90 \
2014-07-04 16:16:23 +05:30
lattice.o
2014-06-25 04:48:39 +05:30
2014-09-10 20:35:28 +05:30
thermal_adiabatic.o : thermal_adiabatic .f 90 \
lattice.o
2012-12-15 21:51:10 +05:30
lattice.o : lattice .f 90 \
material.o
2012-03-02 01:04:42 +05:30
2012-12-15 21:51:10 +05:30
material.o : material .f 90 \
mesh.o
2012-03-02 01:04:42 +05:30
2012-12-15 21:51:10 +05:30
mesh.o : mesh .f 90 \
2014-08-25 11:50:25 +05:30
$( wildcard meshFEM.f90) \
2012-12-15 21:51:10 +05:30
FEsolving.o \
2014-08-25 03:37:53 +05:30
math.o \
2014-09-09 21:29:41 +05:30
FEZoo.o
2014-08-25 03:37:53 +05:30
$( PREFIX) $( COMPILERNAME) $( COMPILE) -c $( MESHNAME) -o mesh.o $( SUFFIX)
2012-03-02 01:04:42 +05:30
2012-12-15 21:51:10 +05:30
FEsolving.o : FEsolving .f 90 \
debug.o
2012-03-02 01:04:42 +05:30
2012-12-15 21:51:10 +05:30
math.o : math .f 90 \
debug.o
2012-03-02 01:04:42 +05:30
2012-12-15 21:51:10 +05:30
debug.o : debug .f 90 \
numerics.o
2012-03-02 01:04:42 +05:30
2012-12-15 21:51:10 +05:30
numerics.o : numerics .f 90 \
2013-04-16 18:15:12 +05:30
libs.o
2012-12-15 21:51:10 +05:30
2013-04-16 18:15:12 +05:30
libs.o : libs .f 90 \
IO.o
2012-12-15 21:51:10 +05:30
IO.o : IO .f 90 \
2014-08-25 03:37:53 +05:30
DAMASK_interface.o
2013-04-16 18:15:12 +05:30
2013-01-24 03:20:01 +05:30
i f e q "$(F90)" "gfortran"
2014-08-25 03:37:53 +05:30
DAMASK_interface.o : DAMASK_spectral_interface .f 90 \
2014-08-25 11:50:25 +05:30
$( wildcard DAMASK_FEM_interface.f90) \
2012-12-15 21:51:10 +05:30
prec.o
2014-08-25 03:37:53 +05:30
$( PREFIX) $( COMPILERNAME) $( COMPILE) -c $( INTERFACENAME) -fall-intrinsics -o DAMASK_interface.o $( SUFFIX)
2013-01-24 03:20:01 +05:30
#-fall-intrinsics: all intrinsic procedures (including the GNU-specific extensions) are accepted. -Wintrinsics-std will be ignored
# and no user-defined procedure with the same name as any intrinsic will be called except when it is explicitly declared external
# --> allows the use of 'getcwd'
2012-12-15 21:51:10 +05:30
prec.o : prec .f 90
2014-08-25 03:37:53 +05:30
$( PREFIX) $( COMPILERNAME) $( COMPILE) -c prec.f90 -fno-range-check $( SUFFIX)
2013-01-24 03:20:01 +05:30
# fno-range-check: Disable range checking on results of simplification of constant expressions during compilation
# --> allows the definition of DAMASK_NaN
2012-05-11 18:16:17 +05:30
e l s e
2014-08-25 11:50:25 +05:30
DAMASK_interface.o : DAMASK_spectral_interface .f 90 \
$( wildcard DAMASK_FEM_interface.f90) \
prec.o
2014-08-25 03:37:53 +05:30
$( PREFIX) $( COMPILERNAME) $( COMPILE) -c $( INTERFACENAME) -diag-remark 7410 -stand none -warn nostderrors -o DAMASK_interface.o $( SUFFIX)
2014-04-11 13:30:20 +05:30
# -diag-disable 7410 should disable warning about directory statement in inquire function, but does not work. hence the other 2 statements
2012-12-15 21:51:10 +05:30
prec.o : prec .f 90
2012-05-11 18:16:17 +05:30
$( PREFIX) $( COMPILERNAME) $( COMPILE) -c prec.f90 $( SUFFIX)
e n d i f
2012-03-02 01:04:42 +05:30
%.o : %.f 90
2012-03-20 23:31:31 +05:30
$( PREFIX) $( COMPILERNAME) $( COMPILE) -c $< $( SUFFIX)
2012-03-02 01:04:42 +05:30
2014-01-24 18:00:27 +05:30
.PHONY : tidy
tidy :
2012-05-23 23:38:34 +05:30
@rm -rf *.o
@rm -rf *.mod
2014-01-15 00:33:41 +05:30
2012-03-02 01:04:42 +05:30
2014-01-24 18:00:27 +05:30
.PHONY : clean
clean :
2012-05-23 23:38:34 +05:30
@rm -rf *.o
@rm -rf *.mod
@rm -rf *.exe
2014-07-23 13:53:56 +05:30
@rm -rf *.marc