├── .clang-format ├── .clang-tidy ├── .codechecker ├── .gitattributes ├── .github └── workflows │ ├── build_docs.yml │ ├── close_pr.yml │ ├── cmake_integration.yml │ ├── copyright.yml │ ├── cpp.yml │ └── python.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CMakePresets.json ├── LICENSE ├── README.md ├── cmake ├── .gitignore ├── Modules │ ├── DepUtils.cmake │ ├── DetectTorchCXXABI.cxx │ ├── Findcsvparser.cmake │ ├── Findgperftools.cmake │ ├── Findhit.cmake │ ├── Findtimpi.cmake │ ├── Findtorch.cmake │ └── Findwasp.cmake ├── add_subdirectory │ ├── CMakeLists.txt │ └── main.cxx ├── find_package │ ├── CMakeLists.txt │ └── main.cxx └── neml2Config.cmake.in ├── contrib ├── install_Catch2.sh ├── install_argparse.sh ├── install_gperftools.sh ├── install_hit.cmake ├── install_hit.sh ├── install_nlohmann_json.sh ├── install_timpi.sh └── install_wasp.sh ├── doc ├── .gitignore ├── CMakeLists.txt ├── config │ ├── Doxyfile.in │ ├── DoxygenLayout.xml │ ├── DoxygenLayoutPython.xml │ ├── HTML.in │ ├── Python.in │ ├── custom.css │ ├── header.html │ └── mathjax.js ├── content │ ├── asset │ │ ├── cover_min.png │ │ ├── graph_basic.svg │ │ ├── graph_composed.svg │ │ ├── graph_custom.svg │ │ ├── graph_highlight.svg │ │ ├── lsi_rve_simplify.svg │ │ ├── perfetto.png │ │ ├── phase.png │ │ ├── pyrolysis_controlmass.svg │ │ ├── pyrolysis_rve.svg │ │ └── stress.png │ ├── installation │ │ ├── customization.md │ │ ├── deps.md │ │ ├── install.md │ │ └── integration.md │ ├── physics │ │ ├── chemical_reactions.md │ │ ├── phase_field_fracture.md │ │ ├── reactive_infiltration.md │ │ ├── solid_mechanics.md │ │ └── thermosetting_pyrolysis.md │ ├── system │ │ ├── data.md │ │ ├── driver.md │ │ ├── model.md │ │ ├── scheduler.md │ │ ├── settings.md │ │ ├── solver.md │ │ └── tensor.md │ └── tutorials │ │ ├── contributing.md │ │ ├── extension │ │ ├── argument_declaration │ │ │ ├── ex1.cxx │ │ │ ├── input.i │ │ │ └── main.md │ │ ├── connection_to_input_files │ │ │ ├── ex1.cxx │ │ │ ├── input.i │ │ │ └── main.md │ │ ├── extension.md │ │ ├── model_composition │ │ │ ├── ex1.cxx │ │ │ ├── ex2.py │ │ │ ├── input.i │ │ │ └── main.md │ │ └── the_forward_operator │ │ │ ├── ex1.cxx │ │ │ ├── input.i │ │ │ └── main.md │ │ ├── getting_started.md │ │ ├── models │ │ ├── evaluation_device │ │ │ ├── ex1.cxx │ │ │ ├── ex2.py │ │ │ ├── input.i │ │ │ └── main.md │ │ ├── implicit_model │ │ │ ├── ex1.cxx │ │ │ ├── ex2.py │ │ │ ├── ex3.cxx │ │ │ ├── ex4.py │ │ │ ├── input1.i │ │ │ ├── input2.i │ │ │ └── main.md │ │ ├── input_file.md │ │ ├── just_in_time_compilation │ │ │ ├── ex1.cxx │ │ │ ├── ex2.py │ │ │ ├── ex3.cxx │ │ │ ├── ex4.py │ │ │ ├── ex5.cxx │ │ │ ├── ex6.py │ │ │ ├── input.i │ │ │ └── main.md │ │ ├── model_composition │ │ │ ├── ex1.cxx │ │ │ ├── ex2.py │ │ │ ├── ex3.cxx │ │ │ ├── ex4.py │ │ │ ├── ex5.cxx │ │ │ ├── ex6.py │ │ │ ├── input.i │ │ │ ├── input_composed.i │ │ │ └── main.md │ │ ├── model_parameters │ │ │ ├── ex1.cxx │ │ │ ├── ex2.py │ │ │ ├── ex3.cxx │ │ │ ├── ex4.py │ │ │ ├── ex5.cxx │ │ │ ├── ex6.py │ │ │ ├── input.i │ │ │ └── main.md │ │ ├── model_parameters_revisited │ │ │ ├── ex1.cxx │ │ │ ├── ex2.py │ │ │ ├── ex3.cxx │ │ │ ├── ex4.py │ │ │ ├── ex5.cxx │ │ │ ├── ex6.py │ │ │ ├── ex7.cxx │ │ │ ├── ex8.py │ │ │ ├── input1.i │ │ │ ├── input2.i │ │ │ ├── input3.i │ │ │ ├── input4.i │ │ │ └── main.md │ │ ├── models.md │ │ ├── running_your_first_model │ │ │ ├── ex1.cxx │ │ │ ├── ex2.py │ │ │ ├── ex3.cxx │ │ │ ├── ex4.py │ │ │ ├── input.i │ │ │ └── main.md │ │ ├── transient_driver │ │ │ ├── ex1.cxx │ │ │ ├── ex2.py │ │ │ ├── input.i │ │ │ └── main.md │ │ └── vectorization │ │ │ ├── ex1.cxx │ │ │ ├── ex2.py │ │ │ ├── ex3.cxx │ │ │ ├── ex4.py │ │ │ ├── input.i │ │ │ └── main.md │ │ ├── naming_conventions.md │ │ ├── next_steps.md │ │ ├── optimization │ │ ├── automatic_differentiation │ │ │ ├── ex1.py │ │ │ ├── ex2.py │ │ │ ├── input.i │ │ │ └── main.md │ │ ├── optimization.md │ │ ├── parameter_calibration │ │ │ ├── ex1.py │ │ │ ├── input.i │ │ │ └── main.md │ │ └── pyzag.md │ │ ├── tensors │ │ ├── broadcasting │ │ │ └── main.md │ │ ├── indexing │ │ │ └── main.md │ │ ├── tensor_creation │ │ │ └── main.md │ │ ├── tensor_types │ │ │ └── main.md │ │ ├── tensor_view │ │ │ └── main.md │ │ └── tensors.md │ │ └── tutorials.md ├── js │ ├── .gitignore │ ├── components │ │ ├── simple-scheduler-demo.js │ │ ├── static-hybrid-scheduler-demo.js │ │ ├── static-hybrid-scheduler.js │ │ └── work-dispatcher.js │ └── package.json ├── requirements.txt ├── scripts │ ├── fixup_pystub.py │ ├── layout.py │ ├── listing.py │ ├── postprocess.py │ ├── preprocess.py │ ├── syntax_to_md.py │ ├── update_content.py │ └── utils.py └── syntax.cxx ├── include └── neml2 │ ├── base │ ├── DiagnosticsInterface.h │ ├── EnumSelection.h │ ├── EnumSelectionBase.h │ ├── Factory.h │ ├── HITParser.h │ ├── InputFile.h │ ├── LabeledAxis.h │ ├── LabeledAxisAccessor.h │ ├── MultiEnumSelection.h │ ├── NEML2Object.h │ ├── Option.h │ ├── OptionBase.h │ ├── OptionSet.h │ ├── Parser.h │ ├── Registry.h │ ├── Settings.h │ ├── TensorName.h │ ├── TracingInterface.h │ └── guards.h │ ├── dispatchers │ ├── FixedSizeWorkGenerator.h │ ├── SimpleMPIScheduler.h │ ├── SimpleScheduler.h │ ├── SliceGenerator.h │ ├── StaticHybridScheduler.h │ ├── TensorLoader.h │ ├── ValueMapLoader.h │ ├── WorkDispatcher.h │ ├── WorkGenerator.h │ ├── WorkScheduler.h │ ├── derivmap_helpers.h │ └── valuemap_helpers.h │ ├── drivers │ ├── Driver.h │ ├── ModelDriver.h │ ├── TransientDriver.h │ └── solid_mechanics │ │ ├── LDISolidMechanicsDriver.h │ │ ├── SDTSolidMechanicsDriver.h │ │ └── SolidMechanicsDriver.h │ ├── misc │ ├── assertions.h │ ├── defaults.h │ ├── errors.h │ ├── string_utils.h │ └── types.h │ ├── models │ ├── ArrheniusParameter.h │ ├── Assembler.h │ ├── BackwardEulerTimeIntegration.h │ ├── BilinearInterpolation.h │ ├── BufferStore.h │ ├── ComposedModel.h │ ├── ConstantParameter.h │ ├── CopyVariable.h │ ├── Data.h │ ├── DependencyDefinition.h │ ├── DependencyResolver.h │ ├── Derivative.h │ ├── Determinant.h │ ├── DynamicMean.h │ ├── DynamicSum.h │ ├── FischerBurmeister.h │ ├── ForwardEulerTimeIntegration.h │ ├── HermiteSmoothStep.h │ ├── ImplicitUpdate.h │ ├── IncrementToRate.h │ ├── InputParameter.h │ ├── IntermediateMean.h │ ├── IntermediateSum.h │ ├── Interpolation.h │ ├── LinearCombination.h │ ├── LinearInterpolation.h │ ├── MixedControlSetup.h │ ├── Model.h │ ├── NonlinearParameter.h │ ├── ParameterStore.h │ ├── ParameterToState.h │ ├── R2Multiplication.h │ ├── R2toSR2.h │ ├── R2toWR2.h │ ├── Reduction.h │ ├── RotationMatrix.h │ ├── SR2Invariant.h │ ├── SR2toR2.h │ ├── ScalarMultiplication.h │ ├── ScalarToDiagonalSR2.h │ ├── SymmetricHermiteInterpolation.h │ ├── Variable.h │ ├── VariableBase.h │ ├── VariableRate.h │ ├── VariableStore.h │ ├── WR2ExplicitExponentialTimeIntegration.h │ ├── WR2ImplicitExponentialTimeIntegration.h │ ├── chemical_reactions │ │ ├── AvramiErofeevNucleation.h │ │ ├── ContractingGeometry.h │ │ ├── CylindricalChannelGeometry.h │ │ ├── DiffusionLimitedReaction.h │ │ ├── EffectiveVolume.h │ │ └── ReactionMechanism.h │ ├── crystallography │ │ ├── CrystalGeometry.h │ │ └── CubicCrystal.h │ ├── map_types.h │ ├── map_types_fwd.h │ ├── phase_field_fracture │ │ ├── CrackGeometricFunction.h │ │ ├── CrackGeometricFunctionAT1.h │ │ ├── CrackGeometricFunctionAT2.h │ │ ├── DegradationFunction.h │ │ ├── LinearIsotropicStrainEnergyDensity.h │ │ ├── PowerDegradationFunction.h │ │ ├── RationalDegradationFunction.h │ │ └── StrainEnergyDensity.h │ ├── porous_flow │ │ ├── AdvectiveStress.h │ │ ├── BrooksCoreyCapillaryPressure.h │ │ ├── CapillaryPressure.h │ │ ├── EffectiveSaturation.h │ │ ├── ExponentialLawPermeability.h │ │ ├── KozenyCarmanPermeability.h │ │ ├── PorosityPermeabilityRelation.h │ │ ├── PowerLawPermeability.h │ │ └── VanGenuchtenCapillaryPressure.h │ ├── solid_mechanics │ │ ├── AssociativeIsotropicPlasticHardening.h │ │ ├── AssociativeJ2FlowDirection.h │ │ ├── AssociativeKinematicPlasticHardening.h │ │ ├── AssociativePlasticFlow.h │ │ ├── ChabochePlasticHardening.h │ │ ├── Eigenstrain.h │ │ ├── FlowRule.h │ │ ├── FredrickArmstrongPlasticHardening.h │ │ ├── GTNYieldFunction.h │ │ ├── GursonCavitation.h │ │ ├── IsotropicHardening.h │ │ ├── IsotropicHardeningStaticRecovery.h │ │ ├── IsotropicMandelStress.h │ │ ├── KinematicHardening.h │ │ ├── KinematicHardeningStaticRecovery.h │ │ ├── KocksMeckingActivationEnergy.h │ │ ├── KocksMeckingFlowSwitch.h │ │ ├── KocksMeckingFlowViscosity.h │ │ ├── KocksMeckingIntercept.h │ │ ├── KocksMeckingRateSensitivity.h │ │ ├── KocksMeckingYieldStress.h │ │ ├── LinearIsotropicElasticJ2TrialStressUpdate.h │ │ ├── LinearIsotropicHardening.h │ │ ├── LinearKinematicHardening.h │ │ ├── MandelStress.h │ │ ├── Normality.h │ │ ├── OlevskySinteringStress.h │ │ ├── PerzynaPlasticFlowRate.h │ │ ├── PhaseTransformationEigenstrain.h │ │ ├── PlasticFlowRate.h │ │ ├── PowerLawIsotropicHardeningStaticRecovery.h │ │ ├── PowerLawKinematicHardeningStaticRecovery.h │ │ ├── RateIndependentPlasticFlowConstraint.h │ │ ├── SlopeSaturationVoceIsotropicHardening.h │ │ ├── SwellingAndPhaseChangeDeformationJacobian.h │ │ ├── ThermalDeformationJacobian.h │ │ ├── ThermalEigenstrain.h │ │ ├── TwoStageThermalAnnealing.h │ │ ├── VoceIsotropicHardening.h │ │ ├── VolumeAdjustDeformationGradient.h │ │ ├── VolumeChangeEigenstrain.h │ │ ├── YieldFunction.h │ │ ├── crystal_plasticity │ │ │ ├── ElasticStrainRate.h │ │ │ ├── FixOrientation.h │ │ │ ├── LinearSingleSlipHardeningRule.h │ │ │ ├── OrientationRate.h │ │ │ ├── PlasticDeformationRate.h │ │ │ ├── PlasticSpatialVelocityGradient.h │ │ │ ├── PlasticVorticity.h │ │ │ ├── PowerLawSlipRule.h │ │ │ ├── ResolvedShear.h │ │ │ ├── SingleSlipHardeningRule.h │ │ │ ├── SingleSlipStrengthMap.h │ │ │ ├── SlipRule.h │ │ │ ├── SlipStrengthMap.h │ │ │ ├── SumSlipRates.h │ │ │ └── VoceSingleSlipHardeningRule.h │ │ └── elasticity │ │ │ ├── AnisotropicElasticity.h │ │ │ ├── CubicElasticityConverter.h │ │ │ ├── CubicElasticityTensor.h │ │ │ ├── Elasticity.h │ │ │ ├── ElasticityConverter.h │ │ │ ├── ElasticityInterface.h │ │ │ ├── GeneralElasticity.h │ │ │ ├── GreenLagrangeStrain.h │ │ │ ├── IsotropicElasticityConverter.h │ │ │ ├── IsotropicElasticityTensor.h │ │ │ └── LinearIsotropicElasticity.h │ └── utils.h │ ├── solvers │ ├── Newton.h │ ├── NewtonWithLineSearch.h │ ├── NewtonWithTrustRegion.h │ ├── NonlinearSolver.h │ ├── NonlinearSystem.h │ ├── Solver.h │ └── TrustRegionSubProblem.h │ ├── tensors │ ├── DTensor.h │ ├── MillerIndex.h │ ├── PrimitiveTensor.h │ ├── Quaternion.h │ ├── R2.h │ ├── R3.h │ ├── R4.h │ ├── Rot.h │ ├── SFFR4.h │ ├── SFR3.h │ ├── SR2.h │ ├── SSR4.h │ ├── SWR4.h │ ├── Scalar.h │ ├── Tensor.h │ ├── TensorBase.h │ ├── TensorBaseImpl.h │ ├── TensorCache.h │ ├── TensorValue.h │ ├── TraceableSize.h │ ├── TraceableTensorShape.h │ ├── Transformable.h │ ├── Vec.h │ ├── VecBase.h │ ├── WFFR4.h │ ├── WR2.h │ ├── WSR4.h │ ├── WWR4.h │ ├── assertions.h │ ├── crystallography.h │ ├── functions │ │ ├── abs.h │ │ ├── acos.h │ │ ├── argmax.h │ │ ├── argmin.h │ │ ├── asin.h │ │ ├── atan.h │ │ ├── cat.h │ │ ├── cbrt.h │ │ ├── clamp.h │ │ ├── clip.h │ │ ├── cos.h │ │ ├── cosh.h │ │ ├── cross.h │ │ ├── deg2rad.h │ │ ├── det.h │ │ ├── dev.h │ │ ├── diagonalize.h │ │ ├── diff.h │ │ ├── discretization │ │ │ ├── assemble.h │ │ │ ├── interpolate.h │ │ │ └── scatter.h │ │ ├── einsum.h │ │ ├── exp.h │ │ ├── fmod.h │ │ ├── from_assembly.h │ │ ├── gcd.h │ │ ├── heaviside.h │ │ ├── imap.h │ │ ├── inner.h │ │ ├── inv.h │ │ ├── jacrev.h │ │ ├── linalg │ │ │ ├── dsptrf.h │ │ │ ├── eigh.h │ │ │ ├── ieigh.h │ │ │ ├── lu_factor.h │ │ │ ├── lu_solve.h │ │ │ └── solve.h │ │ ├── linspace.h │ │ ├── log.h │ │ ├── log10.h │ │ ├── logical.h │ │ ├── logspace.h │ │ ├── macaulay.h │ │ ├── mean.h │ │ ├── minimum.h │ │ ├── mm.h │ │ ├── mv.h │ │ ├── norm.h │ │ ├── norm_sq.h │ │ ├── normalize_gcd.h │ │ ├── operators.h │ │ ├── outer.h │ │ ├── pow.h │ │ ├── sign.h │ │ ├── sin.h │ │ ├── sinh.h │ │ ├── sqrt.h │ │ ├── stack.h │ │ ├── sum.h │ │ ├── sum_to_size.h │ │ ├── symmetrization.h │ │ ├── tan.h │ │ ├── tanh.h │ │ ├── to_assembly.h │ │ ├── tr.h │ │ ├── unit.h │ │ ├── utils.h │ │ ├── vdot.h │ │ ├── vol.h │ │ └── where.h │ ├── indexing.h │ ├── jit.h │ ├── macros.h │ ├── shape_utils.h │ ├── tensors.h │ └── tensors_fwd.h │ └── user_tensors │ ├── FactoryMethodBase.h │ ├── FillR2.h │ ├── FillRot.h │ ├── FillSR2.h │ ├── FillWR2.h │ ├── FromTorchScript.h │ ├── FullTensor.h │ ├── IdentityTensor.h │ ├── LinspaceTensor.h │ ├── LogspaceTensor.h │ ├── MultiColumnCSVScalar.h │ ├── Orientation.h │ ├── RandomTensor.h │ ├── SymmetryFromOrbifold.h │ ├── UserTensor.h │ └── UserTensorBase.h ├── pyproject.toml ├── python ├── CMakeLists.txt ├── examples │ ├── README.md │ ├── crystal_plasticity │ │ ├── compare_formulations.ipynb │ │ ├── crystal.i │ │ ├── crystal_integrated.i │ │ └── polefigures.ipynb │ ├── demo_model.i │ ├── deterministic.ipynb │ ├── requirements.txt │ └── statistical.ipynb ├── neml2 │ ├── __init__.py │ ├── core.cxx │ ├── crystallography.cxx │ ├── csrc │ │ ├── core │ │ │ ├── Factory.cxx │ │ │ ├── LabeledAxis.cxx │ │ │ ├── MatrixAssembler.cxx │ │ │ ├── Model.cxx │ │ │ ├── TensorValue.cxx │ │ │ ├── VariableName.cxx │ │ │ ├── VectorAssembler.cxx │ │ │ ├── types.h │ │ │ ├── utils.cxx │ │ │ └── utils.h │ │ ├── math │ │ │ ├── cross.cxx │ │ │ ├── inv.cxx │ │ │ ├── linspace.cxx │ │ │ ├── logspace.cxx │ │ │ ├── norm.cxx │ │ │ └── types.h │ │ └── tensors │ │ │ ├── BaseView.cxx │ │ │ ├── BaseView.h │ │ │ ├── BatchView.cxx │ │ │ ├── BatchView.h │ │ │ ├── DynamicView.cxx │ │ │ ├── DynamicView.h │ │ │ ├── IntmdView.cxx │ │ │ ├── IntmdView.h │ │ │ ├── MillerIndex.cxx │ │ │ ├── PrimitiveTensor.cxx │ │ │ ├── PrimitiveTensor.h │ │ │ ├── Quaternion.cxx │ │ │ ├── R2.cxx │ │ │ ├── R3.cxx │ │ │ ├── R4.cxx │ │ │ ├── Rot.cxx │ │ │ ├── SFFR4.cxx │ │ │ ├── SFR3.cxx │ │ │ ├── SR2.cxx │ │ │ ├── SSR4.cxx │ │ │ ├── SWR4.cxx │ │ │ ├── Scalar.cxx │ │ │ ├── StaticView.cxx │ │ │ ├── StaticView.h │ │ │ ├── Tensor.cxx │ │ │ ├── TensorBase.cxx │ │ │ ├── TensorBase.h │ │ │ ├── Vec.cxx │ │ │ ├── WFFR4.cxx │ │ │ ├── WR2.cxx │ │ │ ├── WSR4.cxx │ │ │ ├── WWR4.cxx │ │ │ ├── operators.cxx │ │ │ └── types.h │ ├── macros.h │ ├── math.cxx │ ├── postprocessing │ │ ├── __init__.py │ │ ├── odf.py │ │ └── polefigure.py │ ├── pyzag │ │ ├── __init__.py │ │ └── interface.py │ ├── requirements.txt │ ├── reserved.cxx │ └── tensors.cxx ├── requirements.txt └── tests │ ├── CMakeLists.txt │ ├── conftest.py │ ├── pyzag │ ├── gold │ │ ├── elastic_model.pt │ │ ├── km_mixed_model.pt │ │ └── viscoplastic_model.pt │ ├── models │ │ ├── correct_model.i │ │ ├── elastic_model.i │ │ ├── km_mixed_model.i │ │ └── viscoplastic_model.i │ ├── test_NEML2PyzagModel.py │ └── test_adjoint.py │ ├── requirements.txt │ ├── tensors │ ├── common.py │ ├── test_PrimitiveTensor.py │ ├── test_Tensor.py │ └── test_TensorBase.py │ ├── test_LabeledAxis.i │ ├── test_LabeledAxis.py │ ├── test_MatrixAssembler.py │ ├── test_Model.i │ ├── test_Model.py │ ├── test_Model_diagnose.i │ ├── test_ParameterStore.i │ ├── test_ParameterStore.py │ ├── test_VariableName.py │ ├── test_VectorAssembler.py │ ├── test_training.i │ └── test_training.py ├── requirements.txt ├── runner ├── CMakeLists.txt ├── benchmark │ ├── .gitignore │ ├── analyze.py │ ├── chaboche2 │ │ └── model.i │ ├── chaboche4 │ │ └── model.i │ ├── chaboche6 │ │ └── model.i │ ├── elasticity │ │ └── model.i │ ├── gtntheig │ │ └── model.i │ ├── isoharden │ │ └── model.i │ ├── radret │ │ └── model.i │ ├── requirements.txt │ ├── run.py │ ├── scpcoup │ │ └── model.i │ ├── scpdecoup │ │ └── model.i │ ├── scpdecoupexp │ │ └── model.i │ ├── tcprandom │ │ └── model.i │ └── tcpsingle │ │ └── model.i └── src │ └── main.cxx ├── scripts ├── check_copyright.py ├── check_python_dep.py ├── clobber.sh ├── coverage.sh.in ├── filter_cc.py └── gcov_clang_wrapper.sh ├── setup.py ├── src └── neml2 │ ├── CMakeLists.txt │ ├── base │ ├── DiagnosticsInterface.cxx │ ├── EnumSelection.cxx │ ├── EnumSelectionBase.cxx │ ├── Factory.cxx │ ├── HITParser.cxx │ ├── InputFile.cxx │ ├── LabeledAxis.cxx │ ├── LabeledAxisAccessor.cxx │ ├── MultiEnumSelection.cxx │ ├── NEML2Object.cxx │ ├── Option.cxx │ ├── OptionBase.cxx │ ├── OptionSet.cxx │ ├── Parser.cxx │ ├── Registry.cxx │ ├── Settings.cxx │ ├── TensorName.cxx │ ├── TracingInterface.cxx │ └── guards.cxx │ ├── dispatchers │ ├── SimpleMPIScheduler.cxx │ ├── SimpleScheduler.cxx │ ├── SliceGenerator.cxx │ ├── StaticHybridScheduler.cxx │ ├── TensorLoader.cxx │ ├── ValueMapLoader.cxx │ ├── WorkScheduler.cxx │ ├── derivmap_helpers.cxx │ └── valuemap_helpers.cxx │ ├── drivers │ ├── Driver.cxx │ ├── ModelDriver.cxx │ ├── TransientDriver.cxx │ └── solid_mechanics │ │ ├── LDISolidMechanicsDriver.cxx │ │ ├── SDTSolidMechanicsDriver.cxx │ │ └── SolidMechanicsDriver.cxx │ ├── misc │ ├── defaults.cxx │ ├── errors.cxx │ ├── string_utils.cxx │ └── types.cxx │ ├── models │ ├── ArrheniusParameter.cxx │ ├── Assembler.cxx │ ├── BackwardEulerTimeIntegration.cxx │ ├── BilinearInterpolation.cxx │ ├── BufferStore.cxx │ ├── ComposedModel.cxx │ ├── ConstantParameter.cxx │ ├── CopyVariable.cxx │ ├── Data.cxx │ ├── Derivative.cxx │ ├── Determinant.cxx │ ├── DynamicMean.cxx │ ├── DynamicSum.cxx │ ├── FischerBurmeister.cxx │ ├── ForwardEulerTimeIntegration.cxx │ ├── HermiteSmoothStep.cxx │ ├── ImplicitUpdate.cxx │ ├── IncrementToRate.cxx │ ├── InputParameter.cxx │ ├── IntermediateMean.cxx │ ├── IntermediateSum.cxx │ ├── Interpolation.cxx │ ├── LinearCombination.cxx │ ├── LinearInterpolation.cxx │ ├── MixedControlSetup.cxx │ ├── Model.cxx │ ├── ParameterStore.cxx │ ├── ParameterToState.cxx │ ├── R2Multiplication.cxx │ ├── R2toSR2.cxx │ ├── R2toWR2.cxx │ ├── Reduction.cxx │ ├── RotationMatrix.cxx │ ├── SR2Invariant.cxx │ ├── SR2toR2.cxx │ ├── ScalarMultiplication.cxx │ ├── ScalarToDiagonalSR2.cxx │ ├── SymmetricHermiteInterpolation.cxx │ ├── Variable.cxx │ ├── VariableBase.cxx │ ├── VariableRate.cxx │ ├── VariableStore.cxx │ ├── WR2ExplicitExponentialTimeIntegration.cxx │ ├── WR2ImplicitExponentialTimeIntegration.cxx │ ├── chemical_reactions │ │ ├── AvramiErofeevNucleation.cxx │ │ ├── ContractingGeometry.cxx │ │ ├── CylindricalChannelGeometry.cxx │ │ ├── DiffusionLimitedReaction.cxx │ │ ├── EffectiveVolume.cxx │ │ └── ReactionMechanism.cxx │ ├── crystallography │ │ ├── CrystalGeometry.cxx │ │ └── CubicCrystal.cxx │ ├── phase_field_fracture │ │ ├── CrackGeometricFunction.cxx │ │ ├── CrackGeometricFunctionAT1.cxx │ │ ├── CrackGeometricFunctionAT2.cxx │ │ ├── DegradationFunction.cxx │ │ ├── LinearIsotropicStrainEnergyDensity.cxx │ │ ├── PowerDegradationFunction.cxx │ │ ├── RationalDegradationFunction.cxx │ │ └── StrainEnergyDensity.cxx │ ├── porous_flow │ │ ├── AdvectiveStress.cxx │ │ ├── BrooksCoreyCapillaryPressure.cxx │ │ ├── CapillaryPressure.cxx │ │ ├── EffectiveSaturation.cxx │ │ ├── ExponentialLawPermeability.cxx │ │ ├── KozenyCarmanPermeability.cxx │ │ ├── PorosityPermeabilityRelation.cxx │ │ ├── PowerLawPermeability.cxx │ │ └── VanGenuchtenCapillaryPressure.cxx │ └── solid_mechanics │ │ ├── AssociativeIsotropicPlasticHardening.cxx │ │ ├── AssociativeJ2FlowDirection.cxx │ │ ├── AssociativeKinematicPlasticHardening.cxx │ │ ├── AssociativePlasticFlow.cxx │ │ ├── ChabochePlasticHardening.cxx │ │ ├── Eigenstrain.cxx │ │ ├── FlowRule.cxx │ │ ├── FredrickArmstrongPlasticHardening.cxx │ │ ├── GTNYieldFunction.cxx │ │ ├── GursonCavitation.cxx │ │ ├── IsotropicHardening.cxx │ │ ├── IsotropicHardeningStaticRecovery.cxx │ │ ├── IsotropicMandelStress.cxx │ │ ├── KinematicHardening.cxx │ │ ├── KinematicHardeningStaticRecovery.cxx │ │ ├── KocksMeckingActivationEnergy.cxx │ │ ├── KocksMeckingFlowSwitch.cxx │ │ ├── KocksMeckingFlowViscosity.cxx │ │ ├── KocksMeckingIntercept.cxx │ │ ├── KocksMeckingRateSensitivity.cxx │ │ ├── KocksMeckingYieldStress.cxx │ │ ├── LinearIsotropicElasticJ2TrialStressUpdate.cxx │ │ ├── LinearIsotropicHardening.cxx │ │ ├── LinearKinematicHardening.cxx │ │ ├── MandelStress.cxx │ │ ├── Normality.cxx │ │ ├── OlevskySinteringStress.cxx │ │ ├── PerzynaPlasticFlowRate.cxx │ │ ├── PhaseTransformationEigenstrain.cxx │ │ ├── PlasticFlowRate.cxx │ │ ├── PowerLawIsotropicHardeningStaticRecovery.cxx │ │ ├── PowerLawKinematicHardeningStaticRecovery.cxx │ │ ├── RateIndependentPlasticFlowConstraint.cxx │ │ ├── SlopeSaturationVoceIsotropicHardening.cxx │ │ ├── SwellingAndPhaseChangeDeformationJacobian.cxx │ │ ├── ThermalDeformationJacobian.cxx │ │ ├── ThermalEigenstrain.cxx │ │ ├── TwoStageThermalAnnealing.cxx │ │ ├── VoceIsotropicHardening.cxx │ │ ├── VolumeAdjustDeformationGradient.cxx │ │ ├── VolumeChangeEigenstrain.cxx │ │ ├── YieldFunction.cxx │ │ ├── crystal_plasticity │ │ ├── ElasticStrainRate.cxx │ │ ├── FixOrientation.cxx │ │ ├── LinearSingleSlipHardeningRule.cxx │ │ ├── OrientationRate.cxx │ │ ├── PlasticDeformationRate.cxx │ │ ├── PlasticSpatialVelocityGradient.cxx │ │ ├── PlasticVorticity.cxx │ │ ├── PowerLawSlipRule.cxx │ │ ├── ResolvedShear.cxx │ │ ├── SingleSlipHardeningRule.cxx │ │ ├── SingleSlipStrengthMap.cxx │ │ ├── SlipRule.cxx │ │ ├── SlipStrengthMap.cxx │ │ ├── SumSlipRates.cxx │ │ └── VoceSingleSlipHardeningRule.cxx │ │ └── elasticity │ │ ├── AnisotropicElasticity.cxx │ │ ├── CubicElasticityConverter.cxx │ │ ├── CubicElasticityTensor.cxx │ │ ├── Elasticity.cxx │ │ ├── ElasticityConverter.cxx │ │ ├── GeneralElasticity.cxx │ │ ├── GreenLagrangeStrain.cxx │ │ ├── IsotropicElasticityConverter.cxx │ │ ├── IsotropicElasticityTensor.cxx │ │ └── LinearIsotropicElasticity.cxx │ ├── solvers │ ├── Newton.cxx │ ├── NewtonWithLineSearch.cxx │ ├── NewtonWithTrustRegion.cxx │ ├── NonlinearSolver.cxx │ ├── NonlinearSystem.cxx │ ├── Solver.cxx │ └── TrustRegionSubProblem.cxx │ ├── tensors │ ├── Quaternion.cxx │ ├── R2.cxx │ ├── R3.cxx │ ├── R4.cxx │ ├── Rot.cxx │ ├── SR2.cxx │ ├── SSR4.cxx │ ├── SWR4.cxx │ ├── Scalar.cxx │ ├── Tensor.cxx │ ├── TensorCache.cxx │ ├── TensorValue.cxx │ ├── TraceableSize.cxx │ ├── TraceableTensorShape.cxx │ ├── Transformable.cxx │ ├── Vec.cxx │ ├── VecBase.cxx │ ├── WR2.cxx │ ├── WSR4.cxx │ ├── WWR4.cxx │ ├── crystallography.cxx │ ├── functions │ │ ├── abs.cxx │ │ ├── acos.cxx │ │ ├── argmax.cxx │ │ ├── argmin.cxx │ │ ├── asin.cxx │ │ ├── atan.cxx │ │ ├── cat.cxx │ │ ├── cbrt.cxx │ │ ├── clamp.cxx │ │ ├── clip.cxx │ │ ├── cos.cxx │ │ ├── cosh.cxx │ │ ├── cross.cxx │ │ ├── deg2rad.cxx │ │ ├── det.cxx │ │ ├── dev.cxx │ │ ├── diagonalize.cxx │ │ ├── diff.cxx │ │ ├── discretization │ │ │ ├── assemble.cxx │ │ │ ├── interpolate.cxx │ │ │ └── scatter.cxx │ │ ├── einsum.cxx │ │ ├── exp.cxx │ │ ├── fmod.cxx │ │ ├── from_assembly.cxx │ │ ├── gcd.cxx │ │ ├── heaviside.cxx │ │ ├── inner.cxx │ │ ├── inv.cxx │ │ ├── jacrev.cxx │ │ ├── linalg │ │ │ ├── dsptrf.cxx │ │ │ ├── eigh.cxx │ │ │ ├── ieigh.cxx │ │ │ ├── lu_factor.cxx │ │ │ ├── lu_solve.cxx │ │ │ └── solve.cxx │ │ ├── linspace.cxx │ │ ├── log.cxx │ │ ├── log10.cxx │ │ ├── logical.cxx │ │ ├── logspace.cxx │ │ ├── macaulay.cxx │ │ ├── mean.cxx │ │ ├── minimum.cxx │ │ ├── mm.cxx │ │ ├── mv.cxx │ │ ├── norm.cxx │ │ ├── norm_sq.cxx │ │ ├── normalize_gcd.cxx │ │ ├── operators.cxx │ │ ├── outer.cxx │ │ ├── pow.cxx │ │ ├── sign.cxx │ │ ├── sin.cxx │ │ ├── sinh.cxx │ │ ├── sqrt.cxx │ │ ├── stack.cxx │ │ ├── sum.cxx │ │ ├── sum_to_size.cxx │ │ ├── symmetrization.cxx │ │ ├── tan.cxx │ │ ├── tanh.cxx │ │ ├── to_assembly.cxx │ │ ├── tr.cxx │ │ ├── unit.cxx │ │ ├── utils.cxx │ │ ├── vol.cxx │ │ ├── vv.cxx │ │ └── where.cxx │ ├── jit.cxx │ ├── shape_utils.cxx │ └── tensors.cxx │ └── user_tensors │ ├── FactoryMethodBase.cxx │ ├── FillR2.cxx │ ├── FillRot.cxx │ ├── FillSR2.cxx │ ├── FillWR2.cxx │ ├── FromTorchScript.cxx │ ├── FullTensor.cxx │ ├── IdentityTensor.cxx │ ├── LinspaceTensor.cxx │ ├── LogspaceTensor.cxx │ ├── MultiColumnCSVScalar.cxx │ ├── Orientation.cxx │ ├── RandomTensor.cxx │ ├── SymmetryFromOrbifold.cxx │ ├── UserTensor.cxx │ └── UserTensorBase.cxx └── tests ├── CMakeLists.txt ├── dispatchers ├── CMakeLists.txt ├── main.cxx ├── model.i ├── test_SliceGenerator.cxx ├── test_StaticHybridScheduler.cxx ├── test_TensorLoader.cxx ├── test_ValueMapLoader.cxx ├── test_WorkDispatcher_SliceGenerator_SimpleScheduler.cxx ├── test_WorkDispatcher_ValueMapLoader_SimpleScheduler.cxx ├── test_WorkDispatcher_ValueMapLoader_StaticHybridScheduler.cxx ├── test_derivmap_helpers.cxx └── test_valuemap_helpers.cxx ├── extension ├── .gitignore ├── CMakeLists.txt ├── FooModel.cxx ├── FooModel.h └── FooModel.i.in ├── include ├── ModelUnitTest.h ├── SampleEventTracer.h ├── SampleNonlinearSystems.h ├── SampleParserTestingModel.h ├── SampleRateModel.h ├── SpatialVelocityDriver.h ├── TabulatedPolynomialModel.h ├── TorchScriptFlowRate.h ├── TransientRegression.h ├── VTestParser.h ├── VTestTimeSeries.h ├── VTestVerification.h └── utils.h ├── regression ├── CMakeLists.txt ├── chemical_reactions │ ├── pyrolysis │ │ ├── gold │ │ │ └── result.pt │ │ └── model.i │ ├── reactive_infiltration │ │ └── constant_liquid_concentration │ │ │ ├── gold │ │ │ └── result.pt │ │ │ └── model.i │ ├── regression_chemical_reactions.cxx │ └── solidification │ │ ├── gold │ │ └── result.pt │ │ └── model.i ├── main.cxx ├── phase_field_fracture │ ├── elastic_brittle_fracture │ │ ├── gold │ │ │ └── pff_result.pt │ │ └── small_deformation.i │ └── regression_phase_field_fracture.cxx ├── regression_training.cxx ├── regression_training.i └── solid_mechanics │ ├── crystal_plasticity │ ├── single_crystal_coupled │ │ ├── gold │ │ │ └── result.pt │ │ ├── model.i │ │ └── model_with_simple_scheduler.i │ ├── single_crystal_coupled_multiplicative │ │ ├── gold │ │ │ └── result.pt │ │ ├── model.i │ │ └── model_with_simple_scheduler.i │ ├── single_crystal_coupled_triclinic │ │ ├── gold │ │ │ └── result.pt │ │ ├── model.i │ │ └── model_with_simple_scheduler.i │ ├── single_crystal_decoupled │ │ ├── gold │ │ │ └── result.pt │ │ ├── model.i │ │ └── model_with_simple_scheduler.i │ ├── single_crystal_decoupled_explicit_orientation │ │ ├── gold │ │ │ └── result.pt │ │ ├── model.i │ │ └── model_with_simple_scheduler.i │ ├── single_crystal_spatial_velocity_gradient │ │ ├── gold │ │ │ └── result.pt │ │ ├── model.i │ │ └── model_with_simple_scheduler.i │ └── taylor │ │ ├── gold │ │ └── result.pt │ │ └── model.i │ ├── km_flow │ ├── full_model │ │ ├── gold │ │ │ └── result.pt │ │ ├── model.i │ │ └── model_with_simple_scheduler.i │ ├── mixed_control │ │ ├── gold │ │ │ └── result.pt │ │ ├── model.i │ │ ├── model_with_simple_scheduler.i │ │ └── model_with_simple_scheduler_async.i │ └── simple_mix │ │ ├── gold │ │ └── result.pt │ │ ├── model.i │ │ └── model_with_simple_scheduler.i │ ├── mixed_control │ ├── gold │ │ └── result.pt │ ├── model.i │ └── model_with_simple_scheduler.i │ ├── rate_independent_plasticity │ ├── gurson │ │ ├── gold │ │ │ └── result.pt │ │ └── model.i │ ├── isoharden │ │ ├── gold │ │ │ └── result.pt │ │ ├── model.i │ │ └── model_with_simple_scheduler.i │ ├── isokinharden │ │ ├── gold │ │ │ └── result.pt │ │ ├── model.i │ │ └── model_with_simple_scheduler.i │ ├── kinharden │ │ ├── gold │ │ │ └── result.pt │ │ ├── model.i │ │ └── model_with_simple_scheduler.i │ ├── perfect │ │ ├── gold │ │ │ └── result.pt │ │ ├── model.i │ │ └── model_with_simple_scheduler.i │ ├── perfect_temperature │ │ ├── gold │ │ │ └── result.pt │ │ ├── model.i │ │ └── model_with_simple_scheduler.i │ └── radial_return │ │ ├── gold │ │ └── result.pt │ │ ├── model.i │ │ └── model_with_simple_scheduler.i │ ├── recovery │ ├── nonassociative_isotropic_kinematic │ │ ├── gold │ │ │ └── result.pt │ │ ├── model.i │ │ └── model_with_simple_scheduler.i │ ├── static_recovery │ │ ├── gold │ │ │ └── result.pt │ │ ├── model.i │ │ └── model_with_simple_scheduler.i │ └── thermal_annealing │ │ ├── gold │ │ └── result.pt │ │ ├── model.i │ │ └── model_with_simple_scheduler.i │ ├── regression_solid_mechanics.cxx │ └── viscoplasticity │ ├── alt_composition │ ├── gold │ │ └── result.pt │ ├── model.i │ └── model_with_simple_scheduler.i │ ├── chaboche │ ├── gold │ │ └── result.pt │ ├── model.i │ └── model_with_simple_scheduler.i │ ├── drucker_prager │ ├── gold │ │ └── result.pt │ ├── model.i │ └── model_with_simple_scheduler.i │ ├── free_sintering │ ├── gold │ │ └── result.pt │ └── model.i │ ├── isoharden │ ├── gold │ │ └── result.pt │ ├── model.i │ └── model_with_simple_scheduler.i │ ├── isokinharden │ ├── gold │ │ └── result.pt │ ├── model.i │ └── model_with_simple_scheduler.i │ ├── kinharden │ ├── gold │ │ └── result.pt │ ├── model.i │ └── model_with_simple_scheduler.i │ ├── misc │ ├── polynomial │ │ ├── gold │ │ │ └── result.pt │ │ └── model.i │ └── torch_script │ │ ├── gold │ │ ├── result.pt │ │ └── surrogate.pt │ │ ├── model.i │ │ ├── model_scalar.i │ │ └── surrogate.py │ ├── perfect │ ├── gold │ │ └── result.pt │ ├── model.i │ └── model_with_simple_scheduler.i │ ├── radial_return │ ├── gold │ │ └── result.pt │ ├── model.i │ └── model_with_simple_scheduler.i │ └── stress_control │ ├── gold │ └── result.pt │ ├── model.i │ └── model_with_simple_scheduler.i ├── src ├── CMakeLists.txt ├── ModelUnitTest.cxx ├── SampleEventTracer.cxx ├── SampleNonlinearSystems.cxx ├── SampleParserTestingModel.cxx ├── SampleRateModel.cxx ├── SpatialVelocityDriver.cxx ├── TabulatedPolynomialModel.cxx ├── TorchScriptFlowRate.cxx ├── TransientRegression.cxx ├── VTestParser.cxx ├── VTestTimeSeries.cxx ├── VTestVerification.cxx └── utils.cxx ├── unit ├── CMakeLists.txt ├── README.md ├── base │ ├── test_EnumSelection.cxx │ ├── test_Factory.cxx │ ├── test_HITParser.cxx │ ├── test_HITParser1.i │ ├── test_HITParser2.i │ ├── test_MultiEnumSelection.cxx │ ├── test_OptionSet.cxx │ ├── test_Registry.cxx │ ├── test_Settings.cxx │ ├── test_TracingInterface.cxx │ ├── test_disable_jit.i │ └── test_disable_jit_error.i ├── drivers │ ├── solid_mechanics │ │ ├── test_LargeDeformationIncrementalSolidMechanicsDriver.i │ │ ├── test_SolidMechanicsDriver.cxx │ │ ├── test_SolidMechanicsDriver_mixed.i │ │ ├── test_SolidMechanicsDriver_strain.i │ │ ├── test_SolidMechanicsDriver_stress.i │ │ └── test_SolidMechanicsDriver_temperature.i │ ├── test_TransientDriver.cxx │ └── test_TransientDriver.i ├── main.cxx ├── misc │ └── test_string_utils.cxx ├── models │ ├── ADSampleRateModel.i │ ├── ArrheniusParameter.i │ ├── ComposedModel1.i │ ├── ComposedModel2.i │ ├── ComposedModel3.i │ ├── ComposedModel4.i │ ├── ComposedModel5.i │ ├── FischerBurmeister1.i │ ├── FischerBurmeister2.i │ ├── FischerBurmeister3.i │ ├── HermiteSmoothStep.i │ ├── HermiteSmoothStep2.i │ ├── ImplicitUpdate.i │ ├── MixedControlSetup.i │ ├── ParameterToState.i │ ├── R2Determinant.i │ ├── R2IncrementToRate.i │ ├── R2Multiplication1.i │ ├── R2Multiplication2.i │ ├── R2Multiplication3.i │ ├── R2Multiplication4.i │ ├── R2toSR2.i │ ├── R2toWR2.i │ ├── SR2ConstantParameter.i │ ├── SR2DynamicMean.i │ ├── SR2DynamicSum.i │ ├── SR2IncrementToRate.i │ ├── SR2IntermediateMean.i │ ├── SR2IntermediateSum.i │ ├── SR2Invariant_EFFECTIVE_STRAIN.i │ ├── SR2Invariant_I1.i │ ├── SR2Invariant_I2.i │ ├── SR2Invariant_VONMISES.i │ ├── SR2LinearCombination.i │ ├── SR2LinearCombination2.i │ ├── SR2LinearCombination_nl_params.i │ ├── SR2LinearInterpolation1.i │ ├── SR2LinearInterpolation2.i │ ├── SR2LinearInterpolation3.i │ ├── SR2LinearInterpolation4.i │ ├── SR2toR2.i │ ├── SampleRateModel.i │ ├── ScalarBackwardEulerTimeIntegration.i │ ├── ScalarBilinearInterpolation1.i │ ├── ScalarBilinearInterpolation2.i │ ├── ScalarBilinearInterpolation3.i │ ├── ScalarBilinearInterpolation4.i │ ├── ScalarConstantParameter.i │ ├── ScalarForceRate.i │ ├── ScalarForwardEulerTimeIntegration.i │ ├── ScalarIncrementToRate.i │ ├── ScalarLinearCombination.i │ ├── ScalarLinearCombination_nl_params.i │ ├── ScalarLinearCombination_nl_params2.i │ ├── ScalarLinearInterpolation1.i │ ├── ScalarLinearInterpolation2.i │ ├── ScalarLinearInterpolation3.i │ ├── ScalarLinearInterpolation4.i │ ├── ScalarMultiplication1.i │ ├── ScalarMultiplication2.i │ ├── ScalarMultiplication3.i │ ├── ScalarMultiplication4.i │ ├── ScalarMultiplication5.i │ ├── ScalarMultiplication6.i │ ├── ScalarStateRate.i │ ├── ScalarToDiagonalSR2.i │ ├── SymmetricHermiteInterpolation.i │ ├── TorchScriptFlowRate.i │ ├── TorchScriptFlowRate.pt │ ├── VecIncrementToRate.i │ ├── WR2ExplicitExponentialTimeIntegration.i │ ├── WR2ImplicitExponentialTimeIntegration.i │ ├── chemical_reactions │ │ ├── AvramiErofeevNucleation.i │ │ ├── ContractingGeometry.i │ │ ├── CylindricalChannelGeometry.i │ │ ├── DiffusionLimitedReaction.i │ │ └── EffectiveVolume.i │ ├── crystallography │ │ ├── test_CrystalGeometry.cxx │ │ ├── test_CrystalGeometry.i │ │ ├── test_CubicCrystal.cxx │ │ └── test_CubicCrystal.i │ ├── phase_field_fracture │ │ ├── CrackGeometricFunctionAT1.i │ │ ├── CrackGeometricFunctionAT2.i │ │ ├── LinearIsotropicStrainEnergyDensity1.i │ │ ├── LinearIsotropicStrainEnergyDensity10.i │ │ ├── LinearIsotropicStrainEnergyDensity2.i │ │ ├── LinearIsotropicStrainEnergyDensity3.i │ │ ├── LinearIsotropicStrainEnergyDensity4.i │ │ ├── LinearIsotropicStrainEnergyDensity5.i │ │ ├── LinearIsotropicStrainEnergyDensity6.i │ │ ├── LinearIsotropicStrainEnergyDensity7.i │ │ ├── LinearIsotropicStrainEnergyDensity8.i │ │ ├── LinearIsotropicStrainEnergyDensity9.i │ │ ├── PowerDegradationFunction.i │ │ └── RationalDegradationFunction.i │ ├── porous_flow │ │ ├── AdvectiveStress.i │ │ ├── BrooksCoreyCapillaryPressure.i │ │ ├── EffectiveSaturation.i │ │ ├── ExponentialLawPermeability.i │ │ ├── KozenyCarmanPermeability.i │ │ ├── PowerLawPermeability.i │ │ └── VanGenuchtenCapillaryPressure.i │ ├── solid_mechanics │ │ ├── AssociativeIsotropicPlasticHardening.i │ │ ├── AssociativeJ2FlowDirection.i │ │ ├── AssociativeKinematicPlasticHardening.i │ │ ├── AssociativePlasticFlow.i │ │ ├── ChabochePlasticHardening.i │ │ ├── ChabochePlasticHardening_nl_params.i │ │ ├── FredrickArmstrongPlasticHardening.i │ │ ├── FredrickArmstrongPlasticHardening_nl_params.i │ │ ├── GTNYieldFunction.i │ │ ├── GTNYieldFunctionStress.i │ │ ├── GTNYieldFunction_nl_params.i │ │ ├── GursonCavitation.i │ │ ├── IsotropicMandelStress.i │ │ ├── KocksMeckingActivationEnergy.i │ │ ├── KocksMeckingActivationEnergy_nl_params.i │ │ ├── KocksMeckingFlowSwitch.i │ │ ├── KocksMeckingFlowSwitch_nl_params.i │ │ ├── KocksMeckingFlowViscosity.i │ │ ├── KocksMeckingFlowViscosity_nl_params.i │ │ ├── KocksMeckingIntercept.i │ │ ├── KocksMeckingIntercept_nl_params.i │ │ ├── KocksMeckingRateSensitivity.i │ │ ├── KocksMeckingRateSensitivity_nl_params.i │ │ ├── KocksMeckingYieldStress.i │ │ ├── KocksMeckingYieldStress_nl_params.i │ │ ├── LinearIsotropicElasticJ2TrialStressUpdate.i │ │ ├── LinearIsotropicHardening.i │ │ ├── LinearKinematicHardening.i │ │ ├── LinearKinematicHardening_nl_params.i │ │ ├── NonlinearParameter.i │ │ ├── Normality.i │ │ ├── OlevskySinteringStress.i │ │ ├── PerzynaPlasticFlowRate.i │ │ ├── PerzynaPlasticFlowRate_nl_params.i │ │ ├── PhaseTransformationEigenstrain.i │ │ ├── PowerLawIsotropicHardeningStaticRecovery.i │ │ ├── PowerLawKinematicHardeningStaticRecovery.i │ │ ├── RateIndependentPlasticFlowConstraint.i │ │ ├── SR2TwoStageThermalAnnealing.i │ │ ├── ScalarTwoStageThermalAnnealing.i │ │ ├── SlopeSaturationVoceIsotropicHardening.i │ │ ├── SlopeSaturationVoceIsotropicHardening_negative.i │ │ ├── SlopeSaturationVoceIsotropicHardening_nl_params.i │ │ ├── SlopeSaturationVoceIsotropicHardening_nl_params_negative.i │ │ ├── SwellingAndPhaseChangeDeformationJacobian.i │ │ ├── ThermalDeformationJacobian.i │ │ ├── ThermalEigenstrain.i │ │ ├── ThermalEigenstrain_nl_params.i │ │ ├── VoceIsotropicHardening.i │ │ ├── VoceIsotropicHardening_nl_params.i │ │ ├── VolumeAdjustDeformationGradient.i │ │ ├── VolumeChangeEigenstrain.i │ │ ├── YieldFunction_isoharden.i │ │ ├── YieldFunction_isokinharden.i │ │ ├── YieldFunction_kinharden.i │ │ ├── YieldFunction_nl_params.i │ │ ├── YieldFunction_perfect.i │ │ ├── crystal_plasticity │ │ │ ├── ElasticStrainRate.i │ │ │ ├── FixOrientation.i │ │ │ ├── LinearSingleSlipHardeningRule.i │ │ │ ├── LinearSingleSlipHardeningRule_nl_params.i │ │ │ ├── OrientationRate.i │ │ │ ├── PlasticDeformationRate.i │ │ │ ├── PlasticSpatialVelocityGradient.i │ │ │ ├── PlasticVorticity.i │ │ │ ├── PowerLawSlipRule.i │ │ │ ├── PowerLawSlipRule_nl_params.i │ │ │ ├── PowerLawSlipRule_per_slip.i │ │ │ ├── ResolvedShear.i │ │ │ ├── SingleSlipStrengthMap.i │ │ │ ├── SingleSlipStrengthMap_nl_params.i │ │ │ ├── SumSlipRates.i │ │ │ ├── VoceSingleSlipHardeningRule.i │ │ │ └── VoceSingleSlipHardeningRule_nl_params.i │ │ └── elasticity │ │ │ ├── CubicElasticityTensor_E_nu_mu.i │ │ │ ├── CubicElasticityTensor_nu_mu_E.i │ │ │ ├── GeneralElasticity.i │ │ │ ├── GeneralElasticity_compliance.i │ │ │ ├── GeneralElasticity_compliance_nl_params.i │ │ │ ├── GeneralElasticity_nl_params.i │ │ │ ├── GeneralElasticity_rate.i │ │ │ ├── GreenLagrangeStrain.i │ │ │ ├── IsotropicElasticityTensor_E_nu.i │ │ │ ├── IsotropicElasticityTensor_nu_E.i │ │ │ ├── LinearIsotropicElasticity.i │ │ │ ├── LinearIsotropicElasticity_compliance.i │ │ │ ├── LinearIsotropicElasticity_compliance_nl_params.i │ │ │ ├── LinearIsotropicElasticity_compliance_rate.i │ │ │ ├── LinearIsotropicElasticity_nl_params.i │ │ │ └── LinearIsotropicElasticity_rate.i │ ├── test_Assembler.cxx │ ├── test_ImplicitUpdate.cxx │ ├── test_LabeledAxis.cxx │ ├── test_LabeledAxisAccesor.cxx │ ├── test_Model.cxx │ ├── test_Model_diagnose1.i │ ├── test_Model_diagnose2.i │ ├── test_Model_diagnose3.i │ ├── test_ParameterStore.cxx │ ├── test_ParameterStore.i │ └── test_models.cxx ├── solvers │ ├── test_NonlinearSolvers.cxx │ └── test_NonlinearSystem.cxx ├── tensors │ ├── functions │ │ ├── linalg │ │ │ ├── test_eigh.cxx │ │ │ ├── test_lu.cxx │ │ │ └── test_solve.cxx │ │ ├── test_abs.cxx │ │ ├── test_acos.cxx │ │ ├── test_asin.cxx │ │ ├── test_atan.cxx │ │ ├── test_cat.cxx │ │ ├── test_cbrt.cxx │ │ ├── test_clamp.cxx │ │ ├── test_clip.cxx │ │ ├── test_cos.cxx │ │ ├── test_cosh.cxx │ │ ├── test_cross.cxx │ │ ├── test_deg2rad.cxx │ │ ├── test_det.cxx │ │ ├── test_dev.cxx │ │ ├── test_discretization.cxx │ │ ├── test_einsum.cxx │ │ ├── test_exp.cxx │ │ ├── test_fmod.cxx │ │ ├── test_gcd.cxx │ │ ├── test_heaviside.cxx │ │ ├── test_imap.cxx │ │ ├── test_inner.cxx │ │ ├── test_inv.cxx │ │ ├── test_log.cxx │ │ ├── test_log10.cxx │ │ ├── test_macaulay.cxx │ │ ├── test_mm.cxx │ │ ├── test_mv.cxx │ │ ├── test_norm.cxx │ │ ├── test_norm_sq.cxx │ │ ├── test_normalize_gcd.cxx │ │ ├── test_operators.cxx │ │ ├── test_outer.cxx │ │ ├── test_pow.cxx │ │ ├── test_sign.cxx │ │ ├── test_sin.cxx │ │ ├── test_sinh.cxx │ │ ├── test_sqrt.cxx │ │ ├── test_stack.cxx │ │ ├── test_symmetrization.cxx │ │ ├── test_tan.cxx │ │ ├── test_tanh.cxx │ │ ├── test_tr.cxx │ │ ├── test_vdot.cxx │ │ └── test_vol.cxx │ ├── generators.cxx │ ├── generators.h │ ├── test_PrimitiveTensor.cxx │ ├── test_Quaternion.cxx │ ├── test_R2.cxx │ ├── test_R3.cxx │ ├── test_R4.cxx │ ├── test_Rot.cxx │ ├── test_SR2.cxx │ ├── test_SSR4.cxx │ ├── test_Scalar.cxx │ ├── test_Tensor.cxx │ ├── test_TensorBase.cxx │ ├── test_TensorName.cxx │ ├── test_TensorName_Scalar.i │ ├── test_TensorName_empty_Scalar.i │ ├── test_TensorName_empty_Tensor.i │ ├── test_Vec.cxx │ ├── test_VecBase.cxx │ ├── test_WR2.cxx │ ├── test_WWR4.cxx │ ├── test_crystallography.cxx │ ├── test_minimum.cxx │ ├── test_shape_utils.cxx │ ├── test_symmetry_operator_definitions.cxx │ └── test_vector_transform.cxx └── user_tensors │ ├── MultiColumnCSVScalar │ ├── MultiColumnCSVScalarTab.txt │ ├── data.csv │ ├── data_comment.csv │ ├── data_no_header.csv │ ├── data_no_header_comment.csv │ ├── data_no_header_non_numeric.csv │ ├── data_non_numeric.csv │ └── data_space.csv │ ├── test_FillR2.cxx │ ├── test_FillR2.i │ ├── test_FillSR2.cxx │ ├── test_FillSR2.i │ ├── test_FullTensor.cxx │ ├── test_FullTensor.i │ ├── test_IdentityTensor.cxx │ ├── test_IdentityTensor.i │ ├── test_LinspaceTensor.cxx │ ├── test_LinspaceTensor.i │ ├── test_LogspaceTensor.cxx │ ├── test_LogspaceTensor.i │ ├── test_MultiColumnCSVScalar.cxx │ ├── test_MultiColumnCSVScalar.i │ ├── test_Orientation.cxx │ ├── test_Orientation.i │ ├── test_SymmetryFromOrbifold.cxx │ ├── test_SymmetryFromOrbifold.i │ ├── test_UserTensor.cxx │ ├── test_UserTensor.i │ └── test_UserTensor_error.i └── verification ├── CMakeLists.txt ├── main.cxx └── solid_mechanics ├── chaboche ├── chaboche.i ├── chaboche.vtest └── chaboche.xml ├── cp_basic ├── cp_basic.i ├── cp_basic.vtest └── cp_basic.xml ├── cp_basic_tensor ├── cp_basic.i └── cp_basic.vtest ├── cp_taylor ├── cp_taylor.i ├── cp_taylor.vtest └── cp_taylor.xml ├── gurson ├── gurson.i └── gurson.vtest ├── kocks_mecking ├── kocks_mecking.i ├── kocks_mecking.vtest └── kocks_mecking.xml ├── mixed_control ├── mixed_control.i ├── mixed_control.vtest └── mixed_control.xml ├── perzyna ├── combined.i ├── combined.vtest ├── isolinear_multiaxial.i ├── isolinear_multiaxial.vtest ├── isolinear_uniaxial.i ├── isolinear_uniaxial.vtest ├── perzyna.xml ├── voce.i └── voce.vtest ├── rate_independent ├── perfect.i ├── perfect.vtest ├── ri.xml ├── voceiso.i ├── voceiso.vtest ├── voceisolinkin.i └── voceisolinkin.vtest └── verification_solid_mechanics.cxx /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.codechecker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/.codechecker -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build_docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/.github/workflows/build_docs.yml -------------------------------------------------------------------------------- /.github/workflows/close_pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/.github/workflows/close_pr.yml -------------------------------------------------------------------------------- /.github/workflows/cmake_integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/.github/workflows/cmake_integration.yml -------------------------------------------------------------------------------- /.github/workflows/copyright.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/.github/workflows/copyright.yml -------------------------------------------------------------------------------- /.github/workflows/cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/.github/workflows/cpp.yml -------------------------------------------------------------------------------- /.github/workflows/python.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/.github/workflows/python.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/README.md -------------------------------------------------------------------------------- /cmake/.gitignore: -------------------------------------------------------------------------------- 1 | !*.cmake 2 | -------------------------------------------------------------------------------- /cmake/Modules/DepUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/cmake/Modules/DepUtils.cmake -------------------------------------------------------------------------------- /cmake/Modules/DetectTorchCXXABI.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/cmake/Modules/DetectTorchCXXABI.cxx -------------------------------------------------------------------------------- /cmake/Modules/Findcsvparser.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/cmake/Modules/Findcsvparser.cmake -------------------------------------------------------------------------------- /cmake/Modules/Findgperftools.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/cmake/Modules/Findgperftools.cmake -------------------------------------------------------------------------------- /cmake/Modules/Findhit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/cmake/Modules/Findhit.cmake -------------------------------------------------------------------------------- /cmake/Modules/Findtimpi.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/cmake/Modules/Findtimpi.cmake -------------------------------------------------------------------------------- /cmake/Modules/Findtorch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/cmake/Modules/Findtorch.cmake -------------------------------------------------------------------------------- /cmake/Modules/Findwasp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/cmake/Modules/Findwasp.cmake -------------------------------------------------------------------------------- /cmake/add_subdirectory/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/cmake/add_subdirectory/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/add_subdirectory/main.cxx: -------------------------------------------------------------------------------- 1 | #include "neml2/base/Registry.h" 2 | 3 | int 4 | main() 5 | { 6 | return 0; 7 | } 8 | -------------------------------------------------------------------------------- /cmake/find_package/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/cmake/find_package/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/find_package/main.cxx: -------------------------------------------------------------------------------- 1 | #include "neml2/base/Registry.h" 2 | 3 | int 4 | main() 5 | { 6 | return 0; 7 | } 8 | -------------------------------------------------------------------------------- /cmake/neml2Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/cmake/neml2Config.cmake.in -------------------------------------------------------------------------------- /contrib/install_Catch2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/contrib/install_Catch2.sh -------------------------------------------------------------------------------- /contrib/install_argparse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/contrib/install_argparse.sh -------------------------------------------------------------------------------- /contrib/install_gperftools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/contrib/install_gperftools.sh -------------------------------------------------------------------------------- /contrib/install_hit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/contrib/install_hit.cmake -------------------------------------------------------------------------------- /contrib/install_hit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/contrib/install_hit.sh -------------------------------------------------------------------------------- /contrib/install_nlohmann_json.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/contrib/install_nlohmann_json.sh -------------------------------------------------------------------------------- /contrib/install_timpi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/contrib/install_timpi.sh -------------------------------------------------------------------------------- /contrib/install_wasp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/contrib/install_wasp.sh -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | *.yml 2 | Doxyfile*.sh 3 | -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/config/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/config/Doxyfile.in -------------------------------------------------------------------------------- /doc/config/DoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/config/DoxygenLayout.xml -------------------------------------------------------------------------------- /doc/config/DoxygenLayoutPython.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/config/DoxygenLayoutPython.xml -------------------------------------------------------------------------------- /doc/config/HTML.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/config/HTML.in -------------------------------------------------------------------------------- /doc/config/Python.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/config/Python.in -------------------------------------------------------------------------------- /doc/config/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/config/custom.css -------------------------------------------------------------------------------- /doc/config/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/config/header.html -------------------------------------------------------------------------------- /doc/config/mathjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/config/mathjax.js -------------------------------------------------------------------------------- /doc/content/asset/cover_min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/content/asset/cover_min.png -------------------------------------------------------------------------------- /doc/content/asset/graph_basic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/content/asset/graph_basic.svg -------------------------------------------------------------------------------- /doc/content/asset/graph_composed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/content/asset/graph_composed.svg -------------------------------------------------------------------------------- /doc/content/asset/graph_custom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/content/asset/graph_custom.svg -------------------------------------------------------------------------------- /doc/content/asset/graph_highlight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/content/asset/graph_highlight.svg -------------------------------------------------------------------------------- /doc/content/asset/lsi_rve_simplify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/content/asset/lsi_rve_simplify.svg -------------------------------------------------------------------------------- /doc/content/asset/perfetto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/content/asset/perfetto.png -------------------------------------------------------------------------------- /doc/content/asset/phase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/content/asset/phase.png -------------------------------------------------------------------------------- /doc/content/asset/pyrolysis_controlmass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/content/asset/pyrolysis_controlmass.svg -------------------------------------------------------------------------------- /doc/content/asset/pyrolysis_rve.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/content/asset/pyrolysis_rve.svg -------------------------------------------------------------------------------- /doc/content/asset/stress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/content/asset/stress.png -------------------------------------------------------------------------------- /doc/content/installation/customization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/content/installation/customization.md -------------------------------------------------------------------------------- /doc/content/installation/deps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/content/installation/deps.md -------------------------------------------------------------------------------- /doc/content/installation/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/content/installation/install.md -------------------------------------------------------------------------------- /doc/content/installation/integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/content/installation/integration.md -------------------------------------------------------------------------------- /doc/content/physics/chemical_reactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/content/physics/chemical_reactions.md -------------------------------------------------------------------------------- /doc/content/physics/phase_field_fracture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/content/physics/phase_field_fracture.md -------------------------------------------------------------------------------- /doc/content/physics/reactive_infiltration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/content/physics/reactive_infiltration.md -------------------------------------------------------------------------------- /doc/content/physics/solid_mechanics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/content/physics/solid_mechanics.md -------------------------------------------------------------------------------- /doc/content/system/data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/content/system/data.md -------------------------------------------------------------------------------- /doc/content/system/driver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/content/system/driver.md -------------------------------------------------------------------------------- /doc/content/system/model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/content/system/model.md -------------------------------------------------------------------------------- /doc/content/system/scheduler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/content/system/scheduler.md -------------------------------------------------------------------------------- /doc/content/system/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/content/system/settings.md -------------------------------------------------------------------------------- /doc/content/system/solver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/content/system/solver.md -------------------------------------------------------------------------------- /doc/content/system/tensor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/content/system/tensor.md -------------------------------------------------------------------------------- /doc/content/tutorials/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/content/tutorials/contributing.md -------------------------------------------------------------------------------- /doc/content/tutorials/extension/extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/content/tutorials/extension/extension.md -------------------------------------------------------------------------------- /doc/content/tutorials/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/content/tutorials/getting_started.md -------------------------------------------------------------------------------- /doc/content/tutorials/models/input_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/content/tutorials/models/input_file.md -------------------------------------------------------------------------------- /doc/content/tutorials/models/models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/content/tutorials/models/models.md -------------------------------------------------------------------------------- /doc/content/tutorials/naming_conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/content/tutorials/naming_conventions.md -------------------------------------------------------------------------------- /doc/content/tutorials/next_steps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/content/tutorials/next_steps.md -------------------------------------------------------------------------------- /doc/content/tutorials/optimization/pyzag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/content/tutorials/optimization/pyzag.md -------------------------------------------------------------------------------- /doc/content/tutorials/tensors/tensors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/content/tutorials/tensors/tensors.md -------------------------------------------------------------------------------- /doc/content/tutorials/tutorials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/content/tutorials/tutorials.md -------------------------------------------------------------------------------- /doc/js/.gitignore: -------------------------------------------------------------------------------- 1 | package-lock.json 2 | node_modules 3 | !*.html 4 | -------------------------------------------------------------------------------- /doc/js/components/simple-scheduler-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/js/components/simple-scheduler-demo.js -------------------------------------------------------------------------------- /doc/js/components/static-hybrid-scheduler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/js/components/static-hybrid-scheduler.js -------------------------------------------------------------------------------- /doc/js/components/work-dispatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/js/components/work-dispatcher.js -------------------------------------------------------------------------------- /doc/js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/js/package.json -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- 1 | PyYAML 2 | -------------------------------------------------------------------------------- /doc/scripts/fixup_pystub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/scripts/fixup_pystub.py -------------------------------------------------------------------------------- /doc/scripts/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/scripts/layout.py -------------------------------------------------------------------------------- /doc/scripts/listing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/scripts/listing.py -------------------------------------------------------------------------------- /doc/scripts/postprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/scripts/postprocess.py -------------------------------------------------------------------------------- /doc/scripts/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/scripts/preprocess.py -------------------------------------------------------------------------------- /doc/scripts/syntax_to_md.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/scripts/syntax_to_md.py -------------------------------------------------------------------------------- /doc/scripts/update_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/scripts/update_content.py -------------------------------------------------------------------------------- /doc/scripts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/scripts/utils.py -------------------------------------------------------------------------------- /doc/syntax.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/doc/syntax.cxx -------------------------------------------------------------------------------- /include/neml2/base/DiagnosticsInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/base/DiagnosticsInterface.h -------------------------------------------------------------------------------- /include/neml2/base/EnumSelection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/base/EnumSelection.h -------------------------------------------------------------------------------- /include/neml2/base/EnumSelectionBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/base/EnumSelectionBase.h -------------------------------------------------------------------------------- /include/neml2/base/Factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/base/Factory.h -------------------------------------------------------------------------------- /include/neml2/base/HITParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/base/HITParser.h -------------------------------------------------------------------------------- /include/neml2/base/InputFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/base/InputFile.h -------------------------------------------------------------------------------- /include/neml2/base/LabeledAxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/base/LabeledAxis.h -------------------------------------------------------------------------------- /include/neml2/base/LabeledAxisAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/base/LabeledAxisAccessor.h -------------------------------------------------------------------------------- /include/neml2/base/MultiEnumSelection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/base/MultiEnumSelection.h -------------------------------------------------------------------------------- /include/neml2/base/NEML2Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/base/NEML2Object.h -------------------------------------------------------------------------------- /include/neml2/base/Option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/base/Option.h -------------------------------------------------------------------------------- /include/neml2/base/OptionBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/base/OptionBase.h -------------------------------------------------------------------------------- /include/neml2/base/OptionSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/base/OptionSet.h -------------------------------------------------------------------------------- /include/neml2/base/Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/base/Parser.h -------------------------------------------------------------------------------- /include/neml2/base/Registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/base/Registry.h -------------------------------------------------------------------------------- /include/neml2/base/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/base/Settings.h -------------------------------------------------------------------------------- /include/neml2/base/TensorName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/base/TensorName.h -------------------------------------------------------------------------------- /include/neml2/base/TracingInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/base/TracingInterface.h -------------------------------------------------------------------------------- /include/neml2/base/guards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/base/guards.h -------------------------------------------------------------------------------- /include/neml2/dispatchers/SimpleScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/dispatchers/SimpleScheduler.h -------------------------------------------------------------------------------- /include/neml2/dispatchers/SliceGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/dispatchers/SliceGenerator.h -------------------------------------------------------------------------------- /include/neml2/dispatchers/TensorLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/dispatchers/TensorLoader.h -------------------------------------------------------------------------------- /include/neml2/dispatchers/ValueMapLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/dispatchers/ValueMapLoader.h -------------------------------------------------------------------------------- /include/neml2/dispatchers/WorkDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/dispatchers/WorkDispatcher.h -------------------------------------------------------------------------------- /include/neml2/dispatchers/WorkGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/dispatchers/WorkGenerator.h -------------------------------------------------------------------------------- /include/neml2/dispatchers/WorkScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/dispatchers/WorkScheduler.h -------------------------------------------------------------------------------- /include/neml2/dispatchers/derivmap_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/dispatchers/derivmap_helpers.h -------------------------------------------------------------------------------- /include/neml2/dispatchers/valuemap_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/dispatchers/valuemap_helpers.h -------------------------------------------------------------------------------- /include/neml2/drivers/Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/drivers/Driver.h -------------------------------------------------------------------------------- /include/neml2/drivers/ModelDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/drivers/ModelDriver.h -------------------------------------------------------------------------------- /include/neml2/drivers/TransientDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/drivers/TransientDriver.h -------------------------------------------------------------------------------- /include/neml2/misc/assertions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/misc/assertions.h -------------------------------------------------------------------------------- /include/neml2/misc/defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/misc/defaults.h -------------------------------------------------------------------------------- /include/neml2/misc/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/misc/errors.h -------------------------------------------------------------------------------- /include/neml2/misc/string_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/misc/string_utils.h -------------------------------------------------------------------------------- /include/neml2/misc/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/misc/types.h -------------------------------------------------------------------------------- /include/neml2/models/ArrheniusParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/ArrheniusParameter.h -------------------------------------------------------------------------------- /include/neml2/models/Assembler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/Assembler.h -------------------------------------------------------------------------------- /include/neml2/models/BilinearInterpolation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/BilinearInterpolation.h -------------------------------------------------------------------------------- /include/neml2/models/BufferStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/BufferStore.h -------------------------------------------------------------------------------- /include/neml2/models/ComposedModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/ComposedModel.h -------------------------------------------------------------------------------- /include/neml2/models/ConstantParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/ConstantParameter.h -------------------------------------------------------------------------------- /include/neml2/models/CopyVariable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/CopyVariable.h -------------------------------------------------------------------------------- /include/neml2/models/Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/Data.h -------------------------------------------------------------------------------- /include/neml2/models/DependencyDefinition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/DependencyDefinition.h -------------------------------------------------------------------------------- /include/neml2/models/DependencyResolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/DependencyResolver.h -------------------------------------------------------------------------------- /include/neml2/models/Derivative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/Derivative.h -------------------------------------------------------------------------------- /include/neml2/models/Determinant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/Determinant.h -------------------------------------------------------------------------------- /include/neml2/models/DynamicMean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/DynamicMean.h -------------------------------------------------------------------------------- /include/neml2/models/DynamicSum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/DynamicSum.h -------------------------------------------------------------------------------- /include/neml2/models/FischerBurmeister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/FischerBurmeister.h -------------------------------------------------------------------------------- /include/neml2/models/HermiteSmoothStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/HermiteSmoothStep.h -------------------------------------------------------------------------------- /include/neml2/models/ImplicitUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/ImplicitUpdate.h -------------------------------------------------------------------------------- /include/neml2/models/IncrementToRate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/IncrementToRate.h -------------------------------------------------------------------------------- /include/neml2/models/InputParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/InputParameter.h -------------------------------------------------------------------------------- /include/neml2/models/IntermediateMean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/IntermediateMean.h -------------------------------------------------------------------------------- /include/neml2/models/IntermediateSum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/IntermediateSum.h -------------------------------------------------------------------------------- /include/neml2/models/Interpolation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/Interpolation.h -------------------------------------------------------------------------------- /include/neml2/models/LinearCombination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/LinearCombination.h -------------------------------------------------------------------------------- /include/neml2/models/LinearInterpolation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/LinearInterpolation.h -------------------------------------------------------------------------------- /include/neml2/models/MixedControlSetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/MixedControlSetup.h -------------------------------------------------------------------------------- /include/neml2/models/Model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/Model.h -------------------------------------------------------------------------------- /include/neml2/models/NonlinearParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/NonlinearParameter.h -------------------------------------------------------------------------------- /include/neml2/models/ParameterStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/ParameterStore.h -------------------------------------------------------------------------------- /include/neml2/models/ParameterToState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/ParameterToState.h -------------------------------------------------------------------------------- /include/neml2/models/R2Multiplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/R2Multiplication.h -------------------------------------------------------------------------------- /include/neml2/models/R2toSR2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/R2toSR2.h -------------------------------------------------------------------------------- /include/neml2/models/R2toWR2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/R2toWR2.h -------------------------------------------------------------------------------- /include/neml2/models/Reduction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/Reduction.h -------------------------------------------------------------------------------- /include/neml2/models/RotationMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/RotationMatrix.h -------------------------------------------------------------------------------- /include/neml2/models/SR2Invariant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/SR2Invariant.h -------------------------------------------------------------------------------- /include/neml2/models/SR2toR2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/SR2toR2.h -------------------------------------------------------------------------------- /include/neml2/models/ScalarMultiplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/ScalarMultiplication.h -------------------------------------------------------------------------------- /include/neml2/models/ScalarToDiagonalSR2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/ScalarToDiagonalSR2.h -------------------------------------------------------------------------------- /include/neml2/models/Variable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/Variable.h -------------------------------------------------------------------------------- /include/neml2/models/VariableBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/VariableBase.h -------------------------------------------------------------------------------- /include/neml2/models/VariableRate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/VariableRate.h -------------------------------------------------------------------------------- /include/neml2/models/VariableStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/VariableStore.h -------------------------------------------------------------------------------- /include/neml2/models/map_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/map_types.h -------------------------------------------------------------------------------- /include/neml2/models/map_types_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/map_types_fwd.h -------------------------------------------------------------------------------- /include/neml2/models/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/models/utils.h -------------------------------------------------------------------------------- /include/neml2/solvers/Newton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/solvers/Newton.h -------------------------------------------------------------------------------- /include/neml2/solvers/NewtonWithLineSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/solvers/NewtonWithLineSearch.h -------------------------------------------------------------------------------- /include/neml2/solvers/NewtonWithTrustRegion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/solvers/NewtonWithTrustRegion.h -------------------------------------------------------------------------------- /include/neml2/solvers/NonlinearSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/solvers/NonlinearSolver.h -------------------------------------------------------------------------------- /include/neml2/solvers/NonlinearSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/solvers/NonlinearSystem.h -------------------------------------------------------------------------------- /include/neml2/solvers/Solver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/solvers/Solver.h -------------------------------------------------------------------------------- /include/neml2/solvers/TrustRegionSubProblem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/solvers/TrustRegionSubProblem.h -------------------------------------------------------------------------------- /include/neml2/tensors/DTensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/DTensor.h -------------------------------------------------------------------------------- /include/neml2/tensors/MillerIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/MillerIndex.h -------------------------------------------------------------------------------- /include/neml2/tensors/PrimitiveTensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/PrimitiveTensor.h -------------------------------------------------------------------------------- /include/neml2/tensors/Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/Quaternion.h -------------------------------------------------------------------------------- /include/neml2/tensors/R2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/R2.h -------------------------------------------------------------------------------- /include/neml2/tensors/R3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/R3.h -------------------------------------------------------------------------------- /include/neml2/tensors/R4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/R4.h -------------------------------------------------------------------------------- /include/neml2/tensors/Rot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/Rot.h -------------------------------------------------------------------------------- /include/neml2/tensors/SFFR4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/SFFR4.h -------------------------------------------------------------------------------- /include/neml2/tensors/SFR3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/SFR3.h -------------------------------------------------------------------------------- /include/neml2/tensors/SR2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/SR2.h -------------------------------------------------------------------------------- /include/neml2/tensors/SSR4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/SSR4.h -------------------------------------------------------------------------------- /include/neml2/tensors/SWR4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/SWR4.h -------------------------------------------------------------------------------- /include/neml2/tensors/Scalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/Scalar.h -------------------------------------------------------------------------------- /include/neml2/tensors/Tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/Tensor.h -------------------------------------------------------------------------------- /include/neml2/tensors/TensorBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/TensorBase.h -------------------------------------------------------------------------------- /include/neml2/tensors/TensorBaseImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/TensorBaseImpl.h -------------------------------------------------------------------------------- /include/neml2/tensors/TensorCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/TensorCache.h -------------------------------------------------------------------------------- /include/neml2/tensors/TensorValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/TensorValue.h -------------------------------------------------------------------------------- /include/neml2/tensors/TraceableSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/TraceableSize.h -------------------------------------------------------------------------------- /include/neml2/tensors/TraceableTensorShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/TraceableTensorShape.h -------------------------------------------------------------------------------- /include/neml2/tensors/Transformable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/Transformable.h -------------------------------------------------------------------------------- /include/neml2/tensors/Vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/Vec.h -------------------------------------------------------------------------------- /include/neml2/tensors/VecBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/VecBase.h -------------------------------------------------------------------------------- /include/neml2/tensors/WFFR4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/WFFR4.h -------------------------------------------------------------------------------- /include/neml2/tensors/WR2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/WR2.h -------------------------------------------------------------------------------- /include/neml2/tensors/WSR4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/WSR4.h -------------------------------------------------------------------------------- /include/neml2/tensors/WWR4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/WWR4.h -------------------------------------------------------------------------------- /include/neml2/tensors/assertions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/assertions.h -------------------------------------------------------------------------------- /include/neml2/tensors/crystallography.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/crystallography.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/abs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/abs.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/acos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/acos.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/argmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/argmax.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/argmin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/argmin.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/asin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/asin.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/atan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/atan.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/cat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/cat.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/cbrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/cbrt.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/clamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/clamp.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/clip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/clip.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/cos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/cos.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/cosh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/cosh.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/cross.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/cross.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/deg2rad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/deg2rad.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/det.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/det.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/dev.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/diagonalize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/diagonalize.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/diff.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/einsum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/einsum.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/exp.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/fmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/fmod.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/gcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/gcd.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/heaviside.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/heaviside.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/imap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/imap.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/inner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/inner.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/inv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/inv.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/jacrev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/jacrev.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/linalg/eigh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/linalg/eigh.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/linspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/linspace.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/log.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/log10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/log10.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/logical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/logical.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/logspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/logspace.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/macaulay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/macaulay.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/mean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/mean.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/minimum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/minimum.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/mm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/mm.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/mv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/mv.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/norm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/norm.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/norm_sq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/norm_sq.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/operators.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/outer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/outer.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/pow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/pow.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/sign.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/sin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/sin.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/sinh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/sinh.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/sqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/sqrt.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/stack.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/sum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/sum.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/sum_to_size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/sum_to_size.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/tan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/tan.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/tanh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/tanh.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/to_assembly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/to_assembly.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/tr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/tr.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/unit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/unit.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/utils.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/vdot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/vdot.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/vol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/vol.h -------------------------------------------------------------------------------- /include/neml2/tensors/functions/where.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/functions/where.h -------------------------------------------------------------------------------- /include/neml2/tensors/indexing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/indexing.h -------------------------------------------------------------------------------- /include/neml2/tensors/jit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/jit.h -------------------------------------------------------------------------------- /include/neml2/tensors/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/macros.h -------------------------------------------------------------------------------- /include/neml2/tensors/shape_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/shape_utils.h -------------------------------------------------------------------------------- /include/neml2/tensors/tensors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/tensors.h -------------------------------------------------------------------------------- /include/neml2/tensors/tensors_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/tensors/tensors_fwd.h -------------------------------------------------------------------------------- /include/neml2/user_tensors/FillR2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/user_tensors/FillR2.h -------------------------------------------------------------------------------- /include/neml2/user_tensors/FillRot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/user_tensors/FillRot.h -------------------------------------------------------------------------------- /include/neml2/user_tensors/FillSR2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/user_tensors/FillSR2.h -------------------------------------------------------------------------------- /include/neml2/user_tensors/FillWR2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/user_tensors/FillWR2.h -------------------------------------------------------------------------------- /include/neml2/user_tensors/FromTorchScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/user_tensors/FromTorchScript.h -------------------------------------------------------------------------------- /include/neml2/user_tensors/FullTensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/user_tensors/FullTensor.h -------------------------------------------------------------------------------- /include/neml2/user_tensors/IdentityTensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/user_tensors/IdentityTensor.h -------------------------------------------------------------------------------- /include/neml2/user_tensors/LinspaceTensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/user_tensors/LinspaceTensor.h -------------------------------------------------------------------------------- /include/neml2/user_tensors/LogspaceTensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/user_tensors/LogspaceTensor.h -------------------------------------------------------------------------------- /include/neml2/user_tensors/Orientation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/user_tensors/Orientation.h -------------------------------------------------------------------------------- /include/neml2/user_tensors/RandomTensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/user_tensors/RandomTensor.h -------------------------------------------------------------------------------- /include/neml2/user_tensors/UserTensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/user_tensors/UserTensor.h -------------------------------------------------------------------------------- /include/neml2/user_tensors/UserTensorBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/include/neml2/user_tensors/UserTensorBase.h -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/pyproject.toml -------------------------------------------------------------------------------- /python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/CMakeLists.txt -------------------------------------------------------------------------------- /python/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/examples/README.md -------------------------------------------------------------------------------- /python/examples/crystal_plasticity/crystal.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/examples/crystal_plasticity/crystal.i -------------------------------------------------------------------------------- /python/examples/demo_model.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/examples/demo_model.i -------------------------------------------------------------------------------- /python/examples/deterministic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/examples/deterministic.ipynb -------------------------------------------------------------------------------- /python/examples/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/examples/requirements.txt -------------------------------------------------------------------------------- /python/examples/statistical.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/examples/statistical.ipynb -------------------------------------------------------------------------------- /python/neml2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/__init__.py -------------------------------------------------------------------------------- /python/neml2/core.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/core.cxx -------------------------------------------------------------------------------- /python/neml2/crystallography.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/crystallography.cxx -------------------------------------------------------------------------------- /python/neml2/csrc/core/Factory.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/core/Factory.cxx -------------------------------------------------------------------------------- /python/neml2/csrc/core/LabeledAxis.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/core/LabeledAxis.cxx -------------------------------------------------------------------------------- /python/neml2/csrc/core/MatrixAssembler.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/core/MatrixAssembler.cxx -------------------------------------------------------------------------------- /python/neml2/csrc/core/Model.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/core/Model.cxx -------------------------------------------------------------------------------- /python/neml2/csrc/core/TensorValue.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/core/TensorValue.cxx -------------------------------------------------------------------------------- /python/neml2/csrc/core/VariableName.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/core/VariableName.cxx -------------------------------------------------------------------------------- /python/neml2/csrc/core/VectorAssembler.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/core/VectorAssembler.cxx -------------------------------------------------------------------------------- /python/neml2/csrc/core/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/core/types.h -------------------------------------------------------------------------------- /python/neml2/csrc/core/utils.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/core/utils.cxx -------------------------------------------------------------------------------- /python/neml2/csrc/core/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/core/utils.h -------------------------------------------------------------------------------- /python/neml2/csrc/math/cross.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/math/cross.cxx -------------------------------------------------------------------------------- /python/neml2/csrc/math/inv.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/math/inv.cxx -------------------------------------------------------------------------------- /python/neml2/csrc/math/linspace.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/math/linspace.cxx -------------------------------------------------------------------------------- /python/neml2/csrc/math/logspace.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/math/logspace.cxx -------------------------------------------------------------------------------- /python/neml2/csrc/math/norm.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/math/norm.cxx -------------------------------------------------------------------------------- /python/neml2/csrc/math/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/math/types.h -------------------------------------------------------------------------------- /python/neml2/csrc/tensors/BaseView.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/tensors/BaseView.cxx -------------------------------------------------------------------------------- /python/neml2/csrc/tensors/BaseView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/tensors/BaseView.h -------------------------------------------------------------------------------- /python/neml2/csrc/tensors/BatchView.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/tensors/BatchView.cxx -------------------------------------------------------------------------------- /python/neml2/csrc/tensors/BatchView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/tensors/BatchView.h -------------------------------------------------------------------------------- /python/neml2/csrc/tensors/DynamicView.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/tensors/DynamicView.cxx -------------------------------------------------------------------------------- /python/neml2/csrc/tensors/DynamicView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/tensors/DynamicView.h -------------------------------------------------------------------------------- /python/neml2/csrc/tensors/IntmdView.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/tensors/IntmdView.cxx -------------------------------------------------------------------------------- /python/neml2/csrc/tensors/IntmdView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/tensors/IntmdView.h -------------------------------------------------------------------------------- /python/neml2/csrc/tensors/MillerIndex.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/tensors/MillerIndex.cxx -------------------------------------------------------------------------------- /python/neml2/csrc/tensors/PrimitiveTensor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/tensors/PrimitiveTensor.cxx -------------------------------------------------------------------------------- /python/neml2/csrc/tensors/PrimitiveTensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/tensors/PrimitiveTensor.h -------------------------------------------------------------------------------- /python/neml2/csrc/tensors/Quaternion.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/tensors/Quaternion.cxx -------------------------------------------------------------------------------- /python/neml2/csrc/tensors/R2.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/tensors/R2.cxx -------------------------------------------------------------------------------- /python/neml2/csrc/tensors/R3.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/tensors/R3.cxx -------------------------------------------------------------------------------- /python/neml2/csrc/tensors/R4.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/tensors/R4.cxx -------------------------------------------------------------------------------- /python/neml2/csrc/tensors/Rot.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/tensors/Rot.cxx -------------------------------------------------------------------------------- /python/neml2/csrc/tensors/SFFR4.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/tensors/SFFR4.cxx -------------------------------------------------------------------------------- /python/neml2/csrc/tensors/SFR3.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/tensors/SFR3.cxx -------------------------------------------------------------------------------- /python/neml2/csrc/tensors/SR2.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/tensors/SR2.cxx -------------------------------------------------------------------------------- /python/neml2/csrc/tensors/SSR4.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/tensors/SSR4.cxx -------------------------------------------------------------------------------- /python/neml2/csrc/tensors/SWR4.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/tensors/SWR4.cxx -------------------------------------------------------------------------------- /python/neml2/csrc/tensors/Scalar.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/tensors/Scalar.cxx -------------------------------------------------------------------------------- /python/neml2/csrc/tensors/StaticView.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/tensors/StaticView.cxx -------------------------------------------------------------------------------- /python/neml2/csrc/tensors/StaticView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/tensors/StaticView.h -------------------------------------------------------------------------------- /python/neml2/csrc/tensors/Tensor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/tensors/Tensor.cxx -------------------------------------------------------------------------------- /python/neml2/csrc/tensors/TensorBase.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/tensors/TensorBase.cxx -------------------------------------------------------------------------------- /python/neml2/csrc/tensors/TensorBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/tensors/TensorBase.h -------------------------------------------------------------------------------- /python/neml2/csrc/tensors/Vec.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/tensors/Vec.cxx -------------------------------------------------------------------------------- /python/neml2/csrc/tensors/WFFR4.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/tensors/WFFR4.cxx -------------------------------------------------------------------------------- /python/neml2/csrc/tensors/WR2.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/tensors/WR2.cxx -------------------------------------------------------------------------------- /python/neml2/csrc/tensors/WSR4.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/tensors/WSR4.cxx -------------------------------------------------------------------------------- /python/neml2/csrc/tensors/WWR4.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/tensors/WWR4.cxx -------------------------------------------------------------------------------- /python/neml2/csrc/tensors/operators.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/tensors/operators.cxx -------------------------------------------------------------------------------- /python/neml2/csrc/tensors/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/csrc/tensors/types.h -------------------------------------------------------------------------------- /python/neml2/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/macros.h -------------------------------------------------------------------------------- /python/neml2/math.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/math.cxx -------------------------------------------------------------------------------- /python/neml2/postprocessing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/postprocessing/__init__.py -------------------------------------------------------------------------------- /python/neml2/postprocessing/odf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/postprocessing/odf.py -------------------------------------------------------------------------------- /python/neml2/postprocessing/polefigure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/postprocessing/polefigure.py -------------------------------------------------------------------------------- /python/neml2/pyzag/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/pyzag/__init__.py -------------------------------------------------------------------------------- /python/neml2/pyzag/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/pyzag/interface.py -------------------------------------------------------------------------------- /python/neml2/requirements.txt: -------------------------------------------------------------------------------- 1 | pyzag==1.1.1 2 | pybind11-stubgen 3 | -------------------------------------------------------------------------------- /python/neml2/reserved.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/reserved.cxx -------------------------------------------------------------------------------- /python/neml2/tensors.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/neml2/tensors.cxx -------------------------------------------------------------------------------- /python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/requirements.txt -------------------------------------------------------------------------------- /python/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/tests/CMakeLists.txt -------------------------------------------------------------------------------- /python/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/tests/conftest.py -------------------------------------------------------------------------------- /python/tests/pyzag/gold/elastic_model.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/tests/pyzag/gold/elastic_model.pt -------------------------------------------------------------------------------- /python/tests/pyzag/gold/km_mixed_model.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/tests/pyzag/gold/km_mixed_model.pt -------------------------------------------------------------------------------- /python/tests/pyzag/gold/viscoplastic_model.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/tests/pyzag/gold/viscoplastic_model.pt -------------------------------------------------------------------------------- /python/tests/pyzag/models/correct_model.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/tests/pyzag/models/correct_model.i -------------------------------------------------------------------------------- /python/tests/pyzag/models/elastic_model.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/tests/pyzag/models/elastic_model.i -------------------------------------------------------------------------------- /python/tests/pyzag/models/km_mixed_model.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/tests/pyzag/models/km_mixed_model.i -------------------------------------------------------------------------------- /python/tests/pyzag/test_NEML2PyzagModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/tests/pyzag/test_NEML2PyzagModel.py -------------------------------------------------------------------------------- /python/tests/pyzag/test_adjoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/tests/pyzag/test_adjoint.py -------------------------------------------------------------------------------- /python/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | pyzag>=1.1.1 2 | pytest 3 | graphviz 4 | -------------------------------------------------------------------------------- /python/tests/tensors/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/tests/tensors/common.py -------------------------------------------------------------------------------- /python/tests/tensors/test_PrimitiveTensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/tests/tensors/test_PrimitiveTensor.py -------------------------------------------------------------------------------- /python/tests/tensors/test_Tensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/tests/tensors/test_Tensor.py -------------------------------------------------------------------------------- /python/tests/tensors/test_TensorBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/tests/tensors/test_TensorBase.py -------------------------------------------------------------------------------- /python/tests/test_LabeledAxis.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/tests/test_LabeledAxis.i -------------------------------------------------------------------------------- /python/tests/test_LabeledAxis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/tests/test_LabeledAxis.py -------------------------------------------------------------------------------- /python/tests/test_MatrixAssembler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/tests/test_MatrixAssembler.py -------------------------------------------------------------------------------- /python/tests/test_Model.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/tests/test_Model.i -------------------------------------------------------------------------------- /python/tests/test_Model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/tests/test_Model.py -------------------------------------------------------------------------------- /python/tests/test_Model_diagnose.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/tests/test_Model_diagnose.i -------------------------------------------------------------------------------- /python/tests/test_ParameterStore.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/tests/test_ParameterStore.i -------------------------------------------------------------------------------- /python/tests/test_ParameterStore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/tests/test_ParameterStore.py -------------------------------------------------------------------------------- /python/tests/test_VariableName.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/tests/test_VariableName.py -------------------------------------------------------------------------------- /python/tests/test_VectorAssembler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/tests/test_VectorAssembler.py -------------------------------------------------------------------------------- /python/tests/test_training.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/tests/test_training.i -------------------------------------------------------------------------------- /python/tests/test_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/python/tests/test_training.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/requirements.txt -------------------------------------------------------------------------------- /runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/runner/CMakeLists.txt -------------------------------------------------------------------------------- /runner/benchmark/.gitignore: -------------------------------------------------------------------------------- 1 | results 2 | -------------------------------------------------------------------------------- /runner/benchmark/analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/runner/benchmark/analyze.py -------------------------------------------------------------------------------- /runner/benchmark/chaboche2/model.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/runner/benchmark/chaboche2/model.i -------------------------------------------------------------------------------- /runner/benchmark/chaboche4/model.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/runner/benchmark/chaboche4/model.i -------------------------------------------------------------------------------- /runner/benchmark/chaboche6/model.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/runner/benchmark/chaboche6/model.i -------------------------------------------------------------------------------- /runner/benchmark/elasticity/model.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/runner/benchmark/elasticity/model.i -------------------------------------------------------------------------------- /runner/benchmark/gtntheig/model.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/runner/benchmark/gtntheig/model.i -------------------------------------------------------------------------------- /runner/benchmark/isoharden/model.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/runner/benchmark/isoharden/model.i -------------------------------------------------------------------------------- /runner/benchmark/radret/model.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/runner/benchmark/radret/model.i -------------------------------------------------------------------------------- /runner/benchmark/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | scipy 3 | pandas 4 | matplotlib 5 | -------------------------------------------------------------------------------- /runner/benchmark/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/runner/benchmark/run.py -------------------------------------------------------------------------------- /runner/benchmark/scpcoup/model.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/runner/benchmark/scpcoup/model.i -------------------------------------------------------------------------------- /runner/benchmark/scpdecoup/model.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/runner/benchmark/scpdecoup/model.i -------------------------------------------------------------------------------- /runner/benchmark/scpdecoupexp/model.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/runner/benchmark/scpdecoupexp/model.i -------------------------------------------------------------------------------- /runner/benchmark/tcprandom/model.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/runner/benchmark/tcprandom/model.i -------------------------------------------------------------------------------- /runner/benchmark/tcpsingle/model.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/runner/benchmark/tcpsingle/model.i -------------------------------------------------------------------------------- /runner/src/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/runner/src/main.cxx -------------------------------------------------------------------------------- /scripts/check_copyright.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/scripts/check_copyright.py -------------------------------------------------------------------------------- /scripts/check_python_dep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/scripts/check_python_dep.py -------------------------------------------------------------------------------- /scripts/clobber.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/scripts/clobber.sh -------------------------------------------------------------------------------- /scripts/coverage.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/scripts/coverage.sh.in -------------------------------------------------------------------------------- /scripts/filter_cc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/scripts/filter_cc.py -------------------------------------------------------------------------------- /scripts/gcov_clang_wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/scripts/gcov_clang_wrapper.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/setup.py -------------------------------------------------------------------------------- /src/neml2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/CMakeLists.txt -------------------------------------------------------------------------------- /src/neml2/base/DiagnosticsInterface.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/base/DiagnosticsInterface.cxx -------------------------------------------------------------------------------- /src/neml2/base/EnumSelection.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/base/EnumSelection.cxx -------------------------------------------------------------------------------- /src/neml2/base/EnumSelectionBase.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/base/EnumSelectionBase.cxx -------------------------------------------------------------------------------- /src/neml2/base/Factory.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/base/Factory.cxx -------------------------------------------------------------------------------- /src/neml2/base/HITParser.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/base/HITParser.cxx -------------------------------------------------------------------------------- /src/neml2/base/InputFile.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/base/InputFile.cxx -------------------------------------------------------------------------------- /src/neml2/base/LabeledAxis.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/base/LabeledAxis.cxx -------------------------------------------------------------------------------- /src/neml2/base/LabeledAxisAccessor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/base/LabeledAxisAccessor.cxx -------------------------------------------------------------------------------- /src/neml2/base/MultiEnumSelection.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/base/MultiEnumSelection.cxx -------------------------------------------------------------------------------- /src/neml2/base/NEML2Object.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/base/NEML2Object.cxx -------------------------------------------------------------------------------- /src/neml2/base/Option.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/base/Option.cxx -------------------------------------------------------------------------------- /src/neml2/base/OptionBase.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/base/OptionBase.cxx -------------------------------------------------------------------------------- /src/neml2/base/OptionSet.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/base/OptionSet.cxx -------------------------------------------------------------------------------- /src/neml2/base/Parser.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/base/Parser.cxx -------------------------------------------------------------------------------- /src/neml2/base/Registry.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/base/Registry.cxx -------------------------------------------------------------------------------- /src/neml2/base/Settings.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/base/Settings.cxx -------------------------------------------------------------------------------- /src/neml2/base/TensorName.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/base/TensorName.cxx -------------------------------------------------------------------------------- /src/neml2/base/TracingInterface.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/base/TracingInterface.cxx -------------------------------------------------------------------------------- /src/neml2/base/guards.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/base/guards.cxx -------------------------------------------------------------------------------- /src/neml2/dispatchers/SimpleMPIScheduler.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/dispatchers/SimpleMPIScheduler.cxx -------------------------------------------------------------------------------- /src/neml2/dispatchers/SimpleScheduler.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/dispatchers/SimpleScheduler.cxx -------------------------------------------------------------------------------- /src/neml2/dispatchers/SliceGenerator.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/dispatchers/SliceGenerator.cxx -------------------------------------------------------------------------------- /src/neml2/dispatchers/TensorLoader.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/dispatchers/TensorLoader.cxx -------------------------------------------------------------------------------- /src/neml2/dispatchers/ValueMapLoader.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/dispatchers/ValueMapLoader.cxx -------------------------------------------------------------------------------- /src/neml2/dispatchers/WorkScheduler.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/dispatchers/WorkScheduler.cxx -------------------------------------------------------------------------------- /src/neml2/dispatchers/derivmap_helpers.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/dispatchers/derivmap_helpers.cxx -------------------------------------------------------------------------------- /src/neml2/dispatchers/valuemap_helpers.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/dispatchers/valuemap_helpers.cxx -------------------------------------------------------------------------------- /src/neml2/drivers/Driver.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/drivers/Driver.cxx -------------------------------------------------------------------------------- /src/neml2/drivers/ModelDriver.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/drivers/ModelDriver.cxx -------------------------------------------------------------------------------- /src/neml2/drivers/TransientDriver.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/drivers/TransientDriver.cxx -------------------------------------------------------------------------------- /src/neml2/misc/defaults.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/misc/defaults.cxx -------------------------------------------------------------------------------- /src/neml2/misc/errors.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/misc/errors.cxx -------------------------------------------------------------------------------- /src/neml2/misc/string_utils.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/misc/string_utils.cxx -------------------------------------------------------------------------------- /src/neml2/misc/types.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/misc/types.cxx -------------------------------------------------------------------------------- /src/neml2/models/ArrheniusParameter.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/models/ArrheniusParameter.cxx -------------------------------------------------------------------------------- /src/neml2/models/Assembler.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/models/Assembler.cxx -------------------------------------------------------------------------------- /src/neml2/models/BilinearInterpolation.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/models/BilinearInterpolation.cxx -------------------------------------------------------------------------------- /src/neml2/models/BufferStore.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/models/BufferStore.cxx -------------------------------------------------------------------------------- /src/neml2/models/ComposedModel.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/models/ComposedModel.cxx -------------------------------------------------------------------------------- /src/neml2/models/ConstantParameter.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/models/ConstantParameter.cxx -------------------------------------------------------------------------------- /src/neml2/models/CopyVariable.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/models/CopyVariable.cxx -------------------------------------------------------------------------------- /src/neml2/models/Data.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/models/Data.cxx -------------------------------------------------------------------------------- /src/neml2/models/Derivative.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/models/Derivative.cxx -------------------------------------------------------------------------------- /src/neml2/models/Determinant.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/models/Determinant.cxx -------------------------------------------------------------------------------- /src/neml2/models/DynamicMean.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/models/DynamicMean.cxx -------------------------------------------------------------------------------- /src/neml2/models/DynamicSum.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/models/DynamicSum.cxx -------------------------------------------------------------------------------- /src/neml2/models/FischerBurmeister.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/models/FischerBurmeister.cxx -------------------------------------------------------------------------------- /src/neml2/models/HermiteSmoothStep.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/models/HermiteSmoothStep.cxx -------------------------------------------------------------------------------- /src/neml2/models/ImplicitUpdate.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/models/ImplicitUpdate.cxx -------------------------------------------------------------------------------- /src/neml2/models/IncrementToRate.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/models/IncrementToRate.cxx -------------------------------------------------------------------------------- /src/neml2/models/InputParameter.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/models/InputParameter.cxx -------------------------------------------------------------------------------- /src/neml2/models/IntermediateMean.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/models/IntermediateMean.cxx -------------------------------------------------------------------------------- /src/neml2/models/IntermediateSum.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/models/IntermediateSum.cxx -------------------------------------------------------------------------------- /src/neml2/models/Interpolation.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/models/Interpolation.cxx -------------------------------------------------------------------------------- /src/neml2/models/LinearCombination.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/models/LinearCombination.cxx -------------------------------------------------------------------------------- /src/neml2/models/LinearInterpolation.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/models/LinearInterpolation.cxx -------------------------------------------------------------------------------- /src/neml2/models/MixedControlSetup.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/models/MixedControlSetup.cxx -------------------------------------------------------------------------------- /src/neml2/models/Model.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/models/Model.cxx -------------------------------------------------------------------------------- /src/neml2/models/ParameterStore.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/models/ParameterStore.cxx -------------------------------------------------------------------------------- /src/neml2/models/ParameterToState.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/models/ParameterToState.cxx -------------------------------------------------------------------------------- /src/neml2/models/R2Multiplication.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/models/R2Multiplication.cxx -------------------------------------------------------------------------------- /src/neml2/models/R2toSR2.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/models/R2toSR2.cxx -------------------------------------------------------------------------------- /src/neml2/models/R2toWR2.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/models/R2toWR2.cxx -------------------------------------------------------------------------------- /src/neml2/models/Reduction.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/models/Reduction.cxx -------------------------------------------------------------------------------- /src/neml2/models/RotationMatrix.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/models/RotationMatrix.cxx -------------------------------------------------------------------------------- /src/neml2/models/SR2Invariant.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/models/SR2Invariant.cxx -------------------------------------------------------------------------------- /src/neml2/models/SR2toR2.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/models/SR2toR2.cxx -------------------------------------------------------------------------------- /src/neml2/models/ScalarMultiplication.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/models/ScalarMultiplication.cxx -------------------------------------------------------------------------------- /src/neml2/models/ScalarToDiagonalSR2.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/models/ScalarToDiagonalSR2.cxx -------------------------------------------------------------------------------- /src/neml2/models/Variable.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/models/Variable.cxx -------------------------------------------------------------------------------- /src/neml2/models/VariableBase.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/models/VariableBase.cxx -------------------------------------------------------------------------------- /src/neml2/models/VariableRate.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/models/VariableRate.cxx -------------------------------------------------------------------------------- /src/neml2/models/VariableStore.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/models/VariableStore.cxx -------------------------------------------------------------------------------- /src/neml2/models/solid_mechanics/FlowRule.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/models/solid_mechanics/FlowRule.cxx -------------------------------------------------------------------------------- /src/neml2/solvers/Newton.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/solvers/Newton.cxx -------------------------------------------------------------------------------- /src/neml2/solvers/NewtonWithLineSearch.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/solvers/NewtonWithLineSearch.cxx -------------------------------------------------------------------------------- /src/neml2/solvers/NewtonWithTrustRegion.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/solvers/NewtonWithTrustRegion.cxx -------------------------------------------------------------------------------- /src/neml2/solvers/NonlinearSolver.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/solvers/NonlinearSolver.cxx -------------------------------------------------------------------------------- /src/neml2/solvers/NonlinearSystem.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/solvers/NonlinearSystem.cxx -------------------------------------------------------------------------------- /src/neml2/solvers/Solver.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/solvers/Solver.cxx -------------------------------------------------------------------------------- /src/neml2/solvers/TrustRegionSubProblem.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/solvers/TrustRegionSubProblem.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/Quaternion.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/Quaternion.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/R2.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/R2.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/R3.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/R3.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/R4.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/R4.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/Rot.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/Rot.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/SR2.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/SR2.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/SSR4.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/SSR4.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/SWR4.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/SWR4.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/Scalar.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/Scalar.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/Tensor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/Tensor.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/TensorCache.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/TensorCache.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/TensorValue.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/TensorValue.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/TraceableSize.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/TraceableSize.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/TraceableTensorShape.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/TraceableTensorShape.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/Transformable.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/Transformable.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/Vec.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/Vec.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/VecBase.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/VecBase.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/WR2.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/WR2.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/WSR4.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/WSR4.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/WWR4.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/WWR4.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/crystallography.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/crystallography.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/abs.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/abs.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/acos.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/acos.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/argmax.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/argmax.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/argmin.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/argmin.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/asin.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/asin.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/atan.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/atan.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/cat.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/cat.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/cbrt.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/cbrt.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/clamp.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/clamp.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/clip.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/clip.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/cos.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/cos.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/cosh.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/cosh.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/cross.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/cross.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/deg2rad.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/deg2rad.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/det.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/det.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/dev.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/dev.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/diagonalize.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/diagonalize.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/diff.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/diff.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/einsum.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/einsum.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/exp.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/exp.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/fmod.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/fmod.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/from_assembly.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/from_assembly.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/gcd.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/gcd.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/heaviside.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/heaviside.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/inner.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/inner.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/inv.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/inv.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/jacrev.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/jacrev.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/linalg/dsptrf.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/linalg/dsptrf.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/linalg/eigh.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/linalg/eigh.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/linalg/ieigh.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/linalg/ieigh.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/linalg/solve.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/linalg/solve.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/linspace.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/linspace.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/log.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/log.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/log10.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/log10.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/logical.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/logical.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/logspace.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/logspace.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/macaulay.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/macaulay.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/mean.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/mean.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/minimum.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/minimum.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/mm.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/mm.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/mv.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/mv.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/norm.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/norm.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/norm_sq.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/norm_sq.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/normalize_gcd.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/normalize_gcd.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/operators.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/operators.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/outer.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/outer.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/pow.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/pow.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/sign.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/sign.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/sin.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/sin.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/sinh.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/sinh.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/sqrt.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/sqrt.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/stack.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/stack.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/sum.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/sum.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/sum_to_size.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/sum_to_size.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/tan.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/tan.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/tanh.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/tanh.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/to_assembly.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/to_assembly.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/tr.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/tr.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/unit.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/unit.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/utils.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/utils.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/vol.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/vol.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/vv.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/vv.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/functions/where.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/functions/where.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/jit.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/jit.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/shape_utils.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/shape_utils.cxx -------------------------------------------------------------------------------- /src/neml2/tensors/tensors.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/tensors/tensors.cxx -------------------------------------------------------------------------------- /src/neml2/user_tensors/FactoryMethodBase.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/user_tensors/FactoryMethodBase.cxx -------------------------------------------------------------------------------- /src/neml2/user_tensors/FillR2.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/user_tensors/FillR2.cxx -------------------------------------------------------------------------------- /src/neml2/user_tensors/FillRot.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/user_tensors/FillRot.cxx -------------------------------------------------------------------------------- /src/neml2/user_tensors/FillSR2.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/user_tensors/FillSR2.cxx -------------------------------------------------------------------------------- /src/neml2/user_tensors/FillWR2.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/user_tensors/FillWR2.cxx -------------------------------------------------------------------------------- /src/neml2/user_tensors/FromTorchScript.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/user_tensors/FromTorchScript.cxx -------------------------------------------------------------------------------- /src/neml2/user_tensors/FullTensor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/user_tensors/FullTensor.cxx -------------------------------------------------------------------------------- /src/neml2/user_tensors/IdentityTensor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/user_tensors/IdentityTensor.cxx -------------------------------------------------------------------------------- /src/neml2/user_tensors/LinspaceTensor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/user_tensors/LinspaceTensor.cxx -------------------------------------------------------------------------------- /src/neml2/user_tensors/LogspaceTensor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/user_tensors/LogspaceTensor.cxx -------------------------------------------------------------------------------- /src/neml2/user_tensors/Orientation.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/user_tensors/Orientation.cxx -------------------------------------------------------------------------------- /src/neml2/user_tensors/RandomTensor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/user_tensors/RandomTensor.cxx -------------------------------------------------------------------------------- /src/neml2/user_tensors/UserTensor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/user_tensors/UserTensor.cxx -------------------------------------------------------------------------------- /src/neml2/user_tensors/UserTensorBase.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/src/neml2/user_tensors/UserTensorBase.cxx -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/dispatchers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/dispatchers/CMakeLists.txt -------------------------------------------------------------------------------- /tests/dispatchers/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/dispatchers/main.cxx -------------------------------------------------------------------------------- /tests/dispatchers/model.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/dispatchers/model.i -------------------------------------------------------------------------------- /tests/dispatchers/test_SliceGenerator.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/dispatchers/test_SliceGenerator.cxx -------------------------------------------------------------------------------- /tests/dispatchers/test_TensorLoader.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/dispatchers/test_TensorLoader.cxx -------------------------------------------------------------------------------- /tests/dispatchers/test_ValueMapLoader.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/dispatchers/test_ValueMapLoader.cxx -------------------------------------------------------------------------------- /tests/dispatchers/test_derivmap_helpers.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/dispatchers/test_derivmap_helpers.cxx -------------------------------------------------------------------------------- /tests/dispatchers/test_valuemap_helpers.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/dispatchers/test_valuemap_helpers.cxx -------------------------------------------------------------------------------- /tests/extension/.gitignore: -------------------------------------------------------------------------------- 1 | FooModel.i 2 | -------------------------------------------------------------------------------- /tests/extension/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/extension/CMakeLists.txt -------------------------------------------------------------------------------- /tests/extension/FooModel.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/extension/FooModel.cxx -------------------------------------------------------------------------------- /tests/extension/FooModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/extension/FooModel.h -------------------------------------------------------------------------------- /tests/extension/FooModel.i.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/extension/FooModel.i.in -------------------------------------------------------------------------------- /tests/include/ModelUnitTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/include/ModelUnitTest.h -------------------------------------------------------------------------------- /tests/include/SampleEventTracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/include/SampleEventTracer.h -------------------------------------------------------------------------------- /tests/include/SampleNonlinearSystems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/include/SampleNonlinearSystems.h -------------------------------------------------------------------------------- /tests/include/SampleParserTestingModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/include/SampleParserTestingModel.h -------------------------------------------------------------------------------- /tests/include/SampleRateModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/include/SampleRateModel.h -------------------------------------------------------------------------------- /tests/include/SpatialVelocityDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/include/SpatialVelocityDriver.h -------------------------------------------------------------------------------- /tests/include/TabulatedPolynomialModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/include/TabulatedPolynomialModel.h -------------------------------------------------------------------------------- /tests/include/TorchScriptFlowRate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/include/TorchScriptFlowRate.h -------------------------------------------------------------------------------- /tests/include/TransientRegression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/include/TransientRegression.h -------------------------------------------------------------------------------- /tests/include/VTestParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/include/VTestParser.h -------------------------------------------------------------------------------- /tests/include/VTestTimeSeries.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/include/VTestTimeSeries.h -------------------------------------------------------------------------------- /tests/include/VTestVerification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/include/VTestVerification.h -------------------------------------------------------------------------------- /tests/include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/include/utils.h -------------------------------------------------------------------------------- /tests/regression/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/regression/CMakeLists.txt -------------------------------------------------------------------------------- /tests/regression/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/regression/main.cxx -------------------------------------------------------------------------------- /tests/regression/regression_training.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/regression/regression_training.cxx -------------------------------------------------------------------------------- /tests/regression/regression_training.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/regression/regression_training.i -------------------------------------------------------------------------------- /tests/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/src/CMakeLists.txt -------------------------------------------------------------------------------- /tests/src/ModelUnitTest.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/src/ModelUnitTest.cxx -------------------------------------------------------------------------------- /tests/src/SampleEventTracer.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/src/SampleEventTracer.cxx -------------------------------------------------------------------------------- /tests/src/SampleNonlinearSystems.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/src/SampleNonlinearSystems.cxx -------------------------------------------------------------------------------- /tests/src/SampleParserTestingModel.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/src/SampleParserTestingModel.cxx -------------------------------------------------------------------------------- /tests/src/SampleRateModel.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/src/SampleRateModel.cxx -------------------------------------------------------------------------------- /tests/src/SpatialVelocityDriver.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/src/SpatialVelocityDriver.cxx -------------------------------------------------------------------------------- /tests/src/TabulatedPolynomialModel.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/src/TabulatedPolynomialModel.cxx -------------------------------------------------------------------------------- /tests/src/TorchScriptFlowRate.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/src/TorchScriptFlowRate.cxx -------------------------------------------------------------------------------- /tests/src/TransientRegression.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/src/TransientRegression.cxx -------------------------------------------------------------------------------- /tests/src/VTestParser.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/src/VTestParser.cxx -------------------------------------------------------------------------------- /tests/src/VTestTimeSeries.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/src/VTestTimeSeries.cxx -------------------------------------------------------------------------------- /tests/src/VTestVerification.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/src/VTestVerification.cxx -------------------------------------------------------------------------------- /tests/src/utils.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/src/utils.cxx -------------------------------------------------------------------------------- /tests/unit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/CMakeLists.txt -------------------------------------------------------------------------------- /tests/unit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/README.md -------------------------------------------------------------------------------- /tests/unit/base/test_EnumSelection.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/base/test_EnumSelection.cxx -------------------------------------------------------------------------------- /tests/unit/base/test_Factory.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/base/test_Factory.cxx -------------------------------------------------------------------------------- /tests/unit/base/test_HITParser.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/base/test_HITParser.cxx -------------------------------------------------------------------------------- /tests/unit/base/test_HITParser1.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/base/test_HITParser1.i -------------------------------------------------------------------------------- /tests/unit/base/test_HITParser2.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/base/test_HITParser2.i -------------------------------------------------------------------------------- /tests/unit/base/test_MultiEnumSelection.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/base/test_MultiEnumSelection.cxx -------------------------------------------------------------------------------- /tests/unit/base/test_OptionSet.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/base/test_OptionSet.cxx -------------------------------------------------------------------------------- /tests/unit/base/test_Registry.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/base/test_Registry.cxx -------------------------------------------------------------------------------- /tests/unit/base/test_Settings.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/base/test_Settings.cxx -------------------------------------------------------------------------------- /tests/unit/base/test_TracingInterface.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/base/test_TracingInterface.cxx -------------------------------------------------------------------------------- /tests/unit/base/test_disable_jit.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/base/test_disable_jit.i -------------------------------------------------------------------------------- /tests/unit/base/test_disable_jit_error.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/base/test_disable_jit_error.i -------------------------------------------------------------------------------- /tests/unit/drivers/test_TransientDriver.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/drivers/test_TransientDriver.cxx -------------------------------------------------------------------------------- /tests/unit/drivers/test_TransientDriver.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/drivers/test_TransientDriver.i -------------------------------------------------------------------------------- /tests/unit/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/main.cxx -------------------------------------------------------------------------------- /tests/unit/misc/test_string_utils.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/misc/test_string_utils.cxx -------------------------------------------------------------------------------- /tests/unit/models/ADSampleRateModel.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/ADSampleRateModel.i -------------------------------------------------------------------------------- /tests/unit/models/ArrheniusParameter.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/ArrheniusParameter.i -------------------------------------------------------------------------------- /tests/unit/models/ComposedModel1.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/ComposedModel1.i -------------------------------------------------------------------------------- /tests/unit/models/ComposedModel2.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/ComposedModel2.i -------------------------------------------------------------------------------- /tests/unit/models/ComposedModel3.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/ComposedModel3.i -------------------------------------------------------------------------------- /tests/unit/models/ComposedModel4.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/ComposedModel4.i -------------------------------------------------------------------------------- /tests/unit/models/ComposedModel5.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/ComposedModel5.i -------------------------------------------------------------------------------- /tests/unit/models/FischerBurmeister1.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/FischerBurmeister1.i -------------------------------------------------------------------------------- /tests/unit/models/FischerBurmeister2.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/FischerBurmeister2.i -------------------------------------------------------------------------------- /tests/unit/models/FischerBurmeister3.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/FischerBurmeister3.i -------------------------------------------------------------------------------- /tests/unit/models/HermiteSmoothStep.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/HermiteSmoothStep.i -------------------------------------------------------------------------------- /tests/unit/models/HermiteSmoothStep2.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/HermiteSmoothStep2.i -------------------------------------------------------------------------------- /tests/unit/models/ImplicitUpdate.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/ImplicitUpdate.i -------------------------------------------------------------------------------- /tests/unit/models/MixedControlSetup.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/MixedControlSetup.i -------------------------------------------------------------------------------- /tests/unit/models/ParameterToState.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/ParameterToState.i -------------------------------------------------------------------------------- /tests/unit/models/R2Determinant.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/R2Determinant.i -------------------------------------------------------------------------------- /tests/unit/models/R2IncrementToRate.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/R2IncrementToRate.i -------------------------------------------------------------------------------- /tests/unit/models/R2Multiplication1.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/R2Multiplication1.i -------------------------------------------------------------------------------- /tests/unit/models/R2Multiplication2.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/R2Multiplication2.i -------------------------------------------------------------------------------- /tests/unit/models/R2Multiplication3.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/R2Multiplication3.i -------------------------------------------------------------------------------- /tests/unit/models/R2Multiplication4.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/R2Multiplication4.i -------------------------------------------------------------------------------- /tests/unit/models/R2toSR2.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/R2toSR2.i -------------------------------------------------------------------------------- /tests/unit/models/R2toWR2.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/R2toWR2.i -------------------------------------------------------------------------------- /tests/unit/models/SR2ConstantParameter.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/SR2ConstantParameter.i -------------------------------------------------------------------------------- /tests/unit/models/SR2DynamicMean.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/SR2DynamicMean.i -------------------------------------------------------------------------------- /tests/unit/models/SR2DynamicSum.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/SR2DynamicSum.i -------------------------------------------------------------------------------- /tests/unit/models/SR2IncrementToRate.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/SR2IncrementToRate.i -------------------------------------------------------------------------------- /tests/unit/models/SR2IntermediateMean.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/SR2IntermediateMean.i -------------------------------------------------------------------------------- /tests/unit/models/SR2IntermediateSum.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/SR2IntermediateSum.i -------------------------------------------------------------------------------- /tests/unit/models/SR2Invariant_I1.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/SR2Invariant_I1.i -------------------------------------------------------------------------------- /tests/unit/models/SR2Invariant_I2.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/SR2Invariant_I2.i -------------------------------------------------------------------------------- /tests/unit/models/SR2Invariant_VONMISES.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/SR2Invariant_VONMISES.i -------------------------------------------------------------------------------- /tests/unit/models/SR2LinearCombination.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/SR2LinearCombination.i -------------------------------------------------------------------------------- /tests/unit/models/SR2LinearCombination2.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/SR2LinearCombination2.i -------------------------------------------------------------------------------- /tests/unit/models/SR2LinearInterpolation1.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/SR2LinearInterpolation1.i -------------------------------------------------------------------------------- /tests/unit/models/SR2LinearInterpolation2.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/SR2LinearInterpolation2.i -------------------------------------------------------------------------------- /tests/unit/models/SR2LinearInterpolation3.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/SR2LinearInterpolation3.i -------------------------------------------------------------------------------- /tests/unit/models/SR2LinearInterpolation4.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/SR2LinearInterpolation4.i -------------------------------------------------------------------------------- /tests/unit/models/SR2toR2.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/SR2toR2.i -------------------------------------------------------------------------------- /tests/unit/models/SampleRateModel.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/SampleRateModel.i -------------------------------------------------------------------------------- /tests/unit/models/ScalarConstantParameter.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/ScalarConstantParameter.i -------------------------------------------------------------------------------- /tests/unit/models/ScalarForceRate.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/ScalarForceRate.i -------------------------------------------------------------------------------- /tests/unit/models/ScalarIncrementToRate.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/ScalarIncrementToRate.i -------------------------------------------------------------------------------- /tests/unit/models/ScalarLinearCombination.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/ScalarLinearCombination.i -------------------------------------------------------------------------------- /tests/unit/models/ScalarMultiplication1.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/ScalarMultiplication1.i -------------------------------------------------------------------------------- /tests/unit/models/ScalarMultiplication2.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/ScalarMultiplication2.i -------------------------------------------------------------------------------- /tests/unit/models/ScalarMultiplication3.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/ScalarMultiplication3.i -------------------------------------------------------------------------------- /tests/unit/models/ScalarMultiplication4.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/ScalarMultiplication4.i -------------------------------------------------------------------------------- /tests/unit/models/ScalarMultiplication5.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/ScalarMultiplication5.i -------------------------------------------------------------------------------- /tests/unit/models/ScalarMultiplication6.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/ScalarMultiplication6.i -------------------------------------------------------------------------------- /tests/unit/models/ScalarStateRate.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/ScalarStateRate.i -------------------------------------------------------------------------------- /tests/unit/models/ScalarToDiagonalSR2.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/ScalarToDiagonalSR2.i -------------------------------------------------------------------------------- /tests/unit/models/TorchScriptFlowRate.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/TorchScriptFlowRate.i -------------------------------------------------------------------------------- /tests/unit/models/TorchScriptFlowRate.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/TorchScriptFlowRate.pt -------------------------------------------------------------------------------- /tests/unit/models/VecIncrementToRate.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/VecIncrementToRate.i -------------------------------------------------------------------------------- /tests/unit/models/solid_mechanics/Normality.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/solid_mechanics/Normality.i -------------------------------------------------------------------------------- /tests/unit/models/test_Assembler.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/test_Assembler.cxx -------------------------------------------------------------------------------- /tests/unit/models/test_ImplicitUpdate.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/test_ImplicitUpdate.cxx -------------------------------------------------------------------------------- /tests/unit/models/test_LabeledAxis.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/test_LabeledAxis.cxx -------------------------------------------------------------------------------- /tests/unit/models/test_LabeledAxisAccesor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/test_LabeledAxisAccesor.cxx -------------------------------------------------------------------------------- /tests/unit/models/test_Model.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/test_Model.cxx -------------------------------------------------------------------------------- /tests/unit/models/test_Model_diagnose1.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/test_Model_diagnose1.i -------------------------------------------------------------------------------- /tests/unit/models/test_Model_diagnose2.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/test_Model_diagnose2.i -------------------------------------------------------------------------------- /tests/unit/models/test_Model_diagnose3.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/test_Model_diagnose3.i -------------------------------------------------------------------------------- /tests/unit/models/test_ParameterStore.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/test_ParameterStore.cxx -------------------------------------------------------------------------------- /tests/unit/models/test_ParameterStore.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/test_ParameterStore.i -------------------------------------------------------------------------------- /tests/unit/models/test_models.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/models/test_models.cxx -------------------------------------------------------------------------------- /tests/unit/solvers/test_NonlinearSolvers.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/solvers/test_NonlinearSolvers.cxx -------------------------------------------------------------------------------- /tests/unit/solvers/test_NonlinearSystem.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/solvers/test_NonlinearSystem.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/functions/test_abs.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/functions/test_abs.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/functions/test_acos.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/functions/test_acos.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/functions/test_asin.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/functions/test_asin.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/functions/test_atan.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/functions/test_atan.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/functions/test_cat.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/functions/test_cat.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/functions/test_cbrt.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/functions/test_cbrt.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/functions/test_clamp.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/functions/test_clamp.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/functions/test_clip.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/functions/test_clip.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/functions/test_cos.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/functions/test_cos.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/functions/test_cosh.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/functions/test_cosh.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/functions/test_cross.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/functions/test_cross.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/functions/test_deg2rad.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/functions/test_deg2rad.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/functions/test_det.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/functions/test_det.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/functions/test_dev.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/functions/test_dev.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/functions/test_einsum.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/functions/test_einsum.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/functions/test_exp.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/functions/test_exp.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/functions/test_fmod.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/functions/test_fmod.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/functions/test_gcd.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/functions/test_gcd.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/functions/test_imap.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/functions/test_imap.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/functions/test_inner.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/functions/test_inner.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/functions/test_inv.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/functions/test_inv.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/functions/test_log.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/functions/test_log.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/functions/test_log10.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/functions/test_log10.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/functions/test_mm.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/functions/test_mm.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/functions/test_mv.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/functions/test_mv.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/functions/test_norm.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/functions/test_norm.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/functions/test_norm_sq.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/functions/test_norm_sq.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/functions/test_outer.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/functions/test_outer.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/functions/test_pow.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/functions/test_pow.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/functions/test_sign.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/functions/test_sign.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/functions/test_sin.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/functions/test_sin.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/functions/test_sinh.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/functions/test_sinh.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/functions/test_sqrt.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/functions/test_sqrt.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/functions/test_stack.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/functions/test_stack.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/functions/test_tan.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/functions/test_tan.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/functions/test_tanh.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/functions/test_tanh.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/functions/test_tr.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/functions/test_tr.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/functions/test_vdot.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/functions/test_vdot.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/functions/test_vol.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/functions/test_vol.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/generators.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/generators.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/generators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/generators.h -------------------------------------------------------------------------------- /tests/unit/tensors/test_PrimitiveTensor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/test_PrimitiveTensor.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/test_Quaternion.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/test_Quaternion.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/test_R2.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/test_R2.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/test_R3.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/test_R3.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/test_R4.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/test_R4.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/test_Rot.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/test_Rot.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/test_SR2.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/test_SR2.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/test_SSR4.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/test_SSR4.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/test_Scalar.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/test_Scalar.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/test_Tensor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/test_Tensor.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/test_TensorBase.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/test_TensorBase.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/test_TensorName.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/test_TensorName.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/test_TensorName_Scalar.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/test_TensorName_Scalar.i -------------------------------------------------------------------------------- /tests/unit/tensors/test_Vec.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/test_Vec.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/test_VecBase.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/test_VecBase.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/test_WR2.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/test_WR2.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/test_WWR4.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/test_WWR4.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/test_crystallography.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/test_crystallography.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/test_minimum.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/test_minimum.cxx -------------------------------------------------------------------------------- /tests/unit/tensors/test_shape_utils.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/tensors/test_shape_utils.cxx -------------------------------------------------------------------------------- /tests/unit/user_tensors/MultiColumnCSVScalar/data_no_header.csv: -------------------------------------------------------------------------------- 1 | 1,2,3 2 | 4,5,6 3 | -------------------------------------------------------------------------------- /tests/unit/user_tensors/MultiColumnCSVScalar/data_no_header_non_numeric.csv: -------------------------------------------------------------------------------- 1 | 1,2,3 2 | 4,foo,6 3 | -------------------------------------------------------------------------------- /tests/unit/user_tensors/test_FillR2.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/user_tensors/test_FillR2.cxx -------------------------------------------------------------------------------- /tests/unit/user_tensors/test_FillR2.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/user_tensors/test_FillR2.i -------------------------------------------------------------------------------- /tests/unit/user_tensors/test_FillSR2.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/user_tensors/test_FillSR2.cxx -------------------------------------------------------------------------------- /tests/unit/user_tensors/test_FillSR2.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/user_tensors/test_FillSR2.i -------------------------------------------------------------------------------- /tests/unit/user_tensors/test_FullTensor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/user_tensors/test_FullTensor.cxx -------------------------------------------------------------------------------- /tests/unit/user_tensors/test_FullTensor.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/user_tensors/test_FullTensor.i -------------------------------------------------------------------------------- /tests/unit/user_tensors/test_Orientation.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/user_tensors/test_Orientation.i -------------------------------------------------------------------------------- /tests/unit/user_tensors/test_UserTensor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/user_tensors/test_UserTensor.cxx -------------------------------------------------------------------------------- /tests/unit/user_tensors/test_UserTensor.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/unit/user_tensors/test_UserTensor.i -------------------------------------------------------------------------------- /tests/verification/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/verification/CMakeLists.txt -------------------------------------------------------------------------------- /tests/verification/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-material-modeling/neml2/HEAD/tests/verification/main.cxx --------------------------------------------------------------------------------