├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── contributing-checklist.md ├── etc ├── git_version.py └── hook.sample ├── examples ├── CompDam.parameters ├── abaqus_v6.env ├── example_runner.py ├── test_DCB_fatigue.inp └── test_DCB_fatigue_expected.py ├── for ├── CompDam_DGD.for ├── DGD.for ├── cohesive.for ├── fiberDamage.for ├── forlog.for ├── friction.for ├── matProp.for ├── matrixUtil.for ├── parameters.for ├── plasticity.for ├── schaefer.for ├── schapery.for ├── stateVar.for ├── strain.for ├── stress.for ├── version.for.nogit ├── vexternaldb.for ├── vucharlength.for └── vumatArgs.for ├── pyextmod ├── IM7-8552.props ├── Makefile ├── helpers.py ├── kind_map ├── run_debug_file.py ├── test_pyextmod_dgdevolve.py ├── test_pyextmod_dgdkinkband.py ├── vaba_param.inc ├── verify_debug.py └── viz.py ├── readme.md ├── setup.py ├── tests ├── CompDam.parameters ├── IM7-8552.props ├── abaqus_v6.env ├── abaverify_remote_options.py ├── automatic_testing_script.py ├── pyextmod_compile.sh ├── pyextmod_run.sh ├── runtimeplots_testing_script.py ├── template_run_time_plots_body.html ├── template_run_time_plots_compdam.py ├── test_C3D6_elementSize.inp ├── test_C3D6_elementSize_expected.py ├── test_C3D6_matrixTension.inp ├── test_C3D6_matrixTension_expected.py ├── test_C3D6_simpleShear12.inp ├── test_C3D6_simpleShear12_expected.py ├── test_C3D8R_elastic_fiberTension.inp ├── test_C3D8R_elastic_fiberTension_expected.py ├── test_C3D8R_elastic_matrixTension.inp ├── test_C3D8R_elastic_matrixTension_expected.py ├── test_C3D8R_elastic_simpleShear12.inp ├── test_C3D8R_elastic_simpleShear12_expected.py ├── test_C3D8R_elementSize.inp ├── test_C3D8R_elementSize_expected.py ├── test_C3D8R_error.inp ├── test_C3D8R_error_expected.py ├── test_C3D8R_failureEnvelope_sig11sig22.inp ├── test_C3D8R_failureEnvelope_sig11sig22_expected.py ├── test_C3D8R_failureEnvelope_sig12sig22.inp ├── test_C3D8R_failureEnvelope_sig12sig22_expected.py ├── test_C3D8R_fatigue_matrixTension.inp ├── test_C3D8R_fatigue_matrixTension.parameters ├── test_C3D8R_fatigue_matrixTension_expected.py ├── test_C3D8R_fatigue_simpleShear12.inp ├── test_C3D8R_fatigue_simpleShear12.parameters ├── test_C3D8R_fatigue_simpleShear12_expected.py ├── test_C3D8R_fiberCompression_BL.inp ├── test_C3D8R_fiberCompression_BL_FN.inp ├── test_C3D8R_fiberCompression_BL_FN_expected.py ├── test_C3D8R_fiberCompression_BL_expected.py ├── test_C3D8R_fiberCompression_FKT_12.inp ├── test_C3D8R_fiberCompression_FKT_12_FF.inp ├── test_C3D8R_fiberCompression_FKT_12_FF_expected.py ├── test_C3D8R_fiberCompression_FKT_12_FF_negphi0.inp ├── test_C3D8R_fiberCompression_FKT_12_FF_negphi0_expected.py ├── test_C3D8R_fiberCompression_FKT_12_FN.inp ├── test_C3D8R_fiberCompression_FKT_12_FN_expected.py ├── test_C3D8R_fiberCompression_FKT_12_expected.py ├── test_C3D8R_fiberCompression_FKT_13.inp ├── test_C3D8R_fiberCompression_FKT_13_FF.inp ├── test_C3D8R_fiberCompression_FKT_13_FF_expected.py ├── test_C3D8R_fiberCompression_FKT_13_FN.inp ├── test_C3D8R_fiberCompression_FKT_13_FN_expected.py ├── test_C3D8R_fiberCompression_FKT_13_expected.py ├── test_C3D8R_fiberCompression_FKT_3D.inp ├── test_C3D8R_fiberCompression_FKT_3D_expected.py ├── test_C3D8R_fiberCompression_FKT_3D_pert.inp ├── test_C3D8R_fiberCompression_FKT_3D_pert_expected.py ├── test_C3D8R_fiberCompression_FKT_3D_spring_ip.inp ├── test_C3D8R_fiberCompression_FKT_3D_spring_ip_expected.py ├── test_C3D8R_fiberCompression_FKT_3D_spring_oop.inp ├── test_C3D8R_fiberCompression_FKT_3D_spring_oop_expected.py ├── test_C3D8R_fiberLoadReversal.inp ├── test_C3D8R_fiberLoadReversal_FN.inp ├── test_C3D8R_fiberLoadReversal_FN_expected.py ├── test_C3D8R_fiberLoadReversal_expected.py ├── test_C3D8R_fiberTension.inp ├── test_C3D8R_fiberTension_FN.inp ├── test_C3D8R_fiberTension_FN_expected.py ├── test_C3D8R_fiberTension_expected.py ├── test_C3D8R_matrixCompression.inp ├── test_C3D8R_matrixCompression.parameters ├── test_C3D8R_matrixCompression_expected.py ├── test_C3D8R_matrixCompression_friction.inp ├── test_C3D8R_matrixCompression_friction.parameters ├── test_C3D8R_matrixCompression_friction_expected.py ├── test_C3D8R_matrixTension.inp ├── test_C3D8R_matrixTension_expected.py ├── test_C3D8R_mixedModeMatrix.inp ├── test_C3D8R_mixedModeMatrix_expected.py ├── test_C3D8R_nonlinearShear12.inp ├── test_C3D8R_nonlinearShear12_expected.py ├── test_C3D8R_nonlinearShear12_loadReversal.inp ├── test_C3D8R_nonlinearShear12_loadReversal_expected.py ├── test_C3D8R_nonlinearShear12_monotonic.inp ├── test_C3D8R_nonlinearShear12_monotonic_expected.py ├── test_C3D8R_nonlinearShear12_withFKT.inp ├── test_C3D8R_nonlinearShear12_withFKT_expected.py ├── test_C3D8R_nonlinearShear13.inp ├── test_C3D8R_nonlinearShear13_expected.py ├── test_C3D8R_nonlinearShear13_loadReversal.inp ├── test_C3D8R_nonlinearShear13_loadReversal_expected.py ├── test_C3D8R_residualStress.inp ├── test_C3D8R_residualStress_IM7-8552.props ├── test_C3D8R_residualStress_expected.py ├── test_C3D8R_schaefer_oat30.inp ├── test_C3D8R_schaefer_oat30_expected.py ├── test_C3D8R_schaefer_oat60.inp ├── test_C3D8R_schaefer_oat60_expected.py ├── test_C3D8R_schaefer_oat75.inp ├── test_C3D8R_schaefer_oat75_expected.py ├── test_C3D8R_schaefer_oat90.inp ├── test_C3D8R_schaefer_oat90_expected.py ├── test_C3D8R_schapery12.inp ├── test_C3D8R_schapery12_expected.py ├── test_C3D8R_simpleShear12.inp ├── test_C3D8R_simpleShear12_expected.py ├── test_C3D8R_simpleShear12friction.inp ├── test_C3D8R_simpleShear12friction_expected.py ├── test_C3D8R_twoElement_fiberCompression_FKT.py ├── test_C3D8R_twoElement_fiberCompression_FKT_expected.py ├── test_COH2D4_normal.inp ├── test_COH2D4_normal_expected.py ├── test_COH2D4_shear.inp ├── test_COH2D4_shear_compression.inp ├── test_COH2D4_shear_compression_expected.py ├── test_COH2D4_shear_expected.py ├── test_COH2D4_shear_friction.inp ├── test_COH2D4_shear_friction_expected.py ├── test_COH3D8_fatigue_normal.inp ├── test_COH3D8_fatigue_normal.parameters ├── test_COH3D8_fatigue_normal_expected.py ├── test_COH3D8_fatigue_shear13.inp ├── test_COH3D8_fatigue_shear13.parameters ├── test_COH3D8_fatigue_shear13_expected.py ├── test_COH3D8_normal.inp ├── test_COH3D8_normal_expected.py ├── test_COH3D8_shear13.inp ├── test_COH3D8_shear13_compression.inp ├── test_COH3D8_shear13_compression_expected.py ├── test_COH3D8_shear13_expected.py ├── test_COH3D8_shear13_friction.inp ├── test_COH3D8_shear13_friction_expected.py ├── test_COH3D8_shear23.inp ├── test_COH3D8_shear23_compression.inp ├── test_COH3D8_shear23_compression_expected.py ├── test_COH3D8_shear23_expected.py ├── test_COH3D8_shear23_friction.inp ├── test_COH3D8_shear23_friction_expected.py ├── test_COH3D8_thick_normal.inp ├── test_COH3D8_thick_normal_expected.py ├── test_COH3D8_thick_shear13.inp ├── test_COH3D8_thick_shear13_expected.py ├── test_COH3D8_thick_shear23.inp ├── test_COH3D8_thick_shear23_expected.py ├── test_CPS4R_elementSize.inp ├── test_CPS4R_elementSize_expected.py ├── test_S4R_elementSize.inp ├── test_S4R_elementSize_expected.py ├── test_runner.py ├── verify_debug_test_C3D8R_fiberCompression_FKT_12_expected.py └── verify_debug_test_C3D8R_matrixTension_expected.py ├── usersubroutine-prerequisites.md └── utilities ├── abaqus-python-addpkg ├── abaqus-python-addpkg.py └── readme.md ├── meshtools ├── __init__.py ├── meshtools │ ├── __init__.py │ ├── _version.py │ ├── meshing.py │ ├── points.py │ └── vectors.py ├── readme.md └── setup.py ├── ramberg-osgood-fit ├── ro-fit.py ├── soden1998_as4_3501-6.csv ├── soden1998_eglass_LY556.csv └── soden1998_eglass_MY750.csv └── readme.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /contributing-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/contributing-checklist.md -------------------------------------------------------------------------------- /etc/git_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/etc/git_version.py -------------------------------------------------------------------------------- /etc/hook.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/etc/hook.sample -------------------------------------------------------------------------------- /examples/CompDam.parameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/examples/CompDam.parameters -------------------------------------------------------------------------------- /examples/abaqus_v6.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/examples/abaqus_v6.env -------------------------------------------------------------------------------- /examples/example_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/examples/example_runner.py -------------------------------------------------------------------------------- /examples/test_DCB_fatigue.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/examples/test_DCB_fatigue.inp -------------------------------------------------------------------------------- /examples/test_DCB_fatigue_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/examples/test_DCB_fatigue_expected.py -------------------------------------------------------------------------------- /for/CompDam_DGD.for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/for/CompDam_DGD.for -------------------------------------------------------------------------------- /for/DGD.for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/for/DGD.for -------------------------------------------------------------------------------- /for/cohesive.for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/for/cohesive.for -------------------------------------------------------------------------------- /for/fiberDamage.for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/for/fiberDamage.for -------------------------------------------------------------------------------- /for/forlog.for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/for/forlog.for -------------------------------------------------------------------------------- /for/friction.for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/for/friction.for -------------------------------------------------------------------------------- /for/matProp.for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/for/matProp.for -------------------------------------------------------------------------------- /for/matrixUtil.for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/for/matrixUtil.for -------------------------------------------------------------------------------- /for/parameters.for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/for/parameters.for -------------------------------------------------------------------------------- /for/plasticity.for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/for/plasticity.for -------------------------------------------------------------------------------- /for/schaefer.for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/for/schaefer.for -------------------------------------------------------------------------------- /for/schapery.for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/for/schapery.for -------------------------------------------------------------------------------- /for/stateVar.for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/for/stateVar.for -------------------------------------------------------------------------------- /for/strain.for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/for/strain.for -------------------------------------------------------------------------------- /for/stress.for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/for/stress.for -------------------------------------------------------------------------------- /for/version.for.nogit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/for/version.for.nogit -------------------------------------------------------------------------------- /for/vexternaldb.for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/for/vexternaldb.for -------------------------------------------------------------------------------- /for/vucharlength.for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/for/vucharlength.for -------------------------------------------------------------------------------- /for/vumatArgs.for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/for/vumatArgs.for -------------------------------------------------------------------------------- /pyextmod/IM7-8552.props: -------------------------------------------------------------------------------- 1 | ../tests/IM7-8552.props -------------------------------------------------------------------------------- /pyextmod/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/pyextmod/Makefile -------------------------------------------------------------------------------- /pyextmod/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/pyextmod/helpers.py -------------------------------------------------------------------------------- /pyextmod/kind_map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/pyextmod/kind_map -------------------------------------------------------------------------------- /pyextmod/run_debug_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/pyextmod/run_debug_file.py -------------------------------------------------------------------------------- /pyextmod/test_pyextmod_dgdevolve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/pyextmod/test_pyextmod_dgdevolve.py -------------------------------------------------------------------------------- /pyextmod/test_pyextmod_dgdkinkband.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/pyextmod/test_pyextmod_dgdkinkband.py -------------------------------------------------------------------------------- /pyextmod/vaba_param.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyextmod/verify_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/pyextmod/verify_debug.py -------------------------------------------------------------------------------- /pyextmod/viz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/pyextmod/viz.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/readme.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/setup.py -------------------------------------------------------------------------------- /tests/CompDam.parameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/CompDam.parameters -------------------------------------------------------------------------------- /tests/IM7-8552.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/IM7-8552.props -------------------------------------------------------------------------------- /tests/abaqus_v6.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/abaqus_v6.env -------------------------------------------------------------------------------- /tests/abaverify_remote_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/abaverify_remote_options.py -------------------------------------------------------------------------------- /tests/automatic_testing_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/automatic_testing_script.py -------------------------------------------------------------------------------- /tests/pyextmod_compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/pyextmod_compile.sh -------------------------------------------------------------------------------- /tests/pyextmod_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/pyextmod_run.sh -------------------------------------------------------------------------------- /tests/runtimeplots_testing_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/runtimeplots_testing_script.py -------------------------------------------------------------------------------- /tests/template_run_time_plots_body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/template_run_time_plots_body.html -------------------------------------------------------------------------------- /tests/template_run_time_plots_compdam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/template_run_time_plots_compdam.py -------------------------------------------------------------------------------- /tests/test_C3D6_elementSize.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D6_elementSize.inp -------------------------------------------------------------------------------- /tests/test_C3D6_elementSize_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D6_elementSize_expected.py -------------------------------------------------------------------------------- /tests/test_C3D6_matrixTension.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D6_matrixTension.inp -------------------------------------------------------------------------------- /tests/test_C3D6_matrixTension_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D6_matrixTension_expected.py -------------------------------------------------------------------------------- /tests/test_C3D6_simpleShear12.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D6_simpleShear12.inp -------------------------------------------------------------------------------- /tests/test_C3D6_simpleShear12_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D6_simpleShear12_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_elastic_fiberTension.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_elastic_fiberTension.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_elastic_fiberTension_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_elastic_fiberTension_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_elastic_matrixTension.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_elastic_matrixTension.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_elastic_matrixTension_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_elastic_matrixTension_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_elastic_simpleShear12.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_elastic_simpleShear12.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_elastic_simpleShear12_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_elastic_simpleShear12_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_elementSize.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_elementSize.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_elementSize_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_elementSize_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_error.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_error.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_error_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_error_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_failureEnvelope_sig11sig22.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_failureEnvelope_sig11sig22.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_failureEnvelope_sig11sig22_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_failureEnvelope_sig11sig22_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_failureEnvelope_sig12sig22.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_failureEnvelope_sig12sig22.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_failureEnvelope_sig12sig22_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_failureEnvelope_sig12sig22_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_fatigue_matrixTension.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_fatigue_matrixTension.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_fatigue_matrixTension.parameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_fatigue_matrixTension.parameters -------------------------------------------------------------------------------- /tests/test_C3D8R_fatigue_matrixTension_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_fatigue_matrixTension_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_fatigue_simpleShear12.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_fatigue_simpleShear12.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_fatigue_simpleShear12.parameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_fatigue_simpleShear12.parameters -------------------------------------------------------------------------------- /tests/test_C3D8R_fatigue_simpleShear12_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_fatigue_simpleShear12_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_fiberCompression_BL.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_fiberCompression_BL.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_fiberCompression_BL_FN.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_fiberCompression_BL_FN.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_fiberCompression_BL_FN_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_fiberCompression_BL_FN_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_fiberCompression_BL_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_fiberCompression_BL_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_fiberCompression_FKT_12.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_fiberCompression_FKT_12.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_fiberCompression_FKT_12_FF.inp: -------------------------------------------------------------------------------- 1 | *Include, input=test_C3D8R_fiberCompression_FKT_12.inp 2 | -------------------------------------------------------------------------------- /tests/test_C3D8R_fiberCompression_FKT_12_FF_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_fiberCompression_FKT_12_FF_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_fiberCompression_FKT_12_FF_negphi0.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_fiberCompression_FKT_12_FF_negphi0.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_fiberCompression_FKT_12_FF_negphi0_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_fiberCompression_FKT_12_FF_negphi0_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_fiberCompression_FKT_12_FN.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_fiberCompression_FKT_12_FN.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_fiberCompression_FKT_12_FN_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_fiberCompression_FKT_12_FN_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_fiberCompression_FKT_12_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_fiberCompression_FKT_12_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_fiberCompression_FKT_13.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_fiberCompression_FKT_13.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_fiberCompression_FKT_13_FF.inp: -------------------------------------------------------------------------------- 1 | *Include, input=test_C3D8R_fiberCompression_FKT_13.inp 2 | -------------------------------------------------------------------------------- /tests/test_C3D8R_fiberCompression_FKT_13_FF_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_fiberCompression_FKT_13_FF_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_fiberCompression_FKT_13_FN.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_fiberCompression_FKT_13_FN.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_fiberCompression_FKT_13_FN_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_fiberCompression_FKT_13_FN_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_fiberCompression_FKT_13_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_fiberCompression_FKT_13_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_fiberCompression_FKT_3D.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_fiberCompression_FKT_3D.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_fiberCompression_FKT_3D_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_fiberCompression_FKT_3D_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_fiberCompression_FKT_3D_pert.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_fiberCompression_FKT_3D_pert.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_fiberCompression_FKT_3D_pert_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_fiberCompression_FKT_3D_pert_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_fiberCompression_FKT_3D_spring_ip.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_fiberCompression_FKT_3D_spring_ip.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_fiberCompression_FKT_3D_spring_ip_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_fiberCompression_FKT_3D_spring_ip_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_fiberCompression_FKT_3D_spring_oop.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_fiberCompression_FKT_3D_spring_oop.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_fiberCompression_FKT_3D_spring_oop_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_fiberCompression_FKT_3D_spring_oop_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_fiberLoadReversal.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_fiberLoadReversal.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_fiberLoadReversal_FN.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_fiberLoadReversal_FN.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_fiberLoadReversal_FN_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_fiberLoadReversal_FN_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_fiberLoadReversal_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_fiberLoadReversal_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_fiberTension.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_fiberTension.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_fiberTension_FN.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_fiberTension_FN.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_fiberTension_FN_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_fiberTension_FN_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_fiberTension_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_fiberTension_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_matrixCompression.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_matrixCompression.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_matrixCompression.parameters: -------------------------------------------------------------------------------- 1 | alpha_inc = 1 // Default value: 10 -------------------------------------------------------------------------------- /tests/test_C3D8R_matrixCompression_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_matrixCompression_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_matrixCompression_friction.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_matrixCompression_friction.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_matrixCompression_friction.parameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_matrixCompression_friction.parameters -------------------------------------------------------------------------------- /tests/test_C3D8R_matrixCompression_friction_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_matrixCompression_friction_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_matrixTension.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_matrixTension.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_matrixTension_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_matrixTension_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_mixedModeMatrix.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_mixedModeMatrix.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_mixedModeMatrix_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_mixedModeMatrix_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_nonlinearShear12.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_nonlinearShear12.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_nonlinearShear12_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_nonlinearShear12_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_nonlinearShear12_loadReversal.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_nonlinearShear12_loadReversal.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_nonlinearShear12_loadReversal_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_nonlinearShear12_loadReversal_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_nonlinearShear12_monotonic.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_nonlinearShear12_monotonic.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_nonlinearShear12_monotonic_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_nonlinearShear12_monotonic_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_nonlinearShear12_withFKT.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_nonlinearShear12_withFKT.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_nonlinearShear12_withFKT_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_nonlinearShear12_withFKT_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_nonlinearShear13.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_nonlinearShear13.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_nonlinearShear13_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_nonlinearShear13_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_nonlinearShear13_loadReversal.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_nonlinearShear13_loadReversal.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_nonlinearShear13_loadReversal_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_nonlinearShear13_loadReversal_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_residualStress.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_residualStress.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_residualStress_IM7-8552.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_residualStress_IM7-8552.props -------------------------------------------------------------------------------- /tests/test_C3D8R_residualStress_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_residualStress_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_schaefer_oat30.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_schaefer_oat30.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_schaefer_oat30_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_schaefer_oat30_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_schaefer_oat60.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_schaefer_oat60.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_schaefer_oat60_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_schaefer_oat60_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_schaefer_oat75.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_schaefer_oat75.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_schaefer_oat75_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_schaefer_oat75_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_schaefer_oat90.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_schaefer_oat90.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_schaefer_oat90_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_schaefer_oat90_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_schapery12.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_schapery12.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_schapery12_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_schapery12_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_simpleShear12.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_simpleShear12.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_simpleShear12_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_simpleShear12_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_simpleShear12friction.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_simpleShear12friction.inp -------------------------------------------------------------------------------- /tests/test_C3D8R_simpleShear12friction_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_simpleShear12friction_expected.py -------------------------------------------------------------------------------- /tests/test_C3D8R_twoElement_fiberCompression_FKT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_twoElement_fiberCompression_FKT.py -------------------------------------------------------------------------------- /tests/test_C3D8R_twoElement_fiberCompression_FKT_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_C3D8R_twoElement_fiberCompression_FKT_expected.py -------------------------------------------------------------------------------- /tests/test_COH2D4_normal.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_COH2D4_normal.inp -------------------------------------------------------------------------------- /tests/test_COH2D4_normal_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_COH2D4_normal_expected.py -------------------------------------------------------------------------------- /tests/test_COH2D4_shear.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_COH2D4_shear.inp -------------------------------------------------------------------------------- /tests/test_COH2D4_shear_compression.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_COH2D4_shear_compression.inp -------------------------------------------------------------------------------- /tests/test_COH2D4_shear_compression_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_COH2D4_shear_compression_expected.py -------------------------------------------------------------------------------- /tests/test_COH2D4_shear_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_COH2D4_shear_expected.py -------------------------------------------------------------------------------- /tests/test_COH2D4_shear_friction.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_COH2D4_shear_friction.inp -------------------------------------------------------------------------------- /tests/test_COH2D4_shear_friction_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_COH2D4_shear_friction_expected.py -------------------------------------------------------------------------------- /tests/test_COH3D8_fatigue_normal.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_COH3D8_fatigue_normal.inp -------------------------------------------------------------------------------- /tests/test_COH3D8_fatigue_normal.parameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_COH3D8_fatigue_normal.parameters -------------------------------------------------------------------------------- /tests/test_COH3D8_fatigue_normal_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_COH3D8_fatigue_normal_expected.py -------------------------------------------------------------------------------- /tests/test_COH3D8_fatigue_shear13.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_COH3D8_fatigue_shear13.inp -------------------------------------------------------------------------------- /tests/test_COH3D8_fatigue_shear13.parameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_COH3D8_fatigue_shear13.parameters -------------------------------------------------------------------------------- /tests/test_COH3D8_fatigue_shear13_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_COH3D8_fatigue_shear13_expected.py -------------------------------------------------------------------------------- /tests/test_COH3D8_normal.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_COH3D8_normal.inp -------------------------------------------------------------------------------- /tests/test_COH3D8_normal_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_COH3D8_normal_expected.py -------------------------------------------------------------------------------- /tests/test_COH3D8_shear13.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_COH3D8_shear13.inp -------------------------------------------------------------------------------- /tests/test_COH3D8_shear13_compression.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_COH3D8_shear13_compression.inp -------------------------------------------------------------------------------- /tests/test_COH3D8_shear13_compression_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_COH3D8_shear13_compression_expected.py -------------------------------------------------------------------------------- /tests/test_COH3D8_shear13_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_COH3D8_shear13_expected.py -------------------------------------------------------------------------------- /tests/test_COH3D8_shear13_friction.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_COH3D8_shear13_friction.inp -------------------------------------------------------------------------------- /tests/test_COH3D8_shear13_friction_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_COH3D8_shear13_friction_expected.py -------------------------------------------------------------------------------- /tests/test_COH3D8_shear23.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_COH3D8_shear23.inp -------------------------------------------------------------------------------- /tests/test_COH3D8_shear23_compression.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_COH3D8_shear23_compression.inp -------------------------------------------------------------------------------- /tests/test_COH3D8_shear23_compression_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_COH3D8_shear23_compression_expected.py -------------------------------------------------------------------------------- /tests/test_COH3D8_shear23_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_COH3D8_shear23_expected.py -------------------------------------------------------------------------------- /tests/test_COH3D8_shear23_friction.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_COH3D8_shear23_friction.inp -------------------------------------------------------------------------------- /tests/test_COH3D8_shear23_friction_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_COH3D8_shear23_friction_expected.py -------------------------------------------------------------------------------- /tests/test_COH3D8_thick_normal.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_COH3D8_thick_normal.inp -------------------------------------------------------------------------------- /tests/test_COH3D8_thick_normal_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_COH3D8_thick_normal_expected.py -------------------------------------------------------------------------------- /tests/test_COH3D8_thick_shear13.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_COH3D8_thick_shear13.inp -------------------------------------------------------------------------------- /tests/test_COH3D8_thick_shear13_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_COH3D8_thick_shear13_expected.py -------------------------------------------------------------------------------- /tests/test_COH3D8_thick_shear23.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_COH3D8_thick_shear23.inp -------------------------------------------------------------------------------- /tests/test_COH3D8_thick_shear23_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_COH3D8_thick_shear23_expected.py -------------------------------------------------------------------------------- /tests/test_CPS4R_elementSize.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_CPS4R_elementSize.inp -------------------------------------------------------------------------------- /tests/test_CPS4R_elementSize_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_CPS4R_elementSize_expected.py -------------------------------------------------------------------------------- /tests/test_S4R_elementSize.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_S4R_elementSize.inp -------------------------------------------------------------------------------- /tests/test_S4R_elementSize_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_S4R_elementSize_expected.py -------------------------------------------------------------------------------- /tests/test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/test_runner.py -------------------------------------------------------------------------------- /tests/verify_debug_test_C3D8R_fiberCompression_FKT_12_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/verify_debug_test_C3D8R_fiberCompression_FKT_12_expected.py -------------------------------------------------------------------------------- /tests/verify_debug_test_C3D8R_matrixTension_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/tests/verify_debug_test_C3D8R_matrixTension_expected.py -------------------------------------------------------------------------------- /usersubroutine-prerequisites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/usersubroutine-prerequisites.md -------------------------------------------------------------------------------- /utilities/abaqus-python-addpkg/abaqus-python-addpkg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/utilities/abaqus-python-addpkg/abaqus-python-addpkg.py -------------------------------------------------------------------------------- /utilities/abaqus-python-addpkg/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/utilities/abaqus-python-addpkg/readme.md -------------------------------------------------------------------------------- /utilities/meshtools/__init__.py: -------------------------------------------------------------------------------- 1 | from meshtools import * -------------------------------------------------------------------------------- /utilities/meshtools/meshtools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/utilities/meshtools/meshtools/__init__.py -------------------------------------------------------------------------------- /utilities/meshtools/meshtools/_version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.1.0" 2 | -------------------------------------------------------------------------------- /utilities/meshtools/meshtools/meshing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/utilities/meshtools/meshtools/meshing.py -------------------------------------------------------------------------------- /utilities/meshtools/meshtools/points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/utilities/meshtools/meshtools/points.py -------------------------------------------------------------------------------- /utilities/meshtools/meshtools/vectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/utilities/meshtools/meshtools/vectors.py -------------------------------------------------------------------------------- /utilities/meshtools/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/utilities/meshtools/readme.md -------------------------------------------------------------------------------- /utilities/meshtools/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/utilities/meshtools/setup.py -------------------------------------------------------------------------------- /utilities/ramberg-osgood-fit/ro-fit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/utilities/ramberg-osgood-fit/ro-fit.py -------------------------------------------------------------------------------- /utilities/ramberg-osgood-fit/soden1998_as4_3501-6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/utilities/ramberg-osgood-fit/soden1998_as4_3501-6.csv -------------------------------------------------------------------------------- /utilities/ramberg-osgood-fit/soden1998_eglass_LY556.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/utilities/ramberg-osgood-fit/soden1998_eglass_LY556.csv -------------------------------------------------------------------------------- /utilities/ramberg-osgood-fit/soden1998_eglass_MY750.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/utilities/ramberg-osgood-fit/soden1998_eglass_MY750.csv -------------------------------------------------------------------------------- /utilities/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/CompDam_DGD/HEAD/utilities/readme.md --------------------------------------------------------------------------------