2016-02-29 21:20:35 +05:30
|
|
|
# The dependency detection in CMake is not functioning for Fortran
|
|
|
|
# !!! EXPLICIT DEPENDENCY DECLARATION !!!
|
|
|
|
|
2016-03-01 00:27:15 +05:30
|
|
|
add_library(DAMASK_PREC "prec.f90")
|
2016-02-29 21:20:35 +05:30
|
|
|
|
2016-02-26 23:00:57 +05:30
|
|
|
if (SPECTRAL)
|
2016-03-01 00:27:15 +05:30
|
|
|
add_library(DAMASK_INTERFACE "spectral_interface.f90")
|
|
|
|
target_link_libraries(DAMASK_INTERFACE DAMASK_PREC)
|
|
|
|
elseif(SPECTRAL)
|
|
|
|
message(FATAL_ERROR "NOT IMPLEMENTED YET")
|
2016-02-26 23:00:57 +05:30
|
|
|
endif(SPECTRAL)
|
|
|
|
|
|
|
|
add_library(DAMASK_IO "IO.f90")
|
2016-03-01 00:27:15 +05:30
|
|
|
target_link_libraries(DAMASK_IO DAMASK_INTERFACE)
|
2016-02-26 23:00:57 +05:30
|
|
|
|
|
|
|
add_library(DAMASK_LIBS "libs.f90")
|
|
|
|
target_link_libraries(DAMASK_LIBS DAMASK_IO)
|
|
|
|
|
|
|
|
add_library(DAMASK_NUMERICS "numerics.f90")
|
|
|
|
target_link_libraries(DAMASK_NUMERICS DAMASK_LIBS)
|
|
|
|
|
|
|
|
add_library(DAMASK_DEBUG "debug.f90")
|
|
|
|
target_link_libraries(DAMASK_DEBUG DAMASK_NUMERICS)
|
|
|
|
|
2016-03-01 00:27:15 +05:30
|
|
|
add_library(DAMASK_FEsolving "FEsolving.f90")
|
|
|
|
target_link_libraries(DAMASK_FEsolving DAMASK_DEBUG)
|
2016-02-26 21:38:25 +05:30
|
|
|
|
2016-03-01 00:27:15 +05:30
|
|
|
add_library(DAMASK_MATH "math.f90")
|
|
|
|
target_link_libraries(DAMASK_MATH DAMASK_FEsolving)
|
2016-02-24 03:30:41 +05:30
|
|
|
|
2016-03-01 00:27:15 +05:30
|
|
|
# SPECTRAL solver and FEM solver use different mesh
|
|
|
|
# source files
|
|
|
|
if (SPECTRAL)
|
|
|
|
add_library(DAMASK_MESH "mesh.f90")
|
|
|
|
endif(SPECTRAL)
|
|
|
|
if (FEM)
|
|
|
|
add_library(DAMASK_MESH "${FEM_DIR}/meshFEM.f90")
|
|
|
|
endif(FEM)
|
|
|
|
target_link_libraries(DAMASK_MESH DAMASK_MATH)
|
2016-02-24 03:30:41 +05:30
|
|
|
|
2016-03-01 00:27:15 +05:30
|
|
|
add_library(DAMASK_MATERIAL "material.f90")
|
|
|
|
target_link_libraries(DAMASK_MATERIAL DAMASK_MESH)
|
2016-02-25 02:55:57 +05:30
|
|
|
|
2016-03-01 00:27:15 +05:30
|
|
|
add_library(DAMASK_LATTICE "lattice.f90")
|
|
|
|
target_link_libraries(DAMASK_LATTICE DAMASK_MATERIAL)
|
|
|
|
add_library(DAMASK_DRIVERS ALIAS DAMASK_LATTICE)
|
|
|
|
|
|
|
|
# For each modular section
|
2016-03-01 00:50:52 +05:30
|
|
|
add_library (DAMASK_PLASTIC "plastic_dislotwin.f90"
|
|
|
|
"plastic_disloUCLA.f90"
|
|
|
|
"plastic_isotropic.f90"
|
|
|
|
"plastic_j2.f90"
|
|
|
|
"plastic_phenopowerlaw.f90"
|
|
|
|
"plastic_titanmod.f90"
|
|
|
|
"plastic_nonlocal.f90"
|
|
|
|
"plastic_none.f90"
|
|
|
|
"plastic_phenoplus.f90")
|
|
|
|
target_link_libraries(DAMASK_PLASTIC DAMASK_DRIVERS)
|
2016-03-01 00:27:15 +05:30
|
|
|
|
2016-03-01 00:50:52 +05:30
|
|
|
add_library (DAMASK_KINEMATICS "kinematics_cleavage_opening.f90"
|
|
|
|
"kinematics_slipplane_opening.f90"
|
|
|
|
"kinematics_thermal_expansion.f90"
|
|
|
|
"kinematics_vacancy_strain.f90"
|
|
|
|
"kinematics_hydrogen_strain.f90")
|
|
|
|
target_link_libraries(DAMASK_KINEMATICS DAMASK_DRIVERS)
|
|
|
|
|
|
|
|
add_library (DAMASK_SOURCE "source_thermal_dissipation.f90"
|
|
|
|
"source_thermal_externalheat.f90"
|
|
|
|
"source_damage_isoBrittle.f90"
|
|
|
|
"source_damage_isoDuctile.f90"
|
|
|
|
"source_damage_anisoBrittle.f90"
|
|
|
|
"source_damage_anisoDuctile.f90"
|
|
|
|
"source_vacancy_phenoplasticity.f90"
|
|
|
|
"source_vacancy_irradiation.f90"
|
|
|
|
"source_vacancy_thermalfluc.f90")
|
|
|
|
target_link_libraries(DAMASK_SOURCE DAMASK_DRIVERS)
|
|
|
|
|
|
|
|
add_library(DAMASK_CONSTITUTIVE "constitutive.f90")
|
2016-03-01 01:52:17 +05:30
|
|
|
target_link_libraries(DAMASK_CONSTITUTIVE DAMASK_PLASTIC )
|
|
|
|
target_link_libraries(DAMASK_CONSTITUTIVE DAMASK_KINEMATICS)
|
|
|
|
target_link_libraries(DAMASK_CONSTITUTIVE DAMASK_SOURCE )
|
2016-02-24 03:30:41 +05:30
|
|
|
|
2016-03-01 01:20:21 +05:30
|
|
|
add_library(DAMASK_CRYSTALLITE "crystallite.f90")
|
|
|
|
target_link_libraries(DAMASK_CRYSTALLITE DAMASK_CONSTITUTIVE)
|
|
|
|
|
2016-03-01 21:07:07 +05:30
|
|
|
add_library(DAMASK_HOMOGENIZATION "homogenization_RGC.f90"
|
2016-03-01 01:20:21 +05:30
|
|
|
"homogenization_isostrain.f90"
|
|
|
|
"homogenization_none.f90")
|
|
|
|
target_link_libraries(DAMASK_HOMOGENIZATION DAMASK_CRYSTALLITE)
|
|
|
|
|
|
|
|
add_library(DAMASK_HYDROGENFLUX "hydrogenflux_isoconc.f90"
|
|
|
|
"hydrogenflux_cahnhilliard.f90")
|
|
|
|
target_link_libraries(DAMASK_HYDROGENFLUX DAMASK_CRYSTALLITE)
|
|
|
|
|
|
|
|
add_library(DAMASK_POROSITY "porosity_none.f90"
|
|
|
|
"porosity_phasefield.f90")
|
|
|
|
target_link_libraries(DAMASK_POROSITY DAMASK_CRYSTALLITE)
|
|
|
|
|
|
|
|
add_library(DAMASK_VACANCYFLUX "vacancyflux_isoconc.f90"
|
|
|
|
"vacancyflux_isochempot.f90"
|
|
|
|
"vacancyflux_cahnhilliard.f90")
|
|
|
|
target_link_libraries(DAMASK_VACANCYFLUX DAMASK_CRYSTALLITE)
|
|
|
|
|
|
|
|
add_library(DAMASK_DAMAGE "damage_none.f90"
|
|
|
|
"damage_local.f90"
|
|
|
|
"damage_nonlocal.f90")
|
|
|
|
target_link_libraries(DAMASK_DAMAGE DAMASK_CRYSTALLITE)
|
|
|
|
|
|
|
|
add_library(DAMASK_THERMAL "thermal_isothermal.f90"
|
|
|
|
"thermal_adiabatic.f90"
|
|
|
|
"thermal_conduction.f90")
|
|
|
|
target_link_libraries(DAMASK_THERMAL DAMASK_CRYSTALLITE)
|
|
|
|
|
|
|
|
add_library(DAMASK_ENGINE "homogenization.f90")
|
2016-03-01 01:52:17 +05:30
|
|
|
target_link_libraries(DAMASK_ENGINE DAMASK_THERMAL )
|
|
|
|
target_link_libraries(DAMASK_ENGINE DAMASK_DAMAGE )
|
|
|
|
target_link_libraries(DAMASK_ENGINE DAMASK_VACANCYFLUX )
|
|
|
|
target_link_libraries(DAMASK_ENGINE DAMASK_POROSITY )
|
|
|
|
target_link_libraries(DAMASK_ENGINE DAMASK_HYDROGENFLUX )
|
|
|
|
target_link_libraries(DAMASK_ENGINE DAMASK_HOMOGENIZATION)
|
2016-03-01 01:20:21 +05:30
|
|
|
|
2016-03-01 21:07:07 +05:30
|
|
|
|
2016-03-01 01:20:21 +05:30
|
|
|
if (FEM)
|
2016-03-01 21:07:07 +05:30
|
|
|
add_library(DAMASK_CPFE "CPFEM.f90")
|
|
|
|
target_link_libraries(DAMASK_CPFE DAMASK_ENGINE)
|
2016-03-01 01:20:21 +05:30
|
|
|
message("special treatment for FEM code")
|
|
|
|
endif(FEM)
|
|
|
|
|
|
|
|
if (SPECTRAL)
|
2016-03-01 21:07:07 +05:30
|
|
|
add_library(DAMASK_CPFE "CPFEM2.f90")
|
|
|
|
target_link_libraries(DAMASK_CPFE DAMASK_ENGINE)
|
|
|
|
|
2016-03-01 01:20:21 +05:30
|
|
|
add_library(DAMASK_SPECTRAL_UTILITY spectral_utilities.f90)
|
2016-03-01 21:07:07 +05:30
|
|
|
target_link_libraries(DAMASK_SPECTRAL_UTILITY DAMASK_CPFE)
|
2016-03-01 01:20:21 +05:30
|
|
|
|
|
|
|
add_library(DAMASK_SPECTRAL_BASE "spectral_thermal.f90"
|
|
|
|
"spectral_damage.f90")
|
|
|
|
target_link_libraries(DAMASK_SPECTRAL_BASE DAMASK_SPECTRAL_UTILITY)
|
|
|
|
|
|
|
|
add_library(DAMASK_SPECTRAL_MECH "spectral_mech_AL.f90"
|
|
|
|
"spectral_mech_Polarisation.f90"
|
|
|
|
"spectral_mech_Basic.f90")
|
|
|
|
target_link_libraries(DAMASK_SPECTRAL_MECH DAMASK_SPECTRAL_UTILITY)
|
|
|
|
|
2016-03-04 02:39:02 +05:30
|
|
|
add_library(DAMASK_EXE "DAMASK_spectral.f90")
|
|
|
|
target_link_libraries(DAMASK_EXE DAMASK_CPFE )
|
|
|
|
target_link_libraries(DAMASK_EXE DAMASK_SPECTRAL_BASE)
|
|
|
|
target_link_libraries(DAMASK_EXE DAMASK_SPECTRAL_MECH)
|
|
|
|
|
|
|
|
add_executable(DAMASKSpectral.exe "DAMASK_spectral.f90")
|
|
|
|
target_link_libraries(DAMASKSpectral.exe DAMASK_EXE)
|
2016-03-01 01:20:21 +05:30
|
|
|
endif(SPECTRAL)
|