├── .gitignore ├── README.md ├── materials └── residual_stress.gif └── src ├── arguments.py ├── cfd.py ├── mechanical.py ├── residual_stress_fenics.py ├── test_mpi.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMSL-HKUST/plasticity/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMSL-HKUST/plasticity/HEAD/README.md -------------------------------------------------------------------------------- /materials/residual_stress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMSL-HKUST/plasticity/HEAD/materials/residual_stress.gif -------------------------------------------------------------------------------- /src/arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMSL-HKUST/plasticity/HEAD/src/arguments.py -------------------------------------------------------------------------------- /src/cfd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMSL-HKUST/plasticity/HEAD/src/cfd.py -------------------------------------------------------------------------------- /src/mechanical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMSL-HKUST/plasticity/HEAD/src/mechanical.py -------------------------------------------------------------------------------- /src/residual_stress_fenics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMSL-HKUST/plasticity/HEAD/src/residual_stress_fenics.py -------------------------------------------------------------------------------- /src/test_mpi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMSL-HKUST/plasticity/HEAD/src/test_mpi.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMSL-HKUST/plasticity/HEAD/src/utils.py --------------------------------------------------------------------------------