├── .clang-format ├── .github └── workflows │ ├── build_ubuntu.yml │ ├── indent.yml │ └── sphinx.yml ├── .gitignore ├── .gitlab-ci.yml ├── .pre-commit-config.yaml ├── .zenodo.json ├── CMakeLists.txt ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── doc ├── Doxyfile ├── _static │ └── css │ │ └── custom.css ├── conf.py ├── index.rst ├── mainpage.md ├── pages │ ├── codedocumentation │ │ ├── finiteelementcore.rst │ │ ├── finitestrainmechanicscore.rst │ │ ├── mathcore.rst │ │ ├── mechanicscore.rst │ │ └── toplevel.rst │ ├── documentation.rst │ ├── features.rst │ ├── features │ │ ├── adlinearelastic.rst │ │ ├── advonmises.rst │ │ ├── b4.rst │ │ ├── compressibleneohooke.rst │ │ ├── displacementfiniteelement.rst │ │ ├── displacementfinitestrainelement.rst │ │ ├── elements.rst │ │ ├── finitestrainj2plasticity.rst │ │ ├── linearelastic.rst │ │ ├── linearviscoelasticorthotropicpowerlaw.rst │ │ ├── linearviscoelasticpowerlaw.rst │ │ ├── materialpointsolverhypoelastic.rst │ │ ├── materials.rst │ │ ├── solvers.rst │ │ ├── vonmises.rst │ │ └── vonmises_hardening.svg │ ├── installation.rst │ ├── interfaces.md │ └── publications.md └── requirements.txt ├── include └── Marmot │ ├── Marmot.h │ ├── MarmotElement.h │ ├── MarmotElementProperty.h │ ├── MarmotJournal.h │ ├── MarmotMaterial.h │ ├── MarmotMaterialRegistrationHelper.h │ ├── MarmotTesting.h │ └── MarmotUtils.h ├── modules ├── cellelements │ └── place_your_cellelements_here ├── cells │ └── place_your_cells_here ├── core │ ├── MarmotFiniteElementCore │ │ ├── include │ │ │ └── Marmot │ │ │ │ ├── MarmotDofLayoutTools.h │ │ │ │ ├── MarmotEnhancedAssumedStrain.h │ │ │ │ ├── MarmotFiniteElement.h │ │ │ │ ├── MarmotFiniteElementSpatialWrapper.h │ │ │ │ └── MarmotGeometryElement.h │ │ ├── module.cmake │ │ └── src │ │ │ ├── MarmotDofLayoutTools.cpp │ │ │ ├── MarmotEnhancedAssumedStrain.cpp │ │ │ ├── MarmotFiniteElement1D.cpp │ │ │ ├── MarmotFiniteElement2D.cpp │ │ │ ├── MarmotFiniteElement3D.cpp │ │ │ ├── MarmotFiniteElementBasic.cpp │ │ │ ├── MarmotFiniteElementBoundary.cpp │ │ │ ├── MarmotFiniteElementSpatialWrapper.cpp │ │ │ └── MarmotGeometryElement.cpp │ ├── MarmotFiniteStrainMechanicsCore │ │ ├── README.md │ │ ├── include │ │ │ └── Marmot │ │ │ │ ├── MarmotDeformationMeasures.h │ │ │ │ ├── MarmotEnergyDensityFunctions.h │ │ │ │ ├── MarmotFiniteStrainPlasticity.h │ │ │ │ ├── MarmotMaterialFiniteStrain.h │ │ │ │ └── MarmotStressMeasures.h │ │ ├── module.cmake │ │ ├── src │ │ │ ├── MarmotFiniteStrainPlasticity.cpp │ │ │ └── MarmotMaterialFiniteStrain.cpp │ │ ├── test.cmake │ │ └── test │ │ │ ├── TestMarmotDeformationMeasures.cpp │ │ │ ├── TestMarmotEnergyDensityFunctions.cpp │ │ │ ├── TestMarmotFiniteStrainPlasticity.cpp │ │ │ └── TestMarmotStressMeasures.cpp │ ├── MarmotMathCore │ │ ├── README.md │ │ ├── include │ │ │ └── Marmot │ │ │ │ ├── MarmotAutomaticDifferentiation.h │ │ │ │ ├── MarmotAutomaticDifferentiationForFastor.h │ │ │ │ ├── MarmotConstants.h │ │ │ │ ├── MarmotFastorTensorBasics.h │ │ │ │ ├── MarmotMath.h │ │ │ │ ├── MarmotNumericalDifferentiation.h │ │ │ │ ├── MarmotNumericalDifferentiationForFastor.h │ │ │ │ ├── MarmotNumericalIntegration.h │ │ │ │ ├── MarmotTensor.h │ │ │ │ ├── MarmotTensorExponential.h │ │ │ │ ├── MarmotTypedefs.h │ │ │ │ └── NewtonConvergenceChecker.h │ │ ├── module.cmake │ │ ├── src │ │ │ ├── MarmotAutomaticDifferentiation.cpp │ │ │ ├── MarmotMath.cpp │ │ │ ├── MarmotNumericalDifferentiation.cpp │ │ │ ├── MarmotNumericalIntegration.cpp │ │ │ ├── MarmotTensor.cpp │ │ │ └── NewtonConvergenceChecker.cpp │ │ ├── test.cmake │ │ └── test │ │ │ ├── TestMarmotAutomaticDifferentiation.cpp │ │ │ ├── TestMarmotAutomaticDifferentiationForFastor.cpp │ │ │ ├── TestMarmotMath.cpp │ │ │ ├── TestMarmotNumericalDifferentiation.cpp │ │ │ ├── TestMarmotNumericalDifferentiationForFastor.cpp │ │ │ ├── TestMarmotNumericalIntegration.cpp │ │ │ ├── TestMarmotTensor.cpp │ │ │ ├── TestMarmotTensorExponential.cpp │ │ │ └── TestNewtonConvergenceChecker.cpp │ └── MarmotMechanicsCore │ │ ├── README.md │ │ ├── include │ │ └── Marmot │ │ │ ├── AdaptiveSubstepper.h │ │ │ ├── AdaptiveSubstepperExplicit.h │ │ │ ├── DuvautLionsViscosity.h │ │ │ ├── HaighWestergaard.h │ │ │ ├── HughesWinget.h │ │ │ ├── MarmotElasticity.h │ │ │ ├── MarmotGeostaticStress.h │ │ │ ├── MarmotKelvinChain.h │ │ │ ├── MarmotKinematics.h │ │ │ ├── MarmotLocalization.h │ │ │ ├── MarmotLowerDimensionalStress.h │ │ │ ├── MarmotMaterialGradientEnhancedHypoElastic.h │ │ │ ├── MarmotMaterialGradientEnhancedMechanical.h │ │ │ ├── MarmotMaterialHyperElastic.h │ │ │ ├── MarmotMaterialHypoElastic.h │ │ │ ├── MarmotMaterialHypoElasticAD.h │ │ │ ├── MarmotMaterialMechanical.h │ │ │ ├── MarmotMaterialPointSolverHypoElastic.h │ │ │ ├── MarmotPronySeries.h │ │ │ ├── MarmotStateVarVectorManager.h │ │ │ ├── MarmotUtility.h │ │ │ ├── MarmotViscoelasticity.h │ │ │ ├── MarmotVoigt.h │ │ │ ├── MenetreyWillam.h │ │ │ ├── NewmarkBetaIntegrator.h │ │ │ ├── PerezFougetSubstepperExplicitMarkII.h │ │ │ ├── PerezFougetSubstepperMarkII.h │ │ │ ├── PerezFougetSubstepperTime.h │ │ │ └── YieldSurfaceCombinationManager.h │ │ ├── module.cmake │ │ ├── src │ │ ├── HaighWestergaard.cpp │ │ ├── HughesWinget.cpp │ │ ├── MarmotElasticity.cpp │ │ ├── MarmotGeostaticStress.cpp │ │ ├── MarmotKelvinChain.cpp │ │ ├── MarmotKinematics.cpp │ │ ├── MarmotLocalization.cpp │ │ ├── MarmotLowerDimensionalStress.cpp │ │ ├── MarmotMaterialHyperElastic.cpp │ │ ├── MarmotMaterialHypoElastic.cpp │ │ ├── MarmotMaterialHypoElasticAD.cpp │ │ ├── MarmotMaterialHypoElasticNonLocal.cpp │ │ ├── MarmotMaterialMechanical.cpp │ │ ├── MarmotMaterialPointSolverHypoElastic.cpp │ │ ├── MarmotPronySeries.cpp │ │ ├── MarmotUtility.cpp │ │ ├── MarmotVoigt.cpp │ │ └── MenetreyWillam.cpp │ │ ├── test.cmake │ │ └── test │ │ ├── TestHaighWestergaard.cpp │ │ ├── TestMarmotElasticity.cpp │ │ ├── TestMarmotGeostaticStress.cpp │ │ ├── TestMarmotKelvinChain.cpp │ │ ├── TestMarmotKinematics.cpp │ │ ├── TestMarmotLocalization.cpp │ │ ├── TestMarmotLowerDimensionalStress.cpp │ │ ├── TestMarmotPronySeries.cpp │ │ ├── TestMarmotStateVarVectorManager.cpp │ │ ├── TestMarmotViscoelasticity.cpp │ │ ├── TestMarmotVoigt.cpp │ │ ├── TestMenetreyWillam.cpp │ │ ├── TestNewmarkBetaIntegrator.cpp │ │ └── TestYieldSurfaceCombinationManager.cpp ├── elements │ ├── DisplacementFiniteElement │ │ ├── include │ │ │ └── Marmot │ │ │ │ └── DisplacementFiniteElement.h │ │ ├── module.cmake │ │ ├── src │ │ │ └── DisplacementFiniteElementRegistration.cpp │ │ ├── test.cmake │ │ └── test │ │ │ └── TestDisplacementFiniteElement.cpp │ ├── DisplacementFiniteStrainULElement │ │ ├── README.md │ │ ├── include │ │ │ └── Marmot │ │ │ │ └── DisplacementFiniteStrainULElement.h │ │ ├── module.cmake │ │ └── src │ │ │ └── DisplacementFiniteStrainULElement.cpp │ └── place_your_elements_here ├── materialpoints │ └── place_your_materialpoints_here ├── materials │ ├── ADLinearElastic │ │ ├── README.md │ │ ├── include │ │ │ └── Marmot │ │ │ │ └── ADLinearElastic.h │ │ ├── module.cmake │ │ ├── src │ │ │ ├── ADLinearElastic.cpp │ │ │ └── ADLinearElasticRegistration.cpp │ │ ├── test.cmake │ │ └── test │ │ │ └── test.cpp │ ├── ADVonMises │ │ ├── README.md │ │ ├── include │ │ │ └── Marmot │ │ │ │ ├── ADVonMises.h │ │ │ │ └── ADVonMisesConstants.h │ │ ├── module.cmake │ │ ├── src │ │ │ ├── ADVonMises.cpp │ │ │ └── ADVonMisesRegistration.cpp │ │ ├── test.cmake │ │ └── test │ │ │ └── test.cpp │ ├── B4 │ │ ├── README.md │ │ ├── include │ │ │ └── Marmot │ │ │ │ ├── B4.h │ │ │ │ ├── B4Shrinkage.h │ │ │ │ └── MarmotSolidification.h │ │ ├── module.cmake │ │ ├── src │ │ │ ├── B4.cpp │ │ │ ├── B4Registration.cpp │ │ │ ├── B4Shrinkage.cpp │ │ │ └── MarmotSolidification.cpp │ │ ├── test.cmake │ │ └── test │ │ │ └── test.cpp │ ├── CompressibleNeoHooke │ │ ├── README.md │ │ ├── include │ │ │ └── Marmot │ │ │ │ └── CompressibleNeoHooke.h │ │ ├── module.cmake │ │ ├── src │ │ │ ├── CompressibleNeoHooke.cpp │ │ │ └── CompressibleNeoHookeRegistration.cpp │ │ ├── test.cmake │ │ └── test │ │ │ └── test.cpp │ ├── FiniteStrainJ2Plasticity │ │ ├── README.md │ │ ├── include │ │ │ └── Marmot │ │ │ │ └── FiniteStrainJ2Plasticity.h │ │ ├── module.cmake │ │ ├── src │ │ │ ├── FiniteStrainJ2Plasticity.cpp │ │ │ └── FiniteStrainJ2PlasticityRegistration.cpp │ │ ├── test.cmake │ │ └── test │ │ │ └── test.cpp │ ├── LinearElastic │ │ ├── README.md │ │ ├── include │ │ │ └── Marmot │ │ │ │ └── LinearElastic.h │ │ ├── module.cmake │ │ ├── src │ │ │ ├── LinearElastic.cpp │ │ │ └── LinearElasticRegistration.cpp │ │ ├── test.cmake │ │ └── test │ │ │ └── test.cpp │ ├── LinearViscoelasticOrthotropicPowerLaw │ │ ├── README.md │ │ ├── include │ │ │ └── Marmot │ │ │ │ └── LinearViscoelasticOrthotropicPowerLaw.h │ │ ├── module.cmake │ │ ├── src │ │ │ ├── LinearViscoelasticOrthotropicPowerLaw.cpp │ │ │ └── LinearViscoelasticOrthotropicPowerLawRegistration.cpp │ │ ├── test.cmake │ │ └── test │ │ │ └── test.cpp │ ├── LinearViscoelasticPowerLaw │ │ ├── README.md │ │ ├── include │ │ │ └── Marmot │ │ │ │ └── LinearViscoelasticPowerLaw.h │ │ ├── module.cmake │ │ ├── src │ │ │ ├── LinearViscoelasticPowerLaw.cpp │ │ │ └── LinearViscoelasticPowerLawRegistration.cpp │ │ ├── test.cmake │ │ └── test │ │ │ └── test.cpp │ ├── VonMises │ │ ├── README.md │ │ ├── include │ │ │ └── Marmot │ │ │ │ ├── VonMises.h │ │ │ │ └── VonMisesConstants.h │ │ ├── module.cmake │ │ ├── src │ │ │ ├── VonMises.cpp │ │ │ └── VonMisesRegistration.cpp │ │ ├── test.cmake │ │ └── test │ │ │ └── test.cpp │ └── place_your_materials_here └── particles │ └── place_your_particles_here ├── scripts ├── buildDocumentation.py ├── pre-commit_setup.py └── projectmanager.py ├── share ├── Marmot_Logo_Schrift_klein.pdf ├── MultiJoint_Rock.gif ├── marmot_logo_avenir.png ├── marmot_logo_schrift_small.png ├── marmot_logo_small.png ├── marmot_transparent.png ├── plane_strain_gmdruckerprager.gif └── truss.gif └── src ├── Marmot.cpp ├── MarmotElement.cpp ├── MarmotJournal.cpp ├── MarmotMaterial.cpp └── MarmotTesting.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/build_ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/.github/workflows/build_ubuntu.yml -------------------------------------------------------------------------------- /.github/workflows/indent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/.github/workflows/indent.yml -------------------------------------------------------------------------------- /.github/workflows/sphinx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/.github/workflows/sphinx.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | */__pycache__ 2 | *.bak 3 | build 4 | doc/doc_out 5 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.zenodo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/.zenodo.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/README.md -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /doc/_static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/doc/_static/css/custom.css -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/mainpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/doc/mainpage.md -------------------------------------------------------------------------------- /doc/pages/codedocumentation/finiteelementcore.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/doc/pages/codedocumentation/finiteelementcore.rst -------------------------------------------------------------------------------- /doc/pages/codedocumentation/finitestrainmechanicscore.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/doc/pages/codedocumentation/finitestrainmechanicscore.rst -------------------------------------------------------------------------------- /doc/pages/codedocumentation/mathcore.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/doc/pages/codedocumentation/mathcore.rst -------------------------------------------------------------------------------- /doc/pages/codedocumentation/mechanicscore.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/doc/pages/codedocumentation/mechanicscore.rst -------------------------------------------------------------------------------- /doc/pages/codedocumentation/toplevel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/doc/pages/codedocumentation/toplevel.rst -------------------------------------------------------------------------------- /doc/pages/documentation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/doc/pages/documentation.rst -------------------------------------------------------------------------------- /doc/pages/features.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/doc/pages/features.rst -------------------------------------------------------------------------------- /doc/pages/features/adlinearelastic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/doc/pages/features/adlinearelastic.rst -------------------------------------------------------------------------------- /doc/pages/features/advonmises.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/doc/pages/features/advonmises.rst -------------------------------------------------------------------------------- /doc/pages/features/b4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/doc/pages/features/b4.rst -------------------------------------------------------------------------------- /doc/pages/features/compressibleneohooke.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/doc/pages/features/compressibleneohooke.rst -------------------------------------------------------------------------------- /doc/pages/features/displacementfiniteelement.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/doc/pages/features/displacementfiniteelement.rst -------------------------------------------------------------------------------- /doc/pages/features/displacementfinitestrainelement.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/doc/pages/features/displacementfinitestrainelement.rst -------------------------------------------------------------------------------- /doc/pages/features/elements.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/doc/pages/features/elements.rst -------------------------------------------------------------------------------- /doc/pages/features/finitestrainj2plasticity.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/doc/pages/features/finitestrainj2plasticity.rst -------------------------------------------------------------------------------- /doc/pages/features/linearelastic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/doc/pages/features/linearelastic.rst -------------------------------------------------------------------------------- /doc/pages/features/linearviscoelasticorthotropicpowerlaw.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/doc/pages/features/linearviscoelasticorthotropicpowerlaw.rst -------------------------------------------------------------------------------- /doc/pages/features/linearviscoelasticpowerlaw.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/doc/pages/features/linearviscoelasticpowerlaw.rst -------------------------------------------------------------------------------- /doc/pages/features/materialpointsolverhypoelastic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/doc/pages/features/materialpointsolverhypoelastic.rst -------------------------------------------------------------------------------- /doc/pages/features/materials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/doc/pages/features/materials.rst -------------------------------------------------------------------------------- /doc/pages/features/solvers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/doc/pages/features/solvers.rst -------------------------------------------------------------------------------- /doc/pages/features/vonmises.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/doc/pages/features/vonmises.rst -------------------------------------------------------------------------------- /doc/pages/features/vonmises_hardening.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/doc/pages/features/vonmises_hardening.svg -------------------------------------------------------------------------------- /doc/pages/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/doc/pages/installation.rst -------------------------------------------------------------------------------- /doc/pages/interfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/doc/pages/interfaces.md -------------------------------------------------------------------------------- /doc/pages/publications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/doc/pages/publications.md -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/doc/requirements.txt -------------------------------------------------------------------------------- /include/Marmot/Marmot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/include/Marmot/Marmot.h -------------------------------------------------------------------------------- /include/Marmot/MarmotElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/include/Marmot/MarmotElement.h -------------------------------------------------------------------------------- /include/Marmot/MarmotElementProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/include/Marmot/MarmotElementProperty.h -------------------------------------------------------------------------------- /include/Marmot/MarmotJournal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/include/Marmot/MarmotJournal.h -------------------------------------------------------------------------------- /include/Marmot/MarmotMaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/include/Marmot/MarmotMaterial.h -------------------------------------------------------------------------------- /include/Marmot/MarmotMaterialRegistrationHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/include/Marmot/MarmotMaterialRegistrationHelper.h -------------------------------------------------------------------------------- /include/Marmot/MarmotTesting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/include/Marmot/MarmotTesting.h -------------------------------------------------------------------------------- /include/Marmot/MarmotUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/include/Marmot/MarmotUtils.h -------------------------------------------------------------------------------- /modules/cellelements/place_your_cellelements_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/cells/place_your_cells_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/core/MarmotFiniteElementCore/include/Marmot/MarmotDofLayoutTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotFiniteElementCore/include/Marmot/MarmotDofLayoutTools.h -------------------------------------------------------------------------------- /modules/core/MarmotFiniteElementCore/include/Marmot/MarmotEnhancedAssumedStrain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotFiniteElementCore/include/Marmot/MarmotEnhancedAssumedStrain.h -------------------------------------------------------------------------------- /modules/core/MarmotFiniteElementCore/include/Marmot/MarmotFiniteElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotFiniteElementCore/include/Marmot/MarmotFiniteElement.h -------------------------------------------------------------------------------- /modules/core/MarmotFiniteElementCore/include/Marmot/MarmotFiniteElementSpatialWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotFiniteElementCore/include/Marmot/MarmotFiniteElementSpatialWrapper.h -------------------------------------------------------------------------------- /modules/core/MarmotFiniteElementCore/include/Marmot/MarmotGeometryElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotFiniteElementCore/include/Marmot/MarmotGeometryElement.h -------------------------------------------------------------------------------- /modules/core/MarmotFiniteElementCore/module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotFiniteElementCore/module.cmake -------------------------------------------------------------------------------- /modules/core/MarmotFiniteElementCore/src/MarmotDofLayoutTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotFiniteElementCore/src/MarmotDofLayoutTools.cpp -------------------------------------------------------------------------------- /modules/core/MarmotFiniteElementCore/src/MarmotEnhancedAssumedStrain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotFiniteElementCore/src/MarmotEnhancedAssumedStrain.cpp -------------------------------------------------------------------------------- /modules/core/MarmotFiniteElementCore/src/MarmotFiniteElement1D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotFiniteElementCore/src/MarmotFiniteElement1D.cpp -------------------------------------------------------------------------------- /modules/core/MarmotFiniteElementCore/src/MarmotFiniteElement2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotFiniteElementCore/src/MarmotFiniteElement2D.cpp -------------------------------------------------------------------------------- /modules/core/MarmotFiniteElementCore/src/MarmotFiniteElement3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotFiniteElementCore/src/MarmotFiniteElement3D.cpp -------------------------------------------------------------------------------- /modules/core/MarmotFiniteElementCore/src/MarmotFiniteElementBasic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotFiniteElementCore/src/MarmotFiniteElementBasic.cpp -------------------------------------------------------------------------------- /modules/core/MarmotFiniteElementCore/src/MarmotFiniteElementBoundary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotFiniteElementCore/src/MarmotFiniteElementBoundary.cpp -------------------------------------------------------------------------------- /modules/core/MarmotFiniteElementCore/src/MarmotFiniteElementSpatialWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotFiniteElementCore/src/MarmotFiniteElementSpatialWrapper.cpp -------------------------------------------------------------------------------- /modules/core/MarmotFiniteElementCore/src/MarmotGeometryElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotFiniteElementCore/src/MarmotGeometryElement.cpp -------------------------------------------------------------------------------- /modules/core/MarmotFiniteStrainMechanicsCore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotFiniteStrainMechanicsCore/README.md -------------------------------------------------------------------------------- /modules/core/MarmotFiniteStrainMechanicsCore/include/Marmot/MarmotDeformationMeasures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotFiniteStrainMechanicsCore/include/Marmot/MarmotDeformationMeasures.h -------------------------------------------------------------------------------- /modules/core/MarmotFiniteStrainMechanicsCore/include/Marmot/MarmotEnergyDensityFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotFiniteStrainMechanicsCore/include/Marmot/MarmotEnergyDensityFunctions.h -------------------------------------------------------------------------------- /modules/core/MarmotFiniteStrainMechanicsCore/include/Marmot/MarmotFiniteStrainPlasticity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotFiniteStrainMechanicsCore/include/Marmot/MarmotFiniteStrainPlasticity.h -------------------------------------------------------------------------------- /modules/core/MarmotFiniteStrainMechanicsCore/include/Marmot/MarmotMaterialFiniteStrain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotFiniteStrainMechanicsCore/include/Marmot/MarmotMaterialFiniteStrain.h -------------------------------------------------------------------------------- /modules/core/MarmotFiniteStrainMechanicsCore/include/Marmot/MarmotStressMeasures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotFiniteStrainMechanicsCore/include/Marmot/MarmotStressMeasures.h -------------------------------------------------------------------------------- /modules/core/MarmotFiniteStrainMechanicsCore/module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotFiniteStrainMechanicsCore/module.cmake -------------------------------------------------------------------------------- /modules/core/MarmotFiniteStrainMechanicsCore/src/MarmotFiniteStrainPlasticity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotFiniteStrainMechanicsCore/src/MarmotFiniteStrainPlasticity.cpp -------------------------------------------------------------------------------- /modules/core/MarmotFiniteStrainMechanicsCore/src/MarmotMaterialFiniteStrain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotFiniteStrainMechanicsCore/src/MarmotMaterialFiniteStrain.cpp -------------------------------------------------------------------------------- /modules/core/MarmotFiniteStrainMechanicsCore/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotFiniteStrainMechanicsCore/test.cmake -------------------------------------------------------------------------------- /modules/core/MarmotFiniteStrainMechanicsCore/test/TestMarmotDeformationMeasures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotFiniteStrainMechanicsCore/test/TestMarmotDeformationMeasures.cpp -------------------------------------------------------------------------------- /modules/core/MarmotFiniteStrainMechanicsCore/test/TestMarmotEnergyDensityFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotFiniteStrainMechanicsCore/test/TestMarmotEnergyDensityFunctions.cpp -------------------------------------------------------------------------------- /modules/core/MarmotFiniteStrainMechanicsCore/test/TestMarmotFiniteStrainPlasticity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotFiniteStrainMechanicsCore/test/TestMarmotFiniteStrainPlasticity.cpp -------------------------------------------------------------------------------- /modules/core/MarmotFiniteStrainMechanicsCore/test/TestMarmotStressMeasures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotFiniteStrainMechanicsCore/test/TestMarmotStressMeasures.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMathCore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMathCore/README.md -------------------------------------------------------------------------------- /modules/core/MarmotMathCore/include/Marmot/MarmotAutomaticDifferentiation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMathCore/include/Marmot/MarmotAutomaticDifferentiation.h -------------------------------------------------------------------------------- /modules/core/MarmotMathCore/include/Marmot/MarmotAutomaticDifferentiationForFastor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMathCore/include/Marmot/MarmotAutomaticDifferentiationForFastor.h -------------------------------------------------------------------------------- /modules/core/MarmotMathCore/include/Marmot/MarmotConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMathCore/include/Marmot/MarmotConstants.h -------------------------------------------------------------------------------- /modules/core/MarmotMathCore/include/Marmot/MarmotFastorTensorBasics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMathCore/include/Marmot/MarmotFastorTensorBasics.h -------------------------------------------------------------------------------- /modules/core/MarmotMathCore/include/Marmot/MarmotMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMathCore/include/Marmot/MarmotMath.h -------------------------------------------------------------------------------- /modules/core/MarmotMathCore/include/Marmot/MarmotNumericalDifferentiation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMathCore/include/Marmot/MarmotNumericalDifferentiation.h -------------------------------------------------------------------------------- /modules/core/MarmotMathCore/include/Marmot/MarmotNumericalDifferentiationForFastor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMathCore/include/Marmot/MarmotNumericalDifferentiationForFastor.h -------------------------------------------------------------------------------- /modules/core/MarmotMathCore/include/Marmot/MarmotNumericalIntegration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMathCore/include/Marmot/MarmotNumericalIntegration.h -------------------------------------------------------------------------------- /modules/core/MarmotMathCore/include/Marmot/MarmotTensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMathCore/include/Marmot/MarmotTensor.h -------------------------------------------------------------------------------- /modules/core/MarmotMathCore/include/Marmot/MarmotTensorExponential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMathCore/include/Marmot/MarmotTensorExponential.h -------------------------------------------------------------------------------- /modules/core/MarmotMathCore/include/Marmot/MarmotTypedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMathCore/include/Marmot/MarmotTypedefs.h -------------------------------------------------------------------------------- /modules/core/MarmotMathCore/include/Marmot/NewtonConvergenceChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMathCore/include/Marmot/NewtonConvergenceChecker.h -------------------------------------------------------------------------------- /modules/core/MarmotMathCore/module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMathCore/module.cmake -------------------------------------------------------------------------------- /modules/core/MarmotMathCore/src/MarmotAutomaticDifferentiation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMathCore/src/MarmotAutomaticDifferentiation.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMathCore/src/MarmotMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMathCore/src/MarmotMath.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMathCore/src/MarmotNumericalDifferentiation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMathCore/src/MarmotNumericalDifferentiation.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMathCore/src/MarmotNumericalIntegration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMathCore/src/MarmotNumericalIntegration.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMathCore/src/MarmotTensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMathCore/src/MarmotTensor.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMathCore/src/NewtonConvergenceChecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMathCore/src/NewtonConvergenceChecker.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMathCore/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMathCore/test.cmake -------------------------------------------------------------------------------- /modules/core/MarmotMathCore/test/TestMarmotAutomaticDifferentiation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMathCore/test/TestMarmotAutomaticDifferentiation.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMathCore/test/TestMarmotAutomaticDifferentiationForFastor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMathCore/test/TestMarmotAutomaticDifferentiationForFastor.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMathCore/test/TestMarmotMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMathCore/test/TestMarmotMath.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMathCore/test/TestMarmotNumericalDifferentiation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMathCore/test/TestMarmotNumericalDifferentiation.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMathCore/test/TestMarmotNumericalDifferentiationForFastor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMathCore/test/TestMarmotNumericalDifferentiationForFastor.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMathCore/test/TestMarmotNumericalIntegration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMathCore/test/TestMarmotNumericalIntegration.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMathCore/test/TestMarmotTensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMathCore/test/TestMarmotTensor.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMathCore/test/TestMarmotTensorExponential.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMathCore/test/TestMarmotTensorExponential.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMathCore/test/TestNewtonConvergenceChecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMathCore/test/TestNewtonConvergenceChecker.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/README.md -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/include/Marmot/AdaptiveSubstepper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/include/Marmot/AdaptiveSubstepper.h -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/include/Marmot/AdaptiveSubstepperExplicit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/include/Marmot/AdaptiveSubstepperExplicit.h -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/include/Marmot/DuvautLionsViscosity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/include/Marmot/DuvautLionsViscosity.h -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/include/Marmot/HaighWestergaard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/include/Marmot/HaighWestergaard.h -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/include/Marmot/HughesWinget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/include/Marmot/HughesWinget.h -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/include/Marmot/MarmotElasticity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/include/Marmot/MarmotElasticity.h -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/include/Marmot/MarmotGeostaticStress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/include/Marmot/MarmotGeostaticStress.h -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/include/Marmot/MarmotKelvinChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/include/Marmot/MarmotKelvinChain.h -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/include/Marmot/MarmotKinematics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/include/Marmot/MarmotKinematics.h -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/include/Marmot/MarmotLocalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/include/Marmot/MarmotLocalization.h -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/include/Marmot/MarmotLowerDimensionalStress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/include/Marmot/MarmotLowerDimensionalStress.h -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/include/Marmot/MarmotMaterialGradientEnhancedHypoElastic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/include/Marmot/MarmotMaterialGradientEnhancedHypoElastic.h -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/include/Marmot/MarmotMaterialGradientEnhancedMechanical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/include/Marmot/MarmotMaterialGradientEnhancedMechanical.h -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/include/Marmot/MarmotMaterialHyperElastic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/include/Marmot/MarmotMaterialHyperElastic.h -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/include/Marmot/MarmotMaterialHypoElastic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/include/Marmot/MarmotMaterialHypoElastic.h -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/include/Marmot/MarmotMaterialHypoElasticAD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/include/Marmot/MarmotMaterialHypoElasticAD.h -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/include/Marmot/MarmotMaterialMechanical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/include/Marmot/MarmotMaterialMechanical.h -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/include/Marmot/MarmotMaterialPointSolverHypoElastic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/include/Marmot/MarmotMaterialPointSolverHypoElastic.h -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/include/Marmot/MarmotPronySeries.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/include/Marmot/MarmotPronySeries.h -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/include/Marmot/MarmotStateVarVectorManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/include/Marmot/MarmotStateVarVectorManager.h -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/include/Marmot/MarmotUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/include/Marmot/MarmotUtility.h -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/include/Marmot/MarmotViscoelasticity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/include/Marmot/MarmotViscoelasticity.h -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/include/Marmot/MarmotVoigt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/include/Marmot/MarmotVoigt.h -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/include/Marmot/MenetreyWillam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/include/Marmot/MenetreyWillam.h -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/include/Marmot/NewmarkBetaIntegrator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/include/Marmot/NewmarkBetaIntegrator.h -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/include/Marmot/PerezFougetSubstepperExplicitMarkII.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/include/Marmot/PerezFougetSubstepperExplicitMarkII.h -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/include/Marmot/PerezFougetSubstepperMarkII.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/include/Marmot/PerezFougetSubstepperMarkII.h -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/include/Marmot/PerezFougetSubstepperTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/include/Marmot/PerezFougetSubstepperTime.h -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/include/Marmot/YieldSurfaceCombinationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/include/Marmot/YieldSurfaceCombinationManager.h -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/module.cmake -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/src/HaighWestergaard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/src/HaighWestergaard.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/src/HughesWinget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/src/HughesWinget.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/src/MarmotElasticity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/src/MarmotElasticity.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/src/MarmotGeostaticStress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/src/MarmotGeostaticStress.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/src/MarmotKelvinChain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/src/MarmotKelvinChain.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/src/MarmotKinematics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/src/MarmotKinematics.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/src/MarmotLocalization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/src/MarmotLocalization.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/src/MarmotLowerDimensionalStress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/src/MarmotLowerDimensionalStress.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/src/MarmotMaterialHyperElastic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/src/MarmotMaterialHyperElastic.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/src/MarmotMaterialHypoElastic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/src/MarmotMaterialHypoElastic.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/src/MarmotMaterialHypoElasticAD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/src/MarmotMaterialHypoElasticAD.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/src/MarmotMaterialHypoElasticNonLocal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/src/MarmotMaterialHypoElasticNonLocal.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/src/MarmotMaterialMechanical.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/src/MarmotMaterialMechanical.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/src/MarmotMaterialPointSolverHypoElastic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/src/MarmotMaterialPointSolverHypoElastic.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/src/MarmotPronySeries.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/src/MarmotPronySeries.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/src/MarmotUtility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/src/MarmotUtility.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/src/MarmotVoigt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/src/MarmotVoigt.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/src/MenetreyWillam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/src/MenetreyWillam.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/test.cmake -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/test/TestHaighWestergaard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/test/TestHaighWestergaard.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/test/TestMarmotElasticity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/test/TestMarmotElasticity.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/test/TestMarmotGeostaticStress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/test/TestMarmotGeostaticStress.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/test/TestMarmotKelvinChain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/test/TestMarmotKelvinChain.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/test/TestMarmotKinematics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/test/TestMarmotKinematics.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/test/TestMarmotLocalization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/test/TestMarmotLocalization.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/test/TestMarmotLowerDimensionalStress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/test/TestMarmotLowerDimensionalStress.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/test/TestMarmotPronySeries.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/test/TestMarmotPronySeries.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/test/TestMarmotStateVarVectorManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/test/TestMarmotStateVarVectorManager.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/test/TestMarmotViscoelasticity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/test/TestMarmotViscoelasticity.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/test/TestMarmotVoigt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/test/TestMarmotVoigt.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/test/TestMenetreyWillam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/test/TestMenetreyWillam.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/test/TestNewmarkBetaIntegrator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/test/TestNewmarkBetaIntegrator.cpp -------------------------------------------------------------------------------- /modules/core/MarmotMechanicsCore/test/TestYieldSurfaceCombinationManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/core/MarmotMechanicsCore/test/TestYieldSurfaceCombinationManager.cpp -------------------------------------------------------------------------------- /modules/elements/DisplacementFiniteElement/include/Marmot/DisplacementFiniteElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/elements/DisplacementFiniteElement/include/Marmot/DisplacementFiniteElement.h -------------------------------------------------------------------------------- /modules/elements/DisplacementFiniteElement/module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/elements/DisplacementFiniteElement/module.cmake -------------------------------------------------------------------------------- /modules/elements/DisplacementFiniteElement/src/DisplacementFiniteElementRegistration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/elements/DisplacementFiniteElement/src/DisplacementFiniteElementRegistration.cpp -------------------------------------------------------------------------------- /modules/elements/DisplacementFiniteElement/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/elements/DisplacementFiniteElement/test.cmake -------------------------------------------------------------------------------- /modules/elements/DisplacementFiniteElement/test/TestDisplacementFiniteElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/elements/DisplacementFiniteElement/test/TestDisplacementFiniteElement.cpp -------------------------------------------------------------------------------- /modules/elements/DisplacementFiniteStrainULElement/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/elements/DisplacementFiniteStrainULElement/README.md -------------------------------------------------------------------------------- /modules/elements/DisplacementFiniteStrainULElement/include/Marmot/DisplacementFiniteStrainULElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/elements/DisplacementFiniteStrainULElement/include/Marmot/DisplacementFiniteStrainULElement.h -------------------------------------------------------------------------------- /modules/elements/DisplacementFiniteStrainULElement/module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/elements/DisplacementFiniteStrainULElement/module.cmake -------------------------------------------------------------------------------- /modules/elements/DisplacementFiniteStrainULElement/src/DisplacementFiniteStrainULElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/elements/DisplacementFiniteStrainULElement/src/DisplacementFiniteStrainULElement.cpp -------------------------------------------------------------------------------- /modules/elements/place_your_elements_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/materialpoints/place_your_materialpoints_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/materials/ADLinearElastic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/ADLinearElastic/README.md -------------------------------------------------------------------------------- /modules/materials/ADLinearElastic/include/Marmot/ADLinearElastic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/ADLinearElastic/include/Marmot/ADLinearElastic.h -------------------------------------------------------------------------------- /modules/materials/ADLinearElastic/module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/ADLinearElastic/module.cmake -------------------------------------------------------------------------------- /modules/materials/ADLinearElastic/src/ADLinearElastic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/ADLinearElastic/src/ADLinearElastic.cpp -------------------------------------------------------------------------------- /modules/materials/ADLinearElastic/src/ADLinearElasticRegistration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/ADLinearElastic/src/ADLinearElasticRegistration.cpp -------------------------------------------------------------------------------- /modules/materials/ADLinearElastic/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/ADLinearElastic/test.cmake -------------------------------------------------------------------------------- /modules/materials/ADLinearElastic/test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/ADLinearElastic/test/test.cpp -------------------------------------------------------------------------------- /modules/materials/ADVonMises/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/ADVonMises/README.md -------------------------------------------------------------------------------- /modules/materials/ADVonMises/include/Marmot/ADVonMises.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/ADVonMises/include/Marmot/ADVonMises.h -------------------------------------------------------------------------------- /modules/materials/ADVonMises/include/Marmot/ADVonMisesConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/ADVonMises/include/Marmot/ADVonMisesConstants.h -------------------------------------------------------------------------------- /modules/materials/ADVonMises/module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/ADVonMises/module.cmake -------------------------------------------------------------------------------- /modules/materials/ADVonMises/src/ADVonMises.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/ADVonMises/src/ADVonMises.cpp -------------------------------------------------------------------------------- /modules/materials/ADVonMises/src/ADVonMisesRegistration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/ADVonMises/src/ADVonMisesRegistration.cpp -------------------------------------------------------------------------------- /modules/materials/ADVonMises/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/ADVonMises/test.cmake -------------------------------------------------------------------------------- /modules/materials/ADVonMises/test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/ADVonMises/test/test.cpp -------------------------------------------------------------------------------- /modules/materials/B4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/B4/README.md -------------------------------------------------------------------------------- /modules/materials/B4/include/Marmot/B4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/B4/include/Marmot/B4.h -------------------------------------------------------------------------------- /modules/materials/B4/include/Marmot/B4Shrinkage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/B4/include/Marmot/B4Shrinkage.h -------------------------------------------------------------------------------- /modules/materials/B4/include/Marmot/MarmotSolidification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/B4/include/Marmot/MarmotSolidification.h -------------------------------------------------------------------------------- /modules/materials/B4/module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/B4/module.cmake -------------------------------------------------------------------------------- /modules/materials/B4/src/B4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/B4/src/B4.cpp -------------------------------------------------------------------------------- /modules/materials/B4/src/B4Registration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/B4/src/B4Registration.cpp -------------------------------------------------------------------------------- /modules/materials/B4/src/B4Shrinkage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/B4/src/B4Shrinkage.cpp -------------------------------------------------------------------------------- /modules/materials/B4/src/MarmotSolidification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/B4/src/MarmotSolidification.cpp -------------------------------------------------------------------------------- /modules/materials/B4/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/B4/test.cmake -------------------------------------------------------------------------------- /modules/materials/B4/test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/B4/test/test.cpp -------------------------------------------------------------------------------- /modules/materials/CompressibleNeoHooke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/CompressibleNeoHooke/README.md -------------------------------------------------------------------------------- /modules/materials/CompressibleNeoHooke/include/Marmot/CompressibleNeoHooke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/CompressibleNeoHooke/include/Marmot/CompressibleNeoHooke.h -------------------------------------------------------------------------------- /modules/materials/CompressibleNeoHooke/module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/CompressibleNeoHooke/module.cmake -------------------------------------------------------------------------------- /modules/materials/CompressibleNeoHooke/src/CompressibleNeoHooke.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/CompressibleNeoHooke/src/CompressibleNeoHooke.cpp -------------------------------------------------------------------------------- /modules/materials/CompressibleNeoHooke/src/CompressibleNeoHookeRegistration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/CompressibleNeoHooke/src/CompressibleNeoHookeRegistration.cpp -------------------------------------------------------------------------------- /modules/materials/CompressibleNeoHooke/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/CompressibleNeoHooke/test.cmake -------------------------------------------------------------------------------- /modules/materials/CompressibleNeoHooke/test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/CompressibleNeoHooke/test/test.cpp -------------------------------------------------------------------------------- /modules/materials/FiniteStrainJ2Plasticity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/FiniteStrainJ2Plasticity/README.md -------------------------------------------------------------------------------- /modules/materials/FiniteStrainJ2Plasticity/include/Marmot/FiniteStrainJ2Plasticity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/FiniteStrainJ2Plasticity/include/Marmot/FiniteStrainJ2Plasticity.h -------------------------------------------------------------------------------- /modules/materials/FiniteStrainJ2Plasticity/module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/FiniteStrainJ2Plasticity/module.cmake -------------------------------------------------------------------------------- /modules/materials/FiniteStrainJ2Plasticity/src/FiniteStrainJ2Plasticity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/FiniteStrainJ2Plasticity/src/FiniteStrainJ2Plasticity.cpp -------------------------------------------------------------------------------- /modules/materials/FiniteStrainJ2Plasticity/src/FiniteStrainJ2PlasticityRegistration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/FiniteStrainJ2Plasticity/src/FiniteStrainJ2PlasticityRegistration.cpp -------------------------------------------------------------------------------- /modules/materials/FiniteStrainJ2Plasticity/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/FiniteStrainJ2Plasticity/test.cmake -------------------------------------------------------------------------------- /modules/materials/FiniteStrainJ2Plasticity/test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/FiniteStrainJ2Plasticity/test/test.cpp -------------------------------------------------------------------------------- /modules/materials/LinearElastic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/LinearElastic/README.md -------------------------------------------------------------------------------- /modules/materials/LinearElastic/include/Marmot/LinearElastic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/LinearElastic/include/Marmot/LinearElastic.h -------------------------------------------------------------------------------- /modules/materials/LinearElastic/module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/LinearElastic/module.cmake -------------------------------------------------------------------------------- /modules/materials/LinearElastic/src/LinearElastic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/LinearElastic/src/LinearElastic.cpp -------------------------------------------------------------------------------- /modules/materials/LinearElastic/src/LinearElasticRegistration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/LinearElastic/src/LinearElasticRegistration.cpp -------------------------------------------------------------------------------- /modules/materials/LinearElastic/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/LinearElastic/test.cmake -------------------------------------------------------------------------------- /modules/materials/LinearElastic/test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/LinearElastic/test/test.cpp -------------------------------------------------------------------------------- /modules/materials/LinearViscoelasticOrthotropicPowerLaw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/LinearViscoelasticOrthotropicPowerLaw/README.md -------------------------------------------------------------------------------- /modules/materials/LinearViscoelasticOrthotropicPowerLaw/include/Marmot/LinearViscoelasticOrthotropicPowerLaw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/LinearViscoelasticOrthotropicPowerLaw/include/Marmot/LinearViscoelasticOrthotropicPowerLaw.h -------------------------------------------------------------------------------- /modules/materials/LinearViscoelasticOrthotropicPowerLaw/module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/LinearViscoelasticOrthotropicPowerLaw/module.cmake -------------------------------------------------------------------------------- /modules/materials/LinearViscoelasticOrthotropicPowerLaw/src/LinearViscoelasticOrthotropicPowerLaw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/LinearViscoelasticOrthotropicPowerLaw/src/LinearViscoelasticOrthotropicPowerLaw.cpp -------------------------------------------------------------------------------- /modules/materials/LinearViscoelasticOrthotropicPowerLaw/src/LinearViscoelasticOrthotropicPowerLawRegistration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/LinearViscoelasticOrthotropicPowerLaw/src/LinearViscoelasticOrthotropicPowerLawRegistration.cpp -------------------------------------------------------------------------------- /modules/materials/LinearViscoelasticOrthotropicPowerLaw/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/LinearViscoelasticOrthotropicPowerLaw/test.cmake -------------------------------------------------------------------------------- /modules/materials/LinearViscoelasticOrthotropicPowerLaw/test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/LinearViscoelasticOrthotropicPowerLaw/test/test.cpp -------------------------------------------------------------------------------- /modules/materials/LinearViscoelasticPowerLaw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/LinearViscoelasticPowerLaw/README.md -------------------------------------------------------------------------------- /modules/materials/LinearViscoelasticPowerLaw/include/Marmot/LinearViscoelasticPowerLaw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/LinearViscoelasticPowerLaw/include/Marmot/LinearViscoelasticPowerLaw.h -------------------------------------------------------------------------------- /modules/materials/LinearViscoelasticPowerLaw/module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/LinearViscoelasticPowerLaw/module.cmake -------------------------------------------------------------------------------- /modules/materials/LinearViscoelasticPowerLaw/src/LinearViscoelasticPowerLaw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/LinearViscoelasticPowerLaw/src/LinearViscoelasticPowerLaw.cpp -------------------------------------------------------------------------------- /modules/materials/LinearViscoelasticPowerLaw/src/LinearViscoelasticPowerLawRegistration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/LinearViscoelasticPowerLaw/src/LinearViscoelasticPowerLawRegistration.cpp -------------------------------------------------------------------------------- /modules/materials/LinearViscoelasticPowerLaw/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/LinearViscoelasticPowerLaw/test.cmake -------------------------------------------------------------------------------- /modules/materials/LinearViscoelasticPowerLaw/test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/LinearViscoelasticPowerLaw/test/test.cpp -------------------------------------------------------------------------------- /modules/materials/VonMises/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/VonMises/README.md -------------------------------------------------------------------------------- /modules/materials/VonMises/include/Marmot/VonMises.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/VonMises/include/Marmot/VonMises.h -------------------------------------------------------------------------------- /modules/materials/VonMises/include/Marmot/VonMisesConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/VonMises/include/Marmot/VonMisesConstants.h -------------------------------------------------------------------------------- /modules/materials/VonMises/module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/VonMises/module.cmake -------------------------------------------------------------------------------- /modules/materials/VonMises/src/VonMises.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/VonMises/src/VonMises.cpp -------------------------------------------------------------------------------- /modules/materials/VonMises/src/VonMisesRegistration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/VonMises/src/VonMisesRegistration.cpp -------------------------------------------------------------------------------- /modules/materials/VonMises/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/VonMises/test.cmake -------------------------------------------------------------------------------- /modules/materials/VonMises/test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/modules/materials/VonMises/test/test.cpp -------------------------------------------------------------------------------- /modules/materials/place_your_materials_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/particles/place_your_particles_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/buildDocumentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/scripts/buildDocumentation.py -------------------------------------------------------------------------------- /scripts/pre-commit_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/scripts/pre-commit_setup.py -------------------------------------------------------------------------------- /scripts/projectmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/scripts/projectmanager.py -------------------------------------------------------------------------------- /share/Marmot_Logo_Schrift_klein.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/share/Marmot_Logo_Schrift_klein.pdf -------------------------------------------------------------------------------- /share/MultiJoint_Rock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/share/MultiJoint_Rock.gif -------------------------------------------------------------------------------- /share/marmot_logo_avenir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/share/marmot_logo_avenir.png -------------------------------------------------------------------------------- /share/marmot_logo_schrift_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/share/marmot_logo_schrift_small.png -------------------------------------------------------------------------------- /share/marmot_logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/share/marmot_logo_small.png -------------------------------------------------------------------------------- /share/marmot_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/share/marmot_transparent.png -------------------------------------------------------------------------------- /share/plane_strain_gmdruckerprager.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/share/plane_strain_gmdruckerprager.gif -------------------------------------------------------------------------------- /share/truss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/share/truss.gif -------------------------------------------------------------------------------- /src/Marmot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/src/Marmot.cpp -------------------------------------------------------------------------------- /src/MarmotElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/src/MarmotElement.cpp -------------------------------------------------------------------------------- /src/MarmotJournal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/src/MarmotJournal.cpp -------------------------------------------------------------------------------- /src/MarmotMaterial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/src/MarmotMaterial.cpp -------------------------------------------------------------------------------- /src/MarmotTesting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAteRialMOdelingToolbox/Marmot/HEAD/src/MarmotTesting.cpp --------------------------------------------------------------------------------