├── .clang-format ├── .github └── workflows │ ├── check-tbb.yml │ └── check.yml ├── CMakeLists.txt ├── CONTRIBUTING.md ├── CeCILL-C_V1-en.txt ├── CeCILL-C_V1-fr.txt ├── Doxyfile.in ├── INSTALL-cmake.md ├── LGPL-3.0.txt ├── README.md ├── bindings ├── CMakeLists.txt ├── c │ ├── CMakeLists.txt │ ├── include │ │ ├── CMakeLists.txt │ │ └── MGIS │ │ │ ├── Behaviour │ │ │ ├── Behaviour.h │ │ │ ├── BehaviourData.h │ │ │ ├── BehaviourDataView.h │ │ │ ├── Hypothesis.h │ │ │ ├── Integrate.h │ │ │ ├── MaterialDataManager.h │ │ │ ├── MaterialStateManager.h │ │ │ ├── State.h │ │ │ ├── StateView.h │ │ │ └── Variable.h │ │ │ ├── Config.h │ │ │ ├── Model │ │ │ └── Model.h │ │ │ ├── Status.h │ │ │ └── ThreadPool.h │ ├── src │ │ ├── Behaviour.cxx │ │ ├── BehaviourData.cxx │ │ ├── BehaviourDataView.cxx │ │ ├── CMakeLists.txt │ │ ├── Hypothesis.cxx │ │ ├── Integrate.cxx │ │ ├── MaterialDataManager.cxx │ │ ├── MaterialStateManager.cxx │ │ ├── Model.cxx │ │ ├── State.cxx │ │ ├── Status.cxx │ │ ├── ThreadPool.cxx │ │ └── Variable.cxx │ └── tests │ │ ├── BehaviourDataTest-c.c │ │ ├── BoundsCheckTest-c.c │ │ ├── CMakeLists.txt │ │ ├── ExternalStateVariableTest-c.c │ │ ├── IntegrateTest-c.c │ │ ├── IntegrateTest2-c.c │ │ ├── IntegrateTest3-c.c │ │ ├── IntegrateTest4-c.c │ │ ├── IntegrateTest5-c.c │ │ ├── MFrontGenericBehaviourInterfaceTest-c.c │ │ ├── MFrontGenericBehaviourInterfaceTest2-c.c │ │ ├── MFrontGenericBehaviourInterfaceTest3-c.c │ │ ├── ParameterTest-c.c │ │ ├── StateTest-c.c │ │ └── StateTest2-c.c ├── fenics │ ├── CMakeLists.txt │ ├── include │ │ ├── CMakeLists.txt │ │ └── MGIS │ │ │ └── FEniCS │ │ │ ├── Config-FEniCS.hxx │ │ │ ├── NonLinearMaterial.hxx │ │ │ ├── NonLinearMaterialFunctionBase.hxx │ │ │ ├── NonLinearMaterialTangentOperatorFunction.hxx │ │ │ ├── NonLinearMaterialThermodynamicForcesFunction.hxx │ │ │ ├── NonLinearMechanicalProblem.hxx │ │ │ └── Utils.hxx │ ├── src │ │ ├── CMakeLists.txt │ │ ├── NonLinearMaterial.cxx │ │ ├── NonLinearMaterialFunctionBase.cxx │ │ ├── NonLinearMaterialTangentOperatorFunction.cxx │ │ ├── NonLinearMaterialThermodynamicForcesFunction.cxx │ │ ├── NonLinearMechanicalProblem.cxx │ │ └── Utils.cxx │ └── tests │ │ ├── CMakeLists.txt │ │ ├── data │ │ ├── thick_cylinder.xml │ │ └── thick_cylinder_facet_region.xml │ │ ├── include │ │ └── MGIS │ │ │ └── FEniCS │ │ │ └── FEniCSTestingUtilities.hxx │ │ └── src │ │ ├── CMakeLists.txt │ │ ├── ElasticityUniaxialTensileTestImposedStrain3D-exx.cxx │ │ ├── ElasticityUniaxialTensileTestImposedStrain3D-exy.cxx │ │ ├── ElasticityUniaxialTensileTestImposedStrain3D-exz.cxx │ │ ├── ElasticityUniaxialTensileTestImposedStrain3D-eyy.cxx │ │ ├── ElasticityUniaxialTensileTestImposedStrain3D-eyz.cxx │ │ ├── ElasticityUniaxialTensileTestImposedStrain3D-ezz.cxx │ │ ├── ElasticityUniaxialTensileTestImposedStrainPlaneStress-exx.cxx │ │ ├── ElasticityUniaxialTensileTestImposedStress3D-sxx.cxx │ │ ├── FEniCSTestingUtilities.cxx │ │ ├── MGISSmallStrainFormulation2D.ufl │ │ ├── MGISSmallStrainFormulation3D.ufl │ │ ├── PlasticCylinderExpansion.cxx │ │ ├── PlasticityUniaxialTensileTestImposedStress3D-sxx.cxx │ │ └── StandardElastoPlasticityPlasticityTest11-cyclic_E.cxx ├── fortran │ ├── CMakeLists.txt │ ├── modules │ │ └── CMakeLists.txt │ ├── src │ │ ├── CMakeLists.txt │ │ ├── mgis.f90 │ │ ├── mgis_behaviour.f90 │ │ ├── mgis_fortran_utilities.f90 │ │ └── mgis_model.f90 │ └── tests │ │ ├── BehaviourDataTest-f.f90 │ │ ├── BoundsCheckTest-f.f90 │ │ ├── CMakeLists.txt │ │ ├── ExternalStateVariableTest-f.f90 │ │ ├── IntegrateTest-f.f90 │ │ ├── IntegrateTest2-f.f90 │ │ ├── IntegrateTest3-f.f90 │ │ ├── IntegrateTest4-f.f90 │ │ ├── IntegrateTest5-f.f90 │ │ ├── MFrontGenericBehaviourInterfaceTest-f.f90 │ │ ├── MFrontGenericBehaviourInterfaceTest2-f.f90 │ │ ├── MFrontGenericBehaviourInterfaceTest3-f.f90 │ │ ├── ParameterTest-f.f90 │ │ ├── RotateFunctionsTest-f.f90 │ │ ├── StateTest-f.f90 │ │ ├── StateTest2-f.f90 │ │ ├── mgis_status.f90 │ │ ├── mgis_testing_utilities.c │ │ └── mgis_testing_utilities.f90 ├── julia │ ├── CMakeLists.txt │ ├── include │ │ └── MGIS │ │ │ └── Julia │ │ │ ├── ArrayView.hxx │ │ │ ├── JuliaUtilities.hxx │ │ │ └── JuliaUtilities.ixx │ └── src │ │ ├── Behaviour.cxx │ │ ├── BehaviourData.cxx │ │ ├── BehaviourDataView.cxx │ │ ├── CMakeLists.txt │ │ ├── Hypothesis.cxx │ │ ├── Integrate.cxx │ │ ├── MaterialDataManager.cxx │ │ ├── MaterialStateManager.cxx │ │ ├── State.cxx │ │ ├── ThreadPool.cxx │ │ ├── Variable.cxx │ │ ├── behaviour-module.cxx │ │ └── mgis-module.cxx └── python │ ├── CMakeLists.txt │ ├── include │ └── MGIS │ │ └── Python │ │ └── NumPySupport.hxx │ ├── mgis │ ├── CMakeLists.txt │ ├── __init__-have-tfel.py │ ├── __init__.py │ └── fenics │ │ ├── CMakeLists.txt │ │ ├── __init__.py │ │ ├── gradient_flux.py │ │ ├── nonlinear_material.py │ │ ├── nonlinear_problem.py │ │ └── utils.py │ ├── src │ ├── Behaviour.cxx │ ├── BehaviourData.cxx │ ├── BehaviourDataView.cxx │ ├── BehaviourDescription.cxx │ ├── CMakeLists.txt │ ├── Database.cxx │ ├── FiniteStrainSupport.cxx │ ├── Hypothesis.cxx │ ├── Integrate.cxx │ ├── MaterialDataManager.cxx │ ├── MaterialProperty.cxx │ ├── MaterialStateManager.cxx │ ├── Model.cxx │ ├── NumPySupport.cxx │ ├── State.cxx │ ├── ThreadPool.cxx │ ├── Variable.cxx │ ├── behaviour-module.cxx │ ├── material_property-module.cxx │ ├── mgis-module.cxx │ └── model-module.cxx │ └── tests │ ├── BoundsCheckTest.py │ ├── CMakeLists.txt │ ├── ExternalStateVariableTest.py │ ├── InitializeFunctionTest.py │ ├── IntegrateTest.py │ ├── IntegrateTest2.py │ ├── IntegrateTest3.py │ ├── IntegrateTest4.py │ ├── IntegrateTest5.py │ ├── IntegrateTest6.py │ ├── MFrontGenericBehaviourInterfaceTest.py │ ├── MFrontGenericBehaviourInterfaceTest2.py │ ├── MFrontGenericBehaviourInterfaceTest3.py │ ├── ParameterTest.py │ └── PostProcessingTest.py ├── cmake ├── ToolChain-i586-mingw32msvc.cmake ├── ToolChain-i686-w64-mingw32.cmake ├── ctest2junix.xsl ├── modules │ ├── CodeCoverage.cmake │ ├── FindTFEL.cmake │ ├── OptimizeForArchitecture.cmake │ ├── behaviours.cmake │ ├── clang.cmake │ ├── common-compiler-flags.cmake │ ├── compiler.cmake │ ├── gcc.cmake │ ├── gnu-fortran-compiler.cmake │ ├── intel.cmake │ ├── jupyter-nbconvert.cmake │ ├── material-properties.cmake │ ├── mgis.cmake │ ├── msvc.cmake │ ├── nvhpc.cmake │ ├── pandoc.cmake │ ├── pathscale.cmake │ ├── pgi.cmake │ └── tfel.cmake ├── pyc-compile.py └── pyo-compile.py ├── codemeta.json ├── docs ├── CMakeLists.txt ├── papers │ └── joss │ │ ├── bibliography.bib │ │ ├── img │ │ ├── 3dbeam_mfront.png │ │ ├── FEniCS.png │ │ ├── FEniCS.xcf │ │ ├── MCAS_disc_hole_cyclic_show_axes.png │ │ ├── MFrontInterface.png │ │ ├── MFrontInterface.svg │ │ └── ogs_strength_reduction.png │ │ ├── iso690-numeric-en.csl │ │ └── paper.md └── web │ ├── CMakeLists.txt │ ├── FEniCSBindings.md │ ├── behaviour-integration-failure-analysis.md │ ├── bibliography.bib │ ├── bindings-cxx.md │ ├── bindings-python-finite_strain.md │ ├── bindings-python-small_strain.md │ ├── contributing.md │ ├── css │ ├── main.css │ ├── normalize.css │ └── slideshow.css │ ├── evaluators.md │ ├── functions.md │ ├── img │ ├── HeatEquationPhaseChange-1.png │ ├── HeatEquationPhaseChange-2.png │ ├── HeatEquationPhaseChange-3.png │ ├── HeatEquationPhaseChange-4.png │ ├── HeatEquationPhaseChange-5.png │ ├── HeatEquationPhaseChange-6.png │ ├── HeatEquationPhaseChange-law.pdf │ ├── MonolithicTransientThermoElasticity.png │ ├── MultiphaseModelComparison.png │ ├── PhaseField-Energy.png │ ├── PhaseField-FU.png │ ├── PhaseField-Fracture.png │ ├── Temperature_Castem_FEniCS.png │ ├── bindings-python-finite_strain.png │ ├── bindings-python-small_strain.png │ ├── finite_strain_plasticity_solution.png │ ├── fuel_rod_solution.png │ ├── mgis.svg │ ├── multiphase_kinematics.pdf │ ├── multiphase_kinematics.svg │ ├── phase_change_law.svg │ └── solidification_front.gif │ ├── index.md │ ├── install.md │ ├── ipynb │ ├── mgis_finite_strain.ipynb │ └── mgis_small_strain.ipynb │ ├── js │ └── slideshow.js │ ├── mfront │ ├── LogarithmicStrainPlasticity.mfront │ ├── Norton.mfront │ ├── Plasticity.mfront │ └── SmallStrainPlasticity.mfront │ ├── mgis-template.html │ ├── mgis_fenics.md │ ├── mgis_fenics_finite_strain_elastoplasticity.md │ ├── mgis_fenics_heat_equation_phase_change.md │ ├── mgis_fenics_monolithic_transient_thermoelasticity.md │ ├── mgis_fenics_multiphase_model.md │ ├── mgis_fenics_nonlinear_heat_transfer.md │ ├── mgis_fenics_nonlinear_heat_transfer_3D.md │ ├── mgis_fenics_phase_field.md │ ├── mgis_fenics_small_strain_elastoplasticity.md │ ├── orthotropic-behaviours.md │ ├── pandoc-crossref.yaml │ ├── release-notes-1.0.2.md │ ├── release-notes-1.1.1.md │ ├── release-notes-1.1.2.md │ ├── release-notes-1.1.md │ ├── release-notes-1.2.1.md │ ├── release-notes-1.2.2.md │ ├── release-notes-1.2.3.md │ ├── release-notes-1.2.md │ ├── release-notes-2.0.1.md │ ├── release-notes-2.0.md │ ├── release-notes-2.1.1.md │ ├── release-notes-2.1.md │ ├── release-notes-2.2.1.md │ ├── release-notes-2.2.2.md │ ├── release-notes-2.2.md │ ├── release-notes-3.0.1.md │ ├── release-notes-3.0.md │ └── release-notes-3.1.md ├── format.sh ├── include ├── CMakeLists.txt └── MGIS │ ├── AbstractErrorHandler.hxx │ ├── Behaviour │ ├── Behaviour.hxx │ ├── BehaviourData.hxx │ ├── BehaviourData.ixx │ ├── BehaviourDataView.hxx │ ├── BehaviourDescription.hxx │ ├── BehaviourFctPtr.hxx │ ├── BehaviourIntegrationFailureAnalyser.hxx │ ├── ChangeBasis.ixx │ ├── FiniteStrainBehaviourOptions.hxx │ ├── FiniteStrainSupport.hxx │ ├── Hypothesis.hxx │ ├── Integrate.hxx │ ├── Integrate.ixx │ ├── MaterialDataManager.hxx │ ├── MaterialFunctionManager.hxx │ ├── MaterialFunctionManager.ixx │ ├── MaterialStateManager.hxx │ ├── RotationMatrix.hxx │ ├── RotationMatrix.ixx │ ├── State.hxx │ ├── State.ixx │ ├── StateView.hxx │ └── Variable.hxx │ ├── Config-c.h │ ├── Config.hxx │ ├── Context.hxx │ ├── Contract.hxx │ ├── Contract.ixx │ ├── Cste.hxx │ ├── Database.hxx │ ├── ErrorBacktrace.hxx │ ├── Function │ ├── Algorithms.hxx │ ├── Algorithms.ixx │ ├── BasicLinearQuadratureSpace.hxx │ ├── BasicLinearQuadratureSpace.ixx │ ├── BasicLinearSpace.hxx │ ├── BasicLinearSpace.ixx │ ├── BinaryOperation.hxx │ ├── BinaryOperation.ixx │ ├── BinaryOperationEvaluatorBase.hxx │ ├── BinaryOperationEvaluatorBase.ixx │ ├── Buffer.hxx │ ├── CoalescedMemoryAccessFunctionViewBase.hxx │ ├── CoalescedMemoryAccessFunctionViewBase.ixx │ ├── CompileTimeSize.hxx │ ├── Evaluator.hxx │ ├── Evaluator.ixx │ ├── EvaluatorConcept.hxx │ ├── EvaluatorConcept.ixx │ ├── EvaluatorModifierBase.hxx │ ├── EvaluatorModifierBase.ixx │ ├── EvaluatorModifierConcept.hxx │ ├── EvaluatorModifierConcept.ixx │ ├── FixedSizeModifier.hxx │ ├── FixedSizeModifier.ixx │ ├── FixedSizeView.hxx │ ├── FixedSizeView.ixx │ ├── Function.hxx │ ├── Function.ixx │ ├── FunctionConcept.hxx │ ├── FunctionConcept.ixx │ ├── Mechanics.hxx │ ├── Mechanics.ixx │ ├── SharedSpace.hxx │ ├── SpaceConcept.hxx │ ├── TensorialFunction.hxx │ ├── TensorialFunction.ixx │ ├── Tensors.hxx │ ├── Tensors.ixx │ ├── Tensors │ │ ├── CoalescedMemoryAccessTensorView.hxx │ │ ├── CoalescedMemoryAccessTensorView.ixx │ │ ├── TensorConcept.hxx │ │ ├── TensorModifier.hxx │ │ ├── TensorModifier.ixx │ │ ├── TensorView.hxx │ │ └── TensorView.ixx │ ├── UnaryOperation.hxx │ ├── UnaryOperation.ixx │ ├── UniformEvaluator.hxx │ └── UniformEvaluator.ixx │ ├── InvalidResult.hxx │ ├── InvalidResult.ixx │ ├── LibrariesManager.hxx │ ├── MaterialProperty │ ├── MaterialProperty.hxx │ ├── MaterialPropertyFctPtr.hxx │ ├── OutOfBoundsPolicy.hxx │ └── OutputStatus.hxx │ ├── Model │ └── Model.hxx │ ├── Raise.hxx │ ├── Raise.ixx │ ├── StorageMode.hxx │ ├── ThreadPool.hxx │ ├── ThreadPool.ixx │ ├── ThreadedTaskResult.hxx │ ├── ThreadedTaskResult.ixx │ ├── Utilities │ └── Markdown.hxx │ └── VerbosityLevel.hxx ├── mgis.doxygen ├── src ├── BasicLinearQuadratureSpace.cxx ├── BasicLinearSpace.cxx ├── Behaviour.cxx ├── BehaviourData.cxx ├── BehaviourDataView.cxx ├── BehaviourDescription.cxx ├── BehaviourIntegrationFailureAnalyser.cxx ├── CMakeLists.txt ├── CoalescedMemoryAccessFunctionView.cxx ├── Context.cxx ├── Contract.cxx ├── Database.cxx ├── ErrorBacktrace.cxx ├── Evaluator.cxx ├── FiniteStrainSupport.cxx ├── FixedSizeView.cxx ├── Function.cxx ├── Hypothesis.cxx ├── Integrate.cxx ├── LibrariesManager.cxx ├── MFrontGenericInterfaceConfig.cmake.in ├── Markdown.cxx ├── MaterialDataManager.cxx ├── MaterialFunctionManager.cxx ├── MaterialProperty.cxx ├── MaterialStateManager.cxx ├── Model.cxx ├── Raise.cxx ├── RotationMatrix.cxx ├── State.cxx ├── StateView.cxx ├── TensorModifier.cxx ├── TensorView.cxx ├── ThreadPool.cxx ├── ThreadedTaskResult.cxx ├── UniformEvaluator.cxx ├── Variable.cxx └── VerbosityLevel.cxx └── tests ├── BoundsCheckTest.cxx ├── BoundsCheckTest.mfront ├── CMakeLists.txt ├── CoalescedMemoryAccessFunctionViewTest.cxx ├── ComputeSpeedOfSound.mfront ├── ComputeSpeedOfSoundTest.cxx ├── ComputeSpeedOfSoundTest2.cxx ├── Elasticity.mfront ├── ErrorBacktraceTest.cxx ├── EvaluatorsTest.cxx ├── ExternalStateVariableTest.cxx ├── FiniteStrainSingleCrystal.mfront ├── FunctionTest.cxx ├── Gurson.mfront ├── Inconel600_YoungModulus.mfront ├── InitializeFunctionTest.cxx ├── InitializeFunctionTest.mfront ├── IntegrateDebugTest.cxx ├── IntegrateTest.cxx ├── IntegrateTest2.cxx ├── IntegrateTest2b.cxx ├── IntegrateTest3.cxx ├── IntegrateTest3b.cxx ├── IntegrateTest4.cxx ├── IntegrateTest5.cxx ├── IntegrationFailureDebugTest.cxx ├── InvalidResultTest.cxx ├── LoadMaterialPropertyTest.cxx ├── MFrontGenericBehaviourInterfaceTest.cxx ├── MFrontGenericBehaviourInterfaceTest2.cxx ├── MFrontGenericBehaviourInterfaceTest3.cxx ├── MaterialFunctionManagerTest.cxx ├── MaterialPropertyBoundCheck.mfront ├── MaterialPropertyBoundCheck2.mfront ├── MaterialPropertyBoundCheck3.mfront ├── MaterialPropertyErrnoCheck.mfront ├── MaterialPropertyErrnoCheck2.mfront ├── MechanicalEvaluatorsTest.cxx ├── Norton.mfront ├── NortonFailure.mfront ├── OrthotropicElasticity.mfront ├── ParameterTest.cxx ├── ParameterTest.mfront ├── Plasticity.mfront ├── PostProcessingTest.cxx ├── PostProcessingTest.mfront ├── ReduceTest.cxx ├── RotateFunctionsTest.cxx ├── SharedSpaceTest.cxx ├── StandardElastoViscoPlasticityPlasticityTest11.mfront ├── TensorialExternalStateVariableTest.mfront ├── TensorialFunctionTest.cxx ├── UniformEvaluatorsTest.cxx └── ode_rk54.mfront /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/check-tbb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/.github/workflows/check-tbb.yml -------------------------------------------------------------------------------- /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CeCILL-C_V1-en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/CeCILL-C_V1-en.txt -------------------------------------------------------------------------------- /CeCILL-C_V1-fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/CeCILL-C_V1-fr.txt -------------------------------------------------------------------------------- /Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/Doxyfile.in -------------------------------------------------------------------------------- /INSTALL-cmake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/INSTALL-cmake.md -------------------------------------------------------------------------------- /LGPL-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/LGPL-3.0.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/README.md -------------------------------------------------------------------------------- /bindings/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/c/include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/include/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/c/include/MGIS/Behaviour/Behaviour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/include/MGIS/Behaviour/Behaviour.h -------------------------------------------------------------------------------- /bindings/c/include/MGIS/Behaviour/BehaviourData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/include/MGIS/Behaviour/BehaviourData.h -------------------------------------------------------------------------------- /bindings/c/include/MGIS/Behaviour/BehaviourDataView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/include/MGIS/Behaviour/BehaviourDataView.h -------------------------------------------------------------------------------- /bindings/c/include/MGIS/Behaviour/Hypothesis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/include/MGIS/Behaviour/Hypothesis.h -------------------------------------------------------------------------------- /bindings/c/include/MGIS/Behaviour/Integrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/include/MGIS/Behaviour/Integrate.h -------------------------------------------------------------------------------- /bindings/c/include/MGIS/Behaviour/MaterialDataManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/include/MGIS/Behaviour/MaterialDataManager.h -------------------------------------------------------------------------------- /bindings/c/include/MGIS/Behaviour/MaterialStateManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/include/MGIS/Behaviour/MaterialStateManager.h -------------------------------------------------------------------------------- /bindings/c/include/MGIS/Behaviour/State.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/include/MGIS/Behaviour/State.h -------------------------------------------------------------------------------- /bindings/c/include/MGIS/Behaviour/StateView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/include/MGIS/Behaviour/StateView.h -------------------------------------------------------------------------------- /bindings/c/include/MGIS/Behaviour/Variable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/include/MGIS/Behaviour/Variable.h -------------------------------------------------------------------------------- /bindings/c/include/MGIS/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/include/MGIS/Config.h -------------------------------------------------------------------------------- /bindings/c/include/MGIS/Model/Model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/include/MGIS/Model/Model.h -------------------------------------------------------------------------------- /bindings/c/include/MGIS/Status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/include/MGIS/Status.h -------------------------------------------------------------------------------- /bindings/c/include/MGIS/ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/include/MGIS/ThreadPool.h -------------------------------------------------------------------------------- /bindings/c/src/Behaviour.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/src/Behaviour.cxx -------------------------------------------------------------------------------- /bindings/c/src/BehaviourData.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/src/BehaviourData.cxx -------------------------------------------------------------------------------- /bindings/c/src/BehaviourDataView.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/src/BehaviourDataView.cxx -------------------------------------------------------------------------------- /bindings/c/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/src/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/c/src/Hypothesis.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/src/Hypothesis.cxx -------------------------------------------------------------------------------- /bindings/c/src/Integrate.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/src/Integrate.cxx -------------------------------------------------------------------------------- /bindings/c/src/MaterialDataManager.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/src/MaterialDataManager.cxx -------------------------------------------------------------------------------- /bindings/c/src/MaterialStateManager.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/src/MaterialStateManager.cxx -------------------------------------------------------------------------------- /bindings/c/src/Model.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/src/Model.cxx -------------------------------------------------------------------------------- /bindings/c/src/State.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/src/State.cxx -------------------------------------------------------------------------------- /bindings/c/src/Status.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/src/Status.cxx -------------------------------------------------------------------------------- /bindings/c/src/ThreadPool.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/src/ThreadPool.cxx -------------------------------------------------------------------------------- /bindings/c/src/Variable.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/src/Variable.cxx -------------------------------------------------------------------------------- /bindings/c/tests/BehaviourDataTest-c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/tests/BehaviourDataTest-c.c -------------------------------------------------------------------------------- /bindings/c/tests/BoundsCheckTest-c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/tests/BoundsCheckTest-c.c -------------------------------------------------------------------------------- /bindings/c/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/tests/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/c/tests/ExternalStateVariableTest-c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/tests/ExternalStateVariableTest-c.c -------------------------------------------------------------------------------- /bindings/c/tests/IntegrateTest-c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/tests/IntegrateTest-c.c -------------------------------------------------------------------------------- /bindings/c/tests/IntegrateTest2-c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/tests/IntegrateTest2-c.c -------------------------------------------------------------------------------- /bindings/c/tests/IntegrateTest3-c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/tests/IntegrateTest3-c.c -------------------------------------------------------------------------------- /bindings/c/tests/IntegrateTest4-c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/tests/IntegrateTest4-c.c -------------------------------------------------------------------------------- /bindings/c/tests/IntegrateTest5-c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/tests/IntegrateTest5-c.c -------------------------------------------------------------------------------- /bindings/c/tests/MFrontGenericBehaviourInterfaceTest-c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/tests/MFrontGenericBehaviourInterfaceTest-c.c -------------------------------------------------------------------------------- /bindings/c/tests/MFrontGenericBehaviourInterfaceTest2-c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/tests/MFrontGenericBehaviourInterfaceTest2-c.c -------------------------------------------------------------------------------- /bindings/c/tests/MFrontGenericBehaviourInterfaceTest3-c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/tests/MFrontGenericBehaviourInterfaceTest3-c.c -------------------------------------------------------------------------------- /bindings/c/tests/ParameterTest-c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/tests/ParameterTest-c.c -------------------------------------------------------------------------------- /bindings/c/tests/StateTest-c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/tests/StateTest-c.c -------------------------------------------------------------------------------- /bindings/c/tests/StateTest2-c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/c/tests/StateTest2-c.c -------------------------------------------------------------------------------- /bindings/fenics/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fenics/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/fenics/include/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bindings/fenics/include/MGIS/FEniCS/Config-FEniCS.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fenics/include/MGIS/FEniCS/Config-FEniCS.hxx -------------------------------------------------------------------------------- /bindings/fenics/include/MGIS/FEniCS/NonLinearMaterial.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fenics/include/MGIS/FEniCS/NonLinearMaterial.hxx -------------------------------------------------------------------------------- /bindings/fenics/include/MGIS/FEniCS/NonLinearMaterialFunctionBase.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fenics/include/MGIS/FEniCS/NonLinearMaterialFunctionBase.hxx -------------------------------------------------------------------------------- /bindings/fenics/include/MGIS/FEniCS/NonLinearMaterialTangentOperatorFunction.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fenics/include/MGIS/FEniCS/NonLinearMaterialTangentOperatorFunction.hxx -------------------------------------------------------------------------------- /bindings/fenics/include/MGIS/FEniCS/NonLinearMaterialThermodynamicForcesFunction.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fenics/include/MGIS/FEniCS/NonLinearMaterialThermodynamicForcesFunction.hxx -------------------------------------------------------------------------------- /bindings/fenics/include/MGIS/FEniCS/NonLinearMechanicalProblem.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fenics/include/MGIS/FEniCS/NonLinearMechanicalProblem.hxx -------------------------------------------------------------------------------- /bindings/fenics/include/MGIS/FEniCS/Utils.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fenics/include/MGIS/FEniCS/Utils.hxx -------------------------------------------------------------------------------- /bindings/fenics/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fenics/src/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/fenics/src/NonLinearMaterial.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fenics/src/NonLinearMaterial.cxx -------------------------------------------------------------------------------- /bindings/fenics/src/NonLinearMaterialFunctionBase.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fenics/src/NonLinearMaterialFunctionBase.cxx -------------------------------------------------------------------------------- /bindings/fenics/src/NonLinearMaterialTangentOperatorFunction.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fenics/src/NonLinearMaterialTangentOperatorFunction.cxx -------------------------------------------------------------------------------- /bindings/fenics/src/NonLinearMaterialThermodynamicForcesFunction.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fenics/src/NonLinearMaterialThermodynamicForcesFunction.cxx -------------------------------------------------------------------------------- /bindings/fenics/src/NonLinearMechanicalProblem.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fenics/src/NonLinearMechanicalProblem.cxx -------------------------------------------------------------------------------- /bindings/fenics/src/Utils.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fenics/src/Utils.cxx -------------------------------------------------------------------------------- /bindings/fenics/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(src) 2 | -------------------------------------------------------------------------------- /bindings/fenics/tests/data/thick_cylinder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fenics/tests/data/thick_cylinder.xml -------------------------------------------------------------------------------- /bindings/fenics/tests/data/thick_cylinder_facet_region.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fenics/tests/data/thick_cylinder_facet_region.xml -------------------------------------------------------------------------------- /bindings/fenics/tests/include/MGIS/FEniCS/FEniCSTestingUtilities.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fenics/tests/include/MGIS/FEniCS/FEniCSTestingUtilities.hxx -------------------------------------------------------------------------------- /bindings/fenics/tests/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fenics/tests/src/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/fenics/tests/src/ElasticityUniaxialTensileTestImposedStrain3D-exx.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fenics/tests/src/ElasticityUniaxialTensileTestImposedStrain3D-exx.cxx -------------------------------------------------------------------------------- /bindings/fenics/tests/src/ElasticityUniaxialTensileTestImposedStrain3D-exy.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fenics/tests/src/ElasticityUniaxialTensileTestImposedStrain3D-exy.cxx -------------------------------------------------------------------------------- /bindings/fenics/tests/src/ElasticityUniaxialTensileTestImposedStrain3D-exz.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fenics/tests/src/ElasticityUniaxialTensileTestImposedStrain3D-exz.cxx -------------------------------------------------------------------------------- /bindings/fenics/tests/src/ElasticityUniaxialTensileTestImposedStrain3D-eyy.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fenics/tests/src/ElasticityUniaxialTensileTestImposedStrain3D-eyy.cxx -------------------------------------------------------------------------------- /bindings/fenics/tests/src/ElasticityUniaxialTensileTestImposedStrain3D-eyz.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fenics/tests/src/ElasticityUniaxialTensileTestImposedStrain3D-eyz.cxx -------------------------------------------------------------------------------- /bindings/fenics/tests/src/ElasticityUniaxialTensileTestImposedStrain3D-ezz.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fenics/tests/src/ElasticityUniaxialTensileTestImposedStrain3D-ezz.cxx -------------------------------------------------------------------------------- /bindings/fenics/tests/src/ElasticityUniaxialTensileTestImposedStrainPlaneStress-exx.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fenics/tests/src/ElasticityUniaxialTensileTestImposedStrainPlaneStress-exx.cxx -------------------------------------------------------------------------------- /bindings/fenics/tests/src/ElasticityUniaxialTensileTestImposedStress3D-sxx.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fenics/tests/src/ElasticityUniaxialTensileTestImposedStress3D-sxx.cxx -------------------------------------------------------------------------------- /bindings/fenics/tests/src/FEniCSTestingUtilities.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fenics/tests/src/FEniCSTestingUtilities.cxx -------------------------------------------------------------------------------- /bindings/fenics/tests/src/MGISSmallStrainFormulation2D.ufl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fenics/tests/src/MGISSmallStrainFormulation2D.ufl -------------------------------------------------------------------------------- /bindings/fenics/tests/src/MGISSmallStrainFormulation3D.ufl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fenics/tests/src/MGISSmallStrainFormulation3D.ufl -------------------------------------------------------------------------------- /bindings/fenics/tests/src/PlasticCylinderExpansion.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fenics/tests/src/PlasticCylinderExpansion.cxx -------------------------------------------------------------------------------- /bindings/fenics/tests/src/PlasticityUniaxialTensileTestImposedStress3D-sxx.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fenics/tests/src/PlasticityUniaxialTensileTestImposedStress3D-sxx.cxx -------------------------------------------------------------------------------- /bindings/fenics/tests/src/StandardElastoPlasticityPlasticityTest11-cyclic_E.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fenics/tests/src/StandardElastoPlasticityPlasticityTest11-cyclic_E.cxx -------------------------------------------------------------------------------- /bindings/fortran/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fortran/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/fortran/modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fortran/modules/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/fortran/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fortran/src/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/fortran/src/mgis.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fortran/src/mgis.f90 -------------------------------------------------------------------------------- /bindings/fortran/src/mgis_behaviour.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fortran/src/mgis_behaviour.f90 -------------------------------------------------------------------------------- /bindings/fortran/src/mgis_fortran_utilities.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fortran/src/mgis_fortran_utilities.f90 -------------------------------------------------------------------------------- /bindings/fortran/src/mgis_model.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fortran/src/mgis_model.f90 -------------------------------------------------------------------------------- /bindings/fortran/tests/BehaviourDataTest-f.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fortran/tests/BehaviourDataTest-f.f90 -------------------------------------------------------------------------------- /bindings/fortran/tests/BoundsCheckTest-f.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fortran/tests/BoundsCheckTest-f.f90 -------------------------------------------------------------------------------- /bindings/fortran/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fortran/tests/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/fortran/tests/ExternalStateVariableTest-f.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fortran/tests/ExternalStateVariableTest-f.f90 -------------------------------------------------------------------------------- /bindings/fortran/tests/IntegrateTest-f.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fortran/tests/IntegrateTest-f.f90 -------------------------------------------------------------------------------- /bindings/fortran/tests/IntegrateTest2-f.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fortran/tests/IntegrateTest2-f.f90 -------------------------------------------------------------------------------- /bindings/fortran/tests/IntegrateTest3-f.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fortran/tests/IntegrateTest3-f.f90 -------------------------------------------------------------------------------- /bindings/fortran/tests/IntegrateTest4-f.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fortran/tests/IntegrateTest4-f.f90 -------------------------------------------------------------------------------- /bindings/fortran/tests/IntegrateTest5-f.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fortran/tests/IntegrateTest5-f.f90 -------------------------------------------------------------------------------- /bindings/fortran/tests/MFrontGenericBehaviourInterfaceTest-f.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fortran/tests/MFrontGenericBehaviourInterfaceTest-f.f90 -------------------------------------------------------------------------------- /bindings/fortran/tests/MFrontGenericBehaviourInterfaceTest2-f.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fortran/tests/MFrontGenericBehaviourInterfaceTest2-f.f90 -------------------------------------------------------------------------------- /bindings/fortran/tests/MFrontGenericBehaviourInterfaceTest3-f.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fortran/tests/MFrontGenericBehaviourInterfaceTest3-f.f90 -------------------------------------------------------------------------------- /bindings/fortran/tests/ParameterTest-f.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fortran/tests/ParameterTest-f.f90 -------------------------------------------------------------------------------- /bindings/fortran/tests/RotateFunctionsTest-f.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fortran/tests/RotateFunctionsTest-f.f90 -------------------------------------------------------------------------------- /bindings/fortran/tests/StateTest-f.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fortran/tests/StateTest-f.f90 -------------------------------------------------------------------------------- /bindings/fortran/tests/StateTest2-f.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fortran/tests/StateTest2-f.f90 -------------------------------------------------------------------------------- /bindings/fortran/tests/mgis_status.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fortran/tests/mgis_status.f90 -------------------------------------------------------------------------------- /bindings/fortran/tests/mgis_testing_utilities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fortran/tests/mgis_testing_utilities.c -------------------------------------------------------------------------------- /bindings/fortran/tests/mgis_testing_utilities.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/fortran/tests/mgis_testing_utilities.f90 -------------------------------------------------------------------------------- /bindings/julia/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(src) 2 | -------------------------------------------------------------------------------- /bindings/julia/include/MGIS/Julia/ArrayView.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/julia/include/MGIS/Julia/ArrayView.hxx -------------------------------------------------------------------------------- /bindings/julia/include/MGIS/Julia/JuliaUtilities.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/julia/include/MGIS/Julia/JuliaUtilities.hxx -------------------------------------------------------------------------------- /bindings/julia/include/MGIS/Julia/JuliaUtilities.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/julia/include/MGIS/Julia/JuliaUtilities.ixx -------------------------------------------------------------------------------- /bindings/julia/src/Behaviour.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/julia/src/Behaviour.cxx -------------------------------------------------------------------------------- /bindings/julia/src/BehaviourData.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/julia/src/BehaviourData.cxx -------------------------------------------------------------------------------- /bindings/julia/src/BehaviourDataView.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/julia/src/BehaviourDataView.cxx -------------------------------------------------------------------------------- /bindings/julia/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/julia/src/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/julia/src/Hypothesis.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/julia/src/Hypothesis.cxx -------------------------------------------------------------------------------- /bindings/julia/src/Integrate.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/julia/src/Integrate.cxx -------------------------------------------------------------------------------- /bindings/julia/src/MaterialDataManager.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/julia/src/MaterialDataManager.cxx -------------------------------------------------------------------------------- /bindings/julia/src/MaterialStateManager.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/julia/src/MaterialStateManager.cxx -------------------------------------------------------------------------------- /bindings/julia/src/State.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/julia/src/State.cxx -------------------------------------------------------------------------------- /bindings/julia/src/ThreadPool.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/julia/src/ThreadPool.cxx -------------------------------------------------------------------------------- /bindings/julia/src/Variable.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/julia/src/Variable.cxx -------------------------------------------------------------------------------- /bindings/julia/src/behaviour-module.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/julia/src/behaviour-module.cxx -------------------------------------------------------------------------------- /bindings/julia/src/mgis-module.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/julia/src/mgis-module.cxx -------------------------------------------------------------------------------- /bindings/python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/python/include/MGIS/Python/NumPySupport.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/include/MGIS/Python/NumPySupport.hxx -------------------------------------------------------------------------------- /bindings/python/mgis/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/mgis/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/python/mgis/__init__-have-tfel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/mgis/__init__-have-tfel.py -------------------------------------------------------------------------------- /bindings/python/mgis/__init__.py: -------------------------------------------------------------------------------- 1 | from ._mgis import * 2 | -------------------------------------------------------------------------------- /bindings/python/mgis/fenics/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/mgis/fenics/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/python/mgis/fenics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/mgis/fenics/__init__.py -------------------------------------------------------------------------------- /bindings/python/mgis/fenics/gradient_flux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/mgis/fenics/gradient_flux.py -------------------------------------------------------------------------------- /bindings/python/mgis/fenics/nonlinear_material.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/mgis/fenics/nonlinear_material.py -------------------------------------------------------------------------------- /bindings/python/mgis/fenics/nonlinear_problem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/mgis/fenics/nonlinear_problem.py -------------------------------------------------------------------------------- /bindings/python/mgis/fenics/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/mgis/fenics/utils.py -------------------------------------------------------------------------------- /bindings/python/src/Behaviour.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/src/Behaviour.cxx -------------------------------------------------------------------------------- /bindings/python/src/BehaviourData.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/src/BehaviourData.cxx -------------------------------------------------------------------------------- /bindings/python/src/BehaviourDataView.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/src/BehaviourDataView.cxx -------------------------------------------------------------------------------- /bindings/python/src/BehaviourDescription.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/src/BehaviourDescription.cxx -------------------------------------------------------------------------------- /bindings/python/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/src/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/python/src/Database.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/src/Database.cxx -------------------------------------------------------------------------------- /bindings/python/src/FiniteStrainSupport.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/src/FiniteStrainSupport.cxx -------------------------------------------------------------------------------- /bindings/python/src/Hypothesis.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/src/Hypothesis.cxx -------------------------------------------------------------------------------- /bindings/python/src/Integrate.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/src/Integrate.cxx -------------------------------------------------------------------------------- /bindings/python/src/MaterialDataManager.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/src/MaterialDataManager.cxx -------------------------------------------------------------------------------- /bindings/python/src/MaterialProperty.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/src/MaterialProperty.cxx -------------------------------------------------------------------------------- /bindings/python/src/MaterialStateManager.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/src/MaterialStateManager.cxx -------------------------------------------------------------------------------- /bindings/python/src/Model.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/src/Model.cxx -------------------------------------------------------------------------------- /bindings/python/src/NumPySupport.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/src/NumPySupport.cxx -------------------------------------------------------------------------------- /bindings/python/src/State.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/src/State.cxx -------------------------------------------------------------------------------- /bindings/python/src/ThreadPool.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/src/ThreadPool.cxx -------------------------------------------------------------------------------- /bindings/python/src/Variable.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/src/Variable.cxx -------------------------------------------------------------------------------- /bindings/python/src/behaviour-module.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/src/behaviour-module.cxx -------------------------------------------------------------------------------- /bindings/python/src/material_property-module.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/src/material_property-module.cxx -------------------------------------------------------------------------------- /bindings/python/src/mgis-module.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/src/mgis-module.cxx -------------------------------------------------------------------------------- /bindings/python/src/model-module.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/src/model-module.cxx -------------------------------------------------------------------------------- /bindings/python/tests/BoundsCheckTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/tests/BoundsCheckTest.py -------------------------------------------------------------------------------- /bindings/python/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/tests/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/python/tests/ExternalStateVariableTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/tests/ExternalStateVariableTest.py -------------------------------------------------------------------------------- /bindings/python/tests/InitializeFunctionTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/tests/InitializeFunctionTest.py -------------------------------------------------------------------------------- /bindings/python/tests/IntegrateTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/tests/IntegrateTest.py -------------------------------------------------------------------------------- /bindings/python/tests/IntegrateTest2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/tests/IntegrateTest2.py -------------------------------------------------------------------------------- /bindings/python/tests/IntegrateTest3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/tests/IntegrateTest3.py -------------------------------------------------------------------------------- /bindings/python/tests/IntegrateTest4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/tests/IntegrateTest4.py -------------------------------------------------------------------------------- /bindings/python/tests/IntegrateTest5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/tests/IntegrateTest5.py -------------------------------------------------------------------------------- /bindings/python/tests/IntegrateTest6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/tests/IntegrateTest6.py -------------------------------------------------------------------------------- /bindings/python/tests/MFrontGenericBehaviourInterfaceTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/tests/MFrontGenericBehaviourInterfaceTest.py -------------------------------------------------------------------------------- /bindings/python/tests/MFrontGenericBehaviourInterfaceTest2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/tests/MFrontGenericBehaviourInterfaceTest2.py -------------------------------------------------------------------------------- /bindings/python/tests/MFrontGenericBehaviourInterfaceTest3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/tests/MFrontGenericBehaviourInterfaceTest3.py -------------------------------------------------------------------------------- /bindings/python/tests/ParameterTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/tests/ParameterTest.py -------------------------------------------------------------------------------- /bindings/python/tests/PostProcessingTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/bindings/python/tests/PostProcessingTest.py -------------------------------------------------------------------------------- /cmake/ToolChain-i586-mingw32msvc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/cmake/ToolChain-i586-mingw32msvc.cmake -------------------------------------------------------------------------------- /cmake/ToolChain-i686-w64-mingw32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/cmake/ToolChain-i686-w64-mingw32.cmake -------------------------------------------------------------------------------- /cmake/ctest2junix.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/cmake/ctest2junix.xsl -------------------------------------------------------------------------------- /cmake/modules/CodeCoverage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/cmake/modules/CodeCoverage.cmake -------------------------------------------------------------------------------- /cmake/modules/FindTFEL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/cmake/modules/FindTFEL.cmake -------------------------------------------------------------------------------- /cmake/modules/OptimizeForArchitecture.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/cmake/modules/OptimizeForArchitecture.cmake -------------------------------------------------------------------------------- /cmake/modules/behaviours.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/cmake/modules/behaviours.cmake -------------------------------------------------------------------------------- /cmake/modules/clang.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/cmake/modules/clang.cmake -------------------------------------------------------------------------------- /cmake/modules/common-compiler-flags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/cmake/modules/common-compiler-flags.cmake -------------------------------------------------------------------------------- /cmake/modules/compiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/cmake/modules/compiler.cmake -------------------------------------------------------------------------------- /cmake/modules/gcc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/cmake/modules/gcc.cmake -------------------------------------------------------------------------------- /cmake/modules/gnu-fortran-compiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/cmake/modules/gnu-fortran-compiler.cmake -------------------------------------------------------------------------------- /cmake/modules/intel.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/cmake/modules/intel.cmake -------------------------------------------------------------------------------- /cmake/modules/jupyter-nbconvert.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/cmake/modules/jupyter-nbconvert.cmake -------------------------------------------------------------------------------- /cmake/modules/material-properties.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/cmake/modules/material-properties.cmake -------------------------------------------------------------------------------- /cmake/modules/mgis.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/cmake/modules/mgis.cmake -------------------------------------------------------------------------------- /cmake/modules/msvc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/cmake/modules/msvc.cmake -------------------------------------------------------------------------------- /cmake/modules/nvhpc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/cmake/modules/nvhpc.cmake -------------------------------------------------------------------------------- /cmake/modules/pandoc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/cmake/modules/pandoc.cmake -------------------------------------------------------------------------------- /cmake/modules/pathscale.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/cmake/modules/pathscale.cmake -------------------------------------------------------------------------------- /cmake/modules/pgi.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/cmake/modules/pgi.cmake -------------------------------------------------------------------------------- /cmake/modules/tfel.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/cmake/modules/tfel.cmake -------------------------------------------------------------------------------- /cmake/pyc-compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/cmake/pyc-compile.py -------------------------------------------------------------------------------- /cmake/pyo-compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/cmake/pyo-compile.py -------------------------------------------------------------------------------- /codemeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/codemeta.json -------------------------------------------------------------------------------- /docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/CMakeLists.txt -------------------------------------------------------------------------------- /docs/papers/joss/bibliography.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/papers/joss/bibliography.bib -------------------------------------------------------------------------------- /docs/papers/joss/img/3dbeam_mfront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/papers/joss/img/3dbeam_mfront.png -------------------------------------------------------------------------------- /docs/papers/joss/img/FEniCS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/papers/joss/img/FEniCS.png -------------------------------------------------------------------------------- /docs/papers/joss/img/FEniCS.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/papers/joss/img/FEniCS.xcf -------------------------------------------------------------------------------- /docs/papers/joss/img/MCAS_disc_hole_cyclic_show_axes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/papers/joss/img/MCAS_disc_hole_cyclic_show_axes.png -------------------------------------------------------------------------------- /docs/papers/joss/img/MFrontInterface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/papers/joss/img/MFrontInterface.png -------------------------------------------------------------------------------- /docs/papers/joss/img/MFrontInterface.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/papers/joss/img/MFrontInterface.svg -------------------------------------------------------------------------------- /docs/papers/joss/img/ogs_strength_reduction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/papers/joss/img/ogs_strength_reduction.png -------------------------------------------------------------------------------- /docs/papers/joss/iso690-numeric-en.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/papers/joss/iso690-numeric-en.csl -------------------------------------------------------------------------------- /docs/papers/joss/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/papers/joss/paper.md -------------------------------------------------------------------------------- /docs/web/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/CMakeLists.txt -------------------------------------------------------------------------------- /docs/web/FEniCSBindings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/FEniCSBindings.md -------------------------------------------------------------------------------- /docs/web/behaviour-integration-failure-analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/behaviour-integration-failure-analysis.md -------------------------------------------------------------------------------- /docs/web/bibliography.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/bibliography.bib -------------------------------------------------------------------------------- /docs/web/bindings-cxx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/bindings-cxx.md -------------------------------------------------------------------------------- /docs/web/bindings-python-finite_strain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/bindings-python-finite_strain.md -------------------------------------------------------------------------------- /docs/web/bindings-python-small_strain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/bindings-python-small_strain.md -------------------------------------------------------------------------------- /docs/web/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/contributing.md -------------------------------------------------------------------------------- /docs/web/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/css/main.css -------------------------------------------------------------------------------- /docs/web/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/css/normalize.css -------------------------------------------------------------------------------- /docs/web/css/slideshow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/css/slideshow.css -------------------------------------------------------------------------------- /docs/web/evaluators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/evaluators.md -------------------------------------------------------------------------------- /docs/web/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/functions.md -------------------------------------------------------------------------------- /docs/web/img/HeatEquationPhaseChange-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/img/HeatEquationPhaseChange-1.png -------------------------------------------------------------------------------- /docs/web/img/HeatEquationPhaseChange-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/img/HeatEquationPhaseChange-2.png -------------------------------------------------------------------------------- /docs/web/img/HeatEquationPhaseChange-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/img/HeatEquationPhaseChange-3.png -------------------------------------------------------------------------------- /docs/web/img/HeatEquationPhaseChange-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/img/HeatEquationPhaseChange-4.png -------------------------------------------------------------------------------- /docs/web/img/HeatEquationPhaseChange-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/img/HeatEquationPhaseChange-5.png -------------------------------------------------------------------------------- /docs/web/img/HeatEquationPhaseChange-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/img/HeatEquationPhaseChange-6.png -------------------------------------------------------------------------------- /docs/web/img/HeatEquationPhaseChange-law.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/img/HeatEquationPhaseChange-law.pdf -------------------------------------------------------------------------------- /docs/web/img/MonolithicTransientThermoElasticity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/img/MonolithicTransientThermoElasticity.png -------------------------------------------------------------------------------- /docs/web/img/MultiphaseModelComparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/img/MultiphaseModelComparison.png -------------------------------------------------------------------------------- /docs/web/img/PhaseField-Energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/img/PhaseField-Energy.png -------------------------------------------------------------------------------- /docs/web/img/PhaseField-FU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/img/PhaseField-FU.png -------------------------------------------------------------------------------- /docs/web/img/PhaseField-Fracture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/img/PhaseField-Fracture.png -------------------------------------------------------------------------------- /docs/web/img/Temperature_Castem_FEniCS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/img/Temperature_Castem_FEniCS.png -------------------------------------------------------------------------------- /docs/web/img/bindings-python-finite_strain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/img/bindings-python-finite_strain.png -------------------------------------------------------------------------------- /docs/web/img/bindings-python-small_strain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/img/bindings-python-small_strain.png -------------------------------------------------------------------------------- /docs/web/img/finite_strain_plasticity_solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/img/finite_strain_plasticity_solution.png -------------------------------------------------------------------------------- /docs/web/img/fuel_rod_solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/img/fuel_rod_solution.png -------------------------------------------------------------------------------- /docs/web/img/mgis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/img/mgis.svg -------------------------------------------------------------------------------- /docs/web/img/multiphase_kinematics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/img/multiphase_kinematics.pdf -------------------------------------------------------------------------------- /docs/web/img/multiphase_kinematics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/img/multiphase_kinematics.svg -------------------------------------------------------------------------------- /docs/web/img/phase_change_law.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/img/phase_change_law.svg -------------------------------------------------------------------------------- /docs/web/img/solidification_front.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/img/solidification_front.gif -------------------------------------------------------------------------------- /docs/web/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/index.md -------------------------------------------------------------------------------- /docs/web/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/install.md -------------------------------------------------------------------------------- /docs/web/ipynb/mgis_finite_strain.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/ipynb/mgis_finite_strain.ipynb -------------------------------------------------------------------------------- /docs/web/ipynb/mgis_small_strain.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/ipynb/mgis_small_strain.ipynb -------------------------------------------------------------------------------- /docs/web/js/slideshow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/js/slideshow.js -------------------------------------------------------------------------------- /docs/web/mfront/LogarithmicStrainPlasticity.mfront: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/mfront/LogarithmicStrainPlasticity.mfront -------------------------------------------------------------------------------- /docs/web/mfront/Norton.mfront: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/mfront/Norton.mfront -------------------------------------------------------------------------------- /docs/web/mfront/Plasticity.mfront: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/mfront/Plasticity.mfront -------------------------------------------------------------------------------- /docs/web/mfront/SmallStrainPlasticity.mfront: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/mfront/SmallStrainPlasticity.mfront -------------------------------------------------------------------------------- /docs/web/mgis-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/mgis-template.html -------------------------------------------------------------------------------- /docs/web/mgis_fenics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/mgis_fenics.md -------------------------------------------------------------------------------- /docs/web/mgis_fenics_finite_strain_elastoplasticity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/mgis_fenics_finite_strain_elastoplasticity.md -------------------------------------------------------------------------------- /docs/web/mgis_fenics_heat_equation_phase_change.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/mgis_fenics_heat_equation_phase_change.md -------------------------------------------------------------------------------- /docs/web/mgis_fenics_monolithic_transient_thermoelasticity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/mgis_fenics_monolithic_transient_thermoelasticity.md -------------------------------------------------------------------------------- /docs/web/mgis_fenics_multiphase_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/mgis_fenics_multiphase_model.md -------------------------------------------------------------------------------- /docs/web/mgis_fenics_nonlinear_heat_transfer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/mgis_fenics_nonlinear_heat_transfer.md -------------------------------------------------------------------------------- /docs/web/mgis_fenics_nonlinear_heat_transfer_3D.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/mgis_fenics_nonlinear_heat_transfer_3D.md -------------------------------------------------------------------------------- /docs/web/mgis_fenics_phase_field.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/mgis_fenics_phase_field.md -------------------------------------------------------------------------------- /docs/web/mgis_fenics_small_strain_elastoplasticity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/mgis_fenics_small_strain_elastoplasticity.md -------------------------------------------------------------------------------- /docs/web/orthotropic-behaviours.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/orthotropic-behaviours.md -------------------------------------------------------------------------------- /docs/web/pandoc-crossref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/pandoc-crossref.yaml -------------------------------------------------------------------------------- /docs/web/release-notes-1.0.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/release-notes-1.0.2.md -------------------------------------------------------------------------------- /docs/web/release-notes-1.1.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/release-notes-1.1.1.md -------------------------------------------------------------------------------- /docs/web/release-notes-1.1.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/release-notes-1.1.2.md -------------------------------------------------------------------------------- /docs/web/release-notes-1.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/release-notes-1.1.md -------------------------------------------------------------------------------- /docs/web/release-notes-1.2.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/release-notes-1.2.1.md -------------------------------------------------------------------------------- /docs/web/release-notes-1.2.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/release-notes-1.2.2.md -------------------------------------------------------------------------------- /docs/web/release-notes-1.2.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/release-notes-1.2.3.md -------------------------------------------------------------------------------- /docs/web/release-notes-1.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/release-notes-1.2.md -------------------------------------------------------------------------------- /docs/web/release-notes-2.0.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/release-notes-2.0.1.md -------------------------------------------------------------------------------- /docs/web/release-notes-2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/release-notes-2.0.md -------------------------------------------------------------------------------- /docs/web/release-notes-2.1.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/release-notes-2.1.1.md -------------------------------------------------------------------------------- /docs/web/release-notes-2.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/release-notes-2.1.md -------------------------------------------------------------------------------- /docs/web/release-notes-2.2.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/release-notes-2.2.1.md -------------------------------------------------------------------------------- /docs/web/release-notes-2.2.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/release-notes-2.2.2.md -------------------------------------------------------------------------------- /docs/web/release-notes-2.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/release-notes-2.2.md -------------------------------------------------------------------------------- /docs/web/release-notes-3.0.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/release-notes-3.0.1.md -------------------------------------------------------------------------------- /docs/web/release-notes-3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/release-notes-3.0.md -------------------------------------------------------------------------------- /docs/web/release-notes-3.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/docs/web/release-notes-3.1.md -------------------------------------------------------------------------------- /format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/format.sh -------------------------------------------------------------------------------- /include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/CMakeLists.txt -------------------------------------------------------------------------------- /include/MGIS/AbstractErrorHandler.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/AbstractErrorHandler.hxx -------------------------------------------------------------------------------- /include/MGIS/Behaviour/Behaviour.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Behaviour/Behaviour.hxx -------------------------------------------------------------------------------- /include/MGIS/Behaviour/BehaviourData.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Behaviour/BehaviourData.hxx -------------------------------------------------------------------------------- /include/MGIS/Behaviour/BehaviourData.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Behaviour/BehaviourData.ixx -------------------------------------------------------------------------------- /include/MGIS/Behaviour/BehaviourDataView.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Behaviour/BehaviourDataView.hxx -------------------------------------------------------------------------------- /include/MGIS/Behaviour/BehaviourDescription.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Behaviour/BehaviourDescription.hxx -------------------------------------------------------------------------------- /include/MGIS/Behaviour/BehaviourFctPtr.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Behaviour/BehaviourFctPtr.hxx -------------------------------------------------------------------------------- /include/MGIS/Behaviour/BehaviourIntegrationFailureAnalyser.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Behaviour/BehaviourIntegrationFailureAnalyser.hxx -------------------------------------------------------------------------------- /include/MGIS/Behaviour/ChangeBasis.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Behaviour/ChangeBasis.ixx -------------------------------------------------------------------------------- /include/MGIS/Behaviour/FiniteStrainBehaviourOptions.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Behaviour/FiniteStrainBehaviourOptions.hxx -------------------------------------------------------------------------------- /include/MGIS/Behaviour/FiniteStrainSupport.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Behaviour/FiniteStrainSupport.hxx -------------------------------------------------------------------------------- /include/MGIS/Behaviour/Hypothesis.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Behaviour/Hypothesis.hxx -------------------------------------------------------------------------------- /include/MGIS/Behaviour/Integrate.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Behaviour/Integrate.hxx -------------------------------------------------------------------------------- /include/MGIS/Behaviour/Integrate.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Behaviour/Integrate.ixx -------------------------------------------------------------------------------- /include/MGIS/Behaviour/MaterialDataManager.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Behaviour/MaterialDataManager.hxx -------------------------------------------------------------------------------- /include/MGIS/Behaviour/MaterialFunctionManager.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Behaviour/MaterialFunctionManager.hxx -------------------------------------------------------------------------------- /include/MGIS/Behaviour/MaterialFunctionManager.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Behaviour/MaterialFunctionManager.ixx -------------------------------------------------------------------------------- /include/MGIS/Behaviour/MaterialStateManager.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Behaviour/MaterialStateManager.hxx -------------------------------------------------------------------------------- /include/MGIS/Behaviour/RotationMatrix.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Behaviour/RotationMatrix.hxx -------------------------------------------------------------------------------- /include/MGIS/Behaviour/RotationMatrix.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Behaviour/RotationMatrix.ixx -------------------------------------------------------------------------------- /include/MGIS/Behaviour/State.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Behaviour/State.hxx -------------------------------------------------------------------------------- /include/MGIS/Behaviour/State.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Behaviour/State.ixx -------------------------------------------------------------------------------- /include/MGIS/Behaviour/StateView.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Behaviour/StateView.hxx -------------------------------------------------------------------------------- /include/MGIS/Behaviour/Variable.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Behaviour/Variable.hxx -------------------------------------------------------------------------------- /include/MGIS/Config-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Config-c.h -------------------------------------------------------------------------------- /include/MGIS/Config.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Config.hxx -------------------------------------------------------------------------------- /include/MGIS/Context.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Context.hxx -------------------------------------------------------------------------------- /include/MGIS/Contract.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Contract.hxx -------------------------------------------------------------------------------- /include/MGIS/Contract.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Contract.ixx -------------------------------------------------------------------------------- /include/MGIS/Cste.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Cste.hxx -------------------------------------------------------------------------------- /include/MGIS/Database.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Database.hxx -------------------------------------------------------------------------------- /include/MGIS/ErrorBacktrace.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/ErrorBacktrace.hxx -------------------------------------------------------------------------------- /include/MGIS/Function/Algorithms.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/Algorithms.hxx -------------------------------------------------------------------------------- /include/MGIS/Function/Algorithms.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/Algorithms.ixx -------------------------------------------------------------------------------- /include/MGIS/Function/BasicLinearQuadratureSpace.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/BasicLinearQuadratureSpace.hxx -------------------------------------------------------------------------------- /include/MGIS/Function/BasicLinearQuadratureSpace.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/BasicLinearQuadratureSpace.ixx -------------------------------------------------------------------------------- /include/MGIS/Function/BasicLinearSpace.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/BasicLinearSpace.hxx -------------------------------------------------------------------------------- /include/MGIS/Function/BasicLinearSpace.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/BasicLinearSpace.ixx -------------------------------------------------------------------------------- /include/MGIS/Function/BinaryOperation.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/BinaryOperation.hxx -------------------------------------------------------------------------------- /include/MGIS/Function/BinaryOperation.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/BinaryOperation.ixx -------------------------------------------------------------------------------- /include/MGIS/Function/BinaryOperationEvaluatorBase.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/BinaryOperationEvaluatorBase.hxx -------------------------------------------------------------------------------- /include/MGIS/Function/BinaryOperationEvaluatorBase.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/BinaryOperationEvaluatorBase.ixx -------------------------------------------------------------------------------- /include/MGIS/Function/Buffer.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/Buffer.hxx -------------------------------------------------------------------------------- /include/MGIS/Function/CoalescedMemoryAccessFunctionViewBase.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/CoalescedMemoryAccessFunctionViewBase.hxx -------------------------------------------------------------------------------- /include/MGIS/Function/CoalescedMemoryAccessFunctionViewBase.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/CoalescedMemoryAccessFunctionViewBase.ixx -------------------------------------------------------------------------------- /include/MGIS/Function/CompileTimeSize.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/CompileTimeSize.hxx -------------------------------------------------------------------------------- /include/MGIS/Function/Evaluator.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/Evaluator.hxx -------------------------------------------------------------------------------- /include/MGIS/Function/Evaluator.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/Evaluator.ixx -------------------------------------------------------------------------------- /include/MGIS/Function/EvaluatorConcept.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/EvaluatorConcept.hxx -------------------------------------------------------------------------------- /include/MGIS/Function/EvaluatorConcept.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/EvaluatorConcept.ixx -------------------------------------------------------------------------------- /include/MGIS/Function/EvaluatorModifierBase.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/EvaluatorModifierBase.hxx -------------------------------------------------------------------------------- /include/MGIS/Function/EvaluatorModifierBase.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/EvaluatorModifierBase.ixx -------------------------------------------------------------------------------- /include/MGIS/Function/EvaluatorModifierConcept.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/EvaluatorModifierConcept.hxx -------------------------------------------------------------------------------- /include/MGIS/Function/EvaluatorModifierConcept.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/EvaluatorModifierConcept.ixx -------------------------------------------------------------------------------- /include/MGIS/Function/FixedSizeModifier.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/FixedSizeModifier.hxx -------------------------------------------------------------------------------- /include/MGIS/Function/FixedSizeModifier.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/FixedSizeModifier.ixx -------------------------------------------------------------------------------- /include/MGIS/Function/FixedSizeView.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/FixedSizeView.hxx -------------------------------------------------------------------------------- /include/MGIS/Function/FixedSizeView.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/FixedSizeView.ixx -------------------------------------------------------------------------------- /include/MGIS/Function/Function.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/Function.hxx -------------------------------------------------------------------------------- /include/MGIS/Function/Function.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/Function.ixx -------------------------------------------------------------------------------- /include/MGIS/Function/FunctionConcept.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/FunctionConcept.hxx -------------------------------------------------------------------------------- /include/MGIS/Function/FunctionConcept.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/FunctionConcept.ixx -------------------------------------------------------------------------------- /include/MGIS/Function/Mechanics.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/Mechanics.hxx -------------------------------------------------------------------------------- /include/MGIS/Function/Mechanics.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/Mechanics.ixx -------------------------------------------------------------------------------- /include/MGIS/Function/SharedSpace.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/SharedSpace.hxx -------------------------------------------------------------------------------- /include/MGIS/Function/SpaceConcept.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/SpaceConcept.hxx -------------------------------------------------------------------------------- /include/MGIS/Function/TensorialFunction.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/TensorialFunction.hxx -------------------------------------------------------------------------------- /include/MGIS/Function/TensorialFunction.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/TensorialFunction.ixx -------------------------------------------------------------------------------- /include/MGIS/Function/Tensors.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/Tensors.hxx -------------------------------------------------------------------------------- /include/MGIS/Function/Tensors.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/Tensors.ixx -------------------------------------------------------------------------------- /include/MGIS/Function/Tensors/CoalescedMemoryAccessTensorView.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/Tensors/CoalescedMemoryAccessTensorView.hxx -------------------------------------------------------------------------------- /include/MGIS/Function/Tensors/CoalescedMemoryAccessTensorView.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/Tensors/CoalescedMemoryAccessTensorView.ixx -------------------------------------------------------------------------------- /include/MGIS/Function/Tensors/TensorConcept.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/Tensors/TensorConcept.hxx -------------------------------------------------------------------------------- /include/MGIS/Function/Tensors/TensorModifier.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/Tensors/TensorModifier.hxx -------------------------------------------------------------------------------- /include/MGIS/Function/Tensors/TensorModifier.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/Tensors/TensorModifier.ixx -------------------------------------------------------------------------------- /include/MGIS/Function/Tensors/TensorView.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/Tensors/TensorView.hxx -------------------------------------------------------------------------------- /include/MGIS/Function/Tensors/TensorView.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/Tensors/TensorView.ixx -------------------------------------------------------------------------------- /include/MGIS/Function/UnaryOperation.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/UnaryOperation.hxx -------------------------------------------------------------------------------- /include/MGIS/Function/UnaryOperation.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/UnaryOperation.ixx -------------------------------------------------------------------------------- /include/MGIS/Function/UniformEvaluator.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/UniformEvaluator.hxx -------------------------------------------------------------------------------- /include/MGIS/Function/UniformEvaluator.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Function/UniformEvaluator.ixx -------------------------------------------------------------------------------- /include/MGIS/InvalidResult.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/InvalidResult.hxx -------------------------------------------------------------------------------- /include/MGIS/InvalidResult.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/InvalidResult.ixx -------------------------------------------------------------------------------- /include/MGIS/LibrariesManager.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/LibrariesManager.hxx -------------------------------------------------------------------------------- /include/MGIS/MaterialProperty/MaterialProperty.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/MaterialProperty/MaterialProperty.hxx -------------------------------------------------------------------------------- /include/MGIS/MaterialProperty/MaterialPropertyFctPtr.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/MaterialProperty/MaterialPropertyFctPtr.hxx -------------------------------------------------------------------------------- /include/MGIS/MaterialProperty/OutOfBoundsPolicy.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/MaterialProperty/OutOfBoundsPolicy.hxx -------------------------------------------------------------------------------- /include/MGIS/MaterialProperty/OutputStatus.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/MaterialProperty/OutputStatus.hxx -------------------------------------------------------------------------------- /include/MGIS/Model/Model.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Model/Model.hxx -------------------------------------------------------------------------------- /include/MGIS/Raise.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Raise.hxx -------------------------------------------------------------------------------- /include/MGIS/Raise.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Raise.ixx -------------------------------------------------------------------------------- /include/MGIS/StorageMode.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/StorageMode.hxx -------------------------------------------------------------------------------- /include/MGIS/ThreadPool.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/ThreadPool.hxx -------------------------------------------------------------------------------- /include/MGIS/ThreadPool.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/ThreadPool.ixx -------------------------------------------------------------------------------- /include/MGIS/ThreadedTaskResult.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/ThreadedTaskResult.hxx -------------------------------------------------------------------------------- /include/MGIS/ThreadedTaskResult.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/ThreadedTaskResult.ixx -------------------------------------------------------------------------------- /include/MGIS/Utilities/Markdown.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/Utilities/Markdown.hxx -------------------------------------------------------------------------------- /include/MGIS/VerbosityLevel.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/include/MGIS/VerbosityLevel.hxx -------------------------------------------------------------------------------- /mgis.doxygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/mgis.doxygen -------------------------------------------------------------------------------- /src/BasicLinearQuadratureSpace.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/src/BasicLinearQuadratureSpace.cxx -------------------------------------------------------------------------------- /src/BasicLinearSpace.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/src/BasicLinearSpace.cxx -------------------------------------------------------------------------------- /src/Behaviour.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/src/Behaviour.cxx -------------------------------------------------------------------------------- /src/BehaviourData.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/src/BehaviourData.cxx -------------------------------------------------------------------------------- /src/BehaviourDataView.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/src/BehaviourDataView.cxx -------------------------------------------------------------------------------- /src/BehaviourDescription.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/src/BehaviourDescription.cxx -------------------------------------------------------------------------------- /src/BehaviourIntegrationFailureAnalyser.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/src/BehaviourIntegrationFailureAnalyser.cxx -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/CoalescedMemoryAccessFunctionView.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/src/CoalescedMemoryAccessFunctionView.cxx -------------------------------------------------------------------------------- /src/Context.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/src/Context.cxx -------------------------------------------------------------------------------- /src/Contract.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/src/Contract.cxx -------------------------------------------------------------------------------- /src/Database.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/src/Database.cxx -------------------------------------------------------------------------------- /src/ErrorBacktrace.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/src/ErrorBacktrace.cxx -------------------------------------------------------------------------------- /src/Evaluator.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/src/Evaluator.cxx -------------------------------------------------------------------------------- /src/FiniteStrainSupport.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/src/FiniteStrainSupport.cxx -------------------------------------------------------------------------------- /src/FixedSizeView.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/src/FixedSizeView.cxx -------------------------------------------------------------------------------- /src/Function.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/src/Function.cxx -------------------------------------------------------------------------------- /src/Hypothesis.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/src/Hypothesis.cxx -------------------------------------------------------------------------------- /src/Integrate.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/src/Integrate.cxx -------------------------------------------------------------------------------- /src/LibrariesManager.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/src/LibrariesManager.cxx -------------------------------------------------------------------------------- /src/MFrontGenericInterfaceConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/src/MFrontGenericInterfaceConfig.cmake.in -------------------------------------------------------------------------------- /src/Markdown.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/src/Markdown.cxx -------------------------------------------------------------------------------- /src/MaterialDataManager.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/src/MaterialDataManager.cxx -------------------------------------------------------------------------------- /src/MaterialFunctionManager.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/src/MaterialFunctionManager.cxx -------------------------------------------------------------------------------- /src/MaterialProperty.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/src/MaterialProperty.cxx -------------------------------------------------------------------------------- /src/MaterialStateManager.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/src/MaterialStateManager.cxx -------------------------------------------------------------------------------- /src/Model.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/src/Model.cxx -------------------------------------------------------------------------------- /src/Raise.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/src/Raise.cxx -------------------------------------------------------------------------------- /src/RotationMatrix.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/src/RotationMatrix.cxx -------------------------------------------------------------------------------- /src/State.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/src/State.cxx -------------------------------------------------------------------------------- /src/StateView.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/src/StateView.cxx -------------------------------------------------------------------------------- /src/TensorModifier.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/src/TensorModifier.cxx -------------------------------------------------------------------------------- /src/TensorView.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/src/TensorView.cxx -------------------------------------------------------------------------------- /src/ThreadPool.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/src/ThreadPool.cxx -------------------------------------------------------------------------------- /src/ThreadedTaskResult.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/src/ThreadedTaskResult.cxx -------------------------------------------------------------------------------- /src/UniformEvaluator.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/src/UniformEvaluator.cxx -------------------------------------------------------------------------------- /src/Variable.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/src/Variable.cxx -------------------------------------------------------------------------------- /src/VerbosityLevel.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/src/VerbosityLevel.cxx -------------------------------------------------------------------------------- /tests/BoundsCheckTest.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/BoundsCheckTest.cxx -------------------------------------------------------------------------------- /tests/BoundsCheckTest.mfront: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/BoundsCheckTest.mfront -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/CoalescedMemoryAccessFunctionViewTest.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/CoalescedMemoryAccessFunctionViewTest.cxx -------------------------------------------------------------------------------- /tests/ComputeSpeedOfSound.mfront: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/ComputeSpeedOfSound.mfront -------------------------------------------------------------------------------- /tests/ComputeSpeedOfSoundTest.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/ComputeSpeedOfSoundTest.cxx -------------------------------------------------------------------------------- /tests/ComputeSpeedOfSoundTest2.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/ComputeSpeedOfSoundTest2.cxx -------------------------------------------------------------------------------- /tests/Elasticity.mfront: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/Elasticity.mfront -------------------------------------------------------------------------------- /tests/ErrorBacktraceTest.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/ErrorBacktraceTest.cxx -------------------------------------------------------------------------------- /tests/EvaluatorsTest.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/EvaluatorsTest.cxx -------------------------------------------------------------------------------- /tests/ExternalStateVariableTest.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/ExternalStateVariableTest.cxx -------------------------------------------------------------------------------- /tests/FiniteStrainSingleCrystal.mfront: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/FiniteStrainSingleCrystal.mfront -------------------------------------------------------------------------------- /tests/FunctionTest.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/FunctionTest.cxx -------------------------------------------------------------------------------- /tests/Gurson.mfront: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/Gurson.mfront -------------------------------------------------------------------------------- /tests/Inconel600_YoungModulus.mfront: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/Inconel600_YoungModulus.mfront -------------------------------------------------------------------------------- /tests/InitializeFunctionTest.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/InitializeFunctionTest.cxx -------------------------------------------------------------------------------- /tests/InitializeFunctionTest.mfront: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/InitializeFunctionTest.mfront -------------------------------------------------------------------------------- /tests/IntegrateDebugTest.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/IntegrateDebugTest.cxx -------------------------------------------------------------------------------- /tests/IntegrateTest.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/IntegrateTest.cxx -------------------------------------------------------------------------------- /tests/IntegrateTest2.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/IntegrateTest2.cxx -------------------------------------------------------------------------------- /tests/IntegrateTest2b.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/IntegrateTest2b.cxx -------------------------------------------------------------------------------- /tests/IntegrateTest3.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/IntegrateTest3.cxx -------------------------------------------------------------------------------- /tests/IntegrateTest3b.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/IntegrateTest3b.cxx -------------------------------------------------------------------------------- /tests/IntegrateTest4.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/IntegrateTest4.cxx -------------------------------------------------------------------------------- /tests/IntegrateTest5.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/IntegrateTest5.cxx -------------------------------------------------------------------------------- /tests/IntegrationFailureDebugTest.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/IntegrationFailureDebugTest.cxx -------------------------------------------------------------------------------- /tests/InvalidResultTest.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/InvalidResultTest.cxx -------------------------------------------------------------------------------- /tests/LoadMaterialPropertyTest.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/LoadMaterialPropertyTest.cxx -------------------------------------------------------------------------------- /tests/MFrontGenericBehaviourInterfaceTest.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/MFrontGenericBehaviourInterfaceTest.cxx -------------------------------------------------------------------------------- /tests/MFrontGenericBehaviourInterfaceTest2.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/MFrontGenericBehaviourInterfaceTest2.cxx -------------------------------------------------------------------------------- /tests/MFrontGenericBehaviourInterfaceTest3.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/MFrontGenericBehaviourInterfaceTest3.cxx -------------------------------------------------------------------------------- /tests/MaterialFunctionManagerTest.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/MaterialFunctionManagerTest.cxx -------------------------------------------------------------------------------- /tests/MaterialPropertyBoundCheck.mfront: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/MaterialPropertyBoundCheck.mfront -------------------------------------------------------------------------------- /tests/MaterialPropertyBoundCheck2.mfront: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/MaterialPropertyBoundCheck2.mfront -------------------------------------------------------------------------------- /tests/MaterialPropertyBoundCheck3.mfront: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/MaterialPropertyBoundCheck3.mfront -------------------------------------------------------------------------------- /tests/MaterialPropertyErrnoCheck.mfront: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/MaterialPropertyErrnoCheck.mfront -------------------------------------------------------------------------------- /tests/MaterialPropertyErrnoCheck2.mfront: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/MaterialPropertyErrnoCheck2.mfront -------------------------------------------------------------------------------- /tests/MechanicalEvaluatorsTest.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/MechanicalEvaluatorsTest.cxx -------------------------------------------------------------------------------- /tests/Norton.mfront: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/Norton.mfront -------------------------------------------------------------------------------- /tests/NortonFailure.mfront: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/NortonFailure.mfront -------------------------------------------------------------------------------- /tests/OrthotropicElasticity.mfront: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/OrthotropicElasticity.mfront -------------------------------------------------------------------------------- /tests/ParameterTest.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/ParameterTest.cxx -------------------------------------------------------------------------------- /tests/ParameterTest.mfront: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/ParameterTest.mfront -------------------------------------------------------------------------------- /tests/Plasticity.mfront: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/Plasticity.mfront -------------------------------------------------------------------------------- /tests/PostProcessingTest.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/PostProcessingTest.cxx -------------------------------------------------------------------------------- /tests/PostProcessingTest.mfront: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/PostProcessingTest.mfront -------------------------------------------------------------------------------- /tests/ReduceTest.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/ReduceTest.cxx -------------------------------------------------------------------------------- /tests/RotateFunctionsTest.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/RotateFunctionsTest.cxx -------------------------------------------------------------------------------- /tests/SharedSpaceTest.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/SharedSpaceTest.cxx -------------------------------------------------------------------------------- /tests/StandardElastoViscoPlasticityPlasticityTest11.mfront: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/StandardElastoViscoPlasticityPlasticityTest11.mfront -------------------------------------------------------------------------------- /tests/TensorialExternalStateVariableTest.mfront: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/TensorialExternalStateVariableTest.mfront -------------------------------------------------------------------------------- /tests/TensorialFunctionTest.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/TensorialFunctionTest.cxx -------------------------------------------------------------------------------- /tests/UniformEvaluatorsTest.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/UniformEvaluatorsTest.cxx -------------------------------------------------------------------------------- /tests/ode_rk54.mfront: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelfer/MFrontGenericInterfaceSupport/HEAD/tests/ode_rk54.mfront --------------------------------------------------------------------------------