├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── .gitignore ├── CMakeCache.txt ├── CMakeFiles └── cmake.check_cache ├── CMakeLists.txt ├── COPYING ├── Doxyfile.in ├── README.md ├── VERSIONS ├── doc ├── Makefile ├── _static │ ├── custom.css │ ├── fdl.txt │ ├── gpl.txt │ └── my_theme.css ├── conf.py ├── config.rst ├── copying.rst ├── crystal.rst ├── develhistory.rst ├── fdl.rst ├── fileformat.rst ├── gpl.rst ├── images │ ├── 0_all.png │ ├── 1_all.png │ ├── 1_stressstrain.png │ ├── 4_all.png │ ├── gripbcs.png │ ├── minimalbcs.png │ └── symmbcs.png ├── index.rst ├── introduction.rst ├── loading.rst ├── material.rst ├── output.rst ├── running.rst ├── simple_rve_simulation │ └── simulation.cfg ├── simple_simulation │ └── simulation.cfg ├── sphinx_rtd_theme │ ├── __init__.py │ ├── breadcrumbs.html │ ├── footer.html │ ├── layout.html │ ├── locale │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── et │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── fa_IR │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── lt │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── pt │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── sphinx.pot │ │ ├── sv │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── tr │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ └── zh_CN │ │ │ └── LC_MESSAGES │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── search.html │ ├── searchbox.html │ ├── static │ │ ├── css │ │ │ ├── badge_only.css │ │ │ ├── fonts │ │ │ │ ├── Roboto-Slab-Bold.woff │ │ │ │ ├── Roboto-Slab-Bold.woff2 │ │ │ │ ├── Roboto-Slab-Regular.woff │ │ │ │ ├── Roboto-Slab-Regular.woff2 │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ ├── lato-bold-italic.woff │ │ │ │ ├── lato-bold-italic.woff2 │ │ │ │ ├── lato-bold.woff │ │ │ │ ├── lato-bold.woff2 │ │ │ │ ├── lato-normal-italic.woff │ │ │ │ ├── lato-normal-italic.woff2 │ │ │ │ ├── lato-normal.woff │ │ │ │ └── lato-normal.woff2 │ │ │ └── theme.css │ │ └── js │ │ │ ├── badge_only.js │ │ │ └── theme.js │ ├── theme.conf │ └── versions.html ├── tutorials.rst ├── tutorials │ ├── cruciform_specimen_simulation.rst │ ├── cruciform_specimen_simulation │ │ ├── mesh.png │ │ ├── plotstress_field_strain.gp │ │ ├── simulation.cfg │ │ ├── simulation.cfg-0p0 │ │ ├── simulation.cfg-0p5 │ │ ├── simulation.cfg-mpc │ │ ├── simulation.msh │ │ ├── stress11_field_0p0.png │ │ ├── stress11_field_0p5.png │ │ ├── stress11_field_1p0.png │ │ ├── stress11_field_mpc.png │ │ ├── stress12_field_0p0.png │ │ ├── stress12_field_0p5.png │ │ ├── stress12_field_1p0.png │ │ ├── stress12_field_mpc.png │ │ ├── stress22_field_0p0.png │ │ ├── stress22_field_0p5.png │ │ ├── stress22_field_1p0.png │ │ ├── stress22_field_mpc.png │ │ ├── stress_field11.png │ │ ├── stress_field12.png │ │ └── stress_field22.png │ ├── hpc.rst │ ├── multiaxial_clr.rst │ ├── multiaxial_clr │ │ ├── 3_all.png │ │ └── 3_all2.png │ ├── multiaxial_csr.rst │ ├── multiaxial_csr │ │ ├── 2_all.png │ │ └── 2_normalstraintime.png │ ├── overwriting.rst │ ├── overwriting │ │ ├── 5_all.png │ │ ├── 5_eltorientations.png │ │ └── 5_stresstime.png │ ├── periodic_rve_simulation.rst │ ├── periodic_rve_simulation │ │ ├── mesh.png │ │ ├── pbc_strain11.png │ │ ├── pbc_strain11_slice.png │ │ ├── simulation.cfg │ │ └── simulation.msh │ ├── restart.rst │ ├── restart │ │ ├── 4_all.png │ │ ├── generate_mesh.sh │ │ ├── post_process.sh │ │ ├── run_example.sh │ │ ├── simulation.msh │ │ ├── simulation.tess │ │ ├── simulation_cycle1.config │ │ └── simulation_cycle2.config │ ├── simple_rve_simulation.rst │ ├── simple_rve_simulation.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ └── ori.step1 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ └── strain.step1 │ │ │ └── stress │ │ │ │ ├── stress.step0 │ │ │ │ └── stress.step1 │ │ │ ├── mesh │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ └── strain.step1 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ └── stress.step1 │ │ │ └── train │ │ │ │ └── train.step0 │ │ │ └── nodes │ │ │ └── coo │ │ │ ├── coo.step0 │ │ │ └── coo.step1 │ ├── simple_rve_simulation │ │ ├── plot_stress_strain.gp │ │ ├── simulation.cfg │ │ ├── simulation.cfg-grip │ │ ├── simulation.cfg-initial │ │ ├── simulation.cfg-rve │ │ ├── simulation.msh │ │ ├── strain_field.png │ │ ├── strain_shear_field.png │ │ ├── stress_field.png │ │ ├── stress_shear_field.png │ │ └── stress_strain.png │ ├── simple_simulation.rst │ ├── simple_simulation.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ ├── ori.step1 │ │ │ │ └── ori.step2 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ ├── strain.step1 │ │ │ │ └── strain.step2 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ └── strain_eq.step1 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ ├── stress.step1 │ │ │ │ └── stress.step2 │ │ │ └── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ └── stress_eq.step1 │ │ │ └── nodes │ │ │ └── coo │ │ │ ├── coo.step0 │ │ │ ├── coo.step1 │ │ │ └── coo.step2 │ ├── simple_simulation │ │ ├── mesh.png │ │ ├── plot_stress_strain.gp │ │ ├── simulation.cfg │ │ ├── simulation.cfg-ini │ │ ├── simulation.cfg-steps │ │ ├── simulation.msh │ │ ├── strain_field.png │ │ ├── strain_field1.png │ │ ├── strain_field2.png │ │ ├── stress_field.png │ │ ├── stress_field1.png │ │ ├── stress_field2.png │ │ └── stress_strain.png │ ├── triaxCLR │ │ ├── generate_mesh.sh │ │ ├── plot_stress_strain.gp │ │ ├── plot_stress_time.gp │ │ ├── post_process.sh │ │ ├── run_example.sh │ │ ├── simulation.cfg │ │ ├── simulation.msh │ │ └── simulation.tess │ └── triaxCSR │ │ ├── generate_mesh.sh │ │ ├── plot_strain_time.gp │ │ ├── post_process.sh │ │ ├── run_example.sh │ │ ├── simulation.cfg │ │ ├── simulation.msh │ │ └── simulation.tess └── versions.rst ├── src ├── CMakeLists.txt ├── cmake_install.cmake ├── fepx.f90 ├── fepx2.f90 ├── fepx_config.f90 ├── fepx_config.f90.in ├── general │ ├── array_operations_mod.f90 │ ├── crys_type_mod1.f90 │ ├── crys_type_mod2.f90 │ ├── crys_type_mod3.f90 │ ├── exec_type_mod.f90 │ ├── general_mod.f90 │ ├── loading_options_type_mod.f90 │ ├── loading_type_mod1.f90 │ ├── loading_type_mod2.f90 │ ├── matrix_operations_mod.f90 │ ├── mesh_type_mod.f90 │ ├── orientation_conversion_mod.f90 │ ├── printing_type_mod.f90 │ ├── quadrature_mod.f90 │ ├── shape_2d_mod.f90 │ ├── shape_3d_mod.f90 │ ├── types_mod.f90 │ ├── units_mod.f90 │ └── utils.f90 ├── libfepx │ ├── conjugate_gradient │ │ ├── conjugate_gradient_mod.f90 │ │ └── conjugate_gradient_mod2.f90 │ ├── driver_uniaxial_control_mod1.f90 │ ├── driver_uniaxial_control_mod2.f90 │ ├── kinematics_mod.f90 │ ├── kinematics_mod_bis.f90 │ ├── restart │ │ └── restart.f90 │ ├── solveit_evp │ │ ├── finalize_res │ │ │ └── finalize_res_mod1.f90 │ │ ├── solve_evp │ │ │ ├── solve_evp_mod1.f90 │ │ │ ├── solve_evp_mod2.f90 │ │ │ ├── solve_evp_rstar │ │ │ │ ├── solve_evp_rstar_mod1.f90 │ │ │ │ ├── solve_evp_rstar_mod2.f90 │ │ │ │ └── update_hardening │ │ │ │ │ ├── hardening_mod1.f90 │ │ │ │ │ ├── hardening_mod2.f90 │ │ │ │ │ ├── hardening_mod3.f90 │ │ │ │ │ └── hardening_mod4.f90 │ │ │ ├── solve_evp_stress │ │ │ │ ├── solve_evp_stress_mod1.f90 │ │ │ │ ├── solve_evp_stress_mod2.f90 │ │ │ │ └── solve_evp_stress_mod3.f90 │ │ │ └── solve_evp_vpstress │ │ │ │ ├── solve_evp_vpstress_mod1.f90 │ │ │ │ ├── solve_evp_vpstress_mod2.f90 │ │ │ │ └── solve_evp_vpstress_mod3.f90 │ │ ├── solveit_evp_mod1.f90 │ │ ├── solveit_evp_mod2.f90 │ │ ├── solveit_evp_mod3.f90 │ │ └── solveit_evp_mod4.f90 │ ├── solveit_isovp │ │ ├── solveit_isovp_mod1.f90 │ │ ├── solveit_isovp_mod2.f90 │ │ ├── solveit_isovp_mod3.f90 │ │ └── solveit_isovp_mod4.f90 │ ├── stiffness_mod.f90 │ ├── surf_mod.f90 │ └── write_res │ │ ├── write_res_mod1.f90 │ │ └── write_res_mod2.f90 ├── parallel │ ├── gather_scatter_mod.f90 │ └── parallel_mod.f90 ├── read_input │ ├── boundary_conditions_mod1.f90 │ ├── boundary_conditions_mod2.f90 │ ├── boundary_conditions_mod2_legacy.f90 │ ├── boundary_conditions_mod3.f90 │ ├── read_input.f90 │ ├── read_input_cfg.f90 │ ├── read_input_mpcs │ │ ├── multi_point_constraints_mod1.f90 │ │ └── multi_point_constraints_mod2.f90 │ ├── read_input_msh.f90 │ ├── read_input_msh2.f90 │ └── read_input_periodicity │ │ ├── periodicity_mod1.f90 │ │ ├── periodicity_mod2.f90 │ │ └── periodicity_mod3.f90 ├── res_init │ ├── res_init_mod1.f90 │ └── res_init_mod2.f90 └── triaxial │ ├── driver_triax_utilities_mod.f90 │ ├── driver_triaxclr_mod.f90 │ └── driver_triaxcsr_mod.f90 ├── tests ├── 01_bcc │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ ├── crss.step1 │ │ │ │ └── crss.step2 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ ├── defrate.step1 │ │ │ │ └── defrate.step2 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ ├── defrate_eq.step1 │ │ │ │ └── defrate_eq.step2 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ ├── defrate_pl.step1 │ │ │ │ └── defrate_pl.step2 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ ├── defrate_pl_eq.step1 │ │ │ │ └── defrate_pl_eq.step2 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ ├── ori.step1 │ │ │ │ └── ori.step2 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ ├── rotrate.step1 │ │ │ │ └── rotrate.step2 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ ├── slip.step1 │ │ │ │ └── slip.step2 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ ├── sliprate.step1 │ │ │ │ └── sliprate.step2 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ ├── spinrate.step1 │ │ │ │ └── spinrate.step2 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ ├── strain.step1 │ │ │ │ └── strain.step2 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ ├── strain_el.step1 │ │ │ │ └── strain_el.step2 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ ├── strain_el_eq.step1 │ │ │ │ └── strain_el_eq.step2 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ ├── strain_eq.step1 │ │ │ │ └── strain_eq.step2 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ ├── strain_pl.step1 │ │ │ │ └── strain_pl.step2 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ ├── strain_pl_eq.step1 │ │ │ │ └── strain_pl_eq.step2 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ ├── stress.step1 │ │ │ │ └── stress.step2 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ ├── stress_eq.step1 │ │ │ │ └── stress_eq.step2 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ ├── velgrad.step1 │ │ │ │ └── velgrad.step2 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ ├── work.step1 │ │ │ │ └── work.step2 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ ├── work_pl.step1 │ │ │ │ └── work_pl.step2 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ ├── workrate.step1 │ │ │ │ └── workrate.step2 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ ├── workrate_pl.step1 │ │ │ │ └── workrate_pl.step2 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ ├── coo.step1 │ │ │ └── coo.step2 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ ├── disp.step1 │ │ │ └── disp.step2 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ ├── vel.step1 │ │ │ └── vel.step2 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 02_fcc │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ ├── defrate.step1 │ │ │ │ └── defrate.step2 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ ├── defrate_eq.step1 │ │ │ │ └── defrate_eq.step2 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ ├── defrate_pl.step1 │ │ │ │ └── defrate_pl.step2 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ ├── defrate_pl_eq.step1 │ │ │ │ └── defrate_pl_eq.step2 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ ├── ori.step1 │ │ │ │ └── ori.step2 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ ├── rotrate.step1 │ │ │ │ └── rotrate.step2 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ ├── slip.step1 │ │ │ │ └── slip.step2 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ ├── sliprate.step1 │ │ │ │ └── sliprate.step2 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ ├── spinrate.step1 │ │ │ │ └── spinrate.step2 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ ├── strain.step1 │ │ │ │ └── strain.step2 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ ├── strain_el.step1 │ │ │ │ └── strain_el.step2 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ ├── strain_el_eq.step1 │ │ │ │ └── strain_el_eq.step2 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ ├── strain_eq.step1 │ │ │ │ └── strain_eq.step2 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ ├── strain_pl.step1 │ │ │ │ └── strain_pl.step2 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ ├── strain_pl_eq.step1 │ │ │ │ └── strain_pl_eq.step2 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ ├── stress.step1 │ │ │ │ └── stress.step2 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ ├── stress_eq.step1 │ │ │ │ └── stress_eq.step2 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ ├── velgrad.step1 │ │ │ │ └── velgrad.step2 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ ├── work.step1 │ │ │ │ └── work.step2 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ ├── work_pl.step1 │ │ │ │ └── work_pl.step2 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ ├── workrate.step1 │ │ │ │ └── workrate.step2 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ ├── workrate_pl.step1 │ │ │ │ └── workrate_pl.step2 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ ├── coo.step1 │ │ │ └── coo.step2 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ ├── disp.step1 │ │ │ └── disp.step2 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ ├── vel.step1 │ │ │ └── vel.step2 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 03_hcp │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ ├── crss.step1 │ │ │ │ └── crss.step2 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ ├── defrate.step1 │ │ │ │ └── defrate.step2 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ ├── defrate_eq.step1 │ │ │ │ └── defrate_eq.step2 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ ├── defrate_pl.step1 │ │ │ │ └── defrate_pl.step2 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ ├── defrate_pl_eq.step1 │ │ │ │ └── defrate_pl_eq.step2 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ ├── ori.step1 │ │ │ │ └── ori.step2 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ ├── rotrate.step1 │ │ │ │ └── rotrate.step2 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ ├── slip.step1 │ │ │ │ └── slip.step2 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ ├── sliprate.step1 │ │ │ │ └── sliprate.step2 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ ├── spinrate.step1 │ │ │ │ └── spinrate.step2 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ ├── strain.step1 │ │ │ │ └── strain.step2 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ ├── strain_el.step1 │ │ │ │ └── strain_el.step2 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ ├── strain_el_eq.step1 │ │ │ │ └── strain_el_eq.step2 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ ├── strain_eq.step1 │ │ │ │ └── strain_eq.step2 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ ├── strain_pl.step1 │ │ │ │ └── strain_pl.step2 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ ├── strain_pl_eq.step1 │ │ │ │ └── strain_pl_eq.step2 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ ├── stress.step1 │ │ │ │ └── stress.step2 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ ├── stress_eq.step1 │ │ │ │ └── stress_eq.step2 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ ├── velgrad.step1 │ │ │ │ └── velgrad.step2 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ ├── work.step1 │ │ │ │ └── work.step2 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ ├── work_pl.step1 │ │ │ │ └── work_pl.step2 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ ├── workrate.step1 │ │ │ │ └── workrate.step2 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ ├── workrate_pl.step1 │ │ │ │ └── workrate_pl.step2 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ ├── coo.step1 │ │ │ └── coo.step2 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ ├── disp.step1 │ │ │ └── disp.step2 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ ├── vel.step1 │ │ │ └── vel.step2 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 04_bct │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ ├── crss.step1 │ │ │ │ └── crss.step2 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ ├── defrate.step1 │ │ │ │ └── defrate.step2 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ ├── defrate_eq.step1 │ │ │ │ └── defrate_eq.step2 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ ├── defrate_pl.step1 │ │ │ │ └── defrate_pl.step2 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ ├── defrate_pl_eq.step1 │ │ │ │ └── defrate_pl_eq.step2 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ ├── ori.step1 │ │ │ │ └── ori.step2 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ ├── rotrate.step1 │ │ │ │ └── rotrate.step2 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ ├── slip.step1 │ │ │ │ └── slip.step2 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ ├── sliprate.step1 │ │ │ │ └── sliprate.step2 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ ├── spinrate.step1 │ │ │ │ └── spinrate.step2 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ ├── strain.step1 │ │ │ │ └── strain.step2 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ ├── strain_el.step1 │ │ │ │ └── strain_el.step2 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ ├── strain_el_eq.step1 │ │ │ │ └── strain_el_eq.step2 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ ├── strain_eq.step1 │ │ │ │ └── strain_eq.step2 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ ├── strain_pl.step1 │ │ │ │ └── strain_pl.step2 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ ├── strain_pl_eq.step1 │ │ │ │ └── strain_pl_eq.step2 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ ├── stress.step1 │ │ │ │ └── stress.step2 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ ├── stress_eq.step1 │ │ │ │ └── stress_eq.step2 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ ├── velgrad.step1 │ │ │ │ └── velgrad.step2 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ ├── work.step1 │ │ │ │ └── work.step2 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ ├── work_pl.step1 │ │ │ │ └── work_pl.step2 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ ├── workrate.step1 │ │ │ │ └── workrate.step2 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ ├── workrate_pl.step1 │ │ │ │ └── workrate_pl.step2 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ ├── coo.step1 │ │ │ └── coo.step2 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ ├── disp.step1 │ │ │ └── disp.step2 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ ├── vel.step1 │ │ │ └── vel.step2 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 05_dual_bcc_fcc │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ ├── crss.step1 │ │ │ │ └── crss.step2 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ ├── defrate.step1 │ │ │ │ └── defrate.step2 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ ├── defrate_eq.step1 │ │ │ │ └── defrate_eq.step2 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ ├── defrate_pl.step1 │ │ │ │ └── defrate_pl.step2 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ ├── defrate_pl_eq.step1 │ │ │ │ └── defrate_pl_eq.step2 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ ├── ori.step1 │ │ │ │ └── ori.step2 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ ├── rotrate.step1 │ │ │ │ └── rotrate.step2 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ ├── slip.step1 │ │ │ │ └── slip.step2 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ ├── sliprate.step1 │ │ │ │ └── sliprate.step2 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ ├── spinrate.step1 │ │ │ │ └── spinrate.step2 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ ├── strain.step1 │ │ │ │ └── strain.step2 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ ├── strain_el.step1 │ │ │ │ └── strain_el.step2 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ ├── strain_el_eq.step1 │ │ │ │ └── strain_el_eq.step2 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ ├── strain_eq.step1 │ │ │ │ └── strain_eq.step2 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ ├── strain_pl.step1 │ │ │ │ └── strain_pl.step2 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ ├── strain_pl_eq.step1 │ │ │ │ └── strain_pl_eq.step2 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ ├── stress.step1 │ │ │ │ └── stress.step2 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ ├── stress_eq.step1 │ │ │ │ └── stress_eq.step2 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ ├── velgrad.step1 │ │ │ │ └── velgrad.step2 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ ├── work.step1 │ │ │ │ └── work.step2 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ ├── work_pl.step1 │ │ │ │ └── work_pl.step2 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ ├── workrate.step1 │ │ │ │ └── workrate.step2 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ ├── workrate_pl.step1 │ │ │ │ └── workrate_pl.step2 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ ├── coo.step1 │ │ │ └── coo.step2 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ ├── disp.step1 │ │ │ └── disp.step2 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ ├── vel.step1 │ │ │ └── vel.step2 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake_disable ├── 06_bcc_sat_evo │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ └── crss.step1 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ └── defrate.step1 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ └── defrate_eq.step1 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ └── defrate_pl.step1 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ └── defrate_pl_eq.step1 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ └── ori.step1 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ └── rotrate.step1 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ └── slip.step1 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ └── sliprate.step1 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ └── spinrate.step1 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ └── strain.step1 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ └── strain_el.step1 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ └── strain_el_eq.step1 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ └── strain_eq.step1 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ └── strain_pl.step1 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ └── strain_pl_eq.step1 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ └── stress.step1 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ └── stress_eq.step1 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ └── velgrad.step1 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ └── work.step1 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ └── work_pl.step1 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ └── workrate.step1 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ └── workrate_pl.step1 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ └── coo.step1 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ └── disp.step1 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ └── vel.step1 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 07_fcc_sat_evo │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ └── crss.step1 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ └── defrate.step1 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ └── defrate_eq.step1 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ └── defrate_pl.step1 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ └── defrate_pl_eq.step1 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ └── ori.step1 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ └── rotrate.step1 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ └── slip.step1 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ └── sliprate.step1 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ └── spinrate.step1 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ └── strain.step1 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ └── strain_el.step1 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ └── strain_el_eq.step1 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ └── strain_eq.step1 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ └── strain_pl.step1 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ └── strain_pl_eq.step1 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ └── stress.step1 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ └── stress_eq.step1 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ └── velgrad.step1 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ └── work.step1 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ └── work_pl.step1 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ └── workrate.step1 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ └── workrate_pl.step1 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ └── coo.step1 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ └── disp.step1 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ └── vel.step1 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 08_hcp_sat_evo │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ └── crss.step1 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ └── defrate.step1 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ └── defrate_eq.step1 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ └── defrate_pl.step1 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ └── defrate_pl_eq.step1 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ └── ori.step1 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ └── rotrate.step1 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ └── slip.step1 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ └── sliprate.step1 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ └── spinrate.step1 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ └── strain.step1 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ └── strain_el.step1 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ └── strain_el_eq.step1 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ └── strain_eq.step1 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ └── strain_pl.step1 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ └── strain_pl_eq.step1 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ └── stress.step1 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ └── stress_eq.step1 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ └── velgrad.step1 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ └── work.step1 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ └── work_pl.step1 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ └── workrate.step1 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ └── workrate_pl.step1 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ └── coo.step1 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ └── disp.step1 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ └── vel.step1 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 09_bct_sat_evo │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ └── crss.step1 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ └── defrate.step1 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ └── defrate_eq.step1 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ └── defrate_pl.step1 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ └── defrate_pl_eq.step1 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ └── ori.step1 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ └── rotrate.step1 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ └── slip.step1 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ └── sliprate.step1 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ └── spinrate.step1 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ └── strain.step1 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ └── strain_el.step1 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ └── strain_el_eq.step1 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ └── strain_eq.step1 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ └── strain_pl.step1 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ └── strain_pl_eq.step1 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ └── stress.step1 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ └── stress_eq.step1 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ └── velgrad.step1 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ └── work.step1 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ └── work_pl.step1 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ └── workrate.step1 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ └── workrate_pl.step1 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ └── coo.step1 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ └── disp.step1 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ └── vel.step1 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 10_hcp_aniso_m │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ └── crss.step1 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ └── defrate.step1 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ └── defrate_eq.step1 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ └── defrate_pl.step1 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ └── defrate_pl_eq.step1 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ └── ori.step1 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ └── rotrate.step1 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ └── slip.step1 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ └── sliprate.step1 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ └── spinrate.step1 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ └── strain.step1 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ └── strain_el.step1 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ └── strain_el_eq.step1 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ └── strain_eq.step1 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ └── strain_pl.step1 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ └── strain_pl_eq.step1 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ └── stress.step1 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ └── stress_eq.step1 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ └── velgrad.step1 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ └── work.step1 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ └── work_pl.step1 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ └── workrate.step1 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ └── workrate_pl.step1 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ └── coo.step1 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ └── disp.step1 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ └── vel.step1 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 11_bct_aniso_m │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ └── crss.step1 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ └── defrate.step1 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ └── defrate_eq.step1 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ └── defrate_pl.step1 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ └── defrate_pl_eq.step1 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ └── ori.step1 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ └── rotrate.step1 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ └── slip.step1 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ └── sliprate.step1 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ └── spinrate.step1 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ └── strain.step1 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ └── strain_el.step1 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ └── strain_el_eq.step1 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ └── strain_eq.step1 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ └── strain_pl.step1 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ └── strain_pl_eq.step1 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ └── stress.step1 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ └── stress_eq.step1 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ └── velgrad.step1 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ └── work.step1 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ └── work_pl.step1 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ └── workrate.step1 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ └── workrate_pl.step1 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ └── coo.step1 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ └── disp.step1 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ └── vel.step1 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 12_bcc_coplanar_anisotropic_hard │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ └── crss.step1 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ └── defrate.step1 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ └── defrate_eq.step1 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ └── defrate_pl.step1 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ └── defrate_pl_eq.step1 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ └── ori.step1 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ └── rotrate.step1 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ └── slip.step1 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ └── sliprate.step1 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ └── spinrate.step1 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ └── strain.step1 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ └── strain_el.step1 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ └── strain_el_eq.step1 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ └── strain_eq.step1 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ └── strain_pl.step1 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ └── strain_pl_eq.step1 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ └── stress.step1 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ └── stress_eq.step1 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ └── velgrad.step1 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ └── work.step1 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ └── work_pl.step1 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ └── workrate.step1 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ └── workrate_pl.step1 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ └── coo.step1 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ └── disp.step1 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ └── vel.step1 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 13_fcc_coplanar_anisotropic_hard │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ └── crss.step1 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ └── defrate.step1 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ └── defrate_eq.step1 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ └── defrate_pl.step1 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ └── defrate_pl_eq.step1 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ └── ori.step1 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ └── rotrate.step1 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ └── slip.step1 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ └── sliprate.step1 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ └── spinrate.step1 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ └── strain.step1 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ └── strain_el.step1 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ └── strain_el_eq.step1 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ └── strain_eq.step1 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ └── strain_pl.step1 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ └── strain_pl_eq.step1 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ └── stress.step1 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ └── stress_eq.step1 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ └── velgrad.step1 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ └── work.step1 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ └── work_pl.step1 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ └── workrate.step1 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ └── workrate_pl.step1 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ └── coo.step1 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ └── disp.step1 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ └── vel.step1 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 14_hcp_coplanar_anisotropic_hard │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ └── crss.step1 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ └── defrate.step1 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ └── defrate_eq.step1 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ └── defrate_pl.step1 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ └── defrate_pl_eq.step1 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ └── ori.step1 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ └── rotrate.step1 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ └── slip.step1 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ └── sliprate.step1 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ └── spinrate.step1 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ └── strain.step1 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ └── strain_el.step1 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ └── strain_el_eq.step1 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ └── strain_eq.step1 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ └── strain_pl.step1 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ └── strain_pl_eq.step1 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ └── stress.step1 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ └── stress_eq.step1 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ └── velgrad.step1 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ └── work.step1 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ └── work_pl.step1 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ └── workrate.step1 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ └── workrate_pl.step1 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ └── coo.step1 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ └── disp.step1 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ └── vel.step1 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 15_bct_coplanar_anisotropic_hard │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ └── crss.step1 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ └── defrate.step1 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ └── defrate_eq.step1 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ └── defrate_pl.step1 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ └── defrate_pl_eq.step1 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ └── ori.step1 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ └── rotrate.step1 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ └── slip.step1 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ └── sliprate.step1 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ └── spinrate.step1 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ └── strain.step1 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ └── strain_el.step1 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ └── strain_el_eq.step1 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ └── strain_eq.step1 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ └── strain_pl.step1 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ └── strain_pl_eq.step1 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ └── stress.step1 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ └── stress_eq.step1 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ └── velgrad.step1 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ └── work.step1 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ └── work_pl.step1 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ └── workrate.step1 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ └── workrate_pl.step1 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ └── coo.step1 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ └── disp.step1 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ └── vel.step1 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 16_bcc_cyclic_hard │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ └── crss.step1 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ └── defrate.step1 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ └── defrate_eq.step1 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ └── defrate_pl.step1 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ └── defrate_pl_eq.step1 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ └── ori.step1 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ └── rotrate.step1 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ └── slip.step1 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ └── sliprate.step1 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ └── spinrate.step1 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ └── strain.step1 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ └── strain_el.step1 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ └── strain_el_eq.step1 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ └── strain_eq.step1 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ └── strain_pl.step1 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ └── strain_pl_eq.step1 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ └── stress.step1 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ └── stress_eq.step1 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ └── velgrad.step1 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ └── work.step1 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ └── work_pl.step1 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ └── workrate.step1 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ └── workrate_pl.step1 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ └── coo.step1 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ └── disp.step1 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ └── vel.step1 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 17_fcc_cyclic_hard │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ └── crss.step1 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ └── defrate.step1 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ └── defrate_eq.step1 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ └── defrate_pl.step1 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ └── defrate_pl_eq.step1 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ └── ori.step1 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ └── rotrate.step1 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ └── slip.step1 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ └── sliprate.step1 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ └── spinrate.step1 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ └── strain.step1 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ └── strain_el.step1 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ └── strain_el_eq.step1 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ └── strain_eq.step1 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ └── strain_pl.step1 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ └── strain_pl_eq.step1 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ └── stress.step1 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ └── stress_eq.step1 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ └── velgrad.step1 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ └── work.step1 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ └── work_pl.step1 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ └── workrate.step1 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ └── workrate_pl.step1 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ └── coo.step1 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ └── disp.step1 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ └── vel.step1 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 18_hcp_cyclic_hard │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ └── crss.step1 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ └── defrate.step1 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ └── defrate_eq.step1 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ └── defrate_pl.step1 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ └── defrate_pl_eq.step1 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ └── ori.step1 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ └── rotrate.step1 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ └── slip.step1 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ └── sliprate.step1 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ └── spinrate.step1 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ └── strain.step1 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ └── strain_el.step1 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ └── strain_el_eq.step1 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ └── strain_eq.step1 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ └── strain_pl.step1 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ └── strain_pl_eq.step1 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ └── stress.step1 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ └── stress_eq.step1 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ └── velgrad.step1 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ └── work.step1 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ └── work_pl.step1 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ └── workrate.step1 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ └── workrate_pl.step1 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ └── coo.step1 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ └── disp.step1 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ └── vel.step1 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 19_bct_cyclic_hard │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ └── crss.step1 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ └── defrate.step1 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ └── defrate_eq.step1 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ └── defrate_pl.step1 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ └── defrate_pl_eq.step1 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ └── ori.step1 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ └── rotrate.step1 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ └── slip.step1 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ └── sliprate.step1 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ └── spinrate.step1 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ └── strain.step1 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ └── strain_el.step1 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ └── strain_el_eq.step1 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ └── strain_eq.step1 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ └── strain_pl.step1 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ └── strain_pl_eq.step1 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ └── stress.step1 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ └── stress_eq.step1 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ └── velgrad.step1 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ └── work.step1 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ └── work_pl.step1 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ └── workrate.step1 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ └── workrate_pl.step1 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ └── coo.step1 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ └── disp.step1 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ └── vel.step1 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 22_oris_rod_passive │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ └── crss.step1 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ └── defrate.step1 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ └── defrate_eq.step1 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ └── defrate_pl.step1 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ └── defrate_pl_eq.step1 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ └── ori.step1 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ └── rotrate.step1 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ └── slip.step1 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ └── sliprate.step1 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ └── spinrate.step1 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ └── strain.step1 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ └── strain_el.step1 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ └── strain_el_eq.step1 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ └── strain_eq.step1 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ └── strain_pl.step1 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ └── strain_pl_eq.step1 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ └── stress.step1 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ └── stress_eq.step1 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ └── velgrad.step1 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ └── work.step1 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ └── work_pl.step1 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ └── workrate.step1 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ └── workrate_pl.step1 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ └── coo.step1 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ └── disp.step1 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ └── vel.step1 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 23_oris_bunge_active │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ └── crss.step1 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ └── defrate.step1 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ └── defrate_eq.step1 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ └── defrate_pl.step1 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ └── defrate_pl_eq.step1 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ └── ori.step1 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ └── rotrate.step1 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ └── slip.step1 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ └── sliprate.step1 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ └── spinrate.step1 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ └── strain.step1 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ └── strain_el.step1 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ └── strain_el_eq.step1 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ └── strain_eq.step1 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ └── strain_pl.step1 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ └── strain_pl_eq.step1 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ └── stress.step1 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ └── stress_eq.step1 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ └── velgrad.step1 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ └── work.step1 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ └── work_pl.step1 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ └── workrate.step1 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ └── workrate_pl.step1 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ └── coo.step1 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ └── disp.step1 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ └── vel.step1 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 24_oris_bunge_passive │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ └── crss.step1 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ └── defrate.step1 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ └── defrate_eq.step1 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ └── defrate_pl.step1 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ └── defrate_pl_eq.step1 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ └── ori.step1 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ └── rotrate.step1 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ └── slip.step1 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ └── sliprate.step1 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ └── spinrate.step1 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ └── strain.step1 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ └── strain_el.step1 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ └── strain_el_eq.step1 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ └── strain_eq.step1 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ └── strain_pl.step1 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ └── strain_pl_eq.step1 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ └── stress.step1 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ └── stress_eq.step1 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ └── velgrad.step1 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ └── work.step1 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ └── work_pl.step1 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ └── workrate.step1 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ └── workrate_pl.step1 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ └── coo.step1 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ └── disp.step1 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ └── vel.step1 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 25_oris_kocks_active │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ └── crss.step1 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ └── defrate.step1 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ └── defrate_eq.step1 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ └── defrate_pl.step1 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ └── defrate_pl_eq.step1 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ └── ori.step1 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ └── rotrate.step1 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ └── slip.step1 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ └── sliprate.step1 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ └── spinrate.step1 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ └── strain.step1 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ └── strain_el.step1 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ └── strain_el_eq.step1 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ └── strain_eq.step1 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ └── strain_pl.step1 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ └── strain_pl_eq.step1 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ └── stress.step1 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ └── stress_eq.step1 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ └── velgrad.step1 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ └── work.step1 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ └── work_pl.step1 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ └── workrate.step1 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ └── workrate_pl.step1 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ └── coo.step1 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ └── disp.step1 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ └── vel.step1 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 26_oris_kocks_passive │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ └── crss.step1 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ └── defrate.step1 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ └── defrate_eq.step1 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ └── defrate_pl.step1 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ └── defrate_pl_eq.step1 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ └── ori.step1 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ └── rotrate.step1 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ └── slip.step1 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ └── sliprate.step1 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ └── spinrate.step1 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ └── strain.step1 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ └── strain_el.step1 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ └── strain_el_eq.step1 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ └── strain_eq.step1 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ └── strain_pl.step1 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ └── strain_pl_eq.step1 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ └── stress.step1 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ └── stress_eq.step1 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ └── velgrad.step1 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ └── work.step1 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ └── work_pl.step1 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ └── workrate.step1 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ └── workrate_pl.step1 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ └── coo.step1 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ └── disp.step1 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ └── vel.step1 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 27_oris_axisangle_active │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ └── crss.step1 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ └── defrate.step1 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ └── defrate_eq.step1 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ └── defrate_pl.step1 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ └── defrate_pl_eq.step1 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ └── ori.step1 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ └── rotrate.step1 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ └── slip.step1 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ └── sliprate.step1 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ └── spinrate.step1 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ └── strain.step1 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ └── strain_el.step1 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ └── strain_el_eq.step1 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ └── strain_eq.step1 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ └── strain_pl.step1 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ └── strain_pl_eq.step1 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ └── stress.step1 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ └── stress_eq.step1 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ └── velgrad.step1 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ └── work.step1 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ └── work_pl.step1 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ └── workrate.step1 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ └── workrate_pl.step1 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ └── coo.step1 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ └── disp.step1 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ └── vel.step1 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 28_oris_axisangle_passive │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ └── crss.step1 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ └── defrate.step1 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ └── defrate_eq.step1 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ └── defrate_pl.step1 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ └── defrate_pl_eq.step1 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ └── ori.step1 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ └── rotrate.step1 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ └── slip.step1 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ └── sliprate.step1 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ └── spinrate.step1 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ └── strain.step1 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ └── strain_el.step1 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ └── strain_el_eq.step1 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ └── strain_eq.step1 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ └── strain_pl.step1 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ └── strain_pl_eq.step1 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ └── stress.step1 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ └── stress_eq.step1 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ └── velgrad.step1 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ └── work.step1 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ └── work_pl.step1 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ └── workrate.step1 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ └── workrate_pl.step1 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ └── coo.step1 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ └── disp.step1 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ └── vel.step1 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 29_oris_quat_active │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ └── crss.step1 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ └── defrate.step1 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ └── defrate_eq.step1 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ └── defrate_pl.step1 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ └── defrate_pl_eq.step1 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ └── ori.step1 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ └── rotrate.step1 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ └── slip.step1 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ └── sliprate.step1 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ └── spinrate.step1 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ └── strain.step1 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ └── strain_el.step1 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ └── strain_el_eq.step1 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ └── strain_eq.step1 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ └── strain_pl.step1 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ └── strain_pl_eq.step1 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ └── stress.step1 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ └── stress_eq.step1 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ └── velgrad.step1 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ └── work.step1 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ └── work_pl.step1 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ └── workrate.step1 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ └── workrate_pl.step1 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ └── coo.step1 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ └── disp.step1 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ └── vel.step1 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 30_oris_quat_passive │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ └── crss.step1 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ └── defrate.step1 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ └── defrate_eq.step1 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ └── defrate_pl.step1 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ └── defrate_pl_eq.step1 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ └── ori.step1 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ └── rotrate.step1 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ └── slip.step1 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ └── sliprate.step1 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ └── spinrate.step1 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ └── strain.step1 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ └── strain_el.step1 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ └── strain_el_eq.step1 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ └── strain_eq.step1 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ └── strain_pl.step1 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ └── strain_pl_eq.step1 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ └── stress.step1 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ └── stress_eq.step1 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ └── velgrad.step1 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ └── work.step1 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ └── work_pl.step1 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ └── workrate.step1 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ └── workrate_pl.step1 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ └── coo.step1 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ └── disp.step1 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ └── vel.step1 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 31_general_bcs │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ └── crss.step1 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ └── ori.step1 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ └── slip.step1 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ └── sliprate.step1 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ └── strain.step1 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ └── strain_el.step1 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ └── strain_el_eq.step1 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ └── strain_eq.step1 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ └── strain_pl.step1 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ └── strain_pl_eq.step1 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ └── stress.step1 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ └── stress_eq.step1 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ └── work.step1 │ │ │ └── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ └── work_pl.step1 │ │ │ ├── forces │ │ │ ├── x0 │ │ │ ├── x1 │ │ │ ├── y0 │ │ │ ├── y1 │ │ │ ├── z0 │ │ │ └── z1 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ └── coo.step1 │ │ │ └── disp │ │ │ ├── disp.step0 │ │ │ └── disp.step1 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 32_bcc_fully_anisotropic_hard │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ └── crss.step1 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ └── defrate.step1 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ └── defrate_eq.step1 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ └── defrate_pl.step1 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ └── defrate_pl_eq.step1 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ └── ori.step1 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ └── rotrate.step1 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ └── slip.step1 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ └── sliprate.step1 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ └── spinrate.step1 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ └── strain.step1 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ └── strain_el.step1 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ └── strain_el_eq.step1 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ └── strain_eq.step1 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ └── strain_pl.step1 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ └── strain_pl_eq.step1 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ └── stress.step1 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ └── stress_eq.step1 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ └── velgrad.step1 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ └── work.step1 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ └── work_pl.step1 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ └── workrate.step1 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ └── workrate_pl.step1 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ └── coo.step1 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ └── disp.step1 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ └── vel.step1 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 33_fcc_fully_anisotropic_hard │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ └── crss.step1 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ └── defrate.step1 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ └── defrate_eq.step1 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ └── defrate_pl.step1 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ └── defrate_pl_eq.step1 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ └── ori.step1 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ └── rotrate.step1 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ └── slip.step1 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ └── sliprate.step1 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ └── spinrate.step1 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ └── strain.step1 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ └── strain_el.step1 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ └── strain_el_eq.step1 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ └── strain_eq.step1 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ └── strain_pl.step1 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ └── strain_pl_eq.step1 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ └── stress.step1 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ └── stress_eq.step1 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ └── velgrad.step1 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ └── work.step1 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ └── work_pl.step1 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ └── workrate.step1 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ └── workrate_pl.step1 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ └── coo.step1 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ └── disp.step1 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ └── vel.step1 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 34_hcp_fully_anisotropic_hard │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ └── crss.step1 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ └── defrate.step1 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ └── defrate_eq.step1 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ └── defrate_pl.step1 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ └── defrate_pl_eq.step1 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ └── ori.step1 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ └── rotrate.step1 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ └── slip.step1 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ └── sliprate.step1 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ └── spinrate.step1 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ └── strain.step1 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ └── strain_el.step1 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ └── strain_el_eq.step1 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ └── strain_eq.step1 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ └── strain_pl.step1 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ └── strain_pl_eq.step1 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ └── stress.step1 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ └── stress_eq.step1 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ └── velgrad.step1 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ └── work.step1 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ └── work_pl.step1 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ └── workrate.step1 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ └── workrate_pl.step1 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ └── coo.step1 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ └── disp.step1 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ └── vel.step1 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 35_bct_fully_anisotropic_hard │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ └── crss.step1 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ └── defrate.step1 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ └── defrate_eq.step1 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ └── defrate_pl.step1 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ └── defrate_pl_eq.step1 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ └── ori.step1 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ └── rotrate.step1 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ └── slip.step1 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ └── sliprate.step1 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ └── spinrate.step1 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ └── strain.step1 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ └── strain_el.step1 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ └── strain_el_eq.step1 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ └── strain_eq.step1 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ └── strain_pl.step1 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ └── strain_pl_eq.step1 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ └── stress.step1 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ └── stress_eq.step1 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ └── velgrad.step1 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ └── work.step1 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ └── work_pl.step1 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ └── workrate.step1 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ └── workrate_pl.step1 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ └── coo.step1 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ └── disp.step1 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ └── vel.step1 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 36_bcc_aniso_g_0 │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ └── crss.step1 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ └── defrate.step1 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ └── defrate_eq.step1 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ └── defrate_pl.step1 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ └── defrate_pl_eq.step1 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ └── ori.step1 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ └── rotrate.step1 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ └── slip.step1 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ └── sliprate.step1 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ └── spinrate.step1 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ └── strain.step1 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ └── strain_el.step1 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ └── strain_el_eq.step1 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ └── strain_eq.step1 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ └── strain_pl.step1 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ └── strain_pl_eq.step1 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ └── stress.step1 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ └── stress_eq.step1 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ └── velgrad.step1 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ └── work.step1 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ └── work_pl.step1 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ └── workrate.step1 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ └── workrate_pl.step1 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ └── coo.step1 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ └── disp.step1 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ └── vel.step1 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 37_fcc_aniso_g_0 │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ └── crss.step1 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ └── defrate.step1 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ └── defrate_eq.step1 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ └── defrate_pl.step1 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ └── defrate_pl_eq.step1 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ └── ori.step1 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ └── rotrate.step1 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ └── slip.step1 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ └── sliprate.step1 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ └── spinrate.step1 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ └── strain.step1 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ └── strain_el.step1 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ └── strain_el_eq.step1 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ └── strain_eq.step1 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ └── strain_pl.step1 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ └── strain_pl_eq.step1 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ └── stress.step1 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ └── stress_eq.step1 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ └── velgrad.step1 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ └── work.step1 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ └── work_pl.step1 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ └── workrate.step1 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ └── workrate_pl.step1 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ └── coo.step1 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ └── disp.step1 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ └── vel.step1 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 38_hcp_aniso_g_0 │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ └── crss.step1 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ └── defrate.step1 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ └── defrate_eq.step1 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ └── defrate_pl.step1 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ └── defrate_pl_eq.step1 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ └── ori.step1 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ └── rotrate.step1 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ └── slip.step1 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ └── sliprate.step1 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ └── spinrate.step1 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ └── strain.step1 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ └── strain_el.step1 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ └── strain_el_eq.step1 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ └── strain_eq.step1 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ └── strain_pl.step1 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ └── strain_pl_eq.step1 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ └── stress.step1 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ └── stress_eq.step1 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ └── velgrad.step1 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ └── work.step1 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ └── work_pl.step1 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ └── workrate.step1 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ └── workrate_pl.step1 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ └── coo.step1 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ └── disp.step1 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ └── vel.step1 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 39_bct_aniso_g_0 │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ └── crss.step1 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ └── defrate.step1 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ └── defrate_eq.step1 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ └── defrate_pl.step1 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ └── defrate_pl_eq.step1 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ └── ori.step1 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ └── rotrate.step1 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ └── slip.step1 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ └── sliprate.step1 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ └── spinrate.step1 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ └── strain.step1 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ └── strain_el.step1 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ └── strain_el_eq.step1 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ └── strain_eq.step1 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ └── strain_pl.step1 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ └── strain_pl_eq.step1 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ └── stress.step1 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ └── stress_eq.step1 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ └── velgrad.step1 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ └── work.step1 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ └── work_pl.step1 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ └── workrate.step1 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ └── workrate_pl.step1 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ └── coo.step1 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ └── disp.step1 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ └── vel.step1 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 40_bcc_precipitates │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ └── crss.step1 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ └── defrate.step1 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ └── defrate_eq.step1 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ └── defrate_pl.step1 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ └── defrate_pl_eq.step1 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ └── ori.step1 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ └── rotrate.step1 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ └── slip.step1 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ └── sliprate.step1 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ └── spinrate.step1 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ └── strain.step1 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ └── strain_el.step1 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ └── strain_el_eq.step1 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ └── strain_eq.step1 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ └── strain_pl.step1 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ └── strain_pl_eq.step1 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ └── stress.step1 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ └── stress_eq.step1 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ └── velgrad.step1 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ └── work.step1 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ └── work_pl.step1 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ └── workrate.step1 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ └── workrate_pl.step1 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ └── coo.step1 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ └── disp.step1 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ └── vel.step1 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 41_fcc_precipitates │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ └── crss.step1 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ └── defrate.step1 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ └── defrate_eq.step1 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ └── defrate_pl.step1 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ └── defrate_pl_eq.step1 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ └── ori.step1 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ └── rotrate.step1 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ └── slip.step1 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ └── sliprate.step1 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ └── spinrate.step1 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ └── strain.step1 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ └── strain_el.step1 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ └── strain_el_eq.step1 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ └── strain_eq.step1 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ └── strain_pl.step1 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ └── strain_pl_eq.step1 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ └── stress.step1 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ └── stress_eq.step1 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ └── velgrad.step1 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ └── work.step1 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ └── work_pl.step1 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ └── workrate.step1 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ └── workrate_pl.step1 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ └── coo.step1 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ └── disp.step1 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ └── vel.step1 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 42_hcp_precipitates │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ └── crss.step1 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ └── defrate.step1 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ └── defrate_eq.step1 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ └── defrate_pl.step1 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ └── defrate_pl_eq.step1 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ └── ori.step1 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ └── rotrate.step1 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ └── slip.step1 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ └── sliprate.step1 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ └── spinrate.step1 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ └── strain.step1 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ └── strain_el.step1 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ └── strain_el_eq.step1 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ └── strain_eq.step1 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ └── strain_pl.step1 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ └── strain_pl_eq.step1 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ └── stress.step1 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ └── stress_eq.step1 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ └── velgrad.step1 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ └── work.step1 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ └── work_pl.step1 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ └── workrate.step1 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ └── workrate_pl.step1 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ └── coo.step1 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ └── disp.step1 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ └── vel.step1 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 43_bct_precipitates │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ └── crss.step1 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ └── defrate.step1 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ └── defrate_eq.step1 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ └── defrate_pl.step1 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ └── defrate_pl_eq.step1 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ └── ori.step1 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ └── rotrate.step1 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ └── slip.step1 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ └── sliprate.step1 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ └── spinrate.step1 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ └── strain.step1 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ └── strain_el.step1 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ └── strain_el_eq.step1 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ └── strain_eq.step1 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ └── strain_pl.step1 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ └── strain_pl_eq.step1 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ └── stress.step1 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ └── stress_eq.step1 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ └── velgrad.step1 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ └── work.step1 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ └── work_pl.step1 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ └── workrate.step1 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ └── workrate_pl.step1 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ └── coo.step1 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ └── disp.step1 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ └── vel.step1 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 44_bcc_112_slip │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ ├── crss.step1 │ │ │ │ └── crss.step2 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ ├── defrate.step1 │ │ │ │ └── defrate.step2 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ ├── defrate_eq.step1 │ │ │ │ └── defrate_eq.step2 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ ├── defrate_pl.step1 │ │ │ │ └── defrate_pl.step2 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ ├── defrate_pl_eq.step1 │ │ │ │ └── defrate_pl_eq.step2 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ ├── ori.step1 │ │ │ │ └── ori.step2 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ ├── rotrate.step1 │ │ │ │ └── rotrate.step2 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ ├── slip.step1 │ │ │ │ └── slip.step2 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ ├── sliprate.step1 │ │ │ │ └── sliprate.step2 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ ├── spinrate.step1 │ │ │ │ └── spinrate.step2 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ ├── strain.step1 │ │ │ │ └── strain.step2 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ ├── strain_el.step1 │ │ │ │ └── strain_el.step2 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ ├── strain_el_eq.step1 │ │ │ │ └── strain_el_eq.step2 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ ├── strain_eq.step1 │ │ │ │ └── strain_eq.step2 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ ├── strain_pl.step1 │ │ │ │ └── strain_pl.step2 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ ├── strain_pl_eq.step1 │ │ │ │ └── strain_pl_eq.step2 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ ├── stress.step1 │ │ │ │ └── stress.step2 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ ├── stress_eq.step1 │ │ │ │ └── stress_eq.step2 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ ├── velgrad.step1 │ │ │ │ └── velgrad.step2 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ ├── work.step1 │ │ │ │ └── work.step2 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ ├── work_pl.step1 │ │ │ │ └── work_pl.step2 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ ├── workrate.step1 │ │ │ │ └── workrate.step2 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ ├── workrate_pl.step1 │ │ │ │ └── workrate_pl.step2 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ ├── coo.step1 │ │ │ └── coo.step2 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ ├── disp.step1 │ │ │ └── disp.step2 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ ├── vel.step1 │ │ │ └── vel.step2 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 45_bcc_112_slip_aniso_g0 │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ ├── crss.step1 │ │ │ │ └── crss.step2 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ ├── defrate.step1 │ │ │ │ └── defrate.step2 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ ├── defrate_eq.step1 │ │ │ │ └── defrate_eq.step2 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ ├── defrate_pl.step1 │ │ │ │ └── defrate_pl.step2 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ ├── defrate_pl_eq.step1 │ │ │ │ └── defrate_pl_eq.step2 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ ├── ori.step1 │ │ │ │ └── ori.step2 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ ├── rotrate.step1 │ │ │ │ └── rotrate.step2 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ ├── slip.step1 │ │ │ │ └── slip.step2 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ ├── sliprate.step1 │ │ │ │ └── sliprate.step2 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ ├── spinrate.step1 │ │ │ │ └── spinrate.step2 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ ├── strain.step1 │ │ │ │ └── strain.step2 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ ├── strain_el.step1 │ │ │ │ └── strain_el.step2 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ ├── strain_el_eq.step1 │ │ │ │ └── strain_el_eq.step2 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ ├── strain_eq.step1 │ │ │ │ └── strain_eq.step2 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ ├── strain_pl.step1 │ │ │ │ └── strain_pl.step2 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ ├── strain_pl_eq.step1 │ │ │ │ └── strain_pl_eq.step2 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ ├── stress.step1 │ │ │ │ └── stress.step2 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ ├── stress_eq.step1 │ │ │ │ └── stress_eq.step2 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ ├── velgrad.step1 │ │ │ │ └── velgrad.step2 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ ├── work.step1 │ │ │ │ └── work.step2 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ ├── work_pl.step1 │ │ │ │ └── work_pl.step2 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ ├── workrate.step1 │ │ │ │ └── workrate.step2 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ ├── workrate_pl.step1 │ │ │ │ └── workrate_pl.step2 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ ├── coo.step1 │ │ │ └── coo.step2 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ ├── disp.step1 │ │ │ └── disp.step2 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ ├── vel.step1 │ │ │ └── vel.step2 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 46_mixedhard │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ ├── crss.step1 │ │ │ │ └── crss.step2 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ ├── defrate.step1 │ │ │ │ └── defrate.step2 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ ├── defrate_eq.step1 │ │ │ │ └── defrate_eq.step2 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ ├── defrate_pl.step1 │ │ │ │ └── defrate_pl.step2 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ ├── defrate_pl_eq.step1 │ │ │ │ └── defrate_pl_eq.step2 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ ├── ori.step1 │ │ │ │ └── ori.step2 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ ├── rotrate.step1 │ │ │ │ └── rotrate.step2 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ ├── slip.step1 │ │ │ │ └── slip.step2 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ ├── sliprate.step1 │ │ │ │ └── sliprate.step2 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ ├── spinrate.step1 │ │ │ │ └── spinrate.step2 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ ├── strain.step1 │ │ │ │ └── strain.step2 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ ├── strain_el.step1 │ │ │ │ └── strain_el.step2 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ ├── strain_el_eq.step1 │ │ │ │ └── strain_el_eq.step2 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ ├── strain_eq.step1 │ │ │ │ └── strain_eq.step2 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ ├── strain_pl.step1 │ │ │ │ └── strain_pl.step2 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ ├── strain_pl_eq.step1 │ │ │ │ └── strain_pl_eq.step2 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ ├── stress.step1 │ │ │ │ └── stress.step2 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ ├── stress_eq.step1 │ │ │ │ └── stress_eq.step2 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ ├── velgrad.step1 │ │ │ │ └── velgrad.step2 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ ├── work.step1 │ │ │ │ └── work.step2 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ ├── work_pl.step1 │ │ │ │ └── work_pl.step2 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ ├── workrate.step1 │ │ │ │ └── workrate.step2 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ ├── workrate_pl.step1 │ │ │ │ └── workrate_pl.step2 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ ├── coo.step1 │ │ │ └── coo.step2 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ ├── disp.step1 │ │ │ └── disp.step2 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ ├── vel.step1 │ │ │ └── vel.step2 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake_disable ├── 47_mpc_plane_face │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ ├── simulation.msh │ │ │ └── simulation.tess │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ ├── crss.step1 │ │ │ │ ├── crss.step2 │ │ │ │ └── crss.step3 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ ├── ori.step1 │ │ │ │ ├── ori.step2 │ │ │ │ └── ori.step3 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ ├── slip.step1 │ │ │ │ ├── slip.step2 │ │ │ │ └── slip.step3 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ ├── sliprate.step1 │ │ │ │ ├── sliprate.step2 │ │ │ │ └── sliprate.step3 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ ├── strain.step1 │ │ │ │ ├── strain.step2 │ │ │ │ └── strain.step3 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ ├── strain_el.step1 │ │ │ │ ├── strain_el.step2 │ │ │ │ └── strain_el.step3 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ ├── strain_el_eq.step1 │ │ │ │ ├── strain_el_eq.step2 │ │ │ │ └── strain_el_eq.step3 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ ├── strain_eq.step1 │ │ │ │ ├── strain_eq.step2 │ │ │ │ └── strain_eq.step3 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ ├── strain_pl.step1 │ │ │ │ ├── strain_pl.step2 │ │ │ │ └── strain_pl.step3 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ ├── strain_pl_eq.step1 │ │ │ │ ├── strain_pl_eq.step2 │ │ │ │ └── strain_pl_eq.step3 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ ├── stress.step1 │ │ │ │ ├── stress.step2 │ │ │ │ └── stress.step3 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ ├── stress_eq.step1 │ │ │ │ ├── stress_eq.step2 │ │ │ │ └── stress_eq.step3 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ ├── work.step1 │ │ │ │ ├── work.step2 │ │ │ │ └── work.step3 │ │ │ └── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ ├── work_pl.step1 │ │ │ │ ├── work_pl.step2 │ │ │ │ └── work_pl.step3 │ │ │ ├── forces │ │ │ ├── x0 │ │ │ ├── x1 │ │ │ ├── y0 │ │ │ ├── y1 │ │ │ ├── z0 │ │ │ └── z1 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ ├── coo.step1 │ │ │ ├── coo.step2 │ │ │ └── coo.step3 │ │ │ └── disp │ │ │ ├── disp.step0 │ │ │ ├── disp.step1 │ │ │ ├── disp.step2 │ │ │ └── disp.step3 │ ├── simulation.cfg │ ├── simulation.msh │ ├── simulation.tess │ └── test.cmake ├── 49_pbc_triaxial_tracomp │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ ├── simulation.msh │ │ │ └── simulation.tess │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ ├── crss.step1 │ │ │ │ └── crss.step2 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ ├── ori.step1 │ │ │ │ └── ori.step2 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ ├── slip.step1 │ │ │ │ └── slip.step2 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ ├── sliprate.step1 │ │ │ │ └── sliprate.step2 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ ├── strain.step1 │ │ │ │ └── strain.step2 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ ├── strain_el.step1 │ │ │ │ └── strain_el.step2 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ ├── strain_el_eq.step1 │ │ │ │ └── strain_el_eq.step2 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ ├── strain_eq.step1 │ │ │ │ └── strain_eq.step2 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ ├── strain_pl.step1 │ │ │ │ └── strain_pl.step2 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ ├── strain_pl_eq.step1 │ │ │ │ └── strain_pl_eq.step2 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ ├── stress.step1 │ │ │ │ └── stress.step2 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ ├── stress_eq.step1 │ │ │ │ └── stress_eq.step2 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ ├── work.step1 │ │ │ │ └── work.step2 │ │ │ └── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ ├── work_pl.step1 │ │ │ │ └── work_pl.step2 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ ├── coo.step1 │ │ │ └── coo.step2 │ │ │ └── disp │ │ │ ├── disp.step0 │ │ │ ├── disp.step1 │ │ │ └── disp.step2 │ ├── simulation.cfg │ ├── simulation.msh │ ├── simulation.tess │ └── test.cmake-disable ├── 50_pbc_triaxial_shear │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ ├── simulation.msh │ │ │ └── simulation.tess │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ ├── crss.step1 │ │ │ │ └── crss.step2 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ ├── ori.step1 │ │ │ │ └── ori.step2 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ ├── slip.step1 │ │ │ │ └── slip.step2 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ ├── sliprate.step1 │ │ │ │ └── sliprate.step2 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ ├── strain.step1 │ │ │ │ └── strain.step2 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ ├── strain_el.step1 │ │ │ │ └── strain_el.step2 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ ├── strain_el_eq.step1 │ │ │ │ └── strain_el_eq.step2 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ ├── strain_eq.step1 │ │ │ │ └── strain_eq.step2 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ ├── strain_pl.step1 │ │ │ │ └── strain_pl.step2 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ ├── strain_pl_eq.step1 │ │ │ │ └── strain_pl_eq.step2 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ ├── stress.step1 │ │ │ │ └── stress.step2 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ ├── stress_eq.step1 │ │ │ │ └── stress_eq.step2 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ ├── work.step1 │ │ │ │ └── work.step2 │ │ │ └── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ ├── work_pl.step1 │ │ │ │ └── work_pl.step2 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ ├── coo.step1 │ │ │ └── coo.step2 │ │ │ └── disp │ │ │ ├── disp.step0 │ │ │ ├── disp.step1 │ │ │ └── disp.step2 │ ├── simulation.cfg │ ├── simulation.msh │ ├── simulation.tess │ └── test.cmake_disable ├── 51_bcc_elt_opt_input │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ ├── simulation.msh │ │ │ └── simulation.opt │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ ├── crss.step1 │ │ │ │ └── crss.step2 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ ├── defrate.step1 │ │ │ │ └── defrate.step2 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ ├── defrate_eq.step1 │ │ │ │ └── defrate_eq.step2 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ ├── defrate_pl.step1 │ │ │ │ └── defrate_pl.step2 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ ├── defrate_pl_eq.step1 │ │ │ │ └── defrate_pl_eq.step2 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ ├── ori.step1 │ │ │ │ └── ori.step2 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ ├── rotrate.step1 │ │ │ │ └── rotrate.step2 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ ├── slip.step1 │ │ │ │ └── slip.step2 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ ├── sliprate.step1 │ │ │ │ └── sliprate.step2 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ ├── spinrate.step1 │ │ │ │ └── spinrate.step2 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ ├── strain.step1 │ │ │ │ └── strain.step2 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ ├── strain_el.step1 │ │ │ │ └── strain_el.step2 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ ├── strain_el_eq.step1 │ │ │ │ └── strain_el_eq.step2 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ ├── strain_eq.step1 │ │ │ │ └── strain_eq.step2 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ ├── strain_pl.step1 │ │ │ │ └── strain_pl.step2 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ ├── strain_pl_eq.step1 │ │ │ │ └── strain_pl_eq.step2 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ ├── stress.step1 │ │ │ │ └── stress.step2 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ ├── stress_eq.step1 │ │ │ │ └── stress_eq.step2 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ ├── velgrad.step1 │ │ │ │ └── velgrad.step2 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ ├── work.step1 │ │ │ │ └── work.step2 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ ├── work_pl.step1 │ │ │ │ └── work_pl.step2 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ ├── workrate.step1 │ │ │ │ └── workrate.step2 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ ├── workrate_pl.step1 │ │ │ │ └── workrate_pl.step2 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ ├── coo.step1 │ │ │ └── coo.step2 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ ├── disp.step1 │ │ │ └── disp.step2 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ ├── vel.step1 │ │ │ └── vel.step2 │ ├── simulation.cfg │ ├── simulation.msh │ ├── simulation.opt │ └── test.cmake ├── 52_fcc_elt_opt_input │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ ├── simulation.msh │ │ │ └── simulation.opt │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ ├── crss.step1 │ │ │ │ └── crss.step2 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ ├── defrate.step1 │ │ │ │ └── defrate.step2 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ ├── defrate_eq.step1 │ │ │ │ └── defrate_eq.step2 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ ├── defrate_pl.step1 │ │ │ │ └── defrate_pl.step2 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ ├── defrate_pl_eq.step1 │ │ │ │ └── defrate_pl_eq.step2 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ ├── ori.step1 │ │ │ │ └── ori.step2 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ ├── rotrate.step1 │ │ │ │ └── rotrate.step2 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ ├── slip.step1 │ │ │ │ └── slip.step2 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ ├── sliprate.step1 │ │ │ │ └── sliprate.step2 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ ├── spinrate.step1 │ │ │ │ └── spinrate.step2 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ ├── strain.step1 │ │ │ │ └── strain.step2 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ ├── strain_el.step1 │ │ │ │ └── strain_el.step2 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ ├── strain_el_eq.step1 │ │ │ │ └── strain_el_eq.step2 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ ├── strain_eq.step1 │ │ │ │ └── strain_eq.step2 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ ├── strain_pl.step1 │ │ │ │ └── strain_pl.step2 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ ├── strain_pl_eq.step1 │ │ │ │ └── strain_pl_eq.step2 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ ├── stress.step1 │ │ │ │ └── stress.step2 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ ├── stress_eq.step1 │ │ │ │ └── stress_eq.step2 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ ├── velgrad.step1 │ │ │ │ └── velgrad.step2 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ ├── work.step1 │ │ │ │ └── work.step2 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ ├── work_pl.step1 │ │ │ │ └── work_pl.step2 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ ├── workrate.step1 │ │ │ │ └── workrate.step2 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ ├── workrate_pl.step1 │ │ │ │ └── workrate_pl.step2 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ ├── coo.step1 │ │ │ └── coo.step2 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ ├── disp.step1 │ │ │ └── disp.step2 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ ├── vel.step1 │ │ │ └── vel.step2 │ ├── simulation.cfg │ ├── simulation.msh │ ├── simulation.opt │ └── test.cmake ├── 53_hcp_elt_opt_input │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ ├── simulation.msh │ │ │ └── simulation.opt │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ ├── crss.step1 │ │ │ │ └── crss.step2 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ ├── defrate.step1 │ │ │ │ └── defrate.step2 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ ├── defrate_eq.step1 │ │ │ │ └── defrate_eq.step2 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ ├── defrate_pl.step1 │ │ │ │ └── defrate_pl.step2 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ ├── defrate_pl_eq.step1 │ │ │ │ └── defrate_pl_eq.step2 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ ├── ori.step1 │ │ │ │ └── ori.step2 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ ├── rotrate.step1 │ │ │ │ └── rotrate.step2 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ ├── slip.step1 │ │ │ │ └── slip.step2 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ ├── sliprate.step1 │ │ │ │ └── sliprate.step2 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ ├── spinrate.step1 │ │ │ │ └── spinrate.step2 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ ├── strain.step1 │ │ │ │ └── strain.step2 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ ├── strain_el.step1 │ │ │ │ └── strain_el.step2 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ ├── strain_el_eq.step1 │ │ │ │ └── strain_el_eq.step2 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ ├── strain_eq.step1 │ │ │ │ └── strain_eq.step2 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ ├── strain_pl.step1 │ │ │ │ └── strain_pl.step2 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ ├── strain_pl_eq.step1 │ │ │ │ └── strain_pl_eq.step2 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ ├── stress.step1 │ │ │ │ └── stress.step2 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ ├── stress_eq.step1 │ │ │ │ └── stress_eq.step2 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ ├── velgrad.step1 │ │ │ │ └── velgrad.step2 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ ├── work.step1 │ │ │ │ └── work.step2 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ ├── work_pl.step1 │ │ │ │ └── work_pl.step2 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ ├── workrate.step1 │ │ │ │ └── workrate.step2 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ ├── workrate_pl.step1 │ │ │ │ └── workrate_pl.step2 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ ├── coo.step1 │ │ │ └── coo.step2 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ ├── disp.step1 │ │ │ └── disp.step2 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ ├── vel.step1 │ │ │ └── vel.step2 │ ├── simulation.cfg │ ├── simulation.msh │ ├── simulation.opt │ └── test.cmake ├── 54_bct_elt_opt_input │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ ├── simulation.msh │ │ │ └── simulation.opt │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ ├── crss.step1 │ │ │ │ └── crss.step2 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ ├── defrate.step1 │ │ │ │ └── defrate.step2 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ ├── defrate_eq.step1 │ │ │ │ └── defrate_eq.step2 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ ├── defrate_pl.step1 │ │ │ │ └── defrate_pl.step2 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ ├── defrate_pl_eq.step1 │ │ │ │ └── defrate_pl_eq.step2 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ ├── ori.step1 │ │ │ │ └── ori.step2 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ ├── rotrate.step1 │ │ │ │ └── rotrate.step2 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ ├── slip.step1 │ │ │ │ └── slip.step2 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ ├── sliprate.step1 │ │ │ │ └── sliprate.step2 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ ├── spinrate.step1 │ │ │ │ └── spinrate.step2 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ ├── strain.step1 │ │ │ │ └── strain.step2 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ ├── strain_el.step1 │ │ │ │ └── strain_el.step2 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ ├── strain_el_eq.step1 │ │ │ │ └── strain_el_eq.step2 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ ├── strain_eq.step1 │ │ │ │ └── strain_eq.step2 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ ├── strain_pl.step1 │ │ │ │ └── strain_pl.step2 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ ├── strain_pl_eq.step1 │ │ │ │ └── strain_pl_eq.step2 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ ├── stress.step1 │ │ │ │ └── stress.step2 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ ├── stress_eq.step1 │ │ │ │ └── stress_eq.step2 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ ├── velgrad.step1 │ │ │ │ └── velgrad.step2 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ ├── work.step1 │ │ │ │ └── work.step2 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ ├── work_pl.step1 │ │ │ │ └── work_pl.step2 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ ├── workrate.step1 │ │ │ │ └── workrate.step2 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ ├── workrate_pl.step1 │ │ │ │ └── workrate_pl.step2 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ ├── coo.step1 │ │ │ └── coo.step2 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ ├── disp.step1 │ │ │ └── disp.step2 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ ├── vel.step1 │ │ │ └── vel.step2 │ ├── simulation.cfg │ ├── simulation.msh │ ├── simulation.opt │ └── test.cmake-disable ├── 55_bcc_112_elt_opt_input │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ ├── simulation.msh │ │ │ └── simulation.opt │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ ├── crss.step1 │ │ │ │ └── crss.step2 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ ├── defrate.step1 │ │ │ │ └── defrate.step2 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ ├── defrate_eq.step1 │ │ │ │ └── defrate_eq.step2 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ ├── defrate_pl.step1 │ │ │ │ └── defrate_pl.step2 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ ├── defrate_pl_eq.step1 │ │ │ │ └── defrate_pl_eq.step2 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ ├── ori.step1 │ │ │ │ └── ori.step2 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ ├── rotrate.step1 │ │ │ │ └── rotrate.step2 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ ├── slip.step1 │ │ │ │ └── slip.step2 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ ├── sliprate.step1 │ │ │ │ └── sliprate.step2 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ ├── spinrate.step1 │ │ │ │ └── spinrate.step2 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ ├── strain.step1 │ │ │ │ └── strain.step2 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ ├── strain_el.step1 │ │ │ │ └── strain_el.step2 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ ├── strain_el_eq.step1 │ │ │ │ └── strain_el_eq.step2 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ ├── strain_eq.step1 │ │ │ │ └── strain_eq.step2 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ ├── strain_pl.step1 │ │ │ │ └── strain_pl.step2 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ ├── strain_pl_eq.step1 │ │ │ │ └── strain_pl_eq.step2 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ ├── stress.step1 │ │ │ │ └── stress.step2 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ ├── stress_eq.step1 │ │ │ │ └── stress_eq.step2 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ ├── velgrad.step1 │ │ │ │ └── velgrad.step2 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ ├── work.step1 │ │ │ │ └── work.step2 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ ├── work_pl.step1 │ │ │ │ └── work_pl.step2 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ ├── workrate.step1 │ │ │ │ └── workrate.step2 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ ├── workrate_pl.step1 │ │ │ │ └── workrate_pl.step2 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ ├── coo.step1 │ │ │ └── coo.step2 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ ├── disp.step1 │ │ │ └── disp.step2 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ ├── vel.step1 │ │ │ └── vel.step2 │ ├── simulation.cfg │ ├── simulation.msh │ ├── simulation.opt │ └── test.cmake ├── 56_bcc_elset_opt_input │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ ├── simulation.msh │ │ │ └── simulation.opt │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ ├── crss.step1 │ │ │ │ └── crss.step2 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ ├── defrate.step1 │ │ │ │ └── defrate.step2 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ ├── defrate_eq.step1 │ │ │ │ └── defrate_eq.step2 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ ├── defrate_pl.step1 │ │ │ │ └── defrate_pl.step2 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ ├── defrate_pl_eq.step1 │ │ │ │ └── defrate_pl_eq.step2 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ ├── ori.step1 │ │ │ │ └── ori.step2 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ ├── rotrate.step1 │ │ │ │ └── rotrate.step2 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ ├── slip.step1 │ │ │ │ └── slip.step2 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ ├── sliprate.step1 │ │ │ │ └── sliprate.step2 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ ├── spinrate.step1 │ │ │ │ └── spinrate.step2 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ ├── strain.step1 │ │ │ │ └── strain.step2 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ ├── strain_el.step1 │ │ │ │ └── strain_el.step2 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ ├── strain_el_eq.step1 │ │ │ │ └── strain_el_eq.step2 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ ├── strain_eq.step1 │ │ │ │ └── strain_eq.step2 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ ├── strain_pl.step1 │ │ │ │ └── strain_pl.step2 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ ├── strain_pl_eq.step1 │ │ │ │ └── strain_pl_eq.step2 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ ├── stress.step1 │ │ │ │ └── stress.step2 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ ├── stress_eq.step1 │ │ │ │ └── stress_eq.step2 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ ├── velgrad.step1 │ │ │ │ └── velgrad.step2 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ ├── work.step1 │ │ │ │ └── work.step2 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ ├── work_pl.step1 │ │ │ │ └── work_pl.step2 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ ├── workrate.step1 │ │ │ │ └── workrate.step2 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ ├── workrate_pl.step1 │ │ │ │ └── workrate_pl.step2 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ ├── coo.step1 │ │ │ └── coo.step2 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ ├── disp.step1 │ │ │ └── disp.step2 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ ├── vel.step1 │ │ │ └── vel.step2 │ ├── simulation.cfg │ ├── simulation.msh │ ├── simulation.opt │ └── test.cmake ├── 57_fcc_elset_opt_input │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ ├── simulation.msh │ │ │ └── simulation.opt │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ ├── crss.step1 │ │ │ │ └── crss.step2 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ ├── defrate.step1 │ │ │ │ └── defrate.step2 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ ├── defrate_eq.step1 │ │ │ │ └── defrate_eq.step2 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ ├── defrate_pl.step1 │ │ │ │ └── defrate_pl.step2 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ ├── defrate_pl_eq.step1 │ │ │ │ └── defrate_pl_eq.step2 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ ├── ori.step1 │ │ │ │ └── ori.step2 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ ├── rotrate.step1 │ │ │ │ └── rotrate.step2 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ ├── slip.step1 │ │ │ │ └── slip.step2 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ ├── sliprate.step1 │ │ │ │ └── sliprate.step2 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ ├── spinrate.step1 │ │ │ │ └── spinrate.step2 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ ├── strain.step1 │ │ │ │ └── strain.step2 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ ├── strain_el.step1 │ │ │ │ └── strain_el.step2 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ ├── strain_el_eq.step1 │ │ │ │ └── strain_el_eq.step2 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ ├── strain_eq.step1 │ │ │ │ └── strain_eq.step2 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ ├── strain_pl.step1 │ │ │ │ └── strain_pl.step2 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ ├── strain_pl_eq.step1 │ │ │ │ └── strain_pl_eq.step2 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ ├── stress.step1 │ │ │ │ └── stress.step2 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ ├── stress_eq.step1 │ │ │ │ └── stress_eq.step2 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ ├── velgrad.step1 │ │ │ │ └── velgrad.step2 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ ├── work.step1 │ │ │ │ └── work.step2 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ ├── work_pl.step1 │ │ │ │ └── work_pl.step2 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ ├── workrate.step1 │ │ │ │ └── workrate.step2 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ ├── workrate_pl.step1 │ │ │ │ └── workrate_pl.step2 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ ├── coo.step1 │ │ │ └── coo.step2 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ ├── disp.step1 │ │ │ └── disp.step2 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ ├── vel.step1 │ │ │ └── vel.step2 │ ├── simulation.cfg │ ├── simulation.msh │ ├── simulation.opt │ └── test.cmake ├── 58_hcp_elset_opt_input │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ ├── simulation.msh │ │ │ └── simulation.opt │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ ├── crss.step1 │ │ │ │ └── crss.step2 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ ├── defrate.step1 │ │ │ │ └── defrate.step2 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ ├── defrate_eq.step1 │ │ │ │ └── defrate_eq.step2 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ ├── defrate_pl.step1 │ │ │ │ └── defrate_pl.step2 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ ├── defrate_pl_eq.step1 │ │ │ │ └── defrate_pl_eq.step2 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ ├── ori.step1 │ │ │ │ └── ori.step2 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ ├── rotrate.step1 │ │ │ │ └── rotrate.step2 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ ├── slip.step1 │ │ │ │ └── slip.step2 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ ├── sliprate.step1 │ │ │ │ └── sliprate.step2 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ ├── spinrate.step1 │ │ │ │ └── spinrate.step2 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ ├── strain.step1 │ │ │ │ └── strain.step2 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ ├── strain_el.step1 │ │ │ │ └── strain_el.step2 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ ├── strain_el_eq.step1 │ │ │ │ └── strain_el_eq.step2 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ ├── strain_eq.step1 │ │ │ │ └── strain_eq.step2 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ ├── strain_pl.step1 │ │ │ │ └── strain_pl.step2 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ ├── strain_pl_eq.step1 │ │ │ │ └── strain_pl_eq.step2 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ ├── stress.step1 │ │ │ │ └── stress.step2 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ ├── stress_eq.step1 │ │ │ │ └── stress_eq.step2 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ ├── velgrad.step1 │ │ │ │ └── velgrad.step2 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ ├── work.step1 │ │ │ │ └── work.step2 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ ├── work_pl.step1 │ │ │ │ └── work_pl.step2 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ ├── workrate.step1 │ │ │ │ └── workrate.step2 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ ├── workrate_pl.step1 │ │ │ │ └── workrate_pl.step2 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ ├── coo.step1 │ │ │ └── coo.step2 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ ├── disp.step1 │ │ │ └── disp.step2 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ ├── vel.step1 │ │ │ └── vel.step2 │ ├── simulation.cfg │ ├── simulation.msh │ ├── simulation.opt │ └── test.cmake ├── 59_bct_elset_opt_input │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ ├── simulation.msh │ │ │ └── simulation.opt │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ ├── crss.step1 │ │ │ │ └── crss.step2 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ ├── defrate.step1 │ │ │ │ └── defrate.step2 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ ├── defrate_eq.step1 │ │ │ │ └── defrate_eq.step2 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ ├── defrate_pl.step1 │ │ │ │ └── defrate_pl.step2 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ ├── defrate_pl_eq.step1 │ │ │ │ └── defrate_pl_eq.step2 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ ├── ori.step1 │ │ │ │ └── ori.step2 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ ├── rotrate.step1 │ │ │ │ └── rotrate.step2 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ ├── slip.step1 │ │ │ │ └── slip.step2 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ ├── sliprate.step1 │ │ │ │ └── sliprate.step2 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ ├── spinrate.step1 │ │ │ │ └── spinrate.step2 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ ├── strain.step1 │ │ │ │ └── strain.step2 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ ├── strain_el.step1 │ │ │ │ └── strain_el.step2 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ ├── strain_el_eq.step1 │ │ │ │ └── strain_el_eq.step2 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ ├── strain_eq.step1 │ │ │ │ └── strain_eq.step2 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ ├── strain_pl.step1 │ │ │ │ └── strain_pl.step2 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ ├── strain_pl_eq.step1 │ │ │ │ └── strain_pl_eq.step2 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ ├── stress.step1 │ │ │ │ └── stress.step2 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ ├── stress_eq.step1 │ │ │ │ └── stress_eq.step2 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ ├── velgrad.step1 │ │ │ │ └── velgrad.step2 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ ├── work.step1 │ │ │ │ └── work.step2 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ ├── work_pl.step1 │ │ │ │ └── work_pl.step2 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ ├── workrate.step1 │ │ │ │ └── workrate.step2 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ ├── workrate_pl.step1 │ │ │ │ └── workrate_pl.step2 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ ├── coo.step1 │ │ │ └── coo.step2 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ ├── disp.step1 │ │ │ └── disp.step2 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ ├── vel.step1 │ │ │ └── vel.step2 │ ├── simulation.cfg │ ├── simulation.msh │ ├── simulation.opt │ └── test.cmake-disable ├── 60_bcc_112_elset_opt_input │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ ├── simulation.msh │ │ │ └── simulation.opt │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ ├── crss.step1 │ │ │ │ └── crss.step2 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ ├── defrate.step1 │ │ │ │ └── defrate.step2 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ ├── defrate_eq.step1 │ │ │ │ └── defrate_eq.step2 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ ├── defrate_pl.step1 │ │ │ │ └── defrate_pl.step2 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ ├── defrate_pl_eq.step1 │ │ │ │ └── defrate_pl_eq.step2 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ ├── ori.step1 │ │ │ │ └── ori.step2 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ ├── rotrate.step1 │ │ │ │ └── rotrate.step2 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ ├── slip.step1 │ │ │ │ └── slip.step2 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ ├── sliprate.step1 │ │ │ │ └── sliprate.step2 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ ├── spinrate.step1 │ │ │ │ └── spinrate.step2 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ ├── strain.step1 │ │ │ │ └── strain.step2 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ ├── strain_el.step1 │ │ │ │ └── strain_el.step2 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ ├── strain_el_eq.step1 │ │ │ │ └── strain_el_eq.step2 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ ├── strain_eq.step1 │ │ │ │ └── strain_eq.step2 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ ├── strain_pl.step1 │ │ │ │ └── strain_pl.step2 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ ├── strain_pl_eq.step1 │ │ │ │ └── strain_pl_eq.step2 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ ├── stress.step1 │ │ │ │ └── stress.step2 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ ├── stress_eq.step1 │ │ │ │ └── stress_eq.step2 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ ├── velgrad.step1 │ │ │ │ └── velgrad.step2 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ ├── work.step1 │ │ │ │ └── work.step2 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ ├── work_pl.step1 │ │ │ │ └── work_pl.step2 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ ├── workrate.step1 │ │ │ │ └── workrate.step2 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ ├── workrate_pl.step1 │ │ │ │ └── workrate_pl.step2 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ ├── coo.step1 │ │ │ └── coo.step2 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ ├── disp.step1 │ │ │ └── disp.step2 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ ├── vel.step1 │ │ │ └── vel.step2 │ ├── simulation.cfg │ ├── simulation.msh │ ├── simulation.opt │ └── test.cmake ├── 61_restart_test_1 │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ ├── crss.step1 │ │ │ │ └── crss.step2 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ ├── defrate.step1 │ │ │ │ └── defrate.step2 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ ├── defrate_eq.step1 │ │ │ │ └── defrate_eq.step2 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ ├── defrate_pl.step1 │ │ │ │ └── defrate_pl.step2 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ ├── defrate_pl_eq.step1 │ │ │ │ └── defrate_pl_eq.step2 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ ├── ori.step1 │ │ │ │ └── ori.step2 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ ├── slip.step1 │ │ │ │ └── slip.step2 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ ├── sliprate.step1 │ │ │ │ └── sliprate.step2 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ ├── spinrate.step1 │ │ │ │ └── spinrate.step2 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ ├── strain.step1 │ │ │ │ └── strain.step2 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ ├── strain_el.step1 │ │ │ │ └── strain_el.step2 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ ├── strain_el_eq.step1 │ │ │ │ └── strain_el_eq.step2 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ ├── strain_eq.step1 │ │ │ │ └── strain_eq.step2 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ ├── strain_pl.step1 │ │ │ │ └── strain_pl.step2 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ ├── strain_pl_eq.step1 │ │ │ │ └── strain_pl_eq.step2 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ ├── stress.step1 │ │ │ │ └── stress.step2 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ ├── stress_eq.step1 │ │ │ │ └── stress_eq.step2 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ ├── velgrad.step1 │ │ │ │ └── velgrad.step2 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ ├── work.step1 │ │ │ │ └── work.step2 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ ├── work_pl.step1 │ │ │ │ └── work_pl.step2 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ ├── workrate.step1 │ │ │ │ └── workrate.step2 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ ├── workrate_pl.step1 │ │ │ │ └── workrate_pl.step2 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ ├── coo.step1 │ │ │ └── coo.step2 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ ├── disp.step1 │ │ │ └── disp.step2 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ ├── vel.step1 │ │ │ └── vel.step2 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 62_restart_test_2 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake_disable ├── 63_target_load │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ ├── simulation.msh │ │ │ └── simulation.tess │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ └── crss.step1 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ └── defrate.step1 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ └── defrate_eq.step1 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ └── defrate_pl.step1 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ └── defrate_pl_eq.step1 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ └── ori.step1 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ └── rotrate.step1 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ └── slip.step1 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ └── sliprate.step1 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ └── spinrate.step1 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ └── strain.step1 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ └── strain_el.step1 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ └── strain_el_eq.step1 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ └── strain_eq.step1 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ └── strain_pl.step1 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ └── strain_pl_eq.step1 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ └── stress.step1 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ └── stress_eq.step1 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ └── velgrad.step1 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ └── work.step1 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ └── work_pl.step1 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ └── workrate.step1 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ └── workrate_pl.step1 │ │ │ ├── forces │ │ │ ├── x0 │ │ │ ├── x1 │ │ │ ├── y0 │ │ │ ├── y1 │ │ │ ├── z0 │ │ │ └── z1 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ └── coo.step1 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ └── disp.step1 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ └── vel.step1 │ ├── simulation.cfg │ ├── simulation.msh │ ├── simulation.tess │ └── test.cmake ├── 64_target_strain_dtime │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ ├── crss.step1 │ │ │ │ └── crss.step2 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ ├── defrate.step1 │ │ │ │ └── defrate.step2 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ ├── defrate_eq.step1 │ │ │ │ └── defrate_eq.step2 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ ├── defrate_pl.step1 │ │ │ │ └── defrate_pl.step2 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ ├── defrate_pl_eq.step1 │ │ │ │ └── defrate_pl_eq.step2 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ ├── ori.step1 │ │ │ │ └── ori.step2 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ ├── rotrate.step1 │ │ │ │ └── rotrate.step2 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ ├── slip.step1 │ │ │ │ └── slip.step2 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ ├── sliprate.step1 │ │ │ │ └── sliprate.step2 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ ├── spinrate.step1 │ │ │ │ └── spinrate.step2 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ ├── strain.step1 │ │ │ │ └── strain.step2 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ ├── strain_el.step1 │ │ │ │ └── strain_el.step2 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ ├── strain_el_eq.step1 │ │ │ │ └── strain_el_eq.step2 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ ├── strain_eq.step1 │ │ │ │ └── strain_eq.step2 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ ├── strain_pl.step1 │ │ │ │ └── strain_pl.step2 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ ├── strain_pl_eq.step1 │ │ │ │ └── strain_pl_eq.step2 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ ├── stress.step1 │ │ │ │ └── stress.step2 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ ├── stress_eq.step1 │ │ │ │ └── stress_eq.step2 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ ├── velgrad.step1 │ │ │ │ └── velgrad.step2 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ ├── work.step1 │ │ │ │ └── work.step2 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ ├── work_pl.step1 │ │ │ │ └── work_pl.step2 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ ├── workrate.step1 │ │ │ │ └── workrate.step2 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ ├── workrate_pl.step1 │ │ │ │ └── workrate_pl.step2 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ ├── coo.step1 │ │ │ └── coo.step2 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ ├── disp.step1 │ │ │ └── disp.step2 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ ├── vel.step1 │ │ │ └── vel.step2 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 65_target_strain_dstrain │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ ├── crss.step1 │ │ │ │ └── crss.step2 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ ├── defrate.step1 │ │ │ │ └── defrate.step2 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ ├── defrate_eq.step1 │ │ │ │ └── defrate_eq.step2 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ ├── defrate_pl.step1 │ │ │ │ └── defrate_pl.step2 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ ├── defrate_pl_eq.step1 │ │ │ │ └── defrate_pl_eq.step2 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ ├── ori.step1 │ │ │ │ └── ori.step2 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ ├── rotrate.step1 │ │ │ │ └── rotrate.step2 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ ├── slip.step1 │ │ │ │ └── slip.step2 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ ├── sliprate.step1 │ │ │ │ └── sliprate.step2 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ ├── spinrate.step1 │ │ │ │ └── spinrate.step2 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ ├── strain.step1 │ │ │ │ └── strain.step2 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ ├── strain_el.step1 │ │ │ │ └── strain_el.step2 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ ├── strain_el_eq.step1 │ │ │ │ └── strain_el_eq.step2 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ ├── strain_eq.step1 │ │ │ │ └── strain_eq.step2 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ ├── strain_pl.step1 │ │ │ │ └── strain_pl.step2 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ ├── strain_pl_eq.step1 │ │ │ │ └── strain_pl_eq.step2 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ ├── stress.step1 │ │ │ │ └── stress.step2 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ ├── stress_eq.step1 │ │ │ │ └── stress_eq.step2 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ ├── velgrad.step1 │ │ │ │ └── velgrad.step2 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ ├── work.step1 │ │ │ │ └── work.step2 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ ├── work_pl.step1 │ │ │ │ └── work_pl.step2 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ ├── workrate.step1 │ │ │ │ └── workrate.step2 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ ├── workrate_pl.step1 │ │ │ │ └── workrate_pl.step2 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ ├── coo.step1 │ │ │ └── coo.step2 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ ├── disp.step1 │ │ │ └── disp.step2 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ ├── vel.step1 │ │ │ └── vel.step2 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 66_target_strain_incr │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ ├── crss.step1 │ │ │ │ └── crss.step2 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ ├── defrate.step1 │ │ │ │ └── defrate.step2 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ ├── defrate_eq.step1 │ │ │ │ └── defrate_eq.step2 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ ├── defrate_pl.step1 │ │ │ │ └── defrate_pl.step2 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ ├── defrate_pl_eq.step1 │ │ │ │ └── defrate_pl_eq.step2 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ ├── ori.step1 │ │ │ │ └── ori.step2 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ ├── rotrate.step1 │ │ │ │ └── rotrate.step2 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ ├── slip.step1 │ │ │ │ └── slip.step2 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ ├── sliprate.step1 │ │ │ │ └── sliprate.step2 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ ├── spinrate.step1 │ │ │ │ └── spinrate.step2 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ ├── strain.step1 │ │ │ │ └── strain.step2 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ ├── strain_el.step1 │ │ │ │ └── strain_el.step2 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ ├── strain_el_eq.step1 │ │ │ │ └── strain_el_eq.step2 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ ├── strain_eq.step1 │ │ │ │ └── strain_eq.step2 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ ├── strain_pl.step1 │ │ │ │ └── strain_pl.step2 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ ├── strain_pl_eq.step1 │ │ │ │ └── strain_pl_eq.step2 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ ├── stress.step1 │ │ │ │ └── stress.step2 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ ├── stress_eq.step1 │ │ │ │ └── stress_eq.step2 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ ├── velgrad.step1 │ │ │ │ └── velgrad.step2 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ ├── work.step1 │ │ │ │ └── work.step2 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ ├── work_pl.step1 │ │ │ │ └── work_pl.step2 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ ├── workrate.step1 │ │ │ │ └── workrate.step2 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ ├── workrate_pl.step1 │ │ │ │ └── workrate_pl.step2 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ ├── coo.step1 │ │ │ └── coo.step2 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ ├── disp.step1 │ │ │ └── disp.step2 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ ├── vel.step1 │ │ │ └── vel.step2 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── 67_target_time_dtime │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ ├── crss.step1 │ │ │ │ └── crss.step2 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ ├── defrate.step1 │ │ │ │ └── defrate.step2 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ ├── defrate_eq.step1 │ │ │ │ └── defrate_eq.step2 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ ├── defrate_pl.step1 │ │ │ │ └── defrate_pl.step2 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ ├── defrate_pl_eq.step1 │ │ │ │ └── defrate_pl_eq.step2 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ ├── ori.step1 │ │ │ │ └── ori.step2 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ ├── rotrate.step1 │ │ │ │ └── rotrate.step2 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ ├── slip.step1 │ │ │ │ └── slip.step2 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ ├── sliprate.step1 │ │ │ │ └── sliprate.step2 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ ├── spinrate.step1 │ │ │ │ └── spinrate.step2 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ ├── strain.step1 │ │ │ │ └── strain.step2 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ ├── strain_el.step1 │ │ │ │ └── strain_el.step2 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ ├── strain_el_eq.step1 │ │ │ │ └── strain_el_eq.step2 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ ├── strain_eq.step1 │ │ │ │ └── strain_eq.step2 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ ├── strain_pl.step1 │ │ │ │ └── strain_pl.step2 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ ├── strain_pl_eq.step1 │ │ │ │ └── strain_pl_eq.step2 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ ├── stress.step1 │ │ │ │ └── stress.step2 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ ├── stress_eq.step1 │ │ │ │ └── stress_eq.step2 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ ├── velgrad.step1 │ │ │ │ └── velgrad.step2 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ ├── work.step1 │ │ │ │ └── work.step2 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ ├── work_pl.step1 │ │ │ │ └── work_pl.step2 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ ├── workrate.step1 │ │ │ │ └── workrate.step2 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ ├── workrate_pl.step1 │ │ │ │ └── workrate_pl.step2 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ ├── coo.step1 │ │ │ └── coo.step2 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ ├── disp.step1 │ │ │ └── disp.step2 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ ├── vel.step1 │ │ │ └── vel.step2 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake-disable ├── 68_target_time_dtime2 │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ ├── crss.step1 │ │ │ │ └── crss.step2 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ ├── defrate.step1 │ │ │ │ └── defrate.step2 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ ├── defrate_eq.step1 │ │ │ │ └── defrate_eq.step2 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ ├── defrate_pl.step1 │ │ │ │ └── defrate_pl.step2 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ ├── defrate_pl_eq.step1 │ │ │ │ └── defrate_pl_eq.step2 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ ├── ori.step1 │ │ │ │ └── ori.step2 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ ├── rotrate.step1 │ │ │ │ └── rotrate.step2 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ ├── slip.step1 │ │ │ │ └── slip.step2 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ ├── sliprate.step1 │ │ │ │ └── sliprate.step2 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ ├── spinrate.step1 │ │ │ │ └── spinrate.step2 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ ├── strain.step1 │ │ │ │ └── strain.step2 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ ├── strain_el.step1 │ │ │ │ └── strain_el.step2 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ ├── strain_el_eq.step1 │ │ │ │ └── strain_el_eq.step2 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ ├── strain_eq.step1 │ │ │ │ └── strain_eq.step2 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ ├── strain_pl.step1 │ │ │ │ └── strain_pl.step2 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ ├── strain_pl_eq.step1 │ │ │ │ └── strain_pl_eq.step2 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ ├── stress.step1 │ │ │ │ └── stress.step2 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ ├── stress_eq.step1 │ │ │ │ └── stress_eq.step2 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ ├── velgrad.step1 │ │ │ │ └── velgrad.step2 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ ├── work.step1 │ │ │ │ └── work.step2 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ ├── work_pl.step1 │ │ │ │ └── work_pl.step2 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ ├── workrate.step1 │ │ │ │ └── workrate.step2 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ ├── workrate_pl.step1 │ │ │ │ └── workrate_pl.step2 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ ├── coo.step1 │ │ │ └── coo.step2 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ ├── disp.step1 │ │ │ └── disp.step2 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ ├── vel.step1 │ │ │ └── vel.step2 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake-disable ├── 69_target_time_incr │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ ├── crss.step1 │ │ │ │ └── crss.step2 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ ├── defrate.step1 │ │ │ │ └── defrate.step2 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ ├── defrate_eq.step1 │ │ │ │ └── defrate_eq.step2 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ ├── defrate_pl.step1 │ │ │ │ └── defrate_pl.step2 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ ├── defrate_pl_eq.step1 │ │ │ │ └── defrate_pl_eq.step2 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ ├── ori.step1 │ │ │ │ └── ori.step2 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ ├── rotrate.step1 │ │ │ │ └── rotrate.step2 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ ├── slip.step1 │ │ │ │ └── slip.step2 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ ├── sliprate.step1 │ │ │ │ └── sliprate.step2 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ ├── spinrate.step1 │ │ │ │ └── spinrate.step2 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ ├── strain.step1 │ │ │ │ └── strain.step2 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ ├── strain_el.step1 │ │ │ │ └── strain_el.step2 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ ├── strain_el_eq.step1 │ │ │ │ └── strain_el_eq.step2 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ ├── strain_eq.step1 │ │ │ │ └── strain_eq.step2 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ ├── strain_pl.step1 │ │ │ │ └── strain_pl.step2 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ ├── strain_pl_eq.step1 │ │ │ │ └── strain_pl_eq.step2 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ ├── stress.step1 │ │ │ │ └── stress.step2 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ ├── stress_eq.step1 │ │ │ │ └── stress_eq.step2 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ ├── velgrad.step1 │ │ │ │ └── velgrad.step2 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ ├── work.step1 │ │ │ │ └── work.step2 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ ├── work_pl.step1 │ │ │ │ └── work_pl.step2 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ ├── workrate.step1 │ │ │ │ └── workrate.step2 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ ├── workrate_pl.step1 │ │ │ │ └── workrate_pl.step2 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ ├── coo.step1 │ │ │ └── coo.step2 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ ├── disp.step1 │ │ │ └── disp.step2 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ ├── vel.step1 │ │ │ └── vel.step2 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake-disable ├── LEGACY_target_load │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ ├── simulation.msh │ │ │ └── simulation.tess │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ └── crss.step1 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ └── defrate.step1 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ └── defrate_eq.step1 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ └── defrate_pl.step1 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ └── defrate_pl_eq.step1 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ └── ori.step1 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ └── rotrate.step1 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ └── slip.step1 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ └── sliprate.step1 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ └── spinrate.step1 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ └── strain.step1 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ └── strain_el.step1 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ └── strain_el_eq.step1 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ └── strain_eq.step1 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ └── strain_pl.step1 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ └── strain_pl_eq.step1 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ └── stress.step1 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ └── stress_eq.step1 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ └── velgrad.step1 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ └── work.step1 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ └── work_pl.step1 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ └── workrate.step1 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ └── workrate_pl.step1 │ │ │ ├── forces │ │ │ ├── x0 │ │ │ ├── x1 │ │ │ ├── y0 │ │ │ ├── y1 │ │ │ ├── z0 │ │ │ └── z1 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ └── coo.step1 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ └── disp.step1 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ └── vel.step1 │ ├── simulation.cfg │ ├── simulation.msh │ ├── simulation.tess │ └── test.cmake ├── LEGACY_triaxial_clr │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ ├── crss.step1 │ │ │ │ ├── crss.step2 │ │ │ │ └── crss.step3 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ ├── defrate.step1 │ │ │ │ ├── defrate.step2 │ │ │ │ └── defrate.step3 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ ├── defrate_eq.step1 │ │ │ │ ├── defrate_eq.step2 │ │ │ │ └── defrate_eq.step3 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ ├── defrate_pl.step1 │ │ │ │ ├── defrate_pl.step2 │ │ │ │ └── defrate_pl.step3 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ ├── defrate_pl_eq.step1 │ │ │ │ ├── defrate_pl_eq.step2 │ │ │ │ └── defrate_pl_eq.step3 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ ├── ori.step1 │ │ │ │ ├── ori.step2 │ │ │ │ └── ori.step3 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ ├── rotrate.step1 │ │ │ │ ├── rotrate.step2 │ │ │ │ └── rotrate.step3 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ ├── slip.step1 │ │ │ │ ├── slip.step2 │ │ │ │ └── slip.step3 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ ├── sliprate.step1 │ │ │ │ ├── sliprate.step2 │ │ │ │ └── sliprate.step3 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ ├── spinrate.step1 │ │ │ │ ├── spinrate.step2 │ │ │ │ └── spinrate.step3 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ ├── strain.step1 │ │ │ │ ├── strain.step2 │ │ │ │ └── strain.step3 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ ├── strain_el.step1 │ │ │ │ ├── strain_el.step2 │ │ │ │ └── strain_el.step3 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ ├── strain_el_eq.step1 │ │ │ │ ├── strain_el_eq.step2 │ │ │ │ └── strain_el_eq.step3 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ ├── strain_eq.step1 │ │ │ │ ├── strain_eq.step2 │ │ │ │ └── strain_eq.step3 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ ├── strain_pl.step1 │ │ │ │ ├── strain_pl.step2 │ │ │ │ └── strain_pl.step3 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ ├── strain_pl_eq.step1 │ │ │ │ ├── strain_pl_eq.step2 │ │ │ │ └── strain_pl_eq.step3 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ ├── stress.step1 │ │ │ │ ├── stress.step2 │ │ │ │ └── stress.step3 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ ├── stress_eq.step1 │ │ │ │ ├── stress_eq.step2 │ │ │ │ └── stress_eq.step3 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ ├── velgrad.step1 │ │ │ │ ├── velgrad.step2 │ │ │ │ └── velgrad.step3 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ ├── work.step1 │ │ │ │ ├── work.step2 │ │ │ │ └── work.step3 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ ├── work_pl.step1 │ │ │ │ ├── work_pl.step2 │ │ │ │ └── work_pl.step3 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ ├── workrate.step1 │ │ │ │ ├── workrate.step2 │ │ │ │ └── workrate.step3 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ ├── workrate_pl.step1 │ │ │ │ ├── workrate_pl.step2 │ │ │ │ └── workrate_pl.step3 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ ├── coo.step1 │ │ │ ├── coo.step2 │ │ │ └── coo.step3 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ ├── disp.step1 │ │ │ ├── disp.step2 │ │ │ └── disp.step3 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ ├── vel.step1 │ │ │ ├── vel.step2 │ │ │ └── vel.step3 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake-disable ├── LEGACY_triaxial_csr │ ├── ref.sim │ │ ├── .sim │ │ ├── inputs │ │ │ ├── simulation.cfg │ │ │ └── simulation.msh │ │ └── results │ │ │ ├── elts │ │ │ ├── crss │ │ │ │ ├── crss.step0 │ │ │ │ ├── crss.step1 │ │ │ │ └── crss.step2 │ │ │ ├── defrate │ │ │ │ ├── defrate.step0 │ │ │ │ ├── defrate.step1 │ │ │ │ └── defrate.step2 │ │ │ ├── defrate_eq │ │ │ │ ├── defrate_eq.step0 │ │ │ │ ├── defrate_eq.step1 │ │ │ │ └── defrate_eq.step2 │ │ │ ├── defrate_pl │ │ │ │ ├── defrate_pl.step0 │ │ │ │ ├── defrate_pl.step1 │ │ │ │ └── defrate_pl.step2 │ │ │ ├── defrate_pl_eq │ │ │ │ ├── defrate_pl_eq.step0 │ │ │ │ ├── defrate_pl_eq.step1 │ │ │ │ └── defrate_pl_eq.step2 │ │ │ ├── ori │ │ │ │ ├── ori.step0 │ │ │ │ ├── ori.step1 │ │ │ │ └── ori.step2 │ │ │ ├── rotrate │ │ │ │ ├── rotrate.step0 │ │ │ │ ├── rotrate.step1 │ │ │ │ └── rotrate.step2 │ │ │ ├── slip │ │ │ │ ├── slip.step0 │ │ │ │ ├── slip.step1 │ │ │ │ └── slip.step2 │ │ │ ├── sliprate │ │ │ │ ├── sliprate.step0 │ │ │ │ ├── sliprate.step1 │ │ │ │ └── sliprate.step2 │ │ │ ├── spinrate │ │ │ │ ├── spinrate.step0 │ │ │ │ ├── spinrate.step1 │ │ │ │ └── spinrate.step2 │ │ │ ├── strain │ │ │ │ ├── strain.step0 │ │ │ │ ├── strain.step1 │ │ │ │ └── strain.step2 │ │ │ ├── strain_el │ │ │ │ ├── strain_el.step0 │ │ │ │ ├── strain_el.step1 │ │ │ │ └── strain_el.step2 │ │ │ ├── strain_el_eq │ │ │ │ ├── strain_el_eq.step0 │ │ │ │ ├── strain_el_eq.step1 │ │ │ │ └── strain_el_eq.step2 │ │ │ ├── strain_eq │ │ │ │ ├── strain_eq.step0 │ │ │ │ ├── strain_eq.step1 │ │ │ │ └── strain_eq.step2 │ │ │ ├── strain_pl │ │ │ │ ├── strain_pl.step0 │ │ │ │ ├── strain_pl.step1 │ │ │ │ └── strain_pl.step2 │ │ │ ├── strain_pl_eq │ │ │ │ ├── strain_pl_eq.step0 │ │ │ │ ├── strain_pl_eq.step1 │ │ │ │ └── strain_pl_eq.step2 │ │ │ ├── stress │ │ │ │ ├── stress.step0 │ │ │ │ ├── stress.step1 │ │ │ │ └── stress.step2 │ │ │ ├── stress_eq │ │ │ │ ├── stress_eq.step0 │ │ │ │ ├── stress_eq.step1 │ │ │ │ └── stress_eq.step2 │ │ │ ├── velgrad │ │ │ │ ├── velgrad.step0 │ │ │ │ ├── velgrad.step1 │ │ │ │ └── velgrad.step2 │ │ │ ├── work │ │ │ │ ├── work.step0 │ │ │ │ ├── work.step1 │ │ │ │ └── work.step2 │ │ │ ├── work_pl │ │ │ │ ├── work_pl.step0 │ │ │ │ ├── work_pl.step1 │ │ │ │ └── work_pl.step2 │ │ │ ├── workrate │ │ │ │ ├── workrate.step0 │ │ │ │ ├── workrate.step1 │ │ │ │ └── workrate.step2 │ │ │ └── workrate_pl │ │ │ │ ├── workrate_pl.step0 │ │ │ │ ├── workrate_pl.step1 │ │ │ │ └── workrate_pl.step2 │ │ │ └── nodes │ │ │ ├── coo │ │ │ ├── coo.step0 │ │ │ ├── coo.step1 │ │ │ └── coo.step2 │ │ │ ├── disp │ │ │ ├── disp.step0 │ │ │ ├── disp.step1 │ │ │ └── disp.step2 │ │ │ └── vel │ │ │ ├── vel.step0 │ │ │ ├── vel.step1 │ │ │ └── vel.step2 │ ├── simulation.cfg │ ├── simulation.msh │ └── test.cmake ├── Testing │ └── Temporary │ │ └── CTestCostData.txt ├── test.cmake └── test_mesh_gen │ ├── generate_mesh.sh │ ├── seed_points.txt │ ├── simulation.msh │ ├── simulation.tess │ ├── test_mesh.png │ └── test_tess.png └── tutorials ├── overwriting ├── generate_mesh.sh ├── orifile ├── plot_stress_time.gp ├── post_process.sh ├── run_example.sh ├── simulation.cfg ├── simulation.fib ├── simulation.msh ├── simulation.ori ├── simulation.phase └── simulation.tess ├── restart ├── generate_mesh.sh ├── post_process.sh ├── run_example.sh ├── simulation.msh ├── simulation.tess ├── simulation_cycle1.config └── simulation_cycle2.config ├── triaxCLR ├── generate_mesh.sh ├── plot_stress_strain.gp ├── plot_stress_time.gp ├── post_process.sh ├── run_example.sh ├── simulation.cfg ├── simulation.msh └── simulation.tess └── triaxCSR ├── generate_mesh.sh ├── plot_strain_time.gp ├── post_process.sh ├── run_example.sh ├── simulation.cfg ├── simulation.msh └── simulation.tess /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/CMakeCache.txt -------------------------------------------------------------------------------- /CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/COPYING -------------------------------------------------------------------------------- /Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/Doxyfile.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/README.md -------------------------------------------------------------------------------- /VERSIONS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/VERSIONS -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/_static/custom.css -------------------------------------------------------------------------------- /doc/_static/fdl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/_static/fdl.txt -------------------------------------------------------------------------------- /doc/_static/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/_static/gpl.txt -------------------------------------------------------------------------------- /doc/_static/my_theme.css: -------------------------------------------------------------------------------- 1 | .wy-nav-content { 2 | max-width: 1200px !important; 3 | } 4 | -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/config.rst -------------------------------------------------------------------------------- /doc/copying.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/copying.rst -------------------------------------------------------------------------------- /doc/crystal.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/crystal.rst -------------------------------------------------------------------------------- /doc/develhistory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/develhistory.rst -------------------------------------------------------------------------------- /doc/fdl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/fdl.rst -------------------------------------------------------------------------------- /doc/fileformat.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/fileformat.rst -------------------------------------------------------------------------------- /doc/gpl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/gpl.rst -------------------------------------------------------------------------------- /doc/images/0_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/images/0_all.png -------------------------------------------------------------------------------- /doc/images/1_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/images/1_all.png -------------------------------------------------------------------------------- /doc/images/1_stressstrain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/images/1_stressstrain.png -------------------------------------------------------------------------------- /doc/images/4_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/images/4_all.png -------------------------------------------------------------------------------- /doc/images/gripbcs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/images/gripbcs.png -------------------------------------------------------------------------------- /doc/images/minimalbcs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/images/minimalbcs.png -------------------------------------------------------------------------------- /doc/images/symmbcs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/images/symmbcs.png -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/introduction.rst -------------------------------------------------------------------------------- /doc/loading.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/loading.rst -------------------------------------------------------------------------------- /doc/material.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/material.rst -------------------------------------------------------------------------------- /doc/output.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/output.rst -------------------------------------------------------------------------------- /doc/running.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/running.rst -------------------------------------------------------------------------------- /doc/simple_rve_simulation/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/simple_rve_simulation/simulation.cfg -------------------------------------------------------------------------------- /doc/simple_simulation/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/simple_simulation/simulation.cfg -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/__init__.py -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/breadcrumbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/breadcrumbs.html -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/footer.html -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/layout.html -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/locale/de/LC_MESSAGES/sphinx.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/locale/de/LC_MESSAGES/sphinx.mo -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/locale/de/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/locale/de/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/locale/en/LC_MESSAGES/sphinx.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/locale/en/LC_MESSAGES/sphinx.mo -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/locale/en/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/locale/en/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/locale/es/LC_MESSAGES/sphinx.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/locale/es/LC_MESSAGES/sphinx.mo -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/locale/es/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/locale/es/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/locale/et/LC_MESSAGES/sphinx.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/locale/et/LC_MESSAGES/sphinx.mo -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/locale/et/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/locale/et/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/locale/fa_IR/LC_MESSAGES/sphinx.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/locale/fa_IR/LC_MESSAGES/sphinx.mo -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/locale/fa_IR/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/locale/fa_IR/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/locale/fr/LC_MESSAGES/sphinx.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/locale/fr/LC_MESSAGES/sphinx.mo -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/locale/fr/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/locale/fr/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/locale/it/LC_MESSAGES/sphinx.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/locale/it/LC_MESSAGES/sphinx.mo -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/locale/it/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/locale/it/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/locale/lt/LC_MESSAGES/sphinx.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/locale/lt/LC_MESSAGES/sphinx.mo -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/locale/lt/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/locale/lt/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/locale/nl/LC_MESSAGES/sphinx.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/locale/nl/LC_MESSAGES/sphinx.mo -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/locale/nl/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/locale/nl/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/locale/pl/LC_MESSAGES/sphinx.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/locale/pl/LC_MESSAGES/sphinx.mo -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/locale/pl/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/locale/pl/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/locale/pt/LC_MESSAGES/sphinx.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/locale/pt/LC_MESSAGES/sphinx.mo -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/locale/pt/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/locale/pt/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/locale/pt_BR/LC_MESSAGES/sphinx.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/locale/pt_BR/LC_MESSAGES/sphinx.mo -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/locale/pt_BR/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/locale/pt_BR/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/locale/ru/LC_MESSAGES/sphinx.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/locale/ru/LC_MESSAGES/sphinx.mo -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/locale/ru/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/locale/ru/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/locale/sphinx.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/locale/sphinx.pot -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/locale/sv/LC_MESSAGES/sphinx.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/locale/sv/LC_MESSAGES/sphinx.mo -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/locale/sv/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/locale/sv/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/locale/tr/LC_MESSAGES/sphinx.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/locale/tr/LC_MESSAGES/sphinx.mo -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/locale/tr/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/locale/tr/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/locale/zh_CN/LC_MESSAGES/sphinx.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/locale/zh_CN/LC_MESSAGES/sphinx.mo -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/locale/zh_CN/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/locale/zh_CN/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/search.html -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/searchbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/searchbox.html -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/static/css/badge_only.css -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/static/css/fonts/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/static/css/fonts/lato-bold.woff -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/static/css/fonts/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/static/css/fonts/lato-bold.woff2 -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/static/css/fonts/lato-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/static/css/fonts/lato-normal.woff -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/static/css/fonts/lato-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/static/css/fonts/lato-normal.woff2 -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/static/css/theme.css -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/static/js/badge_only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/static/js/badge_only.js -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/static/js/theme.js -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/theme.conf -------------------------------------------------------------------------------- /doc/sphinx_rtd_theme/versions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/sphinx_rtd_theme/versions.html -------------------------------------------------------------------------------- /doc/tutorials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials.rst -------------------------------------------------------------------------------- /doc/tutorials/cruciform_specimen_simulation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/cruciform_specimen_simulation.rst -------------------------------------------------------------------------------- /doc/tutorials/cruciform_specimen_simulation/mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/cruciform_specimen_simulation/mesh.png -------------------------------------------------------------------------------- /doc/tutorials/hpc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/hpc.rst -------------------------------------------------------------------------------- /doc/tutorials/multiaxial_clr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/multiaxial_clr.rst -------------------------------------------------------------------------------- /doc/tutorials/multiaxial_clr/3_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/multiaxial_clr/3_all.png -------------------------------------------------------------------------------- /doc/tutorials/multiaxial_clr/3_all2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/multiaxial_clr/3_all2.png -------------------------------------------------------------------------------- /doc/tutorials/multiaxial_csr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/multiaxial_csr.rst -------------------------------------------------------------------------------- /doc/tutorials/multiaxial_csr/2_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/multiaxial_csr/2_all.png -------------------------------------------------------------------------------- /doc/tutorials/multiaxial_csr/2_normalstraintime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/multiaxial_csr/2_normalstraintime.png -------------------------------------------------------------------------------- /doc/tutorials/overwriting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/overwriting.rst -------------------------------------------------------------------------------- /doc/tutorials/overwriting/5_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/overwriting/5_all.png -------------------------------------------------------------------------------- /doc/tutorials/overwriting/5_eltorientations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/overwriting/5_eltorientations.png -------------------------------------------------------------------------------- /doc/tutorials/overwriting/5_stresstime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/overwriting/5_stresstime.png -------------------------------------------------------------------------------- /doc/tutorials/periodic_rve_simulation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/periodic_rve_simulation.rst -------------------------------------------------------------------------------- /doc/tutorials/periodic_rve_simulation/mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/periodic_rve_simulation/mesh.png -------------------------------------------------------------------------------- /doc/tutorials/periodic_rve_simulation/pbc_strain11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/periodic_rve_simulation/pbc_strain11.png -------------------------------------------------------------------------------- /doc/tutorials/periodic_rve_simulation/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/periodic_rve_simulation/simulation.cfg -------------------------------------------------------------------------------- /doc/tutorials/periodic_rve_simulation/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/periodic_rve_simulation/simulation.msh -------------------------------------------------------------------------------- /doc/tutorials/restart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/restart.rst -------------------------------------------------------------------------------- /doc/tutorials/restart/4_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/restart/4_all.png -------------------------------------------------------------------------------- /doc/tutorials/restart/generate_mesh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/restart/generate_mesh.sh -------------------------------------------------------------------------------- /doc/tutorials/restart/post_process.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/restart/post_process.sh -------------------------------------------------------------------------------- /doc/tutorials/restart/run_example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/restart/run_example.sh -------------------------------------------------------------------------------- /doc/tutorials/restart/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/restart/simulation.msh -------------------------------------------------------------------------------- /doc/tutorials/restart/simulation.tess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/restart/simulation.tess -------------------------------------------------------------------------------- /doc/tutorials/restart/simulation_cycle1.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/restart/simulation_cycle1.config -------------------------------------------------------------------------------- /doc/tutorials/restart/simulation_cycle2.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/restart/simulation_cycle2.config -------------------------------------------------------------------------------- /doc/tutorials/simple_rve_simulation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/simple_rve_simulation.rst -------------------------------------------------------------------------------- /doc/tutorials/simple_rve_simulation.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/simple_rve_simulation.sim/.sim -------------------------------------------------------------------------------- /doc/tutorials/simple_rve_simulation.sim/results/mesh/train/train.step0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/tutorials/simple_rve_simulation/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/simple_rve_simulation/simulation.cfg -------------------------------------------------------------------------------- /doc/tutorials/simple_rve_simulation/simulation.cfg-grip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/simple_rve_simulation/simulation.cfg-grip -------------------------------------------------------------------------------- /doc/tutorials/simple_rve_simulation/simulation.cfg-rve: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/simple_rve_simulation/simulation.cfg-rve -------------------------------------------------------------------------------- /doc/tutorials/simple_rve_simulation/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/simple_rve_simulation/simulation.msh -------------------------------------------------------------------------------- /doc/tutorials/simple_rve_simulation/strain_field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/simple_rve_simulation/strain_field.png -------------------------------------------------------------------------------- /doc/tutorials/simple_rve_simulation/stress_field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/simple_rve_simulation/stress_field.png -------------------------------------------------------------------------------- /doc/tutorials/simple_rve_simulation/stress_strain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/simple_rve_simulation/stress_strain.png -------------------------------------------------------------------------------- /doc/tutorials/simple_simulation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/simple_simulation.rst -------------------------------------------------------------------------------- /doc/tutorials/simple_simulation.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/simple_simulation.sim/.sim -------------------------------------------------------------------------------- /doc/tutorials/simple_simulation/mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/simple_simulation/mesh.png -------------------------------------------------------------------------------- /doc/tutorials/simple_simulation/plot_stress_strain.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/simple_simulation/plot_stress_strain.gp -------------------------------------------------------------------------------- /doc/tutorials/simple_simulation/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/simple_simulation/simulation.cfg -------------------------------------------------------------------------------- /doc/tutorials/simple_simulation/simulation.cfg-ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/simple_simulation/simulation.cfg-ini -------------------------------------------------------------------------------- /doc/tutorials/simple_simulation/simulation.cfg-steps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/simple_simulation/simulation.cfg-steps -------------------------------------------------------------------------------- /doc/tutorials/simple_simulation/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/simple_simulation/simulation.msh -------------------------------------------------------------------------------- /doc/tutorials/simple_simulation/strain_field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/simple_simulation/strain_field.png -------------------------------------------------------------------------------- /doc/tutorials/simple_simulation/strain_field1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/simple_simulation/strain_field1.png -------------------------------------------------------------------------------- /doc/tutorials/simple_simulation/strain_field2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/simple_simulation/strain_field2.png -------------------------------------------------------------------------------- /doc/tutorials/simple_simulation/stress_field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/simple_simulation/stress_field.png -------------------------------------------------------------------------------- /doc/tutorials/simple_simulation/stress_field1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/simple_simulation/stress_field1.png -------------------------------------------------------------------------------- /doc/tutorials/simple_simulation/stress_field2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/simple_simulation/stress_field2.png -------------------------------------------------------------------------------- /doc/tutorials/simple_simulation/stress_strain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/simple_simulation/stress_strain.png -------------------------------------------------------------------------------- /doc/tutorials/triaxCLR/generate_mesh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/triaxCLR/generate_mesh.sh -------------------------------------------------------------------------------- /doc/tutorials/triaxCLR/plot_stress_strain.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/triaxCLR/plot_stress_strain.gp -------------------------------------------------------------------------------- /doc/tutorials/triaxCLR/plot_stress_time.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/triaxCLR/plot_stress_time.gp -------------------------------------------------------------------------------- /doc/tutorials/triaxCLR/post_process.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/triaxCLR/post_process.sh -------------------------------------------------------------------------------- /doc/tutorials/triaxCLR/run_example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/triaxCLR/run_example.sh -------------------------------------------------------------------------------- /doc/tutorials/triaxCLR/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/triaxCLR/simulation.cfg -------------------------------------------------------------------------------- /doc/tutorials/triaxCLR/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/triaxCLR/simulation.msh -------------------------------------------------------------------------------- /doc/tutorials/triaxCLR/simulation.tess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/triaxCLR/simulation.tess -------------------------------------------------------------------------------- /doc/tutorials/triaxCSR/generate_mesh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/triaxCSR/generate_mesh.sh -------------------------------------------------------------------------------- /doc/tutorials/triaxCSR/plot_strain_time.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/triaxCSR/plot_strain_time.gp -------------------------------------------------------------------------------- /doc/tutorials/triaxCSR/post_process.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/triaxCSR/post_process.sh -------------------------------------------------------------------------------- /doc/tutorials/triaxCSR/run_example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/triaxCSR/run_example.sh -------------------------------------------------------------------------------- /doc/tutorials/triaxCSR/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/triaxCSR/simulation.cfg -------------------------------------------------------------------------------- /doc/tutorials/triaxCSR/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/triaxCSR/simulation.msh -------------------------------------------------------------------------------- /doc/tutorials/triaxCSR/simulation.tess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/tutorials/triaxCSR/simulation.tess -------------------------------------------------------------------------------- /doc/versions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/doc/versions.rst -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/cmake_install.cmake -------------------------------------------------------------------------------- /src/fepx.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/fepx.f90 -------------------------------------------------------------------------------- /src/fepx2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/fepx2.f90 -------------------------------------------------------------------------------- /src/fepx_config.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/fepx_config.f90 -------------------------------------------------------------------------------- /src/fepx_config.f90.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/fepx_config.f90.in -------------------------------------------------------------------------------- /src/general/array_operations_mod.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/general/array_operations_mod.f90 -------------------------------------------------------------------------------- /src/general/crys_type_mod1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/general/crys_type_mod1.f90 -------------------------------------------------------------------------------- /src/general/crys_type_mod2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/general/crys_type_mod2.f90 -------------------------------------------------------------------------------- /src/general/crys_type_mod3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/general/crys_type_mod3.f90 -------------------------------------------------------------------------------- /src/general/exec_type_mod.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/general/exec_type_mod.f90 -------------------------------------------------------------------------------- /src/general/general_mod.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/general/general_mod.f90 -------------------------------------------------------------------------------- /src/general/loading_options_type_mod.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/general/loading_options_type_mod.f90 -------------------------------------------------------------------------------- /src/general/loading_type_mod1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/general/loading_type_mod1.f90 -------------------------------------------------------------------------------- /src/general/loading_type_mod2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/general/loading_type_mod2.f90 -------------------------------------------------------------------------------- /src/general/matrix_operations_mod.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/general/matrix_operations_mod.f90 -------------------------------------------------------------------------------- /src/general/mesh_type_mod.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/general/mesh_type_mod.f90 -------------------------------------------------------------------------------- /src/general/orientation_conversion_mod.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/general/orientation_conversion_mod.f90 -------------------------------------------------------------------------------- /src/general/printing_type_mod.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/general/printing_type_mod.f90 -------------------------------------------------------------------------------- /src/general/quadrature_mod.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/general/quadrature_mod.f90 -------------------------------------------------------------------------------- /src/general/shape_2d_mod.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/general/shape_2d_mod.f90 -------------------------------------------------------------------------------- /src/general/shape_3d_mod.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/general/shape_3d_mod.f90 -------------------------------------------------------------------------------- /src/general/types_mod.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/general/types_mod.f90 -------------------------------------------------------------------------------- /src/general/units_mod.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/general/units_mod.f90 -------------------------------------------------------------------------------- /src/general/utils.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/general/utils.f90 -------------------------------------------------------------------------------- /src/libfepx/driver_uniaxial_control_mod1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/libfepx/driver_uniaxial_control_mod1.f90 -------------------------------------------------------------------------------- /src/libfepx/driver_uniaxial_control_mod2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/libfepx/driver_uniaxial_control_mod2.f90 -------------------------------------------------------------------------------- /src/libfepx/kinematics_mod.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/libfepx/kinematics_mod.f90 -------------------------------------------------------------------------------- /src/libfepx/kinematics_mod_bis.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/libfepx/kinematics_mod_bis.f90 -------------------------------------------------------------------------------- /src/libfepx/restart/restart.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/libfepx/restart/restart.f90 -------------------------------------------------------------------------------- /src/libfepx/solveit_evp/solve_evp/solve_evp_mod1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/libfepx/solveit_evp/solve_evp/solve_evp_mod1.f90 -------------------------------------------------------------------------------- /src/libfepx/solveit_evp/solve_evp/solve_evp_mod2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/libfepx/solveit_evp/solve_evp/solve_evp_mod2.f90 -------------------------------------------------------------------------------- /src/libfepx/solveit_evp/solveit_evp_mod1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/libfepx/solveit_evp/solveit_evp_mod1.f90 -------------------------------------------------------------------------------- /src/libfepx/solveit_evp/solveit_evp_mod2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/libfepx/solveit_evp/solveit_evp_mod2.f90 -------------------------------------------------------------------------------- /src/libfepx/solveit_evp/solveit_evp_mod3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/libfepx/solveit_evp/solveit_evp_mod3.f90 -------------------------------------------------------------------------------- /src/libfepx/solveit_evp/solveit_evp_mod4.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/libfepx/solveit_evp/solveit_evp_mod4.f90 -------------------------------------------------------------------------------- /src/libfepx/solveit_isovp/solveit_isovp_mod1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/libfepx/solveit_isovp/solveit_isovp_mod1.f90 -------------------------------------------------------------------------------- /src/libfepx/solveit_isovp/solveit_isovp_mod2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/libfepx/solveit_isovp/solveit_isovp_mod2.f90 -------------------------------------------------------------------------------- /src/libfepx/solveit_isovp/solveit_isovp_mod3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/libfepx/solveit_isovp/solveit_isovp_mod3.f90 -------------------------------------------------------------------------------- /src/libfepx/solveit_isovp/solveit_isovp_mod4.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/libfepx/solveit_isovp/solveit_isovp_mod4.f90 -------------------------------------------------------------------------------- /src/libfepx/stiffness_mod.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/libfepx/stiffness_mod.f90 -------------------------------------------------------------------------------- /src/libfepx/surf_mod.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/libfepx/surf_mod.f90 -------------------------------------------------------------------------------- /src/libfepx/write_res/write_res_mod1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/libfepx/write_res/write_res_mod1.f90 -------------------------------------------------------------------------------- /src/libfepx/write_res/write_res_mod2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/libfepx/write_res/write_res_mod2.f90 -------------------------------------------------------------------------------- /src/parallel/gather_scatter_mod.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/parallel/gather_scatter_mod.f90 -------------------------------------------------------------------------------- /src/parallel/parallel_mod.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/parallel/parallel_mod.f90 -------------------------------------------------------------------------------- /src/read_input/boundary_conditions_mod1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/read_input/boundary_conditions_mod1.f90 -------------------------------------------------------------------------------- /src/read_input/boundary_conditions_mod2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/read_input/boundary_conditions_mod2.f90 -------------------------------------------------------------------------------- /src/read_input/boundary_conditions_mod2_legacy.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/read_input/boundary_conditions_mod2_legacy.f90 -------------------------------------------------------------------------------- /src/read_input/boundary_conditions_mod3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/read_input/boundary_conditions_mod3.f90 -------------------------------------------------------------------------------- /src/read_input/read_input.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/read_input/read_input.f90 -------------------------------------------------------------------------------- /src/read_input/read_input_cfg.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/read_input/read_input_cfg.f90 -------------------------------------------------------------------------------- /src/read_input/read_input_msh.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/read_input/read_input_msh.f90 -------------------------------------------------------------------------------- /src/read_input/read_input_msh2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/read_input/read_input_msh2.f90 -------------------------------------------------------------------------------- /src/res_init/res_init_mod1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/res_init/res_init_mod1.f90 -------------------------------------------------------------------------------- /src/res_init/res_init_mod2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/res_init/res_init_mod2.f90 -------------------------------------------------------------------------------- /src/triaxial/driver_triax_utilities_mod.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/triaxial/driver_triax_utilities_mod.f90 -------------------------------------------------------------------------------- /src/triaxial/driver_triaxclr_mod.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/triaxial/driver_triaxclr_mod.f90 -------------------------------------------------------------------------------- /src/triaxial/driver_triaxcsr_mod.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/src/triaxial/driver_triaxcsr_mod.f90 -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/.sim -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/inputs/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/inputs/simulation.cfg -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/inputs/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/inputs/simulation.msh -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/results/elts/crss/crss.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/results/elts/crss/crss.step0 -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/results/elts/crss/crss.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/results/elts/crss/crss.step1 -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/results/elts/crss/crss.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/results/elts/crss/crss.step2 -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/results/elts/defrate/defrate.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/results/elts/defrate/defrate.step0 -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/results/elts/defrate/defrate.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/results/elts/defrate/defrate.step1 -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/results/elts/defrate/defrate.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/results/elts/defrate/defrate.step2 -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/results/elts/ori/ori.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/results/elts/ori/ori.step0 -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/results/elts/ori/ori.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/results/elts/ori/ori.step1 -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/results/elts/ori/ori.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/results/elts/ori/ori.step2 -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/results/elts/rotrate/rotrate.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/results/elts/rotrate/rotrate.step0 -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/results/elts/rotrate/rotrate.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/results/elts/rotrate/rotrate.step1 -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/results/elts/rotrate/rotrate.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/results/elts/rotrate/rotrate.step2 -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/results/elts/slip/slip.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/results/elts/slip/slip.step0 -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/results/elts/slip/slip.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/results/elts/slip/slip.step1 -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/results/elts/slip/slip.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/results/elts/slip/slip.step2 -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/results/elts/strain/strain.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/results/elts/strain/strain.step0 -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/results/elts/strain/strain.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/results/elts/strain/strain.step1 -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/results/elts/strain/strain.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/results/elts/strain/strain.step2 -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/results/elts/stress/stress.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/results/elts/stress/stress.step0 -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/results/elts/stress/stress.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/results/elts/stress/stress.step1 -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/results/elts/stress/stress.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/results/elts/stress/stress.step2 -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/results/elts/velgrad/velgrad.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/results/elts/velgrad/velgrad.step0 -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/results/elts/velgrad/velgrad.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/results/elts/velgrad/velgrad.step1 -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/results/elts/velgrad/velgrad.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/results/elts/velgrad/velgrad.step2 -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/results/elts/work/work.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/results/elts/work/work.step0 -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/results/elts/work/work.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/results/elts/work/work.step1 -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/results/elts/work/work.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/results/elts/work/work.step2 -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/results/elts/work_pl/work_pl.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/results/elts/work_pl/work_pl.step0 -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/results/elts/work_pl/work_pl.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/results/elts/work_pl/work_pl.step1 -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/results/elts/work_pl/work_pl.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/results/elts/work_pl/work_pl.step2 -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/results/nodes/coo/coo.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/results/nodes/coo/coo.step0 -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/results/nodes/coo/coo.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/results/nodes/coo/coo.step1 -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/results/nodes/coo/coo.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/results/nodes/coo/coo.step2 -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/results/nodes/disp/disp.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/results/nodes/disp/disp.step0 -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/results/nodes/disp/disp.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/results/nodes/disp/disp.step1 -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/results/nodes/disp/disp.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/results/nodes/disp/disp.step2 -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/results/nodes/vel/vel.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/results/nodes/vel/vel.step0 -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/results/nodes/vel/vel.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/results/nodes/vel/vel.step1 -------------------------------------------------------------------------------- /tests/01_bcc/ref.sim/results/nodes/vel/vel.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/ref.sim/results/nodes/vel/vel.step2 -------------------------------------------------------------------------------- /tests/01_bcc/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/simulation.cfg -------------------------------------------------------------------------------- /tests/01_bcc/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/simulation.msh -------------------------------------------------------------------------------- /tests/01_bcc/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/01_bcc/test.cmake -------------------------------------------------------------------------------- /tests/02_fcc/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/ref.sim/.sim -------------------------------------------------------------------------------- /tests/02_fcc/ref.sim/inputs/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/ref.sim/inputs/simulation.cfg -------------------------------------------------------------------------------- /tests/02_fcc/ref.sim/inputs/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/ref.sim/inputs/simulation.msh -------------------------------------------------------------------------------- /tests/02_fcc/ref.sim/results/elts/defrate/defrate.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/ref.sim/results/elts/defrate/defrate.step0 -------------------------------------------------------------------------------- /tests/02_fcc/ref.sim/results/elts/defrate/defrate.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/ref.sim/results/elts/defrate/defrate.step1 -------------------------------------------------------------------------------- /tests/02_fcc/ref.sim/results/elts/defrate/defrate.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/ref.sim/results/elts/defrate/defrate.step2 -------------------------------------------------------------------------------- /tests/02_fcc/ref.sim/results/elts/ori/ori.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/ref.sim/results/elts/ori/ori.step0 -------------------------------------------------------------------------------- /tests/02_fcc/ref.sim/results/elts/ori/ori.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/ref.sim/results/elts/ori/ori.step1 -------------------------------------------------------------------------------- /tests/02_fcc/ref.sim/results/elts/ori/ori.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/ref.sim/results/elts/ori/ori.step2 -------------------------------------------------------------------------------- /tests/02_fcc/ref.sim/results/elts/rotrate/rotrate.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/ref.sim/results/elts/rotrate/rotrate.step0 -------------------------------------------------------------------------------- /tests/02_fcc/ref.sim/results/elts/rotrate/rotrate.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/ref.sim/results/elts/rotrate/rotrate.step1 -------------------------------------------------------------------------------- /tests/02_fcc/ref.sim/results/elts/rotrate/rotrate.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/ref.sim/results/elts/rotrate/rotrate.step2 -------------------------------------------------------------------------------- /tests/02_fcc/ref.sim/results/elts/slip/slip.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/ref.sim/results/elts/slip/slip.step0 -------------------------------------------------------------------------------- /tests/02_fcc/ref.sim/results/elts/slip/slip.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/ref.sim/results/elts/slip/slip.step1 -------------------------------------------------------------------------------- /tests/02_fcc/ref.sim/results/elts/slip/slip.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/ref.sim/results/elts/slip/slip.step2 -------------------------------------------------------------------------------- /tests/02_fcc/ref.sim/results/elts/strain/strain.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/ref.sim/results/elts/strain/strain.step0 -------------------------------------------------------------------------------- /tests/02_fcc/ref.sim/results/elts/strain/strain.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/ref.sim/results/elts/strain/strain.step1 -------------------------------------------------------------------------------- /tests/02_fcc/ref.sim/results/elts/strain/strain.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/ref.sim/results/elts/strain/strain.step2 -------------------------------------------------------------------------------- /tests/02_fcc/ref.sim/results/elts/stress/stress.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/ref.sim/results/elts/stress/stress.step0 -------------------------------------------------------------------------------- /tests/02_fcc/ref.sim/results/elts/stress/stress.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/ref.sim/results/elts/stress/stress.step1 -------------------------------------------------------------------------------- /tests/02_fcc/ref.sim/results/elts/stress/stress.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/ref.sim/results/elts/stress/stress.step2 -------------------------------------------------------------------------------- /tests/02_fcc/ref.sim/results/elts/velgrad/velgrad.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/ref.sim/results/elts/velgrad/velgrad.step0 -------------------------------------------------------------------------------- /tests/02_fcc/ref.sim/results/elts/velgrad/velgrad.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/ref.sim/results/elts/velgrad/velgrad.step1 -------------------------------------------------------------------------------- /tests/02_fcc/ref.sim/results/elts/velgrad/velgrad.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/ref.sim/results/elts/velgrad/velgrad.step2 -------------------------------------------------------------------------------- /tests/02_fcc/ref.sim/results/elts/work/work.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/ref.sim/results/elts/work/work.step0 -------------------------------------------------------------------------------- /tests/02_fcc/ref.sim/results/elts/work/work.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/ref.sim/results/elts/work/work.step1 -------------------------------------------------------------------------------- /tests/02_fcc/ref.sim/results/elts/work/work.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/ref.sim/results/elts/work/work.step2 -------------------------------------------------------------------------------- /tests/02_fcc/ref.sim/results/elts/work_pl/work_pl.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/ref.sim/results/elts/work_pl/work_pl.step0 -------------------------------------------------------------------------------- /tests/02_fcc/ref.sim/results/elts/work_pl/work_pl.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/ref.sim/results/elts/work_pl/work_pl.step1 -------------------------------------------------------------------------------- /tests/02_fcc/ref.sim/results/elts/work_pl/work_pl.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/ref.sim/results/elts/work_pl/work_pl.step2 -------------------------------------------------------------------------------- /tests/02_fcc/ref.sim/results/nodes/coo/coo.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/ref.sim/results/nodes/coo/coo.step0 -------------------------------------------------------------------------------- /tests/02_fcc/ref.sim/results/nodes/coo/coo.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/ref.sim/results/nodes/coo/coo.step1 -------------------------------------------------------------------------------- /tests/02_fcc/ref.sim/results/nodes/coo/coo.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/ref.sim/results/nodes/coo/coo.step2 -------------------------------------------------------------------------------- /tests/02_fcc/ref.sim/results/nodes/disp/disp.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/ref.sim/results/nodes/disp/disp.step0 -------------------------------------------------------------------------------- /tests/02_fcc/ref.sim/results/nodes/disp/disp.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/ref.sim/results/nodes/disp/disp.step1 -------------------------------------------------------------------------------- /tests/02_fcc/ref.sim/results/nodes/disp/disp.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/ref.sim/results/nodes/disp/disp.step2 -------------------------------------------------------------------------------- /tests/02_fcc/ref.sim/results/nodes/vel/vel.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/ref.sim/results/nodes/vel/vel.step0 -------------------------------------------------------------------------------- /tests/02_fcc/ref.sim/results/nodes/vel/vel.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/ref.sim/results/nodes/vel/vel.step1 -------------------------------------------------------------------------------- /tests/02_fcc/ref.sim/results/nodes/vel/vel.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/ref.sim/results/nodes/vel/vel.step2 -------------------------------------------------------------------------------- /tests/02_fcc/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/simulation.cfg -------------------------------------------------------------------------------- /tests/02_fcc/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/simulation.msh -------------------------------------------------------------------------------- /tests/02_fcc/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/02_fcc/test.cmake -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/.sim -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/inputs/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/inputs/simulation.cfg -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/inputs/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/inputs/simulation.msh -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/results/elts/crss/crss.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/results/elts/crss/crss.step0 -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/results/elts/crss/crss.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/results/elts/crss/crss.step1 -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/results/elts/crss/crss.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/results/elts/crss/crss.step2 -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/results/elts/defrate/defrate.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/results/elts/defrate/defrate.step0 -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/results/elts/defrate/defrate.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/results/elts/defrate/defrate.step1 -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/results/elts/defrate/defrate.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/results/elts/defrate/defrate.step2 -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/results/elts/ori/ori.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/results/elts/ori/ori.step0 -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/results/elts/ori/ori.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/results/elts/ori/ori.step1 -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/results/elts/ori/ori.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/results/elts/ori/ori.step2 -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/results/elts/rotrate/rotrate.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/results/elts/rotrate/rotrate.step0 -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/results/elts/rotrate/rotrate.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/results/elts/rotrate/rotrate.step1 -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/results/elts/rotrate/rotrate.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/results/elts/rotrate/rotrate.step2 -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/results/elts/slip/slip.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/results/elts/slip/slip.step0 -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/results/elts/slip/slip.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/results/elts/slip/slip.step1 -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/results/elts/slip/slip.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/results/elts/slip/slip.step2 -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/results/elts/strain/strain.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/results/elts/strain/strain.step0 -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/results/elts/strain/strain.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/results/elts/strain/strain.step1 -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/results/elts/strain/strain.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/results/elts/strain/strain.step2 -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/results/elts/stress/stress.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/results/elts/stress/stress.step0 -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/results/elts/stress/stress.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/results/elts/stress/stress.step1 -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/results/elts/stress/stress.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/results/elts/stress/stress.step2 -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/results/elts/velgrad/velgrad.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/results/elts/velgrad/velgrad.step0 -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/results/elts/velgrad/velgrad.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/results/elts/velgrad/velgrad.step1 -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/results/elts/velgrad/velgrad.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/results/elts/velgrad/velgrad.step2 -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/results/elts/work/work.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/results/elts/work/work.step0 -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/results/elts/work/work.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/results/elts/work/work.step1 -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/results/elts/work/work.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/results/elts/work/work.step2 -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/results/elts/work_pl/work_pl.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/results/elts/work_pl/work_pl.step0 -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/results/elts/work_pl/work_pl.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/results/elts/work_pl/work_pl.step1 -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/results/elts/work_pl/work_pl.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/results/elts/work_pl/work_pl.step2 -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/results/nodes/coo/coo.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/results/nodes/coo/coo.step0 -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/results/nodes/coo/coo.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/results/nodes/coo/coo.step1 -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/results/nodes/coo/coo.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/results/nodes/coo/coo.step2 -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/results/nodes/disp/disp.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/results/nodes/disp/disp.step0 -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/results/nodes/disp/disp.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/results/nodes/disp/disp.step1 -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/results/nodes/disp/disp.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/results/nodes/disp/disp.step2 -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/results/nodes/vel/vel.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/results/nodes/vel/vel.step0 -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/results/nodes/vel/vel.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/results/nodes/vel/vel.step1 -------------------------------------------------------------------------------- /tests/03_hcp/ref.sim/results/nodes/vel/vel.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/ref.sim/results/nodes/vel/vel.step2 -------------------------------------------------------------------------------- /tests/03_hcp/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/simulation.cfg -------------------------------------------------------------------------------- /tests/03_hcp/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/simulation.msh -------------------------------------------------------------------------------- /tests/03_hcp/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/03_hcp/test.cmake -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/.sim -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/inputs/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/inputs/simulation.cfg -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/inputs/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/inputs/simulation.msh -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/results/elts/crss/crss.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/results/elts/crss/crss.step0 -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/results/elts/crss/crss.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/results/elts/crss/crss.step1 -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/results/elts/crss/crss.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/results/elts/crss/crss.step2 -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/results/elts/defrate/defrate.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/results/elts/defrate/defrate.step0 -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/results/elts/defrate/defrate.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/results/elts/defrate/defrate.step1 -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/results/elts/defrate/defrate.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/results/elts/defrate/defrate.step2 -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/results/elts/ori/ori.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/results/elts/ori/ori.step0 -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/results/elts/ori/ori.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/results/elts/ori/ori.step1 -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/results/elts/ori/ori.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/results/elts/ori/ori.step2 -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/results/elts/rotrate/rotrate.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/results/elts/rotrate/rotrate.step0 -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/results/elts/rotrate/rotrate.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/results/elts/rotrate/rotrate.step1 -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/results/elts/rotrate/rotrate.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/results/elts/rotrate/rotrate.step2 -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/results/elts/slip/slip.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/results/elts/slip/slip.step0 -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/results/elts/slip/slip.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/results/elts/slip/slip.step1 -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/results/elts/slip/slip.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/results/elts/slip/slip.step2 -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/results/elts/strain/strain.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/results/elts/strain/strain.step0 -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/results/elts/strain/strain.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/results/elts/strain/strain.step1 -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/results/elts/strain/strain.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/results/elts/strain/strain.step2 -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/results/elts/stress/stress.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/results/elts/stress/stress.step0 -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/results/elts/stress/stress.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/results/elts/stress/stress.step1 -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/results/elts/stress/stress.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/results/elts/stress/stress.step2 -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/results/elts/velgrad/velgrad.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/results/elts/velgrad/velgrad.step0 -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/results/elts/velgrad/velgrad.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/results/elts/velgrad/velgrad.step1 -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/results/elts/velgrad/velgrad.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/results/elts/velgrad/velgrad.step2 -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/results/elts/work/work.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/results/elts/work/work.step0 -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/results/elts/work/work.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/results/elts/work/work.step1 -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/results/elts/work/work.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/results/elts/work/work.step2 -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/results/elts/work_pl/work_pl.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/results/elts/work_pl/work_pl.step0 -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/results/elts/work_pl/work_pl.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/results/elts/work_pl/work_pl.step1 -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/results/elts/work_pl/work_pl.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/results/elts/work_pl/work_pl.step2 -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/results/nodes/coo/coo.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/results/nodes/coo/coo.step0 -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/results/nodes/coo/coo.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/results/nodes/coo/coo.step1 -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/results/nodes/coo/coo.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/results/nodes/coo/coo.step2 -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/results/nodes/disp/disp.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/results/nodes/disp/disp.step0 -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/results/nodes/disp/disp.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/results/nodes/disp/disp.step1 -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/results/nodes/disp/disp.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/results/nodes/disp/disp.step2 -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/results/nodes/vel/vel.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/results/nodes/vel/vel.step0 -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/results/nodes/vel/vel.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/results/nodes/vel/vel.step1 -------------------------------------------------------------------------------- /tests/04_bct/ref.sim/results/nodes/vel/vel.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/ref.sim/results/nodes/vel/vel.step2 -------------------------------------------------------------------------------- /tests/04_bct/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/simulation.cfg -------------------------------------------------------------------------------- /tests/04_bct/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/simulation.msh -------------------------------------------------------------------------------- /tests/04_bct/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/04_bct/test.cmake -------------------------------------------------------------------------------- /tests/05_dual_bcc_fcc/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/05_dual_bcc_fcc/ref.sim/.sim -------------------------------------------------------------------------------- /tests/05_dual_bcc_fcc/ref.sim/inputs/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/05_dual_bcc_fcc/ref.sim/inputs/simulation.cfg -------------------------------------------------------------------------------- /tests/05_dual_bcc_fcc/ref.sim/inputs/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/05_dual_bcc_fcc/ref.sim/inputs/simulation.msh -------------------------------------------------------------------------------- /tests/05_dual_bcc_fcc/ref.sim/results/elts/ori/ori.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/05_dual_bcc_fcc/ref.sim/results/elts/ori/ori.step0 -------------------------------------------------------------------------------- /tests/05_dual_bcc_fcc/ref.sim/results/elts/ori/ori.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/05_dual_bcc_fcc/ref.sim/results/elts/ori/ori.step1 -------------------------------------------------------------------------------- /tests/05_dual_bcc_fcc/ref.sim/results/elts/ori/ori.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/05_dual_bcc_fcc/ref.sim/results/elts/ori/ori.step2 -------------------------------------------------------------------------------- /tests/05_dual_bcc_fcc/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/05_dual_bcc_fcc/simulation.cfg -------------------------------------------------------------------------------- /tests/05_dual_bcc_fcc/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/05_dual_bcc_fcc/simulation.msh -------------------------------------------------------------------------------- /tests/05_dual_bcc_fcc/test.cmake_disable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/05_dual_bcc_fcc/test.cmake_disable -------------------------------------------------------------------------------- /tests/06_bcc_sat_evo/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/06_bcc_sat_evo/ref.sim/.sim -------------------------------------------------------------------------------- /tests/06_bcc_sat_evo/ref.sim/inputs/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/06_bcc_sat_evo/ref.sim/inputs/simulation.cfg -------------------------------------------------------------------------------- /tests/06_bcc_sat_evo/ref.sim/inputs/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/06_bcc_sat_evo/ref.sim/inputs/simulation.msh -------------------------------------------------------------------------------- /tests/06_bcc_sat_evo/ref.sim/results/elts/ori/ori.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/06_bcc_sat_evo/ref.sim/results/elts/ori/ori.step0 -------------------------------------------------------------------------------- /tests/06_bcc_sat_evo/ref.sim/results/elts/ori/ori.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/06_bcc_sat_evo/ref.sim/results/elts/ori/ori.step1 -------------------------------------------------------------------------------- /tests/06_bcc_sat_evo/ref.sim/results/nodes/coo/coo.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/06_bcc_sat_evo/ref.sim/results/nodes/coo/coo.step0 -------------------------------------------------------------------------------- /tests/06_bcc_sat_evo/ref.sim/results/nodes/coo/coo.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/06_bcc_sat_evo/ref.sim/results/nodes/coo/coo.step1 -------------------------------------------------------------------------------- /tests/06_bcc_sat_evo/ref.sim/results/nodes/vel/vel.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/06_bcc_sat_evo/ref.sim/results/nodes/vel/vel.step0 -------------------------------------------------------------------------------- /tests/06_bcc_sat_evo/ref.sim/results/nodes/vel/vel.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/06_bcc_sat_evo/ref.sim/results/nodes/vel/vel.step1 -------------------------------------------------------------------------------- /tests/06_bcc_sat_evo/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/06_bcc_sat_evo/simulation.cfg -------------------------------------------------------------------------------- /tests/06_bcc_sat_evo/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/06_bcc_sat_evo/simulation.msh -------------------------------------------------------------------------------- /tests/06_bcc_sat_evo/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/06_bcc_sat_evo/test.cmake -------------------------------------------------------------------------------- /tests/07_fcc_sat_evo/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/07_fcc_sat_evo/ref.sim/.sim -------------------------------------------------------------------------------- /tests/07_fcc_sat_evo/ref.sim/inputs/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/07_fcc_sat_evo/ref.sim/inputs/simulation.cfg -------------------------------------------------------------------------------- /tests/07_fcc_sat_evo/ref.sim/inputs/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/07_fcc_sat_evo/ref.sim/inputs/simulation.msh -------------------------------------------------------------------------------- /tests/07_fcc_sat_evo/ref.sim/results/elts/ori/ori.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/07_fcc_sat_evo/ref.sim/results/elts/ori/ori.step0 -------------------------------------------------------------------------------- /tests/07_fcc_sat_evo/ref.sim/results/elts/ori/ori.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/07_fcc_sat_evo/ref.sim/results/elts/ori/ori.step1 -------------------------------------------------------------------------------- /tests/07_fcc_sat_evo/ref.sim/results/nodes/coo/coo.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/07_fcc_sat_evo/ref.sim/results/nodes/coo/coo.step0 -------------------------------------------------------------------------------- /tests/07_fcc_sat_evo/ref.sim/results/nodes/coo/coo.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/07_fcc_sat_evo/ref.sim/results/nodes/coo/coo.step1 -------------------------------------------------------------------------------- /tests/07_fcc_sat_evo/ref.sim/results/nodes/vel/vel.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/07_fcc_sat_evo/ref.sim/results/nodes/vel/vel.step0 -------------------------------------------------------------------------------- /tests/07_fcc_sat_evo/ref.sim/results/nodes/vel/vel.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/07_fcc_sat_evo/ref.sim/results/nodes/vel/vel.step1 -------------------------------------------------------------------------------- /tests/07_fcc_sat_evo/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/07_fcc_sat_evo/simulation.cfg -------------------------------------------------------------------------------- /tests/07_fcc_sat_evo/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/07_fcc_sat_evo/simulation.msh -------------------------------------------------------------------------------- /tests/07_fcc_sat_evo/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/07_fcc_sat_evo/test.cmake -------------------------------------------------------------------------------- /tests/08_hcp_sat_evo/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/08_hcp_sat_evo/ref.sim/.sim -------------------------------------------------------------------------------- /tests/08_hcp_sat_evo/ref.sim/inputs/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/08_hcp_sat_evo/ref.sim/inputs/simulation.cfg -------------------------------------------------------------------------------- /tests/08_hcp_sat_evo/ref.sim/inputs/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/08_hcp_sat_evo/ref.sim/inputs/simulation.msh -------------------------------------------------------------------------------- /tests/08_hcp_sat_evo/ref.sim/results/elts/ori/ori.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/08_hcp_sat_evo/ref.sim/results/elts/ori/ori.step0 -------------------------------------------------------------------------------- /tests/08_hcp_sat_evo/ref.sim/results/elts/ori/ori.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/08_hcp_sat_evo/ref.sim/results/elts/ori/ori.step1 -------------------------------------------------------------------------------- /tests/08_hcp_sat_evo/ref.sim/results/nodes/coo/coo.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/08_hcp_sat_evo/ref.sim/results/nodes/coo/coo.step0 -------------------------------------------------------------------------------- /tests/08_hcp_sat_evo/ref.sim/results/nodes/coo/coo.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/08_hcp_sat_evo/ref.sim/results/nodes/coo/coo.step1 -------------------------------------------------------------------------------- /tests/08_hcp_sat_evo/ref.sim/results/nodes/vel/vel.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/08_hcp_sat_evo/ref.sim/results/nodes/vel/vel.step0 -------------------------------------------------------------------------------- /tests/08_hcp_sat_evo/ref.sim/results/nodes/vel/vel.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/08_hcp_sat_evo/ref.sim/results/nodes/vel/vel.step1 -------------------------------------------------------------------------------- /tests/08_hcp_sat_evo/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/08_hcp_sat_evo/simulation.cfg -------------------------------------------------------------------------------- /tests/08_hcp_sat_evo/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/08_hcp_sat_evo/simulation.msh -------------------------------------------------------------------------------- /tests/08_hcp_sat_evo/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/08_hcp_sat_evo/test.cmake -------------------------------------------------------------------------------- /tests/09_bct_sat_evo/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/09_bct_sat_evo/ref.sim/.sim -------------------------------------------------------------------------------- /tests/09_bct_sat_evo/ref.sim/inputs/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/09_bct_sat_evo/ref.sim/inputs/simulation.cfg -------------------------------------------------------------------------------- /tests/09_bct_sat_evo/ref.sim/inputs/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/09_bct_sat_evo/ref.sim/inputs/simulation.msh -------------------------------------------------------------------------------- /tests/09_bct_sat_evo/ref.sim/results/elts/ori/ori.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/09_bct_sat_evo/ref.sim/results/elts/ori/ori.step0 -------------------------------------------------------------------------------- /tests/09_bct_sat_evo/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/09_bct_sat_evo/simulation.cfg -------------------------------------------------------------------------------- /tests/09_bct_sat_evo/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/09_bct_sat_evo/simulation.msh -------------------------------------------------------------------------------- /tests/09_bct_sat_evo/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/09_bct_sat_evo/test.cmake -------------------------------------------------------------------------------- /tests/10_hcp_aniso_m/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/10_hcp_aniso_m/ref.sim/.sim -------------------------------------------------------------------------------- /tests/10_hcp_aniso_m/ref.sim/inputs/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/10_hcp_aniso_m/ref.sim/inputs/simulation.cfg -------------------------------------------------------------------------------- /tests/10_hcp_aniso_m/ref.sim/inputs/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/10_hcp_aniso_m/ref.sim/inputs/simulation.msh -------------------------------------------------------------------------------- /tests/10_hcp_aniso_m/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/10_hcp_aniso_m/simulation.cfg -------------------------------------------------------------------------------- /tests/10_hcp_aniso_m/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/10_hcp_aniso_m/simulation.msh -------------------------------------------------------------------------------- /tests/10_hcp_aniso_m/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/10_hcp_aniso_m/test.cmake -------------------------------------------------------------------------------- /tests/11_bct_aniso_m/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/11_bct_aniso_m/ref.sim/.sim -------------------------------------------------------------------------------- /tests/11_bct_aniso_m/ref.sim/inputs/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/11_bct_aniso_m/ref.sim/inputs/simulation.cfg -------------------------------------------------------------------------------- /tests/11_bct_aniso_m/ref.sim/inputs/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/11_bct_aniso_m/ref.sim/inputs/simulation.msh -------------------------------------------------------------------------------- /tests/11_bct_aniso_m/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/11_bct_aniso_m/simulation.cfg -------------------------------------------------------------------------------- /tests/11_bct_aniso_m/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/11_bct_aniso_m/simulation.msh -------------------------------------------------------------------------------- /tests/11_bct_aniso_m/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/11_bct_aniso_m/test.cmake -------------------------------------------------------------------------------- /tests/12_bcc_coplanar_anisotropic_hard/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/12_bcc_coplanar_anisotropic_hard/ref.sim/.sim -------------------------------------------------------------------------------- /tests/12_bcc_coplanar_anisotropic_hard/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/12_bcc_coplanar_anisotropic_hard/simulation.cfg -------------------------------------------------------------------------------- /tests/12_bcc_coplanar_anisotropic_hard/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/12_bcc_coplanar_anisotropic_hard/simulation.msh -------------------------------------------------------------------------------- /tests/12_bcc_coplanar_anisotropic_hard/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/12_bcc_coplanar_anisotropic_hard/test.cmake -------------------------------------------------------------------------------- /tests/13_fcc_coplanar_anisotropic_hard/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/13_fcc_coplanar_anisotropic_hard/ref.sim/.sim -------------------------------------------------------------------------------- /tests/13_fcc_coplanar_anisotropic_hard/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/13_fcc_coplanar_anisotropic_hard/simulation.cfg -------------------------------------------------------------------------------- /tests/13_fcc_coplanar_anisotropic_hard/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/13_fcc_coplanar_anisotropic_hard/simulation.msh -------------------------------------------------------------------------------- /tests/13_fcc_coplanar_anisotropic_hard/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/13_fcc_coplanar_anisotropic_hard/test.cmake -------------------------------------------------------------------------------- /tests/14_hcp_coplanar_anisotropic_hard/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/14_hcp_coplanar_anisotropic_hard/ref.sim/.sim -------------------------------------------------------------------------------- /tests/14_hcp_coplanar_anisotropic_hard/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/14_hcp_coplanar_anisotropic_hard/simulation.cfg -------------------------------------------------------------------------------- /tests/14_hcp_coplanar_anisotropic_hard/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/14_hcp_coplanar_anisotropic_hard/simulation.msh -------------------------------------------------------------------------------- /tests/14_hcp_coplanar_anisotropic_hard/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/14_hcp_coplanar_anisotropic_hard/test.cmake -------------------------------------------------------------------------------- /tests/15_bct_coplanar_anisotropic_hard/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/15_bct_coplanar_anisotropic_hard/ref.sim/.sim -------------------------------------------------------------------------------- /tests/15_bct_coplanar_anisotropic_hard/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/15_bct_coplanar_anisotropic_hard/simulation.cfg -------------------------------------------------------------------------------- /tests/15_bct_coplanar_anisotropic_hard/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/15_bct_coplanar_anisotropic_hard/simulation.msh -------------------------------------------------------------------------------- /tests/15_bct_coplanar_anisotropic_hard/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/15_bct_coplanar_anisotropic_hard/test.cmake -------------------------------------------------------------------------------- /tests/16_bcc_cyclic_hard/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/16_bcc_cyclic_hard/ref.sim/.sim -------------------------------------------------------------------------------- /tests/16_bcc_cyclic_hard/ref.sim/inputs/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/16_bcc_cyclic_hard/ref.sim/inputs/simulation.cfg -------------------------------------------------------------------------------- /tests/16_bcc_cyclic_hard/ref.sim/inputs/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/16_bcc_cyclic_hard/ref.sim/inputs/simulation.msh -------------------------------------------------------------------------------- /tests/16_bcc_cyclic_hard/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/16_bcc_cyclic_hard/simulation.cfg -------------------------------------------------------------------------------- /tests/16_bcc_cyclic_hard/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/16_bcc_cyclic_hard/simulation.msh -------------------------------------------------------------------------------- /tests/16_bcc_cyclic_hard/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/16_bcc_cyclic_hard/test.cmake -------------------------------------------------------------------------------- /tests/17_fcc_cyclic_hard/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/17_fcc_cyclic_hard/ref.sim/.sim -------------------------------------------------------------------------------- /tests/17_fcc_cyclic_hard/ref.sim/inputs/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/17_fcc_cyclic_hard/ref.sim/inputs/simulation.cfg -------------------------------------------------------------------------------- /tests/17_fcc_cyclic_hard/ref.sim/inputs/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/17_fcc_cyclic_hard/ref.sim/inputs/simulation.msh -------------------------------------------------------------------------------- /tests/17_fcc_cyclic_hard/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/17_fcc_cyclic_hard/simulation.cfg -------------------------------------------------------------------------------- /tests/17_fcc_cyclic_hard/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/17_fcc_cyclic_hard/simulation.msh -------------------------------------------------------------------------------- /tests/17_fcc_cyclic_hard/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/17_fcc_cyclic_hard/test.cmake -------------------------------------------------------------------------------- /tests/18_hcp_cyclic_hard/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/18_hcp_cyclic_hard/ref.sim/.sim -------------------------------------------------------------------------------- /tests/18_hcp_cyclic_hard/ref.sim/inputs/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/18_hcp_cyclic_hard/ref.sim/inputs/simulation.cfg -------------------------------------------------------------------------------- /tests/18_hcp_cyclic_hard/ref.sim/inputs/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/18_hcp_cyclic_hard/ref.sim/inputs/simulation.msh -------------------------------------------------------------------------------- /tests/18_hcp_cyclic_hard/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/18_hcp_cyclic_hard/simulation.cfg -------------------------------------------------------------------------------- /tests/18_hcp_cyclic_hard/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/18_hcp_cyclic_hard/simulation.msh -------------------------------------------------------------------------------- /tests/18_hcp_cyclic_hard/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/18_hcp_cyclic_hard/test.cmake -------------------------------------------------------------------------------- /tests/19_bct_cyclic_hard/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/19_bct_cyclic_hard/ref.sim/.sim -------------------------------------------------------------------------------- /tests/19_bct_cyclic_hard/ref.sim/inputs/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/19_bct_cyclic_hard/ref.sim/inputs/simulation.cfg -------------------------------------------------------------------------------- /tests/19_bct_cyclic_hard/ref.sim/inputs/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/19_bct_cyclic_hard/ref.sim/inputs/simulation.msh -------------------------------------------------------------------------------- /tests/19_bct_cyclic_hard/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/19_bct_cyclic_hard/simulation.cfg -------------------------------------------------------------------------------- /tests/19_bct_cyclic_hard/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/19_bct_cyclic_hard/simulation.msh -------------------------------------------------------------------------------- /tests/19_bct_cyclic_hard/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/19_bct_cyclic_hard/test.cmake -------------------------------------------------------------------------------- /tests/22_oris_rod_passive/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/22_oris_rod_passive/ref.sim/.sim -------------------------------------------------------------------------------- /tests/22_oris_rod_passive/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/22_oris_rod_passive/simulation.cfg -------------------------------------------------------------------------------- /tests/22_oris_rod_passive/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/22_oris_rod_passive/simulation.msh -------------------------------------------------------------------------------- /tests/22_oris_rod_passive/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/22_oris_rod_passive/test.cmake -------------------------------------------------------------------------------- /tests/23_oris_bunge_active/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/23_oris_bunge_active/ref.sim/.sim -------------------------------------------------------------------------------- /tests/23_oris_bunge_active/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/23_oris_bunge_active/simulation.cfg -------------------------------------------------------------------------------- /tests/23_oris_bunge_active/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/23_oris_bunge_active/simulation.msh -------------------------------------------------------------------------------- /tests/23_oris_bunge_active/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/23_oris_bunge_active/test.cmake -------------------------------------------------------------------------------- /tests/24_oris_bunge_passive/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/24_oris_bunge_passive/ref.sim/.sim -------------------------------------------------------------------------------- /tests/24_oris_bunge_passive/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/24_oris_bunge_passive/simulation.cfg -------------------------------------------------------------------------------- /tests/24_oris_bunge_passive/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/24_oris_bunge_passive/simulation.msh -------------------------------------------------------------------------------- /tests/24_oris_bunge_passive/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/24_oris_bunge_passive/test.cmake -------------------------------------------------------------------------------- /tests/25_oris_kocks_active/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/25_oris_kocks_active/ref.sim/.sim -------------------------------------------------------------------------------- /tests/25_oris_kocks_active/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/25_oris_kocks_active/simulation.cfg -------------------------------------------------------------------------------- /tests/25_oris_kocks_active/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/25_oris_kocks_active/simulation.msh -------------------------------------------------------------------------------- /tests/25_oris_kocks_active/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/25_oris_kocks_active/test.cmake -------------------------------------------------------------------------------- /tests/26_oris_kocks_passive/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/26_oris_kocks_passive/ref.sim/.sim -------------------------------------------------------------------------------- /tests/26_oris_kocks_passive/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/26_oris_kocks_passive/simulation.cfg -------------------------------------------------------------------------------- /tests/26_oris_kocks_passive/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/26_oris_kocks_passive/simulation.msh -------------------------------------------------------------------------------- /tests/26_oris_kocks_passive/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/26_oris_kocks_passive/test.cmake -------------------------------------------------------------------------------- /tests/27_oris_axisangle_active/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/27_oris_axisangle_active/ref.sim/.sim -------------------------------------------------------------------------------- /tests/27_oris_axisangle_active/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/27_oris_axisangle_active/simulation.cfg -------------------------------------------------------------------------------- /tests/27_oris_axisangle_active/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/27_oris_axisangle_active/simulation.msh -------------------------------------------------------------------------------- /tests/27_oris_axisangle_active/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/27_oris_axisangle_active/test.cmake -------------------------------------------------------------------------------- /tests/28_oris_axisangle_passive/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/28_oris_axisangle_passive/ref.sim/.sim -------------------------------------------------------------------------------- /tests/28_oris_axisangle_passive/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/28_oris_axisangle_passive/simulation.cfg -------------------------------------------------------------------------------- /tests/28_oris_axisangle_passive/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/28_oris_axisangle_passive/simulation.msh -------------------------------------------------------------------------------- /tests/28_oris_axisangle_passive/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/28_oris_axisangle_passive/test.cmake -------------------------------------------------------------------------------- /tests/29_oris_quat_active/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/29_oris_quat_active/ref.sim/.sim -------------------------------------------------------------------------------- /tests/29_oris_quat_active/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/29_oris_quat_active/simulation.cfg -------------------------------------------------------------------------------- /tests/29_oris_quat_active/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/29_oris_quat_active/simulation.msh -------------------------------------------------------------------------------- /tests/29_oris_quat_active/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/29_oris_quat_active/test.cmake -------------------------------------------------------------------------------- /tests/30_oris_quat_passive/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/30_oris_quat_passive/ref.sim/.sim -------------------------------------------------------------------------------- /tests/30_oris_quat_passive/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/30_oris_quat_passive/simulation.cfg -------------------------------------------------------------------------------- /tests/30_oris_quat_passive/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/30_oris_quat_passive/simulation.msh -------------------------------------------------------------------------------- /tests/30_oris_quat_passive/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/30_oris_quat_passive/test.cmake -------------------------------------------------------------------------------- /tests/31_general_bcs/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/31_general_bcs/ref.sim/.sim -------------------------------------------------------------------------------- /tests/31_general_bcs/ref.sim/inputs/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/31_general_bcs/ref.sim/inputs/simulation.cfg -------------------------------------------------------------------------------- /tests/31_general_bcs/ref.sim/inputs/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/31_general_bcs/ref.sim/inputs/simulation.msh -------------------------------------------------------------------------------- /tests/31_general_bcs/ref.sim/results/forces/x0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/31_general_bcs/ref.sim/results/forces/x0 -------------------------------------------------------------------------------- /tests/31_general_bcs/ref.sim/results/forces/x1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/31_general_bcs/ref.sim/results/forces/x1 -------------------------------------------------------------------------------- /tests/31_general_bcs/ref.sim/results/forces/y0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/31_general_bcs/ref.sim/results/forces/y0 -------------------------------------------------------------------------------- /tests/31_general_bcs/ref.sim/results/forces/y1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/31_general_bcs/ref.sim/results/forces/y1 -------------------------------------------------------------------------------- /tests/31_general_bcs/ref.sim/results/forces/z0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/31_general_bcs/ref.sim/results/forces/z0 -------------------------------------------------------------------------------- /tests/31_general_bcs/ref.sim/results/forces/z1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/31_general_bcs/ref.sim/results/forces/z1 -------------------------------------------------------------------------------- /tests/31_general_bcs/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/31_general_bcs/simulation.cfg -------------------------------------------------------------------------------- /tests/31_general_bcs/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/31_general_bcs/simulation.msh -------------------------------------------------------------------------------- /tests/31_general_bcs/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/31_general_bcs/test.cmake -------------------------------------------------------------------------------- /tests/32_bcc_fully_anisotropic_hard/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/32_bcc_fully_anisotropic_hard/ref.sim/.sim -------------------------------------------------------------------------------- /tests/32_bcc_fully_anisotropic_hard/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/32_bcc_fully_anisotropic_hard/simulation.cfg -------------------------------------------------------------------------------- /tests/32_bcc_fully_anisotropic_hard/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/32_bcc_fully_anisotropic_hard/simulation.msh -------------------------------------------------------------------------------- /tests/32_bcc_fully_anisotropic_hard/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/32_bcc_fully_anisotropic_hard/test.cmake -------------------------------------------------------------------------------- /tests/33_fcc_fully_anisotropic_hard/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/33_fcc_fully_anisotropic_hard/ref.sim/.sim -------------------------------------------------------------------------------- /tests/33_fcc_fully_anisotropic_hard/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/33_fcc_fully_anisotropic_hard/simulation.cfg -------------------------------------------------------------------------------- /tests/33_fcc_fully_anisotropic_hard/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/33_fcc_fully_anisotropic_hard/simulation.msh -------------------------------------------------------------------------------- /tests/33_fcc_fully_anisotropic_hard/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/33_fcc_fully_anisotropic_hard/test.cmake -------------------------------------------------------------------------------- /tests/34_hcp_fully_anisotropic_hard/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/34_hcp_fully_anisotropic_hard/ref.sim/.sim -------------------------------------------------------------------------------- /tests/34_hcp_fully_anisotropic_hard/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/34_hcp_fully_anisotropic_hard/simulation.cfg -------------------------------------------------------------------------------- /tests/34_hcp_fully_anisotropic_hard/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/34_hcp_fully_anisotropic_hard/simulation.msh -------------------------------------------------------------------------------- /tests/34_hcp_fully_anisotropic_hard/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/34_hcp_fully_anisotropic_hard/test.cmake -------------------------------------------------------------------------------- /tests/35_bct_fully_anisotropic_hard/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/35_bct_fully_anisotropic_hard/ref.sim/.sim -------------------------------------------------------------------------------- /tests/35_bct_fully_anisotropic_hard/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/35_bct_fully_anisotropic_hard/simulation.cfg -------------------------------------------------------------------------------- /tests/35_bct_fully_anisotropic_hard/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/35_bct_fully_anisotropic_hard/simulation.msh -------------------------------------------------------------------------------- /tests/35_bct_fully_anisotropic_hard/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/35_bct_fully_anisotropic_hard/test.cmake -------------------------------------------------------------------------------- /tests/36_bcc_aniso_g_0/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/36_bcc_aniso_g_0/ref.sim/.sim -------------------------------------------------------------------------------- /tests/36_bcc_aniso_g_0/ref.sim/inputs/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/36_bcc_aniso_g_0/ref.sim/inputs/simulation.cfg -------------------------------------------------------------------------------- /tests/36_bcc_aniso_g_0/ref.sim/inputs/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/36_bcc_aniso_g_0/ref.sim/inputs/simulation.msh -------------------------------------------------------------------------------- /tests/36_bcc_aniso_g_0/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/36_bcc_aniso_g_0/simulation.cfg -------------------------------------------------------------------------------- /tests/36_bcc_aniso_g_0/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/36_bcc_aniso_g_0/simulation.msh -------------------------------------------------------------------------------- /tests/36_bcc_aniso_g_0/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/36_bcc_aniso_g_0/test.cmake -------------------------------------------------------------------------------- /tests/37_fcc_aniso_g_0/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/37_fcc_aniso_g_0/ref.sim/.sim -------------------------------------------------------------------------------- /tests/37_fcc_aniso_g_0/ref.sim/inputs/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/37_fcc_aniso_g_0/ref.sim/inputs/simulation.cfg -------------------------------------------------------------------------------- /tests/37_fcc_aniso_g_0/ref.sim/inputs/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/37_fcc_aniso_g_0/ref.sim/inputs/simulation.msh -------------------------------------------------------------------------------- /tests/37_fcc_aniso_g_0/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/37_fcc_aniso_g_0/simulation.cfg -------------------------------------------------------------------------------- /tests/37_fcc_aniso_g_0/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/37_fcc_aniso_g_0/simulation.msh -------------------------------------------------------------------------------- /tests/37_fcc_aniso_g_0/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/37_fcc_aniso_g_0/test.cmake -------------------------------------------------------------------------------- /tests/38_hcp_aniso_g_0/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/38_hcp_aniso_g_0/ref.sim/.sim -------------------------------------------------------------------------------- /tests/38_hcp_aniso_g_0/ref.sim/inputs/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/38_hcp_aniso_g_0/ref.sim/inputs/simulation.cfg -------------------------------------------------------------------------------- /tests/38_hcp_aniso_g_0/ref.sim/inputs/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/38_hcp_aniso_g_0/ref.sim/inputs/simulation.msh -------------------------------------------------------------------------------- /tests/38_hcp_aniso_g_0/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/38_hcp_aniso_g_0/simulation.cfg -------------------------------------------------------------------------------- /tests/38_hcp_aniso_g_0/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/38_hcp_aniso_g_0/simulation.msh -------------------------------------------------------------------------------- /tests/38_hcp_aniso_g_0/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/38_hcp_aniso_g_0/test.cmake -------------------------------------------------------------------------------- /tests/39_bct_aniso_g_0/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/39_bct_aniso_g_0/ref.sim/.sim -------------------------------------------------------------------------------- /tests/39_bct_aniso_g_0/ref.sim/inputs/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/39_bct_aniso_g_0/ref.sim/inputs/simulation.cfg -------------------------------------------------------------------------------- /tests/39_bct_aniso_g_0/ref.sim/inputs/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/39_bct_aniso_g_0/ref.sim/inputs/simulation.msh -------------------------------------------------------------------------------- /tests/39_bct_aniso_g_0/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/39_bct_aniso_g_0/simulation.cfg -------------------------------------------------------------------------------- /tests/39_bct_aniso_g_0/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/39_bct_aniso_g_0/simulation.msh -------------------------------------------------------------------------------- /tests/39_bct_aniso_g_0/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/39_bct_aniso_g_0/test.cmake -------------------------------------------------------------------------------- /tests/40_bcc_precipitates/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/40_bcc_precipitates/ref.sim/.sim -------------------------------------------------------------------------------- /tests/40_bcc_precipitates/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/40_bcc_precipitates/simulation.cfg -------------------------------------------------------------------------------- /tests/40_bcc_precipitates/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/40_bcc_precipitates/simulation.msh -------------------------------------------------------------------------------- /tests/40_bcc_precipitates/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/40_bcc_precipitates/test.cmake -------------------------------------------------------------------------------- /tests/41_fcc_precipitates/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/41_fcc_precipitates/ref.sim/.sim -------------------------------------------------------------------------------- /tests/41_fcc_precipitates/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/41_fcc_precipitates/simulation.cfg -------------------------------------------------------------------------------- /tests/41_fcc_precipitates/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/41_fcc_precipitates/simulation.msh -------------------------------------------------------------------------------- /tests/41_fcc_precipitates/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/41_fcc_precipitates/test.cmake -------------------------------------------------------------------------------- /tests/42_hcp_precipitates/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/42_hcp_precipitates/ref.sim/.sim -------------------------------------------------------------------------------- /tests/42_hcp_precipitates/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/42_hcp_precipitates/simulation.cfg -------------------------------------------------------------------------------- /tests/42_hcp_precipitates/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/42_hcp_precipitates/simulation.msh -------------------------------------------------------------------------------- /tests/42_hcp_precipitates/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/42_hcp_precipitates/test.cmake -------------------------------------------------------------------------------- /tests/43_bct_precipitates/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/43_bct_precipitates/ref.sim/.sim -------------------------------------------------------------------------------- /tests/43_bct_precipitates/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/43_bct_precipitates/simulation.cfg -------------------------------------------------------------------------------- /tests/43_bct_precipitates/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/43_bct_precipitates/simulation.msh -------------------------------------------------------------------------------- /tests/43_bct_precipitates/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/43_bct_precipitates/test.cmake -------------------------------------------------------------------------------- /tests/44_bcc_112_slip/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/44_bcc_112_slip/ref.sim/.sim -------------------------------------------------------------------------------- /tests/44_bcc_112_slip/ref.sim/inputs/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/44_bcc_112_slip/ref.sim/inputs/simulation.cfg -------------------------------------------------------------------------------- /tests/44_bcc_112_slip/ref.sim/inputs/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/44_bcc_112_slip/ref.sim/inputs/simulation.msh -------------------------------------------------------------------------------- /tests/44_bcc_112_slip/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/44_bcc_112_slip/simulation.cfg -------------------------------------------------------------------------------- /tests/44_bcc_112_slip/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/44_bcc_112_slip/simulation.msh -------------------------------------------------------------------------------- /tests/44_bcc_112_slip/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/44_bcc_112_slip/test.cmake -------------------------------------------------------------------------------- /tests/45_bcc_112_slip_aniso_g0/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/45_bcc_112_slip_aniso_g0/ref.sim/.sim -------------------------------------------------------------------------------- /tests/45_bcc_112_slip_aniso_g0/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/45_bcc_112_slip_aniso_g0/simulation.cfg -------------------------------------------------------------------------------- /tests/45_bcc_112_slip_aniso_g0/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/45_bcc_112_slip_aniso_g0/simulation.msh -------------------------------------------------------------------------------- /tests/45_bcc_112_slip_aniso_g0/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/45_bcc_112_slip_aniso_g0/test.cmake -------------------------------------------------------------------------------- /tests/46_mixedhard/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/46_mixedhard/ref.sim/.sim -------------------------------------------------------------------------------- /tests/46_mixedhard/ref.sim/inputs/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/46_mixedhard/ref.sim/inputs/simulation.cfg -------------------------------------------------------------------------------- /tests/46_mixedhard/ref.sim/inputs/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/46_mixedhard/ref.sim/inputs/simulation.msh -------------------------------------------------------------------------------- /tests/46_mixedhard/ref.sim/results/elts/ori/ori.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/46_mixedhard/ref.sim/results/elts/ori/ori.step0 -------------------------------------------------------------------------------- /tests/46_mixedhard/ref.sim/results/elts/ori/ori.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/46_mixedhard/ref.sim/results/elts/ori/ori.step1 -------------------------------------------------------------------------------- /tests/46_mixedhard/ref.sim/results/elts/ori/ori.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/46_mixedhard/ref.sim/results/elts/ori/ori.step2 -------------------------------------------------------------------------------- /tests/46_mixedhard/ref.sim/results/nodes/coo/coo.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/46_mixedhard/ref.sim/results/nodes/coo/coo.step0 -------------------------------------------------------------------------------- /tests/46_mixedhard/ref.sim/results/nodes/coo/coo.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/46_mixedhard/ref.sim/results/nodes/coo/coo.step1 -------------------------------------------------------------------------------- /tests/46_mixedhard/ref.sim/results/nodes/coo/coo.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/46_mixedhard/ref.sim/results/nodes/coo/coo.step2 -------------------------------------------------------------------------------- /tests/46_mixedhard/ref.sim/results/nodes/vel/vel.step0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/46_mixedhard/ref.sim/results/nodes/vel/vel.step0 -------------------------------------------------------------------------------- /tests/46_mixedhard/ref.sim/results/nodes/vel/vel.step1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/46_mixedhard/ref.sim/results/nodes/vel/vel.step1 -------------------------------------------------------------------------------- /tests/46_mixedhard/ref.sim/results/nodes/vel/vel.step2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/46_mixedhard/ref.sim/results/nodes/vel/vel.step2 -------------------------------------------------------------------------------- /tests/46_mixedhard/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/46_mixedhard/simulation.cfg -------------------------------------------------------------------------------- /tests/46_mixedhard/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/46_mixedhard/simulation.msh -------------------------------------------------------------------------------- /tests/46_mixedhard/test.cmake_disable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/46_mixedhard/test.cmake_disable -------------------------------------------------------------------------------- /tests/47_mpc_plane_face/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/47_mpc_plane_face/ref.sim/.sim -------------------------------------------------------------------------------- /tests/47_mpc_plane_face/ref.sim/inputs/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/47_mpc_plane_face/ref.sim/inputs/simulation.cfg -------------------------------------------------------------------------------- /tests/47_mpc_plane_face/ref.sim/inputs/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/47_mpc_plane_face/ref.sim/inputs/simulation.msh -------------------------------------------------------------------------------- /tests/47_mpc_plane_face/ref.sim/inputs/simulation.tess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/47_mpc_plane_face/ref.sim/inputs/simulation.tess -------------------------------------------------------------------------------- /tests/47_mpc_plane_face/ref.sim/results/forces/x0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/47_mpc_plane_face/ref.sim/results/forces/x0 -------------------------------------------------------------------------------- /tests/47_mpc_plane_face/ref.sim/results/forces/x1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/47_mpc_plane_face/ref.sim/results/forces/x1 -------------------------------------------------------------------------------- /tests/47_mpc_plane_face/ref.sim/results/forces/y0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/47_mpc_plane_face/ref.sim/results/forces/y0 -------------------------------------------------------------------------------- /tests/47_mpc_plane_face/ref.sim/results/forces/y1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/47_mpc_plane_face/ref.sim/results/forces/y1 -------------------------------------------------------------------------------- /tests/47_mpc_plane_face/ref.sim/results/forces/z0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/47_mpc_plane_face/ref.sim/results/forces/z0 -------------------------------------------------------------------------------- /tests/47_mpc_plane_face/ref.sim/results/forces/z1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/47_mpc_plane_face/ref.sim/results/forces/z1 -------------------------------------------------------------------------------- /tests/47_mpc_plane_face/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/47_mpc_plane_face/simulation.cfg -------------------------------------------------------------------------------- /tests/47_mpc_plane_face/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/47_mpc_plane_face/simulation.msh -------------------------------------------------------------------------------- /tests/47_mpc_plane_face/simulation.tess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/47_mpc_plane_face/simulation.tess -------------------------------------------------------------------------------- /tests/47_mpc_plane_face/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/47_mpc_plane_face/test.cmake -------------------------------------------------------------------------------- /tests/49_pbc_triaxial_tracomp/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/49_pbc_triaxial_tracomp/ref.sim/.sim -------------------------------------------------------------------------------- /tests/49_pbc_triaxial_tracomp/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/49_pbc_triaxial_tracomp/simulation.cfg -------------------------------------------------------------------------------- /tests/49_pbc_triaxial_tracomp/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/49_pbc_triaxial_tracomp/simulation.msh -------------------------------------------------------------------------------- /tests/49_pbc_triaxial_tracomp/simulation.tess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/49_pbc_triaxial_tracomp/simulation.tess -------------------------------------------------------------------------------- /tests/49_pbc_triaxial_tracomp/test.cmake-disable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/49_pbc_triaxial_tracomp/test.cmake-disable -------------------------------------------------------------------------------- /tests/50_pbc_triaxial_shear/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/50_pbc_triaxial_shear/ref.sim/.sim -------------------------------------------------------------------------------- /tests/50_pbc_triaxial_shear/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/50_pbc_triaxial_shear/simulation.cfg -------------------------------------------------------------------------------- /tests/50_pbc_triaxial_shear/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/50_pbc_triaxial_shear/simulation.msh -------------------------------------------------------------------------------- /tests/50_pbc_triaxial_shear/simulation.tess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/50_pbc_triaxial_shear/simulation.tess -------------------------------------------------------------------------------- /tests/50_pbc_triaxial_shear/test.cmake_disable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/50_pbc_triaxial_shear/test.cmake_disable -------------------------------------------------------------------------------- /tests/51_bcc_elt_opt_input/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/51_bcc_elt_opt_input/ref.sim/.sim -------------------------------------------------------------------------------- /tests/51_bcc_elt_opt_input/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/51_bcc_elt_opt_input/simulation.cfg -------------------------------------------------------------------------------- /tests/51_bcc_elt_opt_input/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/51_bcc_elt_opt_input/simulation.msh -------------------------------------------------------------------------------- /tests/51_bcc_elt_opt_input/simulation.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/51_bcc_elt_opt_input/simulation.opt -------------------------------------------------------------------------------- /tests/51_bcc_elt_opt_input/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/51_bcc_elt_opt_input/test.cmake -------------------------------------------------------------------------------- /tests/52_fcc_elt_opt_input/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/52_fcc_elt_opt_input/ref.sim/.sim -------------------------------------------------------------------------------- /tests/52_fcc_elt_opt_input/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/52_fcc_elt_opt_input/simulation.cfg -------------------------------------------------------------------------------- /tests/52_fcc_elt_opt_input/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/52_fcc_elt_opt_input/simulation.msh -------------------------------------------------------------------------------- /tests/52_fcc_elt_opt_input/simulation.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/52_fcc_elt_opt_input/simulation.opt -------------------------------------------------------------------------------- /tests/52_fcc_elt_opt_input/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/52_fcc_elt_opt_input/test.cmake -------------------------------------------------------------------------------- /tests/53_hcp_elt_opt_input/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/53_hcp_elt_opt_input/ref.sim/.sim -------------------------------------------------------------------------------- /tests/53_hcp_elt_opt_input/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/53_hcp_elt_opt_input/simulation.cfg -------------------------------------------------------------------------------- /tests/53_hcp_elt_opt_input/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/53_hcp_elt_opt_input/simulation.msh -------------------------------------------------------------------------------- /tests/53_hcp_elt_opt_input/simulation.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/53_hcp_elt_opt_input/simulation.opt -------------------------------------------------------------------------------- /tests/53_hcp_elt_opt_input/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/53_hcp_elt_opt_input/test.cmake -------------------------------------------------------------------------------- /tests/54_bct_elt_opt_input/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/54_bct_elt_opt_input/ref.sim/.sim -------------------------------------------------------------------------------- /tests/54_bct_elt_opt_input/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/54_bct_elt_opt_input/simulation.cfg -------------------------------------------------------------------------------- /tests/54_bct_elt_opt_input/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/54_bct_elt_opt_input/simulation.msh -------------------------------------------------------------------------------- /tests/54_bct_elt_opt_input/simulation.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/54_bct_elt_opt_input/simulation.opt -------------------------------------------------------------------------------- /tests/54_bct_elt_opt_input/test.cmake-disable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/54_bct_elt_opt_input/test.cmake-disable -------------------------------------------------------------------------------- /tests/55_bcc_112_elt_opt_input/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/55_bcc_112_elt_opt_input/ref.sim/.sim -------------------------------------------------------------------------------- /tests/55_bcc_112_elt_opt_input/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/55_bcc_112_elt_opt_input/simulation.cfg -------------------------------------------------------------------------------- /tests/55_bcc_112_elt_opt_input/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/55_bcc_112_elt_opt_input/simulation.msh -------------------------------------------------------------------------------- /tests/55_bcc_112_elt_opt_input/simulation.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/55_bcc_112_elt_opt_input/simulation.opt -------------------------------------------------------------------------------- /tests/55_bcc_112_elt_opt_input/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/55_bcc_112_elt_opt_input/test.cmake -------------------------------------------------------------------------------- /tests/56_bcc_elset_opt_input/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/56_bcc_elset_opt_input/ref.sim/.sim -------------------------------------------------------------------------------- /tests/56_bcc_elset_opt_input/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/56_bcc_elset_opt_input/simulation.cfg -------------------------------------------------------------------------------- /tests/56_bcc_elset_opt_input/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/56_bcc_elset_opt_input/simulation.msh -------------------------------------------------------------------------------- /tests/56_bcc_elset_opt_input/simulation.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/56_bcc_elset_opt_input/simulation.opt -------------------------------------------------------------------------------- /tests/56_bcc_elset_opt_input/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/56_bcc_elset_opt_input/test.cmake -------------------------------------------------------------------------------- /tests/57_fcc_elset_opt_input/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/57_fcc_elset_opt_input/ref.sim/.sim -------------------------------------------------------------------------------- /tests/57_fcc_elset_opt_input/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/57_fcc_elset_opt_input/simulation.cfg -------------------------------------------------------------------------------- /tests/57_fcc_elset_opt_input/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/57_fcc_elset_opt_input/simulation.msh -------------------------------------------------------------------------------- /tests/57_fcc_elset_opt_input/simulation.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/57_fcc_elset_opt_input/simulation.opt -------------------------------------------------------------------------------- /tests/57_fcc_elset_opt_input/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/57_fcc_elset_opt_input/test.cmake -------------------------------------------------------------------------------- /tests/58_hcp_elset_opt_input/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/58_hcp_elset_opt_input/ref.sim/.sim -------------------------------------------------------------------------------- /tests/58_hcp_elset_opt_input/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/58_hcp_elset_opt_input/simulation.cfg -------------------------------------------------------------------------------- /tests/58_hcp_elset_opt_input/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/58_hcp_elset_opt_input/simulation.msh -------------------------------------------------------------------------------- /tests/58_hcp_elset_opt_input/simulation.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/58_hcp_elset_opt_input/simulation.opt -------------------------------------------------------------------------------- /tests/58_hcp_elset_opt_input/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/58_hcp_elset_opt_input/test.cmake -------------------------------------------------------------------------------- /tests/59_bct_elset_opt_input/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/59_bct_elset_opt_input/ref.sim/.sim -------------------------------------------------------------------------------- /tests/59_bct_elset_opt_input/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/59_bct_elset_opt_input/simulation.cfg -------------------------------------------------------------------------------- /tests/59_bct_elset_opt_input/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/59_bct_elset_opt_input/simulation.msh -------------------------------------------------------------------------------- /tests/59_bct_elset_opt_input/simulation.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/59_bct_elset_opt_input/simulation.opt -------------------------------------------------------------------------------- /tests/59_bct_elset_opt_input/test.cmake-disable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/59_bct_elset_opt_input/test.cmake-disable -------------------------------------------------------------------------------- /tests/60_bcc_112_elset_opt_input/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/60_bcc_112_elset_opt_input/ref.sim/.sim -------------------------------------------------------------------------------- /tests/60_bcc_112_elset_opt_input/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/60_bcc_112_elset_opt_input/simulation.cfg -------------------------------------------------------------------------------- /tests/60_bcc_112_elset_opt_input/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/60_bcc_112_elset_opt_input/simulation.msh -------------------------------------------------------------------------------- /tests/60_bcc_112_elset_opt_input/simulation.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/60_bcc_112_elset_opt_input/simulation.opt -------------------------------------------------------------------------------- /tests/60_bcc_112_elset_opt_input/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/60_bcc_112_elset_opt_input/test.cmake -------------------------------------------------------------------------------- /tests/61_restart_test_1/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/61_restart_test_1/ref.sim/.sim -------------------------------------------------------------------------------- /tests/61_restart_test_1/ref.sim/inputs/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/61_restart_test_1/ref.sim/inputs/simulation.cfg -------------------------------------------------------------------------------- /tests/61_restart_test_1/ref.sim/inputs/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/61_restart_test_1/ref.sim/inputs/simulation.msh -------------------------------------------------------------------------------- /tests/61_restart_test_1/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/61_restart_test_1/simulation.cfg -------------------------------------------------------------------------------- /tests/61_restart_test_1/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/61_restart_test_1/simulation.msh -------------------------------------------------------------------------------- /tests/61_restart_test_1/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/61_restart_test_1/test.cmake -------------------------------------------------------------------------------- /tests/62_restart_test_2/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/62_restart_test_2/simulation.cfg -------------------------------------------------------------------------------- /tests/62_restart_test_2/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/62_restart_test_2/simulation.msh -------------------------------------------------------------------------------- /tests/62_restart_test_2/test.cmake_disable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/62_restart_test_2/test.cmake_disable -------------------------------------------------------------------------------- /tests/63_target_load/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/63_target_load/ref.sim/.sim -------------------------------------------------------------------------------- /tests/63_target_load/ref.sim/inputs/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/63_target_load/ref.sim/inputs/simulation.cfg -------------------------------------------------------------------------------- /tests/63_target_load/ref.sim/inputs/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/63_target_load/ref.sim/inputs/simulation.msh -------------------------------------------------------------------------------- /tests/63_target_load/ref.sim/inputs/simulation.tess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/63_target_load/ref.sim/inputs/simulation.tess -------------------------------------------------------------------------------- /tests/63_target_load/ref.sim/results/forces/x0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/63_target_load/ref.sim/results/forces/x0 -------------------------------------------------------------------------------- /tests/63_target_load/ref.sim/results/forces/x1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/63_target_load/ref.sim/results/forces/x1 -------------------------------------------------------------------------------- /tests/63_target_load/ref.sim/results/forces/y0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/63_target_load/ref.sim/results/forces/y0 -------------------------------------------------------------------------------- /tests/63_target_load/ref.sim/results/forces/y1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/63_target_load/ref.sim/results/forces/y1 -------------------------------------------------------------------------------- /tests/63_target_load/ref.sim/results/forces/z0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/63_target_load/ref.sim/results/forces/z0 -------------------------------------------------------------------------------- /tests/63_target_load/ref.sim/results/forces/z1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/63_target_load/ref.sim/results/forces/z1 -------------------------------------------------------------------------------- /tests/63_target_load/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/63_target_load/simulation.cfg -------------------------------------------------------------------------------- /tests/63_target_load/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/63_target_load/simulation.msh -------------------------------------------------------------------------------- /tests/63_target_load/simulation.tess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/63_target_load/simulation.tess -------------------------------------------------------------------------------- /tests/63_target_load/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/63_target_load/test.cmake -------------------------------------------------------------------------------- /tests/64_target_strain_dtime/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/64_target_strain_dtime/ref.sim/.sim -------------------------------------------------------------------------------- /tests/64_target_strain_dtime/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/64_target_strain_dtime/simulation.cfg -------------------------------------------------------------------------------- /tests/64_target_strain_dtime/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/64_target_strain_dtime/simulation.msh -------------------------------------------------------------------------------- /tests/64_target_strain_dtime/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/64_target_strain_dtime/test.cmake -------------------------------------------------------------------------------- /tests/65_target_strain_dstrain/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/65_target_strain_dstrain/ref.sim/.sim -------------------------------------------------------------------------------- /tests/65_target_strain_dstrain/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/65_target_strain_dstrain/simulation.cfg -------------------------------------------------------------------------------- /tests/65_target_strain_dstrain/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/65_target_strain_dstrain/simulation.msh -------------------------------------------------------------------------------- /tests/65_target_strain_dstrain/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/65_target_strain_dstrain/test.cmake -------------------------------------------------------------------------------- /tests/66_target_strain_incr/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/66_target_strain_incr/ref.sim/.sim -------------------------------------------------------------------------------- /tests/66_target_strain_incr/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/66_target_strain_incr/simulation.cfg -------------------------------------------------------------------------------- /tests/66_target_strain_incr/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/66_target_strain_incr/simulation.msh -------------------------------------------------------------------------------- /tests/66_target_strain_incr/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/66_target_strain_incr/test.cmake -------------------------------------------------------------------------------- /tests/67_target_time_dtime/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/67_target_time_dtime/ref.sim/.sim -------------------------------------------------------------------------------- /tests/67_target_time_dtime/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/67_target_time_dtime/simulation.cfg -------------------------------------------------------------------------------- /tests/67_target_time_dtime/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/67_target_time_dtime/simulation.msh -------------------------------------------------------------------------------- /tests/67_target_time_dtime/test.cmake-disable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/67_target_time_dtime/test.cmake-disable -------------------------------------------------------------------------------- /tests/68_target_time_dtime2/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/68_target_time_dtime2/ref.sim/.sim -------------------------------------------------------------------------------- /tests/68_target_time_dtime2/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/68_target_time_dtime2/simulation.cfg -------------------------------------------------------------------------------- /tests/68_target_time_dtime2/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/68_target_time_dtime2/simulation.msh -------------------------------------------------------------------------------- /tests/68_target_time_dtime2/test.cmake-disable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/68_target_time_dtime2/test.cmake-disable -------------------------------------------------------------------------------- /tests/69_target_time_incr/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/69_target_time_incr/ref.sim/.sim -------------------------------------------------------------------------------- /tests/69_target_time_incr/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/69_target_time_incr/simulation.cfg -------------------------------------------------------------------------------- /tests/69_target_time_incr/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/69_target_time_incr/simulation.msh -------------------------------------------------------------------------------- /tests/69_target_time_incr/test.cmake-disable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/69_target_time_incr/test.cmake-disable -------------------------------------------------------------------------------- /tests/LEGACY_target_load/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/LEGACY_target_load/ref.sim/.sim -------------------------------------------------------------------------------- /tests/LEGACY_target_load/ref.sim/inputs/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/LEGACY_target_load/ref.sim/inputs/simulation.cfg -------------------------------------------------------------------------------- /tests/LEGACY_target_load/ref.sim/inputs/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/LEGACY_target_load/ref.sim/inputs/simulation.msh -------------------------------------------------------------------------------- /tests/LEGACY_target_load/ref.sim/results/forces/x0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/LEGACY_target_load/ref.sim/results/forces/x0 -------------------------------------------------------------------------------- /tests/LEGACY_target_load/ref.sim/results/forces/x1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/LEGACY_target_load/ref.sim/results/forces/x1 -------------------------------------------------------------------------------- /tests/LEGACY_target_load/ref.sim/results/forces/y0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/LEGACY_target_load/ref.sim/results/forces/y0 -------------------------------------------------------------------------------- /tests/LEGACY_target_load/ref.sim/results/forces/y1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/LEGACY_target_load/ref.sim/results/forces/y1 -------------------------------------------------------------------------------- /tests/LEGACY_target_load/ref.sim/results/forces/z0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/LEGACY_target_load/ref.sim/results/forces/z0 -------------------------------------------------------------------------------- /tests/LEGACY_target_load/ref.sim/results/forces/z1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/LEGACY_target_load/ref.sim/results/forces/z1 -------------------------------------------------------------------------------- /tests/LEGACY_target_load/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/LEGACY_target_load/simulation.cfg -------------------------------------------------------------------------------- /tests/LEGACY_target_load/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/LEGACY_target_load/simulation.msh -------------------------------------------------------------------------------- /tests/LEGACY_target_load/simulation.tess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/LEGACY_target_load/simulation.tess -------------------------------------------------------------------------------- /tests/LEGACY_target_load/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/LEGACY_target_load/test.cmake -------------------------------------------------------------------------------- /tests/LEGACY_triaxial_clr/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/LEGACY_triaxial_clr/ref.sim/.sim -------------------------------------------------------------------------------- /tests/LEGACY_triaxial_clr/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/LEGACY_triaxial_clr/simulation.cfg -------------------------------------------------------------------------------- /tests/LEGACY_triaxial_clr/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/LEGACY_triaxial_clr/simulation.msh -------------------------------------------------------------------------------- /tests/LEGACY_triaxial_clr/test.cmake-disable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/LEGACY_triaxial_clr/test.cmake-disable -------------------------------------------------------------------------------- /tests/LEGACY_triaxial_csr/ref.sim/.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/LEGACY_triaxial_csr/ref.sim/.sim -------------------------------------------------------------------------------- /tests/LEGACY_triaxial_csr/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/LEGACY_triaxial_csr/simulation.cfg -------------------------------------------------------------------------------- /tests/LEGACY_triaxial_csr/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/LEGACY_triaxial_csr/simulation.msh -------------------------------------------------------------------------------- /tests/LEGACY_triaxial_csr/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/LEGACY_triaxial_csr/test.cmake -------------------------------------------------------------------------------- /tests/Testing/Temporary/CTestCostData.txt: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /tests/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/test.cmake -------------------------------------------------------------------------------- /tests/test_mesh_gen/generate_mesh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/test_mesh_gen/generate_mesh.sh -------------------------------------------------------------------------------- /tests/test_mesh_gen/seed_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/test_mesh_gen/seed_points.txt -------------------------------------------------------------------------------- /tests/test_mesh_gen/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/test_mesh_gen/simulation.msh -------------------------------------------------------------------------------- /tests/test_mesh_gen/simulation.tess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/test_mesh_gen/simulation.tess -------------------------------------------------------------------------------- /tests/test_mesh_gen/test_mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/test_mesh_gen/test_mesh.png -------------------------------------------------------------------------------- /tests/test_mesh_gen/test_tess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tests/test_mesh_gen/test_tess.png -------------------------------------------------------------------------------- /tutorials/overwriting/generate_mesh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tutorials/overwriting/generate_mesh.sh -------------------------------------------------------------------------------- /tutorials/overwriting/orifile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tutorials/overwriting/orifile -------------------------------------------------------------------------------- /tutorials/overwriting/plot_stress_time.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tutorials/overwriting/plot_stress_time.gp -------------------------------------------------------------------------------- /tutorials/overwriting/post_process.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tutorials/overwriting/post_process.sh -------------------------------------------------------------------------------- /tutorials/overwriting/run_example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tutorials/overwriting/run_example.sh -------------------------------------------------------------------------------- /tutorials/overwriting/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tutorials/overwriting/simulation.cfg -------------------------------------------------------------------------------- /tutorials/overwriting/simulation.fib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tutorials/overwriting/simulation.fib -------------------------------------------------------------------------------- /tutorials/overwriting/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tutorials/overwriting/simulation.msh -------------------------------------------------------------------------------- /tutorials/overwriting/simulation.ori: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tutorials/overwriting/simulation.ori -------------------------------------------------------------------------------- /tutorials/overwriting/simulation.phase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tutorials/overwriting/simulation.phase -------------------------------------------------------------------------------- /tutorials/overwriting/simulation.tess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tutorials/overwriting/simulation.tess -------------------------------------------------------------------------------- /tutorials/restart/generate_mesh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tutorials/restart/generate_mesh.sh -------------------------------------------------------------------------------- /tutorials/restart/post_process.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tutorials/restart/post_process.sh -------------------------------------------------------------------------------- /tutorials/restart/run_example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tutorials/restart/run_example.sh -------------------------------------------------------------------------------- /tutorials/restart/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tutorials/restart/simulation.msh -------------------------------------------------------------------------------- /tutorials/restart/simulation.tess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tutorials/restart/simulation.tess -------------------------------------------------------------------------------- /tutorials/restart/simulation_cycle1.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tutorials/restart/simulation_cycle1.config -------------------------------------------------------------------------------- /tutorials/restart/simulation_cycle2.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tutorials/restart/simulation_cycle2.config -------------------------------------------------------------------------------- /tutorials/triaxCLR/generate_mesh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tutorials/triaxCLR/generate_mesh.sh -------------------------------------------------------------------------------- /tutorials/triaxCLR/plot_stress_strain.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tutorials/triaxCLR/plot_stress_strain.gp -------------------------------------------------------------------------------- /tutorials/triaxCLR/plot_stress_time.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tutorials/triaxCLR/plot_stress_time.gp -------------------------------------------------------------------------------- /tutorials/triaxCLR/post_process.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tutorials/triaxCLR/post_process.sh -------------------------------------------------------------------------------- /tutorials/triaxCLR/run_example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tutorials/triaxCLR/run_example.sh -------------------------------------------------------------------------------- /tutorials/triaxCLR/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tutorials/triaxCLR/simulation.cfg -------------------------------------------------------------------------------- /tutorials/triaxCLR/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tutorials/triaxCLR/simulation.msh -------------------------------------------------------------------------------- /tutorials/triaxCLR/simulation.tess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tutorials/triaxCLR/simulation.tess -------------------------------------------------------------------------------- /tutorials/triaxCSR/generate_mesh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tutorials/triaxCSR/generate_mesh.sh -------------------------------------------------------------------------------- /tutorials/triaxCSR/plot_strain_time.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tutorials/triaxCSR/plot_strain_time.gp -------------------------------------------------------------------------------- /tutorials/triaxCSR/post_process.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tutorials/triaxCSR/post_process.sh -------------------------------------------------------------------------------- /tutorials/triaxCSR/run_example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tutorials/triaxCSR/run_example.sh -------------------------------------------------------------------------------- /tutorials/triaxCSR/simulation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tutorials/triaxCSR/simulation.cfg -------------------------------------------------------------------------------- /tutorials/triaxCSR/simulation.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tutorials/triaxCSR/simulation.msh -------------------------------------------------------------------------------- /tutorials/triaxCSR/simulation.tess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neperfepx/FEPX/HEAD/tutorials/triaxCSR/simulation.tess --------------------------------------------------------------------------------