2014-10-21 21:01:28 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @author Martin Diehl, Max-Planck-Institut für Eisenforschung GmbH
|
|
|
|
!> @brief all DAMASK files without solver
|
2020-01-26 12:14:22 +05:30
|
|
|
!> @details List of files needed by MSC.Marc
|
2014-10-21 21:01:28 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2020-09-13 13:49:38 +05:30
|
|
|
#include "parallelization.f90"
|
2014-10-21 21:01:28 +05:30
|
|
|
#include "IO.f90"
|
2020-06-16 21:20:35 +05:30
|
|
|
#include "YAML_types.f90"
|
|
|
|
#include "YAML_parse.f90"
|
2019-04-03 21:54:45 +05:30
|
|
|
#include "future.f90"
|
2018-06-14 10:09:49 +05:30
|
|
|
#include "config.f90"
|
2020-04-10 16:22:27 +05:30
|
|
|
#include "LAPACK_interface.f90"
|
2014-10-21 21:01:28 +05:30
|
|
|
#include "math.f90"
|
2018-12-08 12:32:55 +05:30
|
|
|
#include "quaternions.f90"
|
|
|
|
#include "rotations.f90"
|
2014-10-21 21:01:28 +05:30
|
|
|
#include "FEsolving.f90"
|
2019-01-24 14:54:10 +05:30
|
|
|
#include "element.f90"
|
2019-06-04 23:36:08 +05:30
|
|
|
#include "HDF5_utilities.f90"
|
|
|
|
#include "results.f90"
|
2019-10-17 01:30:25 +05:30
|
|
|
#include "geometry_plastic_nonlocal.f90"
|
2019-06-07 00:24:19 +05:30
|
|
|
#include "discretization.f90"
|
2019-01-24 14:22:18 +05:30
|
|
|
#ifdef Marc4DAMASK
|
2020-03-17 01:33:54 +05:30
|
|
|
#include "marc/discretization_marc.f90"
|
2019-01-24 14:22:18 +05:30
|
|
|
#endif
|
2014-10-21 21:01:28 +05:30
|
|
|
#include "material.f90"
|
|
|
|
#include "lattice.f90"
|
2020-07-09 05:19:48 +05:30
|
|
|
#include "constitutive.f90"
|
|
|
|
#include "constitutive_plastic.f90"
|
|
|
|
#include "constitutive_plastic_none.f90"
|
|
|
|
#include "constitutive_plastic_isotropic.f90"
|
|
|
|
#include "constitutive_plastic_phenopowerlaw.f90"
|
|
|
|
#include "constitutive_plastic_kinehardening.f90"
|
|
|
|
#include "constitutive_plastic_dislotwin.f90"
|
2020-08-15 19:32:10 +05:30
|
|
|
#include "constitutive_plastic_disloTungsten.f90"
|
2020-07-09 05:19:48 +05:30
|
|
|
#include "constitutive_plastic_nonlocal.f90"
|
2020-07-13 18:18:23 +05:30
|
|
|
#include "constitutive_thermal.f90"
|
2015-05-28 22:32:23 +05:30
|
|
|
#include "source_thermal_dissipation.f90"
|
2015-07-27 16:39:37 +05:30
|
|
|
#include "source_thermal_externalheat.f90"
|
2020-07-13 18:18:23 +05:30
|
|
|
#include "kinematics_thermal_expansion.f90"
|
|
|
|
#include "constitutive_damage.f90"
|
2015-05-28 22:32:23 +05:30
|
|
|
#include "source_damage_isoBrittle.f90"
|
|
|
|
#include "source_damage_isoDuctile.f90"
|
|
|
|
#include "source_damage_anisoBrittle.f90"
|
|
|
|
#include "source_damage_anisoDuctile.f90"
|
|
|
|
#include "kinematics_cleavage_opening.f90"
|
|
|
|
#include "kinematics_slipplane_opening.f90"
|
2014-10-21 21:01:28 +05:30
|
|
|
#include "crystallite.f90"
|
2015-05-28 22:32:23 +05:30
|
|
|
#include "thermal_isothermal.f90"
|
|
|
|
#include "thermal_adiabatic.f90"
|
|
|
|
#include "thermal_conduction.f90"
|
|
|
|
#include "damage_none.f90"
|
|
|
|
#include "damage_local.f90"
|
|
|
|
#include "damage_nonlocal.f90"
|
2014-10-21 21:01:28 +05:30
|
|
|
#include "homogenization.f90"
|
2019-04-06 01:12:07 +05:30
|
|
|
#include "homogenization_mech_none.f90"
|
|
|
|
#include "homogenization_mech_isostrain.f90"
|
2019-05-18 11:09:55 +05:30
|
|
|
#include "homogenization_mech_RGC.f90"
|
2014-10-21 21:01:28 +05:30
|
|
|
#include "CPFEM.f90"
|