├── ExampleInputFiles ├── DiscreteTwin │ ├── CoheleBulkMap.f │ ├── Job-1.inp │ ├── kMaterialParam.f │ └── mycommon.f ├── DiscreteTwinFracture │ ├── CoheleBulkMap.f │ ├── Job-2.inp │ ├── Square30umEl0p25-bulk-elems.inp │ ├── Square30umEl0p25-int-elems-new.inp │ ├── Square30umEl0p25-node-sets.inp │ ├── Square30umEl0p25-node.inp │ └── kMaterialParam.f ├── HCPnoTwin │ ├── Compression111.inp │ ├── kMaterialParam.f │ └── umat.for ├── HomogeneousTwin │ ├── CoheleBulkMap.f │ ├── Job-1.inp │ ├── kMaterialParam.f │ ├── kmat.f │ └── mycommon.f └── README.txt ├── InterfaceElementGeneration ├── CohesiveElementsEverywhere │ ├── CohesiveElementsCheck.py │ ├── CohesiveEverywhere.pdf │ ├── GenerateBoundarySets.py │ ├── Job-2.inp │ ├── README.txt │ ├── Square20umEl0p25-bulk-elems.inp │ ├── Square20umEl0p25-int-elems-new.inp │ ├── Square20umEl0p25-int-elems.inp │ ├── Square20umEl0p25-node-sets.inp │ ├── Square20umEl0p25-node.inp │ ├── Square20umEl0p25.geo │ ├── Square20umEl0p25.inp │ └── Square20umEl0p25.msh ├── PhaseFieldCoupling │ ├── CoheleBulkMap.f │ ├── CoheleBulkMap.py │ ├── README.txt │ ├── Square20umEl0p25-bulk-elems.inp │ ├── Square20umEl0p25-int-elems-new.inp │ └── Square20umEl0p25-node.inp ├── PyCiGen │ ├── Job-1.inp │ ├── README.txt │ ├── TripleJunctionTest.cae │ ├── TripleJunctionTest.jnl │ ├── __init__.py │ ├── abaqusparser.py │ ├── cohelement.py │ ├── element.py │ ├── interfelement.py │ ├── interfnode.py │ ├── main.py │ ├── mesh.py │ ├── newmesh.py │ ├── node.py │ └── twinnode.py └── README.txt ├── LICENSE ├── NickelSuperalloy.f ├── PolycrystalGeneration └── Neper2CAE │ ├── GeneratePolycrystal.py │ ├── README.txt │ ├── __init__.py │ ├── main.py │ └── neperparser.py ├── README.md ├── SMAAspUserArrays.hdr ├── SMAAspUserSubroutines.hdr ├── SMAAspUserUtilities.hdr ├── UEL.for ├── abaqus_v6.env ├── kCRSS.f ├── kHardening.f ├── kMaterialParam.f ├── kRhoTwinInit.f ├── kcurlET.f ├── kdirns.f ├── kgndl2ET.f ├── kmat.f ├── kshapes.f ├── kslip0.f ├── kslip5ET.f ├── kslip6ET.f ├── kslipCreepPowerLaw.f ├── kslipDoubleExponent.f ├── kslipPowerLaw.f ├── ksvd.f ├── ktwinneighbourhood.f ├── ktwinrot.f ├── mycommon.f ├── test.txt ├── uexternaldb.f ├── umat.for ├── utils.f ├── xDir0ET.f ├── xDir1.f ├── xDir2.f ├── xDir2c.f ├── xDir4.f ├── xDirAlphaUranium.f ├── xNorm0ET.f ├── xNorm1.f ├── xNorm2.f ├── xNorm2c.f ├── xNorm4.f ├── xNormAlphaUranium.f ├── xTwinDirAlphaUranium.f └── xTwinNormAlphaUranium.f /ExampleInputFiles/DiscreteTwin/CoheleBulkMap.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/ExampleInputFiles/DiscreteTwin/CoheleBulkMap.f -------------------------------------------------------------------------------- /ExampleInputFiles/DiscreteTwin/Job-1.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/ExampleInputFiles/DiscreteTwin/Job-1.inp -------------------------------------------------------------------------------- /ExampleInputFiles/DiscreteTwin/kMaterialParam.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/ExampleInputFiles/DiscreteTwin/kMaterialParam.f -------------------------------------------------------------------------------- /ExampleInputFiles/DiscreteTwin/mycommon.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/ExampleInputFiles/DiscreteTwin/mycommon.f -------------------------------------------------------------------------------- /ExampleInputFiles/DiscreteTwinFracture/CoheleBulkMap.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/ExampleInputFiles/DiscreteTwinFracture/CoheleBulkMap.f -------------------------------------------------------------------------------- /ExampleInputFiles/DiscreteTwinFracture/Job-2.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/ExampleInputFiles/DiscreteTwinFracture/Job-2.inp -------------------------------------------------------------------------------- /ExampleInputFiles/DiscreteTwinFracture/Square30umEl0p25-bulk-elems.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/ExampleInputFiles/DiscreteTwinFracture/Square30umEl0p25-bulk-elems.inp -------------------------------------------------------------------------------- /ExampleInputFiles/DiscreteTwinFracture/Square30umEl0p25-int-elems-new.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/ExampleInputFiles/DiscreteTwinFracture/Square30umEl0p25-int-elems-new.inp -------------------------------------------------------------------------------- /ExampleInputFiles/DiscreteTwinFracture/Square30umEl0p25-node-sets.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/ExampleInputFiles/DiscreteTwinFracture/Square30umEl0p25-node-sets.inp -------------------------------------------------------------------------------- /ExampleInputFiles/DiscreteTwinFracture/Square30umEl0p25-node.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/ExampleInputFiles/DiscreteTwinFracture/Square30umEl0p25-node.inp -------------------------------------------------------------------------------- /ExampleInputFiles/DiscreteTwinFracture/kMaterialParam.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/ExampleInputFiles/DiscreteTwinFracture/kMaterialParam.f -------------------------------------------------------------------------------- /ExampleInputFiles/HCPnoTwin/Compression111.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/ExampleInputFiles/HCPnoTwin/Compression111.inp -------------------------------------------------------------------------------- /ExampleInputFiles/HCPnoTwin/kMaterialParam.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/ExampleInputFiles/HCPnoTwin/kMaterialParam.f -------------------------------------------------------------------------------- /ExampleInputFiles/HCPnoTwin/umat.for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/ExampleInputFiles/HCPnoTwin/umat.for -------------------------------------------------------------------------------- /ExampleInputFiles/HomogeneousTwin/CoheleBulkMap.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/ExampleInputFiles/HomogeneousTwin/CoheleBulkMap.f -------------------------------------------------------------------------------- /ExampleInputFiles/HomogeneousTwin/Job-1.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/ExampleInputFiles/HomogeneousTwin/Job-1.inp -------------------------------------------------------------------------------- /ExampleInputFiles/HomogeneousTwin/kMaterialParam.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/ExampleInputFiles/HomogeneousTwin/kMaterialParam.f -------------------------------------------------------------------------------- /ExampleInputFiles/HomogeneousTwin/kmat.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/ExampleInputFiles/HomogeneousTwin/kmat.f -------------------------------------------------------------------------------- /ExampleInputFiles/HomogeneousTwin/mycommon.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/ExampleInputFiles/HomogeneousTwin/mycommon.f -------------------------------------------------------------------------------- /ExampleInputFiles/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/ExampleInputFiles/README.txt -------------------------------------------------------------------------------- /InterfaceElementGeneration/CohesiveElementsEverywhere/CohesiveElementsCheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/InterfaceElementGeneration/CohesiveElementsEverywhere/CohesiveElementsCheck.py -------------------------------------------------------------------------------- /InterfaceElementGeneration/CohesiveElementsEverywhere/CohesiveEverywhere.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/InterfaceElementGeneration/CohesiveElementsEverywhere/CohesiveEverywhere.pdf -------------------------------------------------------------------------------- /InterfaceElementGeneration/CohesiveElementsEverywhere/GenerateBoundarySets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/InterfaceElementGeneration/CohesiveElementsEverywhere/GenerateBoundarySets.py -------------------------------------------------------------------------------- /InterfaceElementGeneration/CohesiveElementsEverywhere/Job-2.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/InterfaceElementGeneration/CohesiveElementsEverywhere/Job-2.inp -------------------------------------------------------------------------------- /InterfaceElementGeneration/CohesiveElementsEverywhere/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/InterfaceElementGeneration/CohesiveElementsEverywhere/README.txt -------------------------------------------------------------------------------- /InterfaceElementGeneration/CohesiveElementsEverywhere/Square20umEl0p25-bulk-elems.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/InterfaceElementGeneration/CohesiveElementsEverywhere/Square20umEl0p25-bulk-elems.inp -------------------------------------------------------------------------------- /InterfaceElementGeneration/CohesiveElementsEverywhere/Square20umEl0p25-int-elems-new.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/InterfaceElementGeneration/CohesiveElementsEverywhere/Square20umEl0p25-int-elems-new.inp -------------------------------------------------------------------------------- /InterfaceElementGeneration/CohesiveElementsEverywhere/Square20umEl0p25-int-elems.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/InterfaceElementGeneration/CohesiveElementsEverywhere/Square20umEl0p25-int-elems.inp -------------------------------------------------------------------------------- /InterfaceElementGeneration/CohesiveElementsEverywhere/Square20umEl0p25-node-sets.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/InterfaceElementGeneration/CohesiveElementsEverywhere/Square20umEl0p25-node-sets.inp -------------------------------------------------------------------------------- /InterfaceElementGeneration/CohesiveElementsEverywhere/Square20umEl0p25-node.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/InterfaceElementGeneration/CohesiveElementsEverywhere/Square20umEl0p25-node.inp -------------------------------------------------------------------------------- /InterfaceElementGeneration/CohesiveElementsEverywhere/Square20umEl0p25.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/InterfaceElementGeneration/CohesiveElementsEverywhere/Square20umEl0p25.geo -------------------------------------------------------------------------------- /InterfaceElementGeneration/CohesiveElementsEverywhere/Square20umEl0p25.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/InterfaceElementGeneration/CohesiveElementsEverywhere/Square20umEl0p25.inp -------------------------------------------------------------------------------- /InterfaceElementGeneration/CohesiveElementsEverywhere/Square20umEl0p25.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/InterfaceElementGeneration/CohesiveElementsEverywhere/Square20umEl0p25.msh -------------------------------------------------------------------------------- /InterfaceElementGeneration/PhaseFieldCoupling/CoheleBulkMap.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/InterfaceElementGeneration/PhaseFieldCoupling/CoheleBulkMap.f -------------------------------------------------------------------------------- /InterfaceElementGeneration/PhaseFieldCoupling/CoheleBulkMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/InterfaceElementGeneration/PhaseFieldCoupling/CoheleBulkMap.py -------------------------------------------------------------------------------- /InterfaceElementGeneration/PhaseFieldCoupling/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/InterfaceElementGeneration/PhaseFieldCoupling/README.txt -------------------------------------------------------------------------------- /InterfaceElementGeneration/PhaseFieldCoupling/Square20umEl0p25-bulk-elems.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/InterfaceElementGeneration/PhaseFieldCoupling/Square20umEl0p25-bulk-elems.inp -------------------------------------------------------------------------------- /InterfaceElementGeneration/PhaseFieldCoupling/Square20umEl0p25-int-elems-new.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/InterfaceElementGeneration/PhaseFieldCoupling/Square20umEl0p25-int-elems-new.inp -------------------------------------------------------------------------------- /InterfaceElementGeneration/PhaseFieldCoupling/Square20umEl0p25-node.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/InterfaceElementGeneration/PhaseFieldCoupling/Square20umEl0p25-node.inp -------------------------------------------------------------------------------- /InterfaceElementGeneration/PyCiGen/Job-1.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/InterfaceElementGeneration/PyCiGen/Job-1.inp -------------------------------------------------------------------------------- /InterfaceElementGeneration/PyCiGen/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/InterfaceElementGeneration/PyCiGen/README.txt -------------------------------------------------------------------------------- /InterfaceElementGeneration/PyCiGen/TripleJunctionTest.cae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/InterfaceElementGeneration/PyCiGen/TripleJunctionTest.cae -------------------------------------------------------------------------------- /InterfaceElementGeneration/PyCiGen/TripleJunctionTest.jnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/InterfaceElementGeneration/PyCiGen/TripleJunctionTest.jnl -------------------------------------------------------------------------------- /InterfaceElementGeneration/PyCiGen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/InterfaceElementGeneration/PyCiGen/__init__.py -------------------------------------------------------------------------------- /InterfaceElementGeneration/PyCiGen/abaqusparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/InterfaceElementGeneration/PyCiGen/abaqusparser.py -------------------------------------------------------------------------------- /InterfaceElementGeneration/PyCiGen/cohelement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/InterfaceElementGeneration/PyCiGen/cohelement.py -------------------------------------------------------------------------------- /InterfaceElementGeneration/PyCiGen/element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/InterfaceElementGeneration/PyCiGen/element.py -------------------------------------------------------------------------------- /InterfaceElementGeneration/PyCiGen/interfelement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/InterfaceElementGeneration/PyCiGen/interfelement.py -------------------------------------------------------------------------------- /InterfaceElementGeneration/PyCiGen/interfnode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/InterfaceElementGeneration/PyCiGen/interfnode.py -------------------------------------------------------------------------------- /InterfaceElementGeneration/PyCiGen/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/InterfaceElementGeneration/PyCiGen/main.py -------------------------------------------------------------------------------- /InterfaceElementGeneration/PyCiGen/mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/InterfaceElementGeneration/PyCiGen/mesh.py -------------------------------------------------------------------------------- /InterfaceElementGeneration/PyCiGen/newmesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/InterfaceElementGeneration/PyCiGen/newmesh.py -------------------------------------------------------------------------------- /InterfaceElementGeneration/PyCiGen/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/InterfaceElementGeneration/PyCiGen/node.py -------------------------------------------------------------------------------- /InterfaceElementGeneration/PyCiGen/twinnode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/InterfaceElementGeneration/PyCiGen/twinnode.py -------------------------------------------------------------------------------- /InterfaceElementGeneration/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/InterfaceElementGeneration/README.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/LICENSE -------------------------------------------------------------------------------- /NickelSuperalloy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/NickelSuperalloy.f -------------------------------------------------------------------------------- /PolycrystalGeneration/Neper2CAE/GeneratePolycrystal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/PolycrystalGeneration/Neper2CAE/GeneratePolycrystal.py -------------------------------------------------------------------------------- /PolycrystalGeneration/Neper2CAE/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/PolycrystalGeneration/Neper2CAE/README.txt -------------------------------------------------------------------------------- /PolycrystalGeneration/Neper2CAE/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/PolycrystalGeneration/Neper2CAE/__init__.py -------------------------------------------------------------------------------- /PolycrystalGeneration/Neper2CAE/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/PolycrystalGeneration/Neper2CAE/main.py -------------------------------------------------------------------------------- /PolycrystalGeneration/Neper2CAE/neperparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/PolycrystalGeneration/Neper2CAE/neperparser.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/README.md -------------------------------------------------------------------------------- /SMAAspUserArrays.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/SMAAspUserArrays.hdr -------------------------------------------------------------------------------- /SMAAspUserSubroutines.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/SMAAspUserSubroutines.hdr -------------------------------------------------------------------------------- /SMAAspUserUtilities.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/SMAAspUserUtilities.hdr -------------------------------------------------------------------------------- /UEL.for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/UEL.for -------------------------------------------------------------------------------- /abaqus_v6.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/abaqus_v6.env -------------------------------------------------------------------------------- /kCRSS.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/kCRSS.f -------------------------------------------------------------------------------- /kHardening.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/kHardening.f -------------------------------------------------------------------------------- /kMaterialParam.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/kMaterialParam.f -------------------------------------------------------------------------------- /kRhoTwinInit.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/kRhoTwinInit.f -------------------------------------------------------------------------------- /kcurlET.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/kcurlET.f -------------------------------------------------------------------------------- /kdirns.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/kdirns.f -------------------------------------------------------------------------------- /kgndl2ET.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/kgndl2ET.f -------------------------------------------------------------------------------- /kmat.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/kmat.f -------------------------------------------------------------------------------- /kshapes.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/kshapes.f -------------------------------------------------------------------------------- /kslip0.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/kslip0.f -------------------------------------------------------------------------------- /kslip5ET.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/kslip5ET.f -------------------------------------------------------------------------------- /kslip6ET.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/kslip6ET.f -------------------------------------------------------------------------------- /kslipCreepPowerLaw.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/kslipCreepPowerLaw.f -------------------------------------------------------------------------------- /kslipDoubleExponent.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/kslipDoubleExponent.f -------------------------------------------------------------------------------- /kslipPowerLaw.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/kslipPowerLaw.f -------------------------------------------------------------------------------- /ksvd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/ksvd.f -------------------------------------------------------------------------------- /ktwinneighbourhood.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/ktwinneighbourhood.f -------------------------------------------------------------------------------- /ktwinrot.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/ktwinrot.f -------------------------------------------------------------------------------- /mycommon.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/mycommon.f -------------------------------------------------------------------------------- /test.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /uexternaldb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/uexternaldb.f -------------------------------------------------------------------------------- /umat.for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/umat.for -------------------------------------------------------------------------------- /utils.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/utils.f -------------------------------------------------------------------------------- /xDir0ET.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/xDir0ET.f -------------------------------------------------------------------------------- /xDir1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/xDir1.f -------------------------------------------------------------------------------- /xDir2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/xDir2.f -------------------------------------------------------------------------------- /xDir2c.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/xDir2c.f -------------------------------------------------------------------------------- /xDir4.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/xDir4.f -------------------------------------------------------------------------------- /xDirAlphaUranium.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/xDirAlphaUranium.f -------------------------------------------------------------------------------- /xNorm0ET.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/xNorm0ET.f -------------------------------------------------------------------------------- /xNorm1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/xNorm1.f -------------------------------------------------------------------------------- /xNorm2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/xNorm2.f -------------------------------------------------------------------------------- /xNorm2c.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/xNorm2c.f -------------------------------------------------------------------------------- /xNorm4.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/xNorm4.f -------------------------------------------------------------------------------- /xNormAlphaUranium.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/xNormAlphaUranium.f -------------------------------------------------------------------------------- /xTwinDirAlphaUranium.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/xTwinDirAlphaUranium.f -------------------------------------------------------------------------------- /xTwinNormAlphaUranium.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngrilli/Oxford_Crystal_Plasticity/HEAD/xTwinNormAlphaUranium.f --------------------------------------------------------------------------------