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"
|
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 "rotations.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"
|
2020-03-17 01:33:54 +05:30
|
|
|
#include "marc/discretization_marc.f90"
|
2014-10-21 21:01:28 +05:30
|
|
|
#include "material.f90"
|
|
|
|
#include "lattice.f90"
|
2021-01-26 01:01:12 +05:30
|
|
|
#include "phase.f90"
|
2021-02-09 03:51:53 +05:30
|
|
|
#include "phase_mechanical.f90"
|
|
|
|
#include "phase_mechanical_plastic.f90"
|
|
|
|
#include "phase_mechanical_plastic_none.f90"
|
|
|
|
#include "phase_mechanical_plastic_isotropic.f90"
|
|
|
|
#include "phase_mechanical_plastic_phenopowerlaw.f90"
|
|
|
|
#include "phase_mechanical_plastic_kinehardening.f90"
|
|
|
|
#include "phase_mechanical_plastic_dislotwin.f90"
|
|
|
|
#include "phase_mechanical_plastic_dislotungsten.f90"
|
|
|
|
#include "phase_mechanical_plastic_nonlocal.f90"
|
|
|
|
#include "phase_mechanical_eigen.f90"
|
|
|
|
#include "phase_mechanical_eigen_cleavageopening.f90"
|
|
|
|
#include "phase_mechanical_eigen_slipplaneopening.f90"
|
|
|
|
#include "phase_mechanical_eigen_thermalexpansion.f90"
|
2021-01-27 03:11:41 +05:30
|
|
|
#include "phase_thermal.f90"
|
|
|
|
#include "phase_thermal_dissipation.f90"
|
|
|
|
#include "phase_thermal_externalheat.f90"
|
2021-01-26 01:01:12 +05:30
|
|
|
#include "phase_damage.f90"
|
|
|
|
#include "phase_damage_isobrittle.f90"
|
|
|
|
#include "phase_damage_isoductile.f90"
|
|
|
|
#include "phase_damage_anisobrittle.f90"
|
|
|
|
#include "phase_damage_anisoductile.f90"
|
2014-10-21 21:01:28 +05:30
|
|
|
#include "homogenization.f90"
|
2021-02-09 03:51:53 +05:30
|
|
|
#include "homogenization_mechanical.f90"
|
|
|
|
#include "homogenization_mechanical_pass.f90"
|
|
|
|
#include "homogenization_mechanical_isostrain.f90"
|
|
|
|
#include "homogenization_mechanical_RGC.f90"
|
2020-12-30 22:38:19 +05:30
|
|
|
#include "homogenization_thermal.f90"
|
2021-01-21 01:24:31 +05:30
|
|
|
#include "homogenization_damage.f90"
|
2014-10-21 21:01:28 +05:30
|
|
|
#include "CPFEM.f90"
|