├── .ctags ├── .gitignore ├── .lvimrc ├── .travis.yml ├── CMakeLists.txt ├── COPYING.LGPLv2.1 ├── ChangeLog ├── README ├── README.md ├── VERSION ├── bindings ├── oofemlib │ ├── README │ ├── beam01.C │ ├── dream3d_analysis.C │ └── hexgrid.C └── python │ ├── README │ ├── inputs │ ├── patch100.in │ ├── tmpatch05.in │ └── tmpatch42.in │ ├── oofemReader.py │ ├── oofemlib.cpp │ ├── test-uniformgridfield-plot.py │ ├── test-uniformgridfield.py │ ├── test.py │ ├── test2.py │ └── test3.py ├── cmake └── Modules │ ├── CorrectWindowsPaths.cmake │ ├── FindPETSc.cmake │ ├── FindPackageMultipass.cmake │ ├── LICENSE │ └── ResolveCompilerPaths.cmake ├── do_release ├── doc ├── README ├── elementlibmanual │ ├── References.bib │ ├── auto │ │ └── elementlibmanual.el │ ├── beam2d.tikz │ ├── beam3d.tikz │ ├── elementlibmanual.cfg │ ├── elementlibmanual.tex │ ├── hexa_lin.tikz │ ├── hexa_quad_a.tikz │ ├── hexa_quad_b.tikz │ ├── hexa_triquad_a.tikz │ ├── interf2d_lin.tikz │ ├── interf2d_quad.tikz │ ├── interf3d_lin.tikz │ ├── latex2html-init.shtml │ ├── lattice2d.tikz │ ├── makefile │ ├── oofem-logo-contour.pdf │ ├── planestress2d.tikz │ ├── qplanstrss.tikz │ ├── qtrplanstrss.tikz │ ├── tetrahedra_lin.tikz │ ├── tetrahedra_quad_a.tikz │ ├── tetrahedra_quad_b.tikz │ ├── trplanstrss.tikz │ ├── trshell_lin.tikz │ ├── truss2d.tikz │ ├── wedge_lin.tikz │ ├── wedge_quad_a.tikz │ └── wedge_quad_b.tikz ├── extractorInput │ ├── auto │ │ └── extractorInput.el │ ├── extractorInput.tex │ ├── latex2html-init.shtml │ └── makefile ├── include.tex.in ├── include │ └── include.tex ├── makefile ├── matlibmanual │ ├── Compodamagemat_diag.eps │ ├── Compodamagemat_diag.pdf │ ├── Compodamagemat_test.eps │ ├── Compodamagemat_test.pdf │ ├── Damage_material_diag.eps │ ├── Damage_material_diag.pdf │ ├── Mokra_OOFEM_affinity_time.eps │ ├── Mokra_OOFEM_affinity_time.pdf │ ├── Simple_interface_material_diag.eps │ ├── Simple_interface_material_diag.pdf │ ├── auto │ │ └── matlibmanual.el │ ├── capmode.eps │ ├── capmode.pdf │ ├── constmodel.eps │ ├── constmodel.pdf │ ├── deviatoric.eps │ ├── deviatoric.pdf │ ├── dm_comp.eps │ ├── dm_comp.pdf │ ├── figSofteningLatticeDamage2da.eps │ ├── figSofteningLatticeDamage2da.pdf │ ├── figSofteningLatticeDamage2db.eps │ ├── figSofteningLatticeDamage2db.pdf │ ├── figSofteningLatticeDamage2dc.eps │ ├── figSofteningLatticeDamage2dc.pdf │ ├── figStrengthLatticeDamage2d.eps │ ├── figStrengthLatticeDamage2d.pdf │ ├── figs │ │ ├── Damage_material_diag.svg │ │ ├── Simple_interface_material_diag.svg │ │ ├── capmode.fig │ │ ├── constmodel.fig │ │ ├── interfmodel.fig │ │ ├── mmodel.fig │ │ ├── preamble.textext │ │ ├── shearconf.agr │ │ └── tension.agr │ ├── interfmodel.eps │ ├── interfmodel.pdf │ ├── latex2html-init │ ├── latex2html-init.shtml │ ├── makefile │ ├── matlibmanual.tex │ ├── meridians.eps │ ├── meridians.pdf │ ├── mmodel.eps │ ├── mmodel.pdf │ ├── oofem-logo-contour.eps │ ├── oofem-logo-contour.pdf │ ├── shearconf.eps │ ├── shearconf.pdf │ ├── tension.eps │ └── tension.pdf ├── oofemInput │ ├── elementcut0.eps │ ├── elementcut0.pdf │ ├── elementcut1.eps │ ├── elementcut1.pdf │ ├── ex01.eps │ ├── ex01.pdf │ ├── ex02.eps │ ├── ex02.pdf │ ├── figs │ │ ├── elementcut0.fig │ │ ├── ex01.fig │ │ ├── ex02.fig │ │ ├── nodecut0cb.fig │ │ ├── nodecutnonloc1.fig │ │ ├── poofem_ex01.fig │ │ └── poofem_ex02.fig │ ├── geo.eps │ ├── geo.pdf │ ├── latex2html-init │ ├── latex2html-init.shtml │ ├── makefile │ ├── nodecut0cb.eps │ ├── nodecut0cb.pdf │ ├── nodecut1cb.eps │ ├── nodecut1cb.pdf │ ├── nodecutnonloc1.eps │ ├── nodecutnonloc1.pdf │ ├── oofem-logo-contour.eps │ ├── oofem-logo-contour.pdf │ ├── oofemInput.tex │ ├── poofem_ex01.eps │ ├── poofem_ex01.pdf │ ├── poofem_ex02.eps │ └── poofem_ex02.pdf ├── paper-actap │ ├── acta1.sty │ ├── auto │ │ └── paper-actap.el │ ├── coyo.eps │ ├── coyo.pdf │ ├── engng.eps │ ├── engng.pdf │ ├── general.eps │ ├── general.pdf │ ├── include.src.tex │ ├── include.tex │ ├── latex2html-init.shtml │ ├── makefile │ ├── microp.eps │ ├── microp.pdf │ ├── paper-actap.tex │ ├── struct1.eps │ ├── struct1.pdf │ ├── struct2.eps │ └── struct2.pdf ├── programmer │ ├── acta1.sty │ ├── auto │ │ ├── programmer.el │ │ └── usrman.el │ ├── class_BsplinePlaneStressElement_collaboration.eps │ ├── class_BsplinePlaneStressElement_collaboration.fig │ ├── class_BsplinePlaneStressElement_collaboration.pdf │ ├── class_IGA__IntegrationElement_mod.eps │ ├── class_IGA__IntegrationElement_mod.fig │ ├── class_IGA__IntegrationElement_mod.pdf │ ├── coyo.eps │ ├── coyo.pdf │ ├── engng.eps │ ├── engng.pdf │ ├── enrichmentitem_collab.eps │ ├── enrichmentitem_collab.fig │ ├── enrichmentitem_collab.pdf │ ├── general.eps │ ├── general.pdf │ ├── general.ps │ ├── include.src.tex │ ├── include.tex │ ├── integrationrule_collab.eps │ ├── integrationrule_collab.fig │ ├── integrationrule_collab.pdf │ ├── latex2html-init.shtml │ ├── makefile │ ├── microp.eps │ ├── microp.pdf │ ├── oofem-logo-contour.eps │ ├── oofem-logo-contour.pdf │ ├── programmer.tex │ ├── struct1.eps │ ├── struct1.pdf │ ├── struct2.eps │ └── struct2.pdf ├── refman │ ├── doxygen.cfg │ ├── doxygen.cfg.in │ ├── footer.html │ ├── footer.html.in │ ├── footer.shtml │ ├── intro │ ├── mainpage │ ├── makefile │ └── utility.h └── theorymanual │ ├── ackno.tex │ ├── basicequations.tex │ ├── constitutiveequations.tex │ ├── figs │ ├── arclength.png │ ├── deformedconfiguration.png │ ├── newtonraphson.png │ ├── oofem-logo-contour.eps │ ├── oofem-logo-contour.pdf │ ├── stressbalance2d.png │ └── tractionstressrelation.png │ ├── include.tex │ ├── introduction.tex │ ├── makefile │ ├── notation.tex │ ├── references.bib │ ├── solutionprocedures.tex │ ├── theorymanual.tex │ └── titlepage.tex ├── iml ├── bicg.h ├── bicgstab.h ├── cg.h ├── cgs.h ├── cheby.h ├── gmres.h ├── ir.h └── qmr.h ├── release_filter.pl ├── src ├── dss │ ├── Array.h │ ├── BiSection.cpp │ ├── BiSection.h │ ├── BigMatrix.cpp │ ├── BigMatrix.h │ ├── CMakeLists.txt │ ├── ColHash.h │ ├── ConList.h │ ├── DSSAfx.h │ ├── DSSolver.cpp │ ├── DSSolver.h │ ├── DenseMatrix.h │ ├── DenseMatrixArithmeticsNN.cpp │ ├── DenseMatrixArithmeticsNN.h │ ├── IntArrayList.cpp │ ├── IntArrayList.h │ ├── MathTracer.cpp │ ├── MathTracer.h │ ├── Ordering.h │ ├── SkyLineMtx.cpp │ ├── SkyLineMtx.h │ ├── SkyLineMtxLDL.cpp │ ├── SkyLineMtxLDL.h │ ├── SparseConectivityMtx.cpp │ ├── SparseConectivityMtx.h │ ├── SparseConectivityMtxFixed.h │ ├── SparseGridColumn.h │ ├── SparseGridMtx.cpp │ ├── SparseGridMtx.h │ ├── SparseGridMtxLDL.cpp │ ├── SparseGridMtxLDL.h │ ├── SparseGridMtxLL.cpp │ ├── SparseGridMtxLL.h │ ├── SparseGridMtxLU.cpp │ ├── SparseGridMtxLU.h │ ├── SparseGridMtxPD.cpp │ ├── SparseGridMtxPD.h │ ├── SparseMatrixF.cpp │ ├── SparseMatrixF.h │ ├── dssmatrix.C │ ├── dssmatrix.h │ ├── dsssolver.C │ └── dsssolver.h ├── fm │ ├── CMakeLists.txt │ ├── Materials │ │ ├── binghamfluid2.C │ │ ├── binghamfluid2.h │ │ ├── fe2fluidmaterial.C │ │ ├── fe2fluidmaterial.h │ │ ├── fluiddynamicmaterial.C │ │ ├── fluiddynamicmaterial.h │ │ ├── newtonianfluid.C │ │ ├── newtonianfluid.h │ │ ├── nonlinearfluidmaterial.C │ │ ├── nonlinearfluidmaterial.h │ │ ├── twofluidmaterial.C │ │ └── twofluidmaterial.h │ ├── cbs.C │ ├── cbs.h │ ├── cbselement.C │ ├── cbselement.h │ ├── fastmarchingmethod.C │ ├── fastmarchingmethod.h │ ├── fluidcrosssection.C │ ├── fluidcrosssection.h │ ├── fluidmaterialevaluator.C │ ├── fluidmaterialevaluator.h │ ├── fluidmodel.C │ ├── fluidmodel.h │ ├── fmelement.C │ ├── fmelement.h │ ├── hexa21stokes.C │ ├── hexa21stokes.h │ ├── leplic.C │ ├── leplic.h │ ├── levelsetpcs.C │ ├── levelsetpcs.h │ ├── line2boundaryelement.C │ ├── line2boundaryelement.h │ ├── pfem │ │ ├── delaunaytriangle.C │ │ ├── delaunaytriangle.h │ │ ├── delaunaytriangulator.C │ │ ├── delaunaytriangulator.h │ │ ├── edge2d.C │ │ ├── edge2d.h │ │ ├── fluidstructureproblem.C │ │ ├── fluidstructureproblem.h │ │ ├── interactionboundarycondition.C │ │ ├── interactionboundarycondition.h │ │ ├── interactionload.C │ │ ├── interactionload.h │ │ ├── interactionpfemparticle.C │ │ ├── interactionpfemparticle.h │ │ ├── octreelocalizert.h │ │ ├── pfem.C │ │ ├── pfem.h │ │ ├── pfemelement.C │ │ ├── pfemelement.h │ │ ├── pfemelement2d.C │ │ ├── pfemelement2d.h │ │ ├── pfemnumberingschemes.C │ │ ├── pfemnumberingschemes.h │ │ ├── pfemparticle.C │ │ ├── pfemparticle.h │ │ ├── tr1_2d_pfem.C │ │ └── tr1_2d_pfem.h │ ├── quad10_2d_supg.C │ ├── quad10_2d_supg.h │ ├── stokesflow.C │ ├── stokesflow.h │ ├── stokesflowvelocityhomogenization.C │ ├── stokesflowvelocityhomogenization.h │ ├── supg.C │ ├── supg.h │ ├── supgelement.C │ ├── supgelement.h │ ├── supgelement2.C │ ├── supgelement2.h │ ├── tet1_3d_supg.C │ ├── tet1_3d_supg.h │ ├── tet1bubblestokes.C │ ├── tet1bubblestokes.h │ ├── tet21stokes.C │ ├── tet21stokes.h │ ├── tr1_2d_cbs.C │ ├── tr1_2d_cbs.h │ ├── tr1_2d_supg.C │ ├── tr1_2d_supg.h │ ├── tr1_2d_supg2.C │ ├── tr1_2d_supg2.h │ ├── tr1_2d_supg2_axi.C │ ├── tr1_2d_supg2_axi.h │ ├── tr1_2d_supg_axi.C │ ├── tr1_2d_supg_axi.h │ ├── tr1bubblestokes.C │ ├── tr1bubblestokes.h │ ├── tr21_2d_supg.C │ ├── tr21_2d_supg.h │ ├── tr21stokes.C │ ├── tr21stokes.h │ ├── tractionpressurebc.C │ └── tractionpressurebc.h ├── main │ ├── main.C │ └── oofeg.C ├── oofemcfg.h.in ├── oofemlib │ ├── CMakeLists.txt │ ├── activebc.h │ ├── activedof.C │ ├── activedof.h │ ├── assemblercallback.C │ ├── assemblercallback.h │ ├── bcgeomtype.h │ ├── bctracker.C │ ├── bctracker.h │ ├── bctype.h │ ├── bcvaltype.h │ ├── bodyload.h │ ├── boundarycondition.C │ ├── boundarycondition.h │ ├── boundaryload.C │ ├── boundaryload.h │ ├── calculatorfunction.C │ ├── calculatorfunction.h │ ├── calmls.C │ ├── calmls.h │ ├── chartype.h │ ├── classfactory.C │ ├── classfactory.h │ ├── cltypes.C │ ├── cltypes.h │ ├── combuff.C │ ├── combuff.h │ ├── commbufftype.h │ ├── communicator.C │ ├── communicator.h │ ├── communicatormode.h │ ├── compcol.C │ ├── compcol.h │ ├── connectivitytable.C │ ├── connectivitytable.h │ ├── constantedgeload.C │ ├── constantedgeload.h │ ├── constantfunction.C │ ├── constantfunction.h │ ├── constantsurfaceload.C │ ├── constantsurfaceload.h │ ├── contact │ │ ├── contactdefinition.C │ │ ├── contactdefinition.h │ │ ├── contactelement.C │ │ ├── contactelement.h │ │ ├── contactmanager.C │ │ └── contactmanager.h │ ├── contextfilemode.h │ ├── contextioerr.h │ ├── contextioresulttype.h │ ├── contextmode.h │ ├── contextoutputmode.h │ ├── crosssectextension.h │ ├── crosssection.C │ ├── crosssection.h │ ├── datareader.h │ ├── datastream.C │ ├── datastream.h │ ├── deadweight.C │ ├── deadweight.h │ ├── dictionary.C │ ├── dictionary.h │ ├── dof.C │ ├── dof.h │ ├── dofdistributedprimaryfield.C │ ├── dofdistributedprimaryfield.h │ ├── dofiditem.h │ ├── dofmanager.C │ ├── dofmanager.h │ ├── dofmantransftype.h │ ├── dofmanvalfield.C │ ├── dofmanvalfield.h │ ├── doftype.h │ ├── domain.C │ ├── domain.h │ ├── domaintransactionmanager.C │ ├── domaintransactionmanager.h │ ├── domaintype.h │ ├── drawmode.h │ ├── dummylocalizer.C │ ├── dummylocalizer.h │ ├── dummymaterial.C │ ├── dummymaterial.h │ ├── dynamicdatareader.C │ ├── dynamicdatareader.h │ ├── dynamicinputrecord.C │ ├── dynamicinputrecord.h │ ├── dynamicrelaxationsolver.C │ ├── dynamicrelaxationsolver.h │ ├── dyncombuff.C │ ├── dyncombuff.h │ ├── element.C │ ├── element.h │ ├── elementextension.h │ ├── elementgeometrytype.h │ ├── elementinternaldofman.C │ ├── elementinternaldofman.h │ ├── elementside.C │ ├── elementside.h │ ├── eleminterpmapperinterface.h │ ├── eleminterpunknownmapper.C │ ├── eleminterpunknownmapper.h │ ├── emptycs.C │ ├── emptycs.h │ ├── engngm.C │ ├── engngm.h │ ├── entityrenumberingscheme.h │ ├── enumitem.h │ ├── error.C │ ├── error.h │ ├── errorcheckingexportmodule.C │ ├── errorcheckingexportmodule.h │ ├── errorestimator.C │ ├── errorestimator.h │ ├── errorestimatortype.h │ ├── exportmodule.C │ ├── exportmodule.h │ ├── exportmodulemanager.C │ ├── exportmodulemanager.h │ ├── fei1dhermite.C │ ├── fei1dhermite.h │ ├── fei1dlin.C │ ├── fei1dlin.h │ ├── fei1dquad.C │ ├── fei1dquad.h │ ├── fei2dlinehermite.C │ ├── fei2dlinehermite.h │ ├── fei2dlinelin.C │ ├── fei2dlinelin.h │ ├── fei2dlinequad.C │ ├── fei2dlinequad.h │ ├── fei2dquadbiquad.C │ ├── fei2dquadbiquad.h │ ├── fei2dquadconst.C │ ├── fei2dquadconst.h │ ├── fei2dquadlin.C │ ├── fei2dquadlin.h │ ├── fei2dquadquad.C │ ├── fei2dquadquad.h │ ├── fei2dtrconst.C │ ├── fei2dtrconst.h │ ├── fei2dtrlin.C │ ├── fei2dtrlin.h │ ├── fei2dtrquad.C │ ├── fei2dtrquad.h │ ├── fei3dhexalin.C │ ├── fei3dhexalin.h │ ├── fei3dhexaquad.C │ ├── fei3dhexaquad.h │ ├── fei3dhexatriquad.C │ ├── fei3dhexatriquad.h │ ├── fei3dlinelin.C │ ├── fei3dlinelin.h │ ├── fei3dtetlin.C │ ├── fei3dtetlin.h │ ├── fei3dtetquad.C │ ├── fei3dtetquad.h │ ├── fei3dtrlin.C │ ├── fei3dtrlin.h │ ├── fei3dtrquad.C │ ├── fei3dtrquad.h │ ├── fei3dwedgelin.C │ ├── fei3dwedgelin.h │ ├── fei3dwedgequad.C │ ├── fei3dwedgequad.h │ ├── feinterpol.C │ ├── feinterpol.h │ ├── feinterpol1d.C │ ├── feinterpol1d.h │ ├── feinterpol2d.C │ ├── feinterpol2d.h │ ├── feinterpol3d.C │ ├── feinterpol3d.h │ ├── femcmpnn.C │ ├── femcmpnn.h │ ├── field.C │ ├── field.h │ ├── fieldmanager.C │ ├── fieldmanager.h │ ├── floatarray.C │ ├── floatarray.h │ ├── floatmatrix.C │ ├── floatmatrix.h │ ├── fmode.h │ ├── fracturemanager.C │ ├── fracturemanager.h │ ├── freeminterface.C │ ├── freeminterface.h │ ├── function.C │ ├── function.h │ ├── gaussintegrationrule.C │ ├── gaussintegrationrule.h │ ├── gausspoint.C │ ├── gausspoint.h │ ├── geneigvalsolvertype.h │ ├── generalboundarycondition.C │ ├── generalboundarycondition.h │ ├── geometry.C │ ├── geometry.h │ ├── geotoolbox.C │ ├── geotoolbox.h │ ├── gjacobi.C │ ├── gjacobi.h │ ├── gpexportmodule.C │ ├── gpexportmodule.h │ ├── grid.C │ ├── grid.h │ ├── hangingnode.C │ ├── hangingnode.h │ ├── heap.C │ ├── heap.h │ ├── heavisidetimefunction.C │ ├── heavisidetimefunction.h │ ├── homexportmodule.C │ ├── homexportmodule.h │ ├── homogenize.C │ ├── homogenize.h │ ├── iga │ │ ├── feibspline.C │ │ ├── feibspline.h │ │ ├── feinurbs.C │ │ ├── feinurbs.h │ │ ├── feitspline.C │ │ ├── feitspline.h │ │ ├── iga.C │ │ └── iga.h │ ├── iml │ │ ├── diagpre.C │ │ ├── diagpre.h │ │ ├── dyncompcol.C │ │ ├── dyncompcol.h │ │ ├── dyncomprow.C │ │ ├── dyncomprow.h │ │ ├── icprecond.C │ │ ├── icprecond.h │ │ ├── ilucomprowprecond.C │ │ ├── ilucomprowprecond.h │ │ ├── iluprecond.C │ │ ├── iluprecond.h │ │ ├── imlsolver.C │ │ ├── imlsolver.h │ │ ├── precond.C │ │ ├── precond.h │ │ ├── voidprecond.C │ │ └── voidprecond.h │ ├── initialcondition.C │ ├── initialcondition.h │ ├── initmodule.C │ ├── initmodule.h │ ├── initmodulemanager.C │ ├── initmodulemanager.h │ ├── inputrecord.C │ ├── inputrecord.h │ ├── intarray.C │ ├── intarray.h │ ├── integrationdomain.h │ ├── integrationpointstatus.h │ ├── integrationrule.C │ ├── integrationrule.h │ ├── interface.h │ ├── interfacetype.h │ ├── internalstatemode.h │ ├── internalstatetype.h │ ├── internalstatevaluetype.h │ ├── interpolatingfunction.C │ ├── interpolatingfunction.h │ ├── intvarfield.C │ ├── intvarfield.h │ ├── inverseit.C │ ├── inverseit.h │ ├── irresulttype.h │ ├── ldltfact.C │ ├── ldltfact.h │ ├── linearconstraintbc.C │ ├── linearconstraintbc.h │ ├── linearedgeload.C │ ├── linearedgeload.h │ ├── linesearch.C │ ├── linesearch.h │ ├── linsystsolvertype.h │ ├── load.C │ ├── load.h │ ├── loadbalancer.C │ ├── loadbalancer.h │ ├── loadresponsemode.h │ ├── lobattoir.C │ ├── lobattoir.h │ ├── localgaussianrandomfunction.C │ ├── localgaussianrandomfunction.h │ ├── logger.C │ ├── logger.h │ ├── maskedprimaryfield.C │ ├── maskedprimaryfield.h │ ├── masterdof.C │ ├── masterdof.h │ ├── matconst.h │ ├── material.C │ ├── material.h │ ├── materialinterface.h │ ├── materialmapperinterface.h │ ├── materialmappingalgorithm.C │ ├── materialmappingalgorithm.h │ ├── materialmappingalgorithmtype.h │ ├── materialmode.h │ ├── mathfem.C │ ├── mathfem.h │ ├── matlabexportmodule.C │ ├── matlabexportmodule.h │ ├── matresponsemode.h │ ├── matstatmapperint.C │ ├── matstatmapperint.h │ ├── matstatus.h │ ├── matstatusvar.h │ ├── mesherinterface.h │ ├── meshpackagetype.h │ ├── meshqualityerrorestimator.C │ ├── meshqualityerrorestimator.h │ ├── metastep.C │ ├── metastep.h │ ├── mixedgradientpressurebc.C │ ├── mixedgradientpressurebc.h │ ├── mixedgradientpressuredirichlet.C │ ├── mixedgradientpressuredirichlet.h │ ├── mixedgradientpressureneumann.C │ ├── mixedgradientpressureneumann.h │ ├── mixedgradientpressureweakperiodic.C │ ├── mixedgradientpressureweakperiodic.h │ ├── mklpardisosolver.C │ ├── mklpardisosolver.h │ ├── mmaclosestiptransfer.C │ ├── mmaclosestiptransfer.h │ ├── mmacontainingelementprojection.C │ ├── mmacontainingelementprojection.h │ ├── mmaleastsquareprojection.C │ ├── mmaleastsquareprojection.h │ ├── mmashapefunctprojection.C │ ├── mmashapefunctprojection.h │ ├── modulemanager.h │ ├── neumannmomentload.C │ ├── neumannmomentload.h │ ├── nmstatus.h │ ├── nodalaveragingrecoverymodel.C │ ├── nodalaveragingrecoverymodel.h │ ├── nodalload.C │ ├── nodalload.h │ ├── nodalrecoverymodel.C │ ├── nodalrecoverymodel.h │ ├── node.C │ ├── node.h │ ├── nonlocalbarrier.C │ ├── nonlocalbarrier.h │ ├── nonlocalmaterialext.C │ ├── nonlocalmaterialext.h │ ├── nonlocalmatwtp.C │ ├── nonlocalmatwtp.h │ ├── nonlocmatstiffinterface.h │ ├── nrsolver.C │ ├── nrsolver.h │ ├── numericalcmpn.h │ ├── nummet.h │ ├── octreelocalizer.C │ ├── octreelocalizer.h │ ├── oofeggraphiccontext.C │ ├── oofeggraphiccontext.h │ ├── oofegutils.C │ ├── oofegutils.h │ ├── oofem_terminate.h │ ├── oofemtxtdatareader.C │ ├── oofemtxtdatareader.h │ ├── oofemtxtinputrecord.C │ ├── oofemtxtinputrecord.h │ ├── outputexportmodule.C │ ├── outputexportmodule.h │ ├── outputmanager.C │ ├── outputmanager.h │ ├── pair.h │ ├── parallel.h │ ├── parallelcontext.C │ ├── parallelcontext.h │ ├── parallelordering.C │ ├── parallelordering.h │ ├── pardisoprojectorgsolver.C │ ├── pardisoprojectorgsolver.h │ ├── parmetisloadbalancer.C │ ├── parmetisloadbalancer.h │ ├── parser.C │ ├── parser.h │ ├── particlegrid.h │ ├── particletopologydescription.C │ ├── particletopologydescription.h │ ├── peakfunction.C │ ├── peakfunction.h │ ├── periodicpiecewiselinfunction.C │ ├── periodicpiecewiselinfunction.h │ ├── petscsolver.C │ ├── petscsolver.h │ ├── petscsparsemtrx.C │ ├── petscsparsemtrx.h │ ├── piecewiselinfunction.C │ ├── piecewiselinfunction.h │ ├── pointload.C │ ├── pointload.h │ ├── prescribedgradient.C │ ├── prescribedgradient.h │ ├── prescribedgradientbcneumann.C │ ├── prescribedgradientbcneumann.h │ ├── prescribedgradientbcperiodic.C │ ├── prescribedgradientbcperiodic.h │ ├── prescribedgradientbcweak.C │ ├── prescribedgradientbcweak.h │ ├── prescribedgradientbcweakdirichlet.C │ ├── prescribedgradientbcweakdirichlet.h │ ├── prescribedgradientbcweakperiodic.C │ ├── prescribedgradientbcweakperiodic.h │ ├── prescribedgradienthomogenization.C │ ├── prescribedgradienthomogenization.h │ ├── prescribedgradientweakquadtetnodalforce.C │ ├── prescribedgradientweakquadtetnodalforce.h │ ├── prescribedmean.C │ ├── prescribedmean.h │ ├── primaryfield.C │ ├── primaryfield.h │ ├── primaryunknownmapper.C │ ├── primaryunknownmapper.h │ ├── problemcomm.C │ ├── problemcomm.h │ ├── problemmode.h │ ├── problemsequence.C │ ├── problemsequence.h │ ├── processcomm.C │ ├── processcomm.h │ ├── pythonexpression.C │ ├── pythonexpression.h │ ├── qcnode.C │ ├── qcnode.h │ ├── randommaterialext.C │ ├── randommaterialext.h │ ├── range.h │ ├── reinforcement.C │ ├── reinforcement.h │ ├── remeshingcrit.C │ ├── remeshingcrit.h │ ├── rigidarmnode.C │ ├── rigidarmnode.h │ ├── rowcol.C │ ├── rowcol.h │ ├── scalarfunction.C │ ├── scalarfunction.h │ ├── set.C │ ├── set.h │ ├── simpleslavedof.C │ ├── simpleslavedof.h │ ├── skyline.C │ ├── skyline.h │ ├── skylineu.C │ ├── skylineu.h │ ├── slavedof.C │ ├── slavedof.h │ ├── slavenode.C │ ├── slavenode.h │ ├── slepcsolver.C │ ├── slepcsolver.h │ ├── sloangraph.C │ ├── sloangraph.h │ ├── sloangraphnode.C │ ├── sloangraphnode.h │ ├── sloanlevelstruct.C │ ├── sloanlevelstruct.h │ ├── smoothednodalintvarfield.C │ ├── smoothednodalintvarfield.h │ ├── solutionbasedshapefunction.C │ ├── solutionbasedshapefunction.h │ ├── sparsegeneigenvalsystemnm.h │ ├── sparselinsystemnm.C │ ├── sparselinsystemnm.h │ ├── sparsemtrx.h │ ├── sparsemtrxtype.h │ ├── sparsenonlinsystemnm.C │ ├── sparsenonlinsystemnm.h │ ├── spatiallocalizer.C │ ├── spatiallocalizer.h │ ├── spoolessolver.C │ ├── spoolessolver.h │ ├── spoolessparsemtrx.C │ ├── spoolessparsemtrx.h │ ├── sprnodalrecoverymodel.C │ ├── sprnodalrecoverymodel.h │ ├── staggeredproblem.C │ ├── staggeredproblem.h │ ├── staggeredsolver.C │ ├── staggeredsolver.h │ ├── statecountertype.h │ ├── subdivision.C │ ├── subdivision.h │ ├── subspaceit.C │ ├── subspaceit.h │ ├── superlusolver.C │ ├── superlusolver.h │ ├── surfacetensionbc.C │ ├── surfacetensionbc.h │ ├── symcompcol.C │ ├── symcompcol.h │ ├── t3dinterface.C │ ├── t3dinterface.h │ ├── targe2interface.C │ ├── targe2interface.h │ ├── timediscretizationtype.h │ ├── timer.C │ ├── timer.h │ ├── timestep.C │ ├── timestep.h │ ├── tokenizer.C │ ├── tokenizer.h │ ├── topologydescription.h │ ├── trianglemesherinterface.C │ ├── trianglemesherinterface.h │ ├── uniformgridfield.C │ ├── uniformgridfield.h │ ├── unknownnumberingscheme.h │ ├── unknowntype.h │ ├── unstructuredgridfield.C │ ├── unstructuredgridfield.h │ ├── userdefdirichletbc.C │ ├── userdefdirichletbc.h │ ├── util.C │ ├── util.h │ ├── valuemodetype.h │ ├── varscaletype.h │ ├── verbose.h │ ├── vtkexportmodule.C │ ├── vtkexportmodule.h │ ├── vtkxmlexportmodule.C │ ├── vtkxmlexportmodule.h │ ├── wallclockloadbalancermonitor.C │ ├── wallclockloadbalancermonitor.h │ ├── weakperiodicbc.C │ ├── weakperiodicbc.h │ ├── xfem │ │ ├── BoostInterface.h │ │ ├── XFEMDebugTools.C │ │ ├── XFEMDebugTools.h │ │ ├── delaunay.C │ │ ├── delaunay.h │ │ ├── directei.C │ │ ├── directei.h │ │ ├── enrichmentfronts │ │ │ ├── enrichmentfront.C │ │ │ ├── enrichmentfront.h │ │ │ ├── enrichmentfrontcohesivebranchfunconeel.C │ │ │ ├── enrichmentfrontcohesivebranchfunconeel.h │ │ │ ├── enrichmentfrontdonothing.C │ │ │ ├── enrichmentfrontdonothing.h │ │ │ ├── enrichmentfrontextend.C │ │ │ ├── enrichmentfrontextend.h │ │ │ ├── enrichmentfrontintersection.C │ │ │ ├── enrichmentfrontintersection.h │ │ │ ├── enrichmentfrontlinbranchfunconeel.C │ │ │ ├── enrichmentfrontlinbranchfunconeel.h │ │ │ ├── enrichmentfrontlinbranchfuncradius.C │ │ │ ├── enrichmentfrontlinbranchfuncradius.h │ │ │ ├── enrichmentfrontreducefront.C │ │ │ └── enrichmentfrontreducefront.h │ │ ├── enrichmentfunction.C │ │ ├── enrichmentfunction.h │ │ ├── enrichmentitem.C │ │ ├── enrichmentitem.h │ │ ├── geometrybasedei.C │ │ ├── geometrybasedei.h │ │ ├── hybridei.C │ │ ├── hybridei.h │ │ ├── inclusion.C │ │ ├── inclusion.h │ │ ├── integrationrules │ │ │ ├── discsegintegrationrule.C │ │ │ └── discsegintegrationrule.h │ │ ├── listbasedei.C │ │ ├── listbasedei.h │ │ ├── nucleationcriterion.C │ │ ├── nucleationcriterion.h │ │ ├── patchintegrationrule.C │ │ ├── patchintegrationrule.h │ │ ├── propagationlaw.C │ │ ├── propagationlaw.h │ │ ├── tipinfo.h │ │ ├── xfemelementinterface.C │ │ ├── xfemelementinterface.h │ │ ├── xfemmanager.C │ │ ├── xfemmanager.h │ │ ├── xfemtolerances.C │ │ └── xfemtolerances.h │ ├── zznodalrecoverymodel.C │ └── zznodalrecoverymodel.h ├── sm │ ├── .docstates.suo │ ├── CMakeLists.txt │ ├── Contact │ │ ├── cdefnode2node.C │ │ ├── cdefnode2node.h │ │ ├── celnode2node.C │ │ └── celnode2node.h │ ├── CrossSections │ │ ├── fiberedcs.C │ │ ├── fiberedcs.h │ │ ├── layeredcrosssection.C │ │ ├── layeredcrosssection.h │ │ ├── simplecrosssection.C │ │ ├── simplecrosssection.h │ │ ├── structuralcrosssection.C │ │ ├── structuralcrosssection.h │ │ ├── structuralinterfacecrosssection.C │ │ ├── structuralinterfacecrosssection.h │ │ ├── variablecrosssection.C │ │ ├── variablecrosssection.h │ │ ├── warpingcrosssection.C │ │ └── warpingcrosssection.h │ ├── Deprecated │ │ ├── prescribedgenstrainshell7.C │ │ ├── prescribedgenstrainshell7.h │ │ ├── prescribedgradientshell7base.C │ │ └── prescribedgradientshell7base.h │ ├── Elements │ │ ├── 3D │ │ │ ├── lspace.C │ │ │ ├── lspace.h │ │ │ ├── lspacebb.C │ │ │ ├── lspacebb.h │ │ │ ├── ltrspace.C │ │ │ ├── ltrspace.h │ │ │ ├── lwedge.C │ │ │ ├── lwedge.h │ │ │ ├── macrolspace.C │ │ │ ├── macrolspace.h │ │ │ ├── q27space.C │ │ │ ├── q27space.h │ │ │ ├── qspace.C │ │ │ ├── qspace.h │ │ │ ├── qspacegrad.C │ │ │ ├── qspacegrad.h │ │ │ ├── qtrspace.C │ │ │ ├── qtrspace.h │ │ │ ├── qtrspacegrad.C │ │ │ ├── qtrspacegrad.h │ │ │ ├── qwedge.C │ │ │ ├── qwedge.h │ │ │ ├── qwedgegrad.C │ │ │ ├── qwedgegrad.h │ │ │ ├── space3delementevaluator.C │ │ │ └── space3delementevaluator.h │ │ ├── AbaqusUserElement.C │ │ ├── AbaqusUserElement.h │ │ ├── Axisymmetry │ │ │ ├── axisymm3d.C │ │ │ ├── axisymm3d.h │ │ │ ├── l4axisymm.C │ │ │ ├── l4axisymm.h │ │ │ ├── q4axisymm.C │ │ │ └── q4axisymm.h │ │ ├── Bars │ │ │ ├── qtruss1d.C │ │ │ ├── qtruss1d.h │ │ │ ├── qtruss1dgrad.C │ │ │ ├── qtruss1dgrad.h │ │ │ ├── truss1d.C │ │ │ ├── truss1d.h │ │ │ ├── truss2d.C │ │ │ ├── truss2d.h │ │ │ ├── truss3d.C │ │ │ └── truss3d.h │ │ ├── Beams │ │ │ ├── beam2d.C │ │ │ ├── beam2d.h │ │ │ ├── beam3d.C │ │ │ ├── beam3d.h │ │ │ ├── beambaseelement.C │ │ │ ├── beambaseelement.h │ │ │ ├── libeam2d.C │ │ │ ├── libeam2d.h │ │ │ ├── libeam2dnl.C │ │ │ ├── libeam2dnl.h │ │ │ ├── libeam3d.C │ │ │ ├── libeam3d.h │ │ │ ├── libeam3d2.C │ │ │ ├── libeam3d2.h │ │ │ ├── libeam3dnl.C │ │ │ ├── libeam3dnl.h │ │ │ ├── libeam3dnl2.C │ │ │ └── libeam3dnl2.h │ │ ├── Interfaces │ │ │ ├── Deprecated │ │ │ │ ├── interfaceelem2dlin.C │ │ │ │ ├── interfaceelem2dlin.h │ │ │ │ ├── interfaceelem2dquad.C │ │ │ │ ├── interfaceelem2dquad.h │ │ │ │ ├── interfaceelem3dtrlin.C │ │ │ │ ├── interfaceelem3dtrlin.h │ │ │ │ ├── interfaceelement1d.C │ │ │ │ └── interfaceelement1d.h │ │ │ ├── cohsur3d.C │ │ │ ├── cohsur3d.h │ │ │ ├── intelline1.C │ │ │ ├── intelline1.h │ │ │ ├── intelline1intpen.C │ │ │ ├── intelline1intpen.h │ │ │ ├── intelline1phf.C │ │ │ ├── intelline1phf.h │ │ │ ├── intelline2.C │ │ │ ├── intelline2.h │ │ │ ├── intelline2intpen.C │ │ │ ├── intelline2intpen.h │ │ │ ├── intelpoint.C │ │ │ ├── intelpoint.h │ │ │ ├── intelsurftr1.C │ │ │ ├── intelsurftr1.h │ │ │ ├── structuralinterfaceelement.C │ │ │ ├── structuralinterfaceelement.h │ │ │ ├── structuralinterfaceelementphf.C │ │ │ └── structuralinterfaceelementphf.h │ │ ├── PlaneStrain │ │ │ ├── qplanestrain.C │ │ │ ├── qplanestrain.h │ │ │ ├── qplanestraingrad.C │ │ │ ├── qplanestraingrad.h │ │ │ ├── qtrplanestrain.C │ │ │ ├── qtrplanestrain.h │ │ │ ├── qtrplanestraingrad.C │ │ │ ├── qtrplanestraingrad.h │ │ │ ├── quad1planestrain.C │ │ │ ├── quad1planestrain.h │ │ │ ├── trplanestrain.C │ │ │ └── trplanestrain.h │ │ ├── PlaneStress │ │ │ ├── basicelement.C │ │ │ ├── basicelement.h │ │ │ ├── basicelementquad.h │ │ │ ├── linquad3d_planestress.C │ │ │ ├── linquad3d_planestress.h │ │ │ ├── planestresselementevaluator.C │ │ │ ├── planestresselementevaluator.h │ │ │ ├── planstrss.C │ │ │ ├── planstrss.h │ │ │ ├── planstrssphf.C │ │ │ ├── planstrssphf.h │ │ │ ├── planstrssxfem.C │ │ │ ├── planstrssxfem.h │ │ │ ├── q9planstrss.C │ │ │ ├── q9planstrss.h │ │ │ ├── qplanestressgrad.C │ │ │ ├── qplanestressgrad.h │ │ │ ├── qplanstrss.C │ │ │ ├── qplanstrss.h │ │ │ ├── qplanstrssphf.C │ │ │ ├── qplanstrssphf.h │ │ │ ├── qtrplanstrssxfem.C │ │ │ ├── qtrplanstrssxfem.h │ │ │ ├── qtrplstr.C │ │ │ ├── qtrplstr.h │ │ │ ├── qtrplstrgrad.C │ │ │ ├── qtrplstrgrad.h │ │ │ ├── trplanestressrotallman.C │ │ │ ├── trplanestressrotallman.h │ │ │ ├── trplanestressrotallman3d.C │ │ │ ├── trplanestressrotallman3d.h │ │ │ ├── trplanrot.C │ │ │ ├── trplanrot.h │ │ │ ├── trplanrot3d.C │ │ │ ├── trplanrot3d.h │ │ │ ├── trplanstrss.C │ │ │ ├── trplanstrss.h │ │ │ ├── trplanstrssxfem.C │ │ │ └── trplanstrssxfem.h │ │ ├── Plates │ │ │ ├── cct.C │ │ │ ├── cct.h │ │ │ ├── dkt.C │ │ │ ├── dkt.h │ │ │ ├── dkt3d.C │ │ │ ├── dkt3d.h │ │ │ ├── qdkt.C │ │ │ ├── qdkt.h │ │ │ ├── quad1mindlin.C │ │ │ └── quad1mindlin.h │ │ ├── Shells │ │ │ ├── cct3d.C │ │ │ ├── cct3d.h │ │ │ ├── mitc4.C │ │ │ ├── mitc4.h │ │ │ ├── quad1mindlinshell3d.C │ │ │ ├── quad1mindlinshell3d.h │ │ │ ├── rershell.C │ │ │ ├── rershell.h │ │ │ ├── shell7base.C │ │ │ ├── shell7base.h │ │ │ ├── shell7basexfem.C │ │ │ ├── shell7basexfem.h │ │ │ ├── solidshell.C │ │ │ ├── solidshell.h │ │ │ ├── tr2shell7.C │ │ │ ├── tr2shell7.h │ │ │ ├── tr2shell7xfem.C │ │ │ ├── tr2shell7xfem.h │ │ │ ├── tr_shell01.C │ │ │ ├── tr_shell01.h │ │ │ ├── tr_shell02.C │ │ │ └── tr_shell02.h │ │ ├── coupledfieldselement.C │ │ ├── coupledfieldselement.h │ │ ├── graddpelement.C │ │ ├── graddpelement.h │ │ ├── htselement.C │ │ ├── htselement.h │ │ ├── igaelements.C │ │ ├── igaelements.h │ │ ├── lattice2d.C │ │ ├── lattice2d.h │ │ ├── latticestructuralelement.C │ │ ├── latticestructuralelement.h │ │ ├── linedistributedspring.C │ │ ├── linedistributedspring.h │ │ ├── lumpedmasselement.C │ │ ├── lumpedmasselement.h │ │ ├── nlstructuralelement.C │ │ ├── nlstructuralelement.h │ │ ├── nodalspringelement.C │ │ ├── nodalspringelement.h │ │ ├── phasefieldelement.C │ │ ├── phasefieldelement.h │ │ ├── quad1platesubsoil.C │ │ ├── quad1platesubsoil.h │ │ ├── quad2platesubsoil.C │ │ ├── quad2platesubsoil.h │ │ ├── springelement.C │ │ ├── springelement.h │ │ ├── structural2delement.C │ │ ├── structural2delement.h │ │ ├── structural3delement.C │ │ ├── structural3delement.h │ │ ├── structuralelement.C │ │ ├── structuralelement.h │ │ ├── structuralelementevaluator.C │ │ ├── structuralelementevaluator.h │ │ ├── tet21ghostsolid.C │ │ ├── tet21ghostsolid.h │ │ ├── tria1platesubsoil.C │ │ ├── tria1platesubsoil.h │ │ ├── trwarp.C │ │ └── trwarp.h │ ├── EngineeringModels │ │ ├── adaptlinearstatic.C │ │ ├── adaptlinearstatic.h │ │ ├── adaptnlinearstatic.C │ │ ├── adaptnlinearstatic.h │ │ ├── deidynamic.C │ │ ├── deidynamic.h │ │ ├── diidynamic.C │ │ ├── diidynamic.h │ │ ├── eigenvaluedynamic.C │ │ ├── eigenvaluedynamic.h │ │ ├── freewarping.C │ │ ├── freewarping.h │ │ ├── incrementallinearstatic.C │ │ ├── incrementallinearstatic.h │ │ ├── linearstability.C │ │ ├── linearstability.h │ │ ├── linearstatic.C │ │ ├── linearstatic.h │ │ ├── nldeidynamic.C │ │ ├── nldeidynamic.h │ │ ├── nlineardynamic.C │ │ ├── nlineardynamic.h │ │ ├── nlinearstatic.C │ │ ├── nlinearstatic.h │ │ ├── qclinearstatic.C │ │ ├── qclinearstatic.h │ │ ├── staticstructural.C │ │ ├── staticstructural.h │ │ ├── structengngmodel.C │ │ ├── structengngmodel.h │ │ ├── structuralmaterialevaluator.C │ │ ├── structuralmaterialevaluator.h │ │ ├── xfemsolverinterface.C │ │ └── xfemsolverinterface.h │ ├── ErrorEstimators │ │ ├── combinedzzsiee.C │ │ ├── combinedzzsiee.h │ │ ├── directerrorindicatorrc.C │ │ ├── directerrorindicatorrc.h │ │ ├── huertaerrorestimator.C │ │ ├── huertaerrorestimator.h │ │ ├── scalarerrorindicator.C │ │ ├── scalarerrorindicator.h │ │ ├── zzerrorestimator.C │ │ └── zzerrorestimator.h │ ├── FETISolver │ │ ├── fetiboundarydofman.C │ │ ├── fetiboundarydofman.h │ │ ├── feticommunicator.C │ │ ├── feticommunicator.h │ │ ├── fetisolver.C │ │ └── fetisolver.h │ ├── InterfaceElements │ │ ├── intelline1PF.C │ │ └── intelline1PF.h │ ├── Loads │ │ ├── constantpressureload.C │ │ ├── constantpressureload.h │ │ ├── foreigntempfieldload.C │ │ ├── foreigntempfieldload.h │ │ ├── rotatingboundary.C │ │ ├── rotatingboundary.h │ │ ├── structeigenstrainload.C │ │ ├── structeigenstrainload.h │ │ ├── structtemperatureload.C │ │ ├── structtemperatureload.h │ │ ├── tf1.C │ │ ├── tf1.h │ │ ├── usrdeftempfield.C │ │ └── usrdeftempfield.h │ ├── Materials │ │ ├── BoneMaterials │ │ │ ├── trabbone3d.C │ │ │ ├── trabbone3d.h │ │ │ ├── trabboneembed.C │ │ │ ├── trabboneembed.h │ │ │ ├── trabbonegrad3d.C │ │ │ ├── trabbonegrad3d.h │ │ │ ├── trabbonematerial.C │ │ │ ├── trabbonematerial.h │ │ │ ├── trabbonenl.C │ │ │ ├── trabbonenl.h │ │ │ ├── trabbonenl3d.C │ │ │ ├── trabbonenl3d.h │ │ │ ├── trabbonenlembed.C │ │ │ └── trabbonenlembed.h │ │ ├── ConcreteMaterials │ │ │ ├── compodamagemat.C │ │ │ ├── compodamagemat.h │ │ │ ├── concrete2.C │ │ │ ├── concrete2.h │ │ │ ├── concrete3.C │ │ │ ├── concrete3.h │ │ │ ├── concretedpm.C │ │ │ ├── concretedpm.h │ │ │ ├── concretedpm2.C │ │ │ ├── concretedpm2.h │ │ │ ├── concretefcm.C │ │ │ ├── concretefcm.h │ │ │ ├── frcfcm.C │ │ │ ├── frcfcm.h │ │ │ ├── frcfcmnl.C │ │ │ ├── frcfcmnl.h │ │ │ ├── idm1.C │ │ │ ├── idm1.h │ │ │ ├── idmgrad1.C │ │ │ ├── idmgrad1.h │ │ │ ├── idmnl1.C │ │ │ ├── idmnl1.h │ │ │ ├── mazarsmodel.C │ │ │ ├── mazarsmodel.h │ │ │ ├── mazarsmodelnl.C │ │ │ ├── mazarsmodelnl.h │ │ │ ├── mplasticmaterial2.C │ │ │ └── mplasticmaterial2.h │ │ ├── InterfaceMaterials │ │ │ ├── Deprecated │ │ │ │ ├── isointerfacedamage01.C │ │ │ │ ├── isointerfacedamage01.h │ │ │ │ ├── isointerfacedamage02.C │ │ │ │ ├── isointerfacedamage02.h │ │ │ │ ├── simpleinterfacemat.C │ │ │ │ └── simpleinterfacemat.h │ │ │ ├── bondceb.C │ │ │ ├── bondceb.h │ │ │ ├── cohint.C │ │ │ ├── cohint.h │ │ │ ├── expczmaterial.C │ │ │ ├── expczmaterial.h │ │ │ ├── intmatbilinczelastic.C │ │ │ ├── intmatbilinczelastic.h │ │ │ ├── intmatbilinczfagerstrom.C │ │ │ ├── intmatbilinczfagerstrom.h │ │ │ ├── intmatbilinczfagerstromrate.C │ │ │ ├── intmatbilinczfagerstromrate.h │ │ │ ├── intmatbilinczjansson.C │ │ │ ├── intmatbilinczjansson.h │ │ │ ├── intmatbilinearcz.C │ │ │ ├── intmatbilinearcz.h │ │ │ ├── intmatcoulombcontact.C │ │ │ ├── intmatcoulombcontact.h │ │ │ ├── intmatdummycz.C │ │ │ ├── intmatdummycz.h │ │ │ ├── intmatelastic.C │ │ │ ├── intmatelastic.h │ │ │ ├── intmatisodamage.C │ │ │ ├── intmatisodamage.h │ │ │ ├── intmatisodamagetable.C │ │ │ ├── intmatisodamagetable.h │ │ │ ├── intmatphasefield.C │ │ │ ├── intmatphasefield.h │ │ │ ├── masonry02.C │ │ │ ├── masonry02.h │ │ │ ├── mat_cebfip90.C │ │ │ ├── mat_cebfip90.h │ │ │ ├── structuralinterfacematerial.C │ │ │ ├── structuralinterfacematerial.h │ │ │ ├── structuralinterfacematerialphf.h │ │ │ ├── structuralinterfacematerialstatus.C │ │ │ └── structuralinterfacematerialstatus.h │ │ ├── Obsolete │ │ │ ├── j2mplasticmaterial.C │ │ │ ├── j2mplasticmaterial.h │ │ │ ├── j2plasticmaterial.C │ │ │ ├── j2plasticmaterial.h │ │ │ ├── mplasticmaterial.C │ │ │ ├── mplasticmaterial.h │ │ │ ├── perfectlyplasticmaterial.C │ │ │ ├── perfectlyplasticmaterial.h │ │ │ ├── plasticmaterial.C │ │ │ ├── plasticmaterial.h │ │ │ ├── rankinepm.C │ │ │ ├── rankinepm.h │ │ │ ├── steel1.C │ │ │ └── steel1.h │ │ ├── RheoChainMaterials │ │ │ ├── b3mat.C │ │ │ ├── b3mat.h │ │ │ ├── b3solidmat.C │ │ │ ├── b3solidmat.h │ │ │ ├── cebfip78.C │ │ │ ├── cebfip78.h │ │ │ ├── doublepowerlaw.C │ │ │ ├── doublepowerlaw.h │ │ │ ├── eurocode2creep.C │ │ │ ├── eurocode2creep.h │ │ │ ├── kelvinChM.C │ │ │ ├── kelvinChM.h │ │ │ ├── kelvinChSolM.C │ │ │ ├── kelvinChSolM.h │ │ │ ├── maxwellChM.C │ │ │ ├── maxwellChM.h │ │ │ ├── mps.C │ │ │ ├── mps.h │ │ │ ├── mpsdammat.C │ │ │ ├── mpsdammat.h │ │ │ ├── rheoChM.C │ │ │ └── rheoChM.h │ │ ├── abaqususermaterial.C │ │ ├── abaqususermaterial.h │ │ ├── anisodamagemodel.C │ │ ├── anisodamagemodel.h │ │ ├── anisolinearelasticmaterial.C │ │ ├── anisolinearelasticmaterial.h │ │ ├── deformationtheorymaterial.C │ │ ├── deformationtheorymaterial.h │ │ ├── druckerPragerPlasticitySM.C │ │ ├── druckerPragerPlasticitySM.h │ │ ├── druckerpragercutmat.C │ │ ├── druckerpragercutmat.h │ │ ├── dustmat.C │ │ ├── dustmat.h │ │ ├── fcm.C │ │ ├── fcm.h │ │ ├── graddpmaterialextensioninterface.C │ │ ├── graddpmaterialextensioninterface.h │ │ ├── hyperelasticmaterial.C │ │ ├── hyperelasticmaterial.h │ │ ├── isodamagemodel.C │ │ ├── isodamagemodel.h │ │ ├── isolinearelasticmaterial.C │ │ ├── isolinearelasticmaterial.h │ │ ├── j2mat.C │ │ ├── j2mat.h │ │ ├── latticedamage2d.C │ │ ├── latticedamage2d.h │ │ ├── latticematstatus.C │ │ ├── latticematstatus.h │ │ ├── linearelasticmaterial.C │ │ ├── linearelasticmaterial.h │ │ ├── lsmastermat.C │ │ ├── lsmastermat.h │ │ ├── lsmastermatgrad.C │ │ ├── lsmastermatgrad.h │ │ ├── m4.C │ │ ├── m4.h │ │ ├── mdm.C │ │ ├── mdm.h │ │ ├── micromaterial.C │ │ ├── micromaterial.h │ │ ├── microplane_m1.C │ │ ├── microplane_m1.h │ │ ├── microplanematerial.C │ │ ├── microplanematerial.h │ │ ├── microplanematerial_bazant.C │ │ ├── microplanematerial_bazant.h │ │ ├── misesmat.C │ │ ├── misesmat.h │ │ ├── misesmatgrad.C │ │ ├── misesmatgrad.h │ │ ├── misesmatnl.C │ │ ├── misesmatnl.h │ │ ├── mooneyrivlin.C │ │ ├── mooneyrivlin.h │ │ ├── ortholinearelasticmaterial.C │ │ ├── ortholinearelasticmaterial.h │ │ ├── qcmaterialextensioninterface.h │ │ ├── rankinemat.C │ │ ├── rankinemat.h │ │ ├── rankinematgrad.C │ │ ├── rankinematgrad.h │ │ ├── rankinematnl.C │ │ ├── rankinematnl.h │ │ ├── rcm2.C │ │ ├── rcm2.h │ │ ├── rcsd.C │ │ ├── rcsd.h │ │ ├── rcsde.C │ │ ├── rcsde.h │ │ ├── rcsdnl.C │ │ ├── rcsdnl.h │ │ ├── simplevitrificationmaterial.C │ │ ├── simplevitrificationmaterial.h │ │ ├── steelrelaxmat.C │ │ ├── steelrelaxmat.h │ │ ├── structmatsettable.C │ │ ├── structmatsettable.h │ │ ├── structuralfe2material.C │ │ ├── structuralfe2material.h │ │ ├── structuralmaterial.C │ │ ├── structuralmaterial.h │ │ ├── structuralms.C │ │ ├── structuralms.h │ │ ├── structuralnonlocalmaterialext.h │ │ ├── structuralpythonmaterial.C │ │ ├── structuralpythonmaterial.h │ │ ├── tutorialmaterial.C │ │ ├── tutorialmaterial.h │ │ ├── winklermodel.C │ │ ├── winklermodel.h │ │ ├── winklerpasternak.C │ │ └── winklerpasternak.h │ ├── Quasicontinuum │ │ ├── fullsolveddomain.C │ │ ├── fullsolveddomain.h │ │ ├── geometrygenerator.C │ │ ├── geometrygenerator.h │ │ ├── quasicontinuum.C │ │ ├── quasicontinuum.h │ │ ├── quasicontinuumnumberingscheme.C │ │ ├── quasicontinuumnumberingscheme.h │ │ ├── quasicontinuumvtkxmlexportmodule.C │ │ └── quasicontinuumvtkxmlexportmodule.h │ ├── export │ │ ├── crackexportmodule.C │ │ ├── crackexportmodule.h │ │ ├── dmexportmodule.C │ │ ├── dmexportmodule.h │ │ ├── gnuplotexportmodule.C │ │ ├── gnuplotexportmodule.h │ │ ├── poiexportmodule.C │ │ └── poiexportmodule.h │ ├── gpinitmodule.C │ ├── gpinitmodule.h │ ├── mappers │ │ ├── primvarmapper.C │ │ └── primvarmapper.h │ ├── microplane.C │ ├── microplane.h │ ├── particle.C │ ├── particle.h │ ├── polylinenonlocalbarrier.C │ ├── polylinenonlocalbarrier.h │ ├── refinedelement.C │ ├── refinedelement.h │ ├── refinedmesh.C │ ├── refinedmesh.h │ ├── shell7basePhFi.C │ ├── shell7basePhFi.H │ ├── strainvector.C │ ├── strainvector.h │ ├── stressstrainbasevector.C │ ├── stressstrainbasevector.h │ ├── stressstrainprincmode.h │ ├── stressvector.C │ ├── stressvector.h │ ├── symmetrybarrier.C │ ├── symmetrybarrier.h │ ├── tr2shell7PhFi.C │ ├── tr2shell7PhFi.H │ └── xfem │ │ ├── enrichmentitems │ │ ├── crack.C │ │ ├── crack.h │ │ ├── delamination.C │ │ ├── delamination.h │ │ ├── shellcrack.C │ │ └── shellcrack.h │ │ ├── matforceevaluator.C │ │ ├── matforceevaluator.h │ │ ├── nucleationcriteria │ │ ├── ncprincipalstrain.C │ │ ├── ncprincipalstrain.h │ │ ├── ncprincipalstress.C │ │ └── ncprincipalstress.h │ │ ├── propagationlaws │ │ ├── plczdamageradius.C │ │ ├── plczdamageradius.h │ │ ├── plhoopstresscirc.C │ │ ├── plhoopstresscirc.h │ │ ├── plmaterialforce.C │ │ ├── plmaterialforce.h │ │ ├── plprincipalstrain.C │ │ └── plprincipalstrain.h │ │ ├── xfemstructuralelementinterface.C │ │ ├── xfemstructuralelementinterface.h │ │ ├── xfemstructuremanager.C │ │ └── xfemstructuremanager.h └── tm │ ├── BoundaryCondition │ ├── gravitypressure.C │ ├── gravitypressure.h │ ├── transportgradientdirichlet.C │ ├── transportgradientdirichlet.h │ ├── transportgradientneumann.C │ ├── transportgradientneumann.h │ ├── transportgradientperiodic.C │ └── transportgradientperiodic.h │ ├── CMakeLists.txt │ ├── Elements │ ├── brick1_ht.C │ ├── brick1_ht.h │ ├── lattice2d_mt.C │ ├── lattice2d_mt.h │ ├── latticetransportelement.C │ ├── latticetransportelement.h │ ├── qbrick1_ht.C │ ├── qbrick1_ht.h │ ├── quad1_ht.C │ ├── quad1_ht.h │ ├── quadaxisym1_ht.C │ ├── quadaxisym1_ht.h │ ├── qwedge_ht.C │ ├── qwedge_ht.h │ ├── tetrah1_ht.C │ ├── tetrah1_ht.h │ ├── tr1_ht.C │ ├── tr1_ht.h │ ├── tr1darcy.C │ ├── tr1darcy.h │ ├── transportelement.C │ ├── transportelement.h │ ├── traxisym1_ht.C │ ├── traxisym1_ht.h │ ├── wedge_ht.C │ └── wedge_ht.h │ ├── EngineeringModels │ ├── darcyflow.C │ ├── darcyflow.h │ ├── nltransienttransportproblem.C │ ├── nltransienttransportproblem.h │ ├── nonstationarytransportproblem.C │ ├── nonstationarytransportproblem.h │ ├── stationarytransportproblem.C │ ├── stationarytransportproblem.h │ ├── transienttransportproblem.C │ └── transienttransportproblem.h │ ├── Materials │ ├── anisomassmat.C │ ├── anisomassmat.h │ ├── bazantnajjarmat.C │ ├── bazantnajjarmat.h │ ├── cemhyd │ │ ├── cemhydmat.C │ │ └── cemhydmat.h │ ├── hemobaznajmat.C │ ├── hemobaznajmat.h │ ├── hemokunzelmat.C │ ├── hemokunzelmat.h │ ├── hemotkmat.C │ ├── hemotkmat.h │ ├── hydram.C │ ├── hydram.h │ ├── hydratingconcretemat.C │ ├── hydratingconcretemat.h │ ├── hydratinghemomat.C │ ├── hydratinghemomat.h │ ├── hydratingisoheatmat.C │ ├── hydratingisoheatmat.h │ ├── isoheatmat.C │ ├── isoheatmat.h │ ├── isolinmoisturemat.C │ ├── isolinmoisturemat.h │ ├── isomoisturemat.C │ ├── isomoisturemat.h │ ├── latticetransmat.C │ ├── latticetransmat.h │ ├── nlisomoisturemat.C │ ├── nlisomoisturemat.h │ ├── nonlinearmassmat.C │ ├── nonlinearmassmat.h │ ├── rvestokesflow.C │ ├── rvestokesflow.h │ ├── transportmaterial.C │ └── transportmaterial.h │ ├── simpletransportcrosssection.C │ ├── simpletransportcrosssection.h │ └── transportcrosssection.h ├── tests ├── Guidelines.txt ├── benchmark │ ├── Tr2shell7XFEM_adaptiveDelam.in │ ├── Tr2shell7XFEM_stressRecovery.in │ ├── fm │ │ ├── axi01.oofem.in │ │ ├── axi02.oofem.in │ │ ├── axi04.oofem.in │ │ └── bdam7.oofem.in │ ├── fmpfem │ │ ├── pfemBrokenDam.checkOccasionallyFails │ │ ├── pfemStructureInteraction.checkOccasionallyFails │ │ ├── pfemStructureInteraction.in.pfem │ │ └── pfemStructureInteraction.in.sm │ ├── obsolete │ │ └── tr2shell7XFEM_CZ.in │ ├── sm │ │ ├── concrete_3point.in │ │ ├── concrete_3point_direct.in │ │ ├── eigendyn_cct.in │ │ ├── frcfcmnl_tension.in │ │ ├── j2mat.in │ │ ├── steel1.in │ │ ├── tr2Shell7XFEM_multicrack.in │ │ ├── tr2shell7.in │ │ ├── tr2shell7XFEM.in │ │ └── xfem01.in │ └── tmsmdssiml │ │ ├── MPS_bench01_in.sm │ │ ├── MPS_bench01_in.tm │ │ ├── MPS_bench01_tmsm.in │ │ ├── MPS_bench02_in.sm │ │ ├── MPS_bench02_in.tm │ │ └── MPS_bench02_tmsm.in ├── fm │ ├── patch02.in │ ├── patch03.in │ ├── patch05.in │ ├── scctest01.in │ ├── simpleNonlinearStokes.in │ └── weakPeriodicTriangularObstacle.in ├── fmpfem │ ├── pfemFreeFall.in │ ├── pfemHydrostaticPressure.in │ └── pfemPrescribedVelocity.in ├── partests │ ├── bar │ │ ├── bar.ctrl │ │ ├── bar.oofem.in │ │ ├── bar.oofem.in.0 │ │ ├── bar.oofem.in.1 │ │ ├── bar.oofem.in.2 │ │ ├── bar.oofem.in.3 │ │ └── bar.t3d.in │ ├── barnl │ │ ├── barnl.ctrl │ │ ├── barnl.oofem.in │ │ ├── barnl.oofem.in.0 │ │ ├── barnl.oofem.in.1 │ │ ├── barnl.oofem.in.2 │ │ ├── barnl.oofem.in.3 │ │ ├── barnl.t3d.in │ │ ├── barnl2.oofem.in │ │ ├── test1.txt │ │ └── test2.txt │ ├── barnl2 │ │ ├── barnl2.oofem.check │ │ ├── barnl2.oofem.in.0 │ │ └── barnl2.oofem.in.1 │ ├── brazil_2d_nl2 │ │ ├── brazil_2d_errorcheck │ │ ├── brazil_2d_nl.ctrl │ │ ├── brazil_2d_nl.oofem.in │ │ ├── brazil_2d_nl.t3d.in │ │ ├── brazil_2d_nl2.oofem.in.0 │ │ └── brazil_2d_nl2.oofem.in.1 │ ├── brazil_2d_nl4 │ │ ├── brazil_2d_errorcheck.in │ │ ├── brazil_2d_nl4.oofem.in.0 │ │ ├── brazil_2d_nl4.oofem.in.1 │ │ ├── brazil_2d_nl4.oofem.in.2 │ │ └── brazil_2d_nl4.oofem.in.3 │ ├── brazil_2d_nl7 │ │ ├── brazil_2d_errorcheck.in │ │ ├── brazil_2d_nl7.oofem.in.0 │ │ ├── brazil_2d_nl7.oofem.in.1 │ │ ├── brazil_2d_nl7.oofem.in.2 │ │ ├── brazil_2d_nl7.oofem.in.3 │ │ ├── brazil_2d_nl7.oofem.in.4 │ │ ├── brazil_2d_nl7.oofem.in.5 │ │ └── brazil_2d_nl7.oofem.in.6 │ ├── brazil_3d_nl │ │ ├── brazil_3d_nl.ctrl │ │ ├── brazil_3d_nl.oofem.in │ │ ├── brazil_3d_nl.oofem.in.0 │ │ ├── brazil_3d_nl.oofem.in.1 │ │ ├── brazil_3d_nl.oofem.in.2 │ │ ├── brazil_3d_nl.oofem.in.3 │ │ ├── brazil_3d_nl.oofem.in.4 │ │ ├── brazil_3d_nl.oofem.in.5 │ │ ├── brazil_3d_nl.oofem.in.6 │ │ ├── brazil_3d_nl.oofem.in.7 │ │ └── brazil_3d_nl.t3d.in │ ├── dyn_bar01 │ │ ├── dyn_bar01.oofem.in │ │ ├── dyn_bar01.oofem.in.0 │ │ └── dyn_bar01.oofem.in.1 │ ├── dyn_bar02 │ │ ├── dyn_bar02.oofem.check │ │ ├── dyn_bar02.oofem.in.0 │ │ └── dyn_bar02.oofem.in.1 │ ├── dyn_bar03 │ │ ├── bar03.statics.oofem.in │ │ ├── dyn_bar03.oofem.in │ │ ├── dyn_bar03.oofem.in.0 │ │ └── dyn_bar03.oofem.in.1 │ ├── lb01 │ │ ├── CMakeCache.txt │ │ ├── CMakeFiles │ │ │ └── cmake.check_cache │ │ ├── Readme.txt │ │ ├── lb01.oofem.in │ │ ├── lb01.oofem.in.0 │ │ └── lb01.oofem.in.1 │ ├── lb02 │ │ ├── Readme.txt │ │ ├── lb02.oofem.in │ │ ├── lb02.oofem.in.0 │ │ ├── lb02.oofem.in.1 │ │ └── lb02.oofem.in.2 │ ├── lb03 │ │ ├── Readme.txt │ │ ├── lb03.oofem.in │ │ ├── lb03.oofem.in.0 │ │ ├── lb03.oofem.in.1 │ │ └── lb03.oofem.in.2 │ └── planestress │ │ ├── planestress.ctrl │ │ ├── planestress.oofem.in │ │ ├── planestress.oofem.in.0 │ │ ├── planestress.oofem.in.1 │ │ ├── planestress.oofem.in.2 │ │ ├── planestress.oofem.in.3 │ │ └── planestress.t3d.in ├── sm │ ├── DruckerPrager_01.in │ ├── EC2creep.in │ ├── EC2creep_casting.in │ ├── EC2creep_casting_tmp.in │ ├── EC2shrinkage.in │ ├── InterfaceEL_Line1.in │ ├── InterfaceEL_Point2D_01.in │ ├── InterfaceEL_Point3D_01.in │ ├── InterfaceEL_Point3D_02.in │ ├── InterfaceEL_Point3D_03.in │ ├── InterfaceEL_SurfTr1.in │ ├── MPS_01_sec_sm.in │ ├── MPS_01_sm.in │ ├── Mises01.in │ ├── adapt01.in │ ├── adapt02.in │ ├── axisymm01.in │ ├── axisymm02.in │ ├── axisymm03.in │ ├── axisymm04.in │ ├── axisymm05.in │ ├── axisymm06.in │ ├── beam2d_1.in │ ├── beam2d_2.in │ ├── beam2d_3.in │ ├── beam2d_4.in │ ├── beam2d_5.in │ ├── beam3d_1.in │ ├── beam3d_2.in │ ├── beam3d_3.in │ ├── beam3dsubsoil01.in │ ├── beam44.in │ ├── brick_nlgeo_1.in │ ├── brick_nlgeo_2.in │ ├── brick_nlgeo_3.in │ ├── brick_nlgeo_4.in │ ├── brick_nlgeo_5.in │ ├── brick_nlgeo_6.in │ ├── brick_nlgeo_7.in │ ├── cantilever_Qspace.in │ ├── compoDamMat.in │ ├── con2dpm1.in │ ├── con2dpm2.in │ ├── con2dpm3.in │ ├── con2dpm4.in │ ├── concrete_fcm_shear.in │ ├── concrete_fcm_tension.in │ ├── control_switch_1.in │ ├── control_switch_2.in │ ├── deactivate_1.in │ ├── deactivate_2.in │ ├── deadweight01.in │ ├── deadweight02.in │ ├── distancebasedaveraging.in │ ├── dkt_bending01.in │ ├── dkt_rhombic_cantilever_4x4.in │ ├── dkt_twist01.in │ ├── dkt_twist02.in │ ├── eigen_beam2d.in │ ├── eigen_beam3d.in │ ├── eigenstrain01.in │ ├── eigenstrain02.in │ ├── ex-bspline-01.in │ ├── ex-bspline-02.in │ ├── ex-bspline-03.in │ ├── ex-bspline-04.in │ ├── ex-bspline-05.in │ ├── ex-bspline-06.in │ ├── ex-bspline-07.in │ ├── ex-bspline-08.in │ ├── ex-bspline-09.in │ ├── ex3d-nurbs-01.in │ ├── ex3d-nurbs-02.in │ ├── ex3d-nurbs-03.in │ ├── fe2structuralmaterial1.in │ ├── fe2structuralmaterial1.in.rve │ ├── frcfcm_shear.in │ ├── frcfcm_tension.in │ ├── freewarpingtest2.in │ ├── hangingnode01.in │ ├── hangingnode02.in │ ├── hangingnode03.in │ ├── homog01.in │ ├── homog02.in │ ├── homog03.in │ ├── idm01.in │ ├── idm02.in │ ├── idm03.in │ ├── idm04.in │ ├── idm05.in │ ├── idm06.in │ ├── idm07.in │ ├── idm08.in │ ├── incrlinstatic_isimposed.in │ ├── interface01.in │ ├── interface3d.in │ ├── lattice2drandom.dat │ ├── lattice2drandom.in │ ├── layered_cube.in │ ├── layered_cube_lcs.in │ ├── layered_libeam2d.in │ ├── libean3dnl.in │ ├── linear_constraint_1.in │ ├── linear_constraint_2.in │ ├── linear_constraint_3.in │ ├── linedistributedspring01.in │ ├── linstab_beam2d.in │ ├── lshape.oofem.in │ ├── macroLspace01.in │ ├── materOrient01.in │ ├── microMaterial01.in.0 │ ├── nodalspring01.in │ ├── patch010.in │ ├── patch011.in │ ├── patch100.in │ ├── patch101.in │ ├── patch102.in │ ├── patch103.in │ ├── patch104.in │ ├── patch105.in │ ├── patch106.in │ ├── patch107.in │ ├── patch108.in │ ├── patch110.in │ ├── patch130.in │ ├── patch140.in │ ├── patch150.in │ ├── patch160.in │ ├── patch200.in │ ├── patch300.in │ ├── patch301.in │ ├── patch302.in │ ├── patch303.in │ ├── patch_cct.in │ ├── patch_cct3d.in │ ├── patch_cct_02.in │ ├── patch_dkt.in │ ├── patch_mitc4.in │ ├── patch_mitc4_02.in │ ├── patch_qdtk.in │ ├── patch_quad1mindlin.in │ ├── patch_rershell.in │ ├── planestress_j2.in │ ├── plasticRemap1.in │ ├── qTrxFemCrackVal.in │ ├── quasicontinuum2d.in │ ├── quasicontinuum3d.in │ ├── quasicontinuum3d.out.t3d │ ├── rigarm01.in │ ├── rigarm02.in │ ├── rigarm03.in │ ├── rigarm04.in │ ├── rigarm05.in │ ├── rotated_1.in │ ├── rotated_2.in │ ├── rvesmall.out-gp1 │ ├── scordelis_mitc4.in │ ├── slavedofs.in │ ├── spring01.in │ ├── spring02.in │ ├── spring03.in │ ├── spring04.in │ ├── spring05.in │ ├── spring06.in │ ├── staggeredsolver.in │ ├── steelRelaxMat.in │ ├── steelRelaxMat2.in │ ├── stressbasedaveraging.in │ ├── structmateval.in │ ├── t3d.bmf │ ├── test_wp.in │ ├── test_wp2.in │ ├── test_wp3.in │ ├── trshell02_test.in │ ├── truss2d_01.in │ ├── trussb3_creep.in │ ├── trussb3_relax.in │ ├── tutorialelement.in │ ├── tutorialmaterial.in │ ├── vitrification01.in │ ├── xFemCrackVal.in │ ├── xFemCrackValBranch.in │ ├── xFemCrackValBranchCZ.in │ ├── xFemIntersectingCracks.in │ ├── xfemCohesiveZone1.in │ ├── xfemCrackPropMatForce.in │ └── xfemMultipleCracks1.in ├── tm │ ├── HeMoKunzel_1.in │ ├── TwoStepCasting_01.in │ ├── bazantnajjar.in │ ├── hydratingConcreteMat01.in │ ├── hydratingConcreteMat02.in │ ├── hydratingConcreteMat03.in │ ├── hydratingConcreteMat04.in │ ├── hydratingConcreteMat05.in │ ├── isolinmoisture.in │ ├── lattice2dcrackinput.in │ ├── latticetransmat.in │ ├── nlisomoisture01.in │ ├── nlisomoisture02.in │ ├── qbrick_01.in │ ├── qbrick_02.in │ ├── qbrick_03.in │ ├── quadaxisym01.in │ ├── quadaxisym02.in │ ├── quadaxisym03.in │ ├── simpleDarcy.in │ ├── simpleNonlinearDarcy.in │ ├── tmpatch01.in │ ├── tmpatch02.in │ ├── tmpatch03.in │ ├── tmpatch04.in │ ├── tmpatch05.in │ ├── tmpatch06.in │ ├── tmpatch07-8.in │ ├── tmpatch08-8.in │ ├── tmpatch11.in │ ├── tmpatch11dtf.in │ ├── tmpatch15.in │ ├── tmpatch16.in │ ├── tmpatch17.in │ ├── tmpatch20-8.in │ ├── tmpatch21-8.in │ ├── tmpatch31.in │ ├── tmpatch32.in │ ├── tmpatch33.in │ ├── tmpatch34.in │ ├── tmpatch35.in │ ├── tmpatch36.in │ ├── tmpatch37.in │ ├── tmpatch38.in │ ├── tmpatch39.in │ ├── tmpatch40.in │ ├── tmpatch41.in │ ├── tmpatch42.in │ ├── tmpatch43-1.in │ ├── tmpatch43-2.in │ ├── tmpatch43-3.in │ ├── tmpatch44-1.in │ ├── tmpatch44-2.in │ ├── tmpatch44-3.in │ ├── tmpatch45-1.in │ ├── tmpatch46.in │ └── tmquad12.in ├── tmcemhyd │ ├── cemhyd01.in │ ├── cemhyd01_XML.src │ ├── cemhyd01_mic.id │ ├── cemhyd01_mic.img │ └── cemhyd02.in ├── tmfm │ ├── simpleMultiscaleDarcy.in │ └── simpleRVEStokes.rvein └── tmsm │ ├── MPS_02_in.sm │ ├── MPS_02_in.tm │ ├── MPS_02_sec_in.sm │ ├── MPS_02_sec_in.tm │ ├── MPS_02_sec_tmsm.in │ ├── MPS_02_tmsm.in │ ├── MPS_03_in.sm │ ├── MPS_03_in.tm │ ├── MPS_03_sec_in.sm │ ├── MPS_03_sec_in.tm │ ├── MPS_03_sec_tmsm.in │ ├── MPS_03_tmsm.in │ ├── MPS_04_in.sm │ ├── MPS_04_in.tm │ ├── MPS_04_tmsm.in │ ├── MPS_05_in.sm │ ├── MPS_05_in.tm │ ├── MPS_05_tmsm.in │ ├── MPS_06_in.sm │ ├── MPS_06_in.tm │ ├── MPS_06_tmsm.in │ ├── MPS_block01_in.sm │ ├── MPS_block01_in.tm │ ├── MPS_block01_tmsm.in │ ├── MPS_block02_in.sm │ ├── MPS_block02_in.tm │ ├── MPS_block02_tmsm.in │ ├── nltrans_incr.in │ ├── nltrans_incr.in.sm │ ├── nltrans_incr.in.tm │ ├── nltrans_nonlin.in │ ├── nltrans_nonlin.in.sm │ ├── nltrans_nonlin.in.tm │ ├── nonstat_nonlin_01.in │ ├── nonstat_nonlin_01.in.sm │ ├── nonstat_nonlin_01.in.tm │ ├── nonstat_nonlin_02.in │ ├── nonstat_nonlin_02.in.sm │ └── nonstat_nonlin_02.in.tm ├── tools ├── adapt_job ├── extractconvergence.pl ├── extractor.old │ ├── checker.C │ ├── makefile.in │ ├── seek.C │ ├── seek.h │ ├── tokenizer.C │ └── tokenizer.h ├── extractor.py ├── findlaststeptime.pl ├── oofem2part.py ├── rve_generator │ ├── hexagrid.py │ ├── octree.py │ └── rveToolbox.py ├── summer.pl ├── unv2oofem │ ├── FEM.py │ ├── abaqus2x.py │ ├── oofemctrlreader.py │ ├── unv2oofem.py │ └── unv2x.py └── version_upgrade.py └── uncrustify.cfg /.ctags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/.ctags -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/.gitignore -------------------------------------------------------------------------------- /.lvimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/.lvimrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING.LGPLv2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/COPYING.LGPLv2.1 -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/ChangeLog -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 2.6.devel 2 | -------------------------------------------------------------------------------- /bindings/oofemlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/bindings/oofemlib/README -------------------------------------------------------------------------------- /bindings/oofemlib/beam01.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/bindings/oofemlib/beam01.C -------------------------------------------------------------------------------- /bindings/oofemlib/hexgrid.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/bindings/oofemlib/hexgrid.C -------------------------------------------------------------------------------- /bindings/python/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/bindings/python/README -------------------------------------------------------------------------------- /bindings/python/oofemReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/bindings/python/oofemReader.py -------------------------------------------------------------------------------- /bindings/python/oofemlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/bindings/python/oofemlib.cpp -------------------------------------------------------------------------------- /bindings/python/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/bindings/python/test.py -------------------------------------------------------------------------------- /bindings/python/test2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/bindings/python/test2.py -------------------------------------------------------------------------------- /bindings/python/test3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/bindings/python/test3.py -------------------------------------------------------------------------------- /cmake/Modules/FindPETSc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/cmake/Modules/FindPETSc.cmake -------------------------------------------------------------------------------- /cmake/Modules/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/cmake/Modules/LICENSE -------------------------------------------------------------------------------- /do_release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/do_release -------------------------------------------------------------------------------- /doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/README -------------------------------------------------------------------------------- /doc/elementlibmanual/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/elementlibmanual/makefile -------------------------------------------------------------------------------- /doc/extractorInput/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/extractorInput/makefile -------------------------------------------------------------------------------- /doc/include.tex.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/include.tex.in -------------------------------------------------------------------------------- /doc/include/include.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/include/include.tex -------------------------------------------------------------------------------- /doc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/makefile -------------------------------------------------------------------------------- /doc/matlibmanual/capmode.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/matlibmanual/capmode.eps -------------------------------------------------------------------------------- /doc/matlibmanual/capmode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/matlibmanual/capmode.pdf -------------------------------------------------------------------------------- /doc/matlibmanual/dm_comp.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/matlibmanual/dm_comp.eps -------------------------------------------------------------------------------- /doc/matlibmanual/dm_comp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/matlibmanual/dm_comp.pdf -------------------------------------------------------------------------------- /doc/matlibmanual/figs/preamble.textext: -------------------------------------------------------------------------------- 1 | \usepackage{times} 2 | -------------------------------------------------------------------------------- /doc/matlibmanual/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/matlibmanual/makefile -------------------------------------------------------------------------------- /doc/matlibmanual/meridians.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/matlibmanual/meridians.eps -------------------------------------------------------------------------------- /doc/matlibmanual/meridians.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/matlibmanual/meridians.pdf -------------------------------------------------------------------------------- /doc/matlibmanual/mmodel.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/matlibmanual/mmodel.eps -------------------------------------------------------------------------------- /doc/matlibmanual/mmodel.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/matlibmanual/mmodel.pdf -------------------------------------------------------------------------------- /doc/matlibmanual/shearconf.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/matlibmanual/shearconf.eps -------------------------------------------------------------------------------- /doc/matlibmanual/shearconf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/matlibmanual/shearconf.pdf -------------------------------------------------------------------------------- /doc/matlibmanual/tension.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/matlibmanual/tension.eps -------------------------------------------------------------------------------- /doc/matlibmanual/tension.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/matlibmanual/tension.pdf -------------------------------------------------------------------------------- /doc/oofemInput/elementcut0.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/oofemInput/elementcut0.eps -------------------------------------------------------------------------------- /doc/oofemInput/elementcut0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/oofemInput/elementcut0.pdf -------------------------------------------------------------------------------- /doc/oofemInput/elementcut1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/oofemInput/elementcut1.eps -------------------------------------------------------------------------------- /doc/oofemInput/elementcut1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/oofemInput/elementcut1.pdf -------------------------------------------------------------------------------- /doc/oofemInput/ex01.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/oofemInput/ex01.eps -------------------------------------------------------------------------------- /doc/oofemInput/ex01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/oofemInput/ex01.pdf -------------------------------------------------------------------------------- /doc/oofemInput/ex02.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/oofemInput/ex02.eps -------------------------------------------------------------------------------- /doc/oofemInput/ex02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/oofemInput/ex02.pdf -------------------------------------------------------------------------------- /doc/oofemInput/figs/ex01.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/oofemInput/figs/ex01.fig -------------------------------------------------------------------------------- /doc/oofemInput/figs/ex02.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/oofemInput/figs/ex02.fig -------------------------------------------------------------------------------- /doc/oofemInput/geo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/oofemInput/geo.eps -------------------------------------------------------------------------------- /doc/oofemInput/geo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/oofemInput/geo.pdf -------------------------------------------------------------------------------- /doc/oofemInput/latex2html-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/oofemInput/latex2html-init -------------------------------------------------------------------------------- /doc/oofemInput/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/oofemInput/makefile -------------------------------------------------------------------------------- /doc/oofemInput/nodecut0cb.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/oofemInput/nodecut0cb.eps -------------------------------------------------------------------------------- /doc/oofemInput/nodecut0cb.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/oofemInput/nodecut0cb.pdf -------------------------------------------------------------------------------- /doc/oofemInput/nodecut1cb.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/oofemInput/nodecut1cb.eps -------------------------------------------------------------------------------- /doc/oofemInput/nodecut1cb.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/oofemInput/nodecut1cb.pdf -------------------------------------------------------------------------------- /doc/oofemInput/oofemInput.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/oofemInput/oofemInput.tex -------------------------------------------------------------------------------- /doc/oofemInput/poofem_ex01.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/oofemInput/poofem_ex01.eps -------------------------------------------------------------------------------- /doc/oofemInput/poofem_ex01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/oofemInput/poofem_ex01.pdf -------------------------------------------------------------------------------- /doc/oofemInput/poofem_ex02.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/oofemInput/poofem_ex02.eps -------------------------------------------------------------------------------- /doc/oofemInput/poofem_ex02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/oofemInput/poofem_ex02.pdf -------------------------------------------------------------------------------- /doc/paper-actap/acta1.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/paper-actap/acta1.sty -------------------------------------------------------------------------------- /doc/paper-actap/coyo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/paper-actap/coyo.eps -------------------------------------------------------------------------------- /doc/paper-actap/coyo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/paper-actap/coyo.pdf -------------------------------------------------------------------------------- /doc/paper-actap/engng.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/paper-actap/engng.eps -------------------------------------------------------------------------------- /doc/paper-actap/engng.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/paper-actap/engng.pdf -------------------------------------------------------------------------------- /doc/paper-actap/general.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/paper-actap/general.eps -------------------------------------------------------------------------------- /doc/paper-actap/general.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/paper-actap/general.pdf -------------------------------------------------------------------------------- /doc/paper-actap/include.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/paper-actap/include.tex -------------------------------------------------------------------------------- /doc/paper-actap/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/paper-actap/makefile -------------------------------------------------------------------------------- /doc/paper-actap/microp.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/paper-actap/microp.eps -------------------------------------------------------------------------------- /doc/paper-actap/microp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/paper-actap/microp.pdf -------------------------------------------------------------------------------- /doc/paper-actap/struct1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/paper-actap/struct1.eps -------------------------------------------------------------------------------- /doc/paper-actap/struct1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/paper-actap/struct1.pdf -------------------------------------------------------------------------------- /doc/paper-actap/struct2.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/paper-actap/struct2.eps -------------------------------------------------------------------------------- /doc/paper-actap/struct2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/paper-actap/struct2.pdf -------------------------------------------------------------------------------- /doc/programmer/acta1.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/programmer/acta1.sty -------------------------------------------------------------------------------- /doc/programmer/auto/usrman.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/programmer/auto/usrman.el -------------------------------------------------------------------------------- /doc/programmer/coyo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/programmer/coyo.eps -------------------------------------------------------------------------------- /doc/programmer/coyo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/programmer/coyo.pdf -------------------------------------------------------------------------------- /doc/programmer/engng.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/programmer/engng.eps -------------------------------------------------------------------------------- /doc/programmer/engng.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/programmer/engng.pdf -------------------------------------------------------------------------------- /doc/programmer/general.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/programmer/general.eps -------------------------------------------------------------------------------- /doc/programmer/general.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/programmer/general.pdf -------------------------------------------------------------------------------- /doc/programmer/general.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/programmer/general.ps -------------------------------------------------------------------------------- /doc/programmer/include.src.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/programmer/include.src.tex -------------------------------------------------------------------------------- /doc/programmer/include.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/programmer/include.tex -------------------------------------------------------------------------------- /doc/programmer/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/programmer/makefile -------------------------------------------------------------------------------- /doc/programmer/microp.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/programmer/microp.eps -------------------------------------------------------------------------------- /doc/programmer/microp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/programmer/microp.pdf -------------------------------------------------------------------------------- /doc/programmer/programmer.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/programmer/programmer.tex -------------------------------------------------------------------------------- /doc/programmer/struct1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/programmer/struct1.eps -------------------------------------------------------------------------------- /doc/programmer/struct1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/programmer/struct1.pdf -------------------------------------------------------------------------------- /doc/programmer/struct2.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/programmer/struct2.eps -------------------------------------------------------------------------------- /doc/programmer/struct2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/programmer/struct2.pdf -------------------------------------------------------------------------------- /doc/refman/doxygen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/refman/doxygen.cfg -------------------------------------------------------------------------------- /doc/refman/doxygen.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/refman/doxygen.cfg.in -------------------------------------------------------------------------------- /doc/refman/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/refman/footer.html -------------------------------------------------------------------------------- /doc/refman/footer.html.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/refman/footer.html.in -------------------------------------------------------------------------------- /doc/refman/footer.shtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/refman/footer.shtml -------------------------------------------------------------------------------- /doc/refman/intro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/refman/intro -------------------------------------------------------------------------------- /doc/refman/mainpage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/refman/mainpage -------------------------------------------------------------------------------- /doc/refman/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/refman/makefile -------------------------------------------------------------------------------- /doc/refman/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/refman/utility.h -------------------------------------------------------------------------------- /doc/theorymanual/ackno.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/theorymanual/ackno.tex -------------------------------------------------------------------------------- /doc/theorymanual/include.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/theorymanual/include.tex -------------------------------------------------------------------------------- /doc/theorymanual/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/theorymanual/makefile -------------------------------------------------------------------------------- /doc/theorymanual/notation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/theorymanual/notation.tex -------------------------------------------------------------------------------- /doc/theorymanual/titlepage.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/doc/theorymanual/titlepage.tex -------------------------------------------------------------------------------- /iml/bicg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/iml/bicg.h -------------------------------------------------------------------------------- /iml/bicgstab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/iml/bicgstab.h -------------------------------------------------------------------------------- /iml/cg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/iml/cg.h -------------------------------------------------------------------------------- /iml/cgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/iml/cgs.h -------------------------------------------------------------------------------- /iml/cheby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/iml/cheby.h -------------------------------------------------------------------------------- /iml/gmres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/iml/gmres.h -------------------------------------------------------------------------------- /iml/ir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/iml/ir.h -------------------------------------------------------------------------------- /iml/qmr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/iml/qmr.h -------------------------------------------------------------------------------- /release_filter.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/release_filter.pl -------------------------------------------------------------------------------- /src/dss/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/dss/Array.h -------------------------------------------------------------------------------- /src/dss/BiSection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/dss/BiSection.cpp -------------------------------------------------------------------------------- /src/dss/BiSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/dss/BiSection.h -------------------------------------------------------------------------------- /src/dss/BigMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/dss/BigMatrix.cpp -------------------------------------------------------------------------------- /src/dss/BigMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/dss/BigMatrix.h -------------------------------------------------------------------------------- /src/dss/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/dss/CMakeLists.txt -------------------------------------------------------------------------------- /src/dss/ColHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/dss/ColHash.h -------------------------------------------------------------------------------- /src/dss/ConList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/dss/ConList.h -------------------------------------------------------------------------------- /src/dss/DSSAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/dss/DSSAfx.h -------------------------------------------------------------------------------- /src/dss/DSSolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/dss/DSSolver.cpp -------------------------------------------------------------------------------- /src/dss/DSSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/dss/DSSolver.h -------------------------------------------------------------------------------- /src/dss/DenseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/dss/DenseMatrix.h -------------------------------------------------------------------------------- /src/dss/IntArrayList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/dss/IntArrayList.cpp -------------------------------------------------------------------------------- /src/dss/IntArrayList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/dss/IntArrayList.h -------------------------------------------------------------------------------- /src/dss/MathTracer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/dss/MathTracer.cpp -------------------------------------------------------------------------------- /src/dss/MathTracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/dss/MathTracer.h -------------------------------------------------------------------------------- /src/dss/Ordering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/dss/Ordering.h -------------------------------------------------------------------------------- /src/dss/SkyLineMtx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/dss/SkyLineMtx.cpp -------------------------------------------------------------------------------- /src/dss/SkyLineMtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/dss/SkyLineMtx.h -------------------------------------------------------------------------------- /src/dss/SkyLineMtxLDL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/dss/SkyLineMtxLDL.cpp -------------------------------------------------------------------------------- /src/dss/SkyLineMtxLDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/dss/SkyLineMtxLDL.h -------------------------------------------------------------------------------- /src/dss/SparseConectivityMtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/dss/SparseConectivityMtx.h -------------------------------------------------------------------------------- /src/dss/SparseGridColumn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/dss/SparseGridColumn.h -------------------------------------------------------------------------------- /src/dss/SparseGridMtx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/dss/SparseGridMtx.cpp -------------------------------------------------------------------------------- /src/dss/SparseGridMtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/dss/SparseGridMtx.h -------------------------------------------------------------------------------- /src/dss/SparseGridMtxLDL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/dss/SparseGridMtxLDL.cpp -------------------------------------------------------------------------------- /src/dss/SparseGridMtxLDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/dss/SparseGridMtxLDL.h -------------------------------------------------------------------------------- /src/dss/SparseGridMtxLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/dss/SparseGridMtxLL.cpp -------------------------------------------------------------------------------- /src/dss/SparseGridMtxLL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/dss/SparseGridMtxLL.h -------------------------------------------------------------------------------- /src/dss/SparseGridMtxLU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/dss/SparseGridMtxLU.cpp -------------------------------------------------------------------------------- /src/dss/SparseGridMtxLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/dss/SparseGridMtxLU.h -------------------------------------------------------------------------------- /src/dss/SparseGridMtxPD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/dss/SparseGridMtxPD.cpp -------------------------------------------------------------------------------- /src/dss/SparseGridMtxPD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/dss/SparseGridMtxPD.h -------------------------------------------------------------------------------- /src/dss/SparseMatrixF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/dss/SparseMatrixF.cpp -------------------------------------------------------------------------------- /src/dss/SparseMatrixF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/dss/SparseMatrixF.h -------------------------------------------------------------------------------- /src/dss/dssmatrix.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/dss/dssmatrix.C -------------------------------------------------------------------------------- /src/dss/dssmatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/dss/dssmatrix.h -------------------------------------------------------------------------------- /src/dss/dsssolver.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/dss/dsssolver.C -------------------------------------------------------------------------------- /src/dss/dsssolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/dss/dsssolver.h -------------------------------------------------------------------------------- /src/fm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/CMakeLists.txt -------------------------------------------------------------------------------- /src/fm/cbs.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/cbs.C -------------------------------------------------------------------------------- /src/fm/cbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/cbs.h -------------------------------------------------------------------------------- /src/fm/cbselement.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/cbselement.C -------------------------------------------------------------------------------- /src/fm/cbselement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/cbselement.h -------------------------------------------------------------------------------- /src/fm/fastmarchingmethod.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/fastmarchingmethod.C -------------------------------------------------------------------------------- /src/fm/fastmarchingmethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/fastmarchingmethod.h -------------------------------------------------------------------------------- /src/fm/fluidcrosssection.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/fluidcrosssection.C -------------------------------------------------------------------------------- /src/fm/fluidcrosssection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/fluidcrosssection.h -------------------------------------------------------------------------------- /src/fm/fluidmodel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/fluidmodel.C -------------------------------------------------------------------------------- /src/fm/fluidmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/fluidmodel.h -------------------------------------------------------------------------------- /src/fm/fmelement.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/fmelement.C -------------------------------------------------------------------------------- /src/fm/fmelement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/fmelement.h -------------------------------------------------------------------------------- /src/fm/hexa21stokes.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/hexa21stokes.C -------------------------------------------------------------------------------- /src/fm/hexa21stokes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/hexa21stokes.h -------------------------------------------------------------------------------- /src/fm/leplic.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/leplic.C -------------------------------------------------------------------------------- /src/fm/leplic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/leplic.h -------------------------------------------------------------------------------- /src/fm/levelsetpcs.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/levelsetpcs.C -------------------------------------------------------------------------------- /src/fm/levelsetpcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/levelsetpcs.h -------------------------------------------------------------------------------- /src/fm/line2boundaryelement.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/line2boundaryelement.C -------------------------------------------------------------------------------- /src/fm/line2boundaryelement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/line2boundaryelement.h -------------------------------------------------------------------------------- /src/fm/pfem/delaunaytriangle.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/pfem/delaunaytriangle.C -------------------------------------------------------------------------------- /src/fm/pfem/delaunaytriangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/pfem/delaunaytriangle.h -------------------------------------------------------------------------------- /src/fm/pfem/edge2d.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/pfem/edge2d.C -------------------------------------------------------------------------------- /src/fm/pfem/edge2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/pfem/edge2d.h -------------------------------------------------------------------------------- /src/fm/pfem/interactionload.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/pfem/interactionload.C -------------------------------------------------------------------------------- /src/fm/pfem/interactionload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/pfem/interactionload.h -------------------------------------------------------------------------------- /src/fm/pfem/octreelocalizert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/pfem/octreelocalizert.h -------------------------------------------------------------------------------- /src/fm/pfem/pfem.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/pfem/pfem.C -------------------------------------------------------------------------------- /src/fm/pfem/pfem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/pfem/pfem.h -------------------------------------------------------------------------------- /src/fm/pfem/pfemelement.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/pfem/pfemelement.C -------------------------------------------------------------------------------- /src/fm/pfem/pfemelement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/pfem/pfemelement.h -------------------------------------------------------------------------------- /src/fm/pfem/pfemelement2d.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/pfem/pfemelement2d.C -------------------------------------------------------------------------------- /src/fm/pfem/pfemelement2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/pfem/pfemelement2d.h -------------------------------------------------------------------------------- /src/fm/pfem/pfemparticle.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/pfem/pfemparticle.C -------------------------------------------------------------------------------- /src/fm/pfem/pfemparticle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/pfem/pfemparticle.h -------------------------------------------------------------------------------- /src/fm/pfem/tr1_2d_pfem.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/pfem/tr1_2d_pfem.C -------------------------------------------------------------------------------- /src/fm/pfem/tr1_2d_pfem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/pfem/tr1_2d_pfem.h -------------------------------------------------------------------------------- /src/fm/quad10_2d_supg.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/quad10_2d_supg.C -------------------------------------------------------------------------------- /src/fm/quad10_2d_supg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/quad10_2d_supg.h -------------------------------------------------------------------------------- /src/fm/stokesflow.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/stokesflow.C -------------------------------------------------------------------------------- /src/fm/stokesflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/stokesflow.h -------------------------------------------------------------------------------- /src/fm/supg.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/supg.C -------------------------------------------------------------------------------- /src/fm/supg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/supg.h -------------------------------------------------------------------------------- /src/fm/supgelement.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/supgelement.C -------------------------------------------------------------------------------- /src/fm/supgelement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/supgelement.h -------------------------------------------------------------------------------- /src/fm/supgelement2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/supgelement2.C -------------------------------------------------------------------------------- /src/fm/supgelement2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/supgelement2.h -------------------------------------------------------------------------------- /src/fm/tet1_3d_supg.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/tet1_3d_supg.C -------------------------------------------------------------------------------- /src/fm/tet1_3d_supg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/tet1_3d_supg.h -------------------------------------------------------------------------------- /src/fm/tet1bubblestokes.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/tet1bubblestokes.C -------------------------------------------------------------------------------- /src/fm/tet1bubblestokes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/tet1bubblestokes.h -------------------------------------------------------------------------------- /src/fm/tet21stokes.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/tet21stokes.C -------------------------------------------------------------------------------- /src/fm/tet21stokes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/tet21stokes.h -------------------------------------------------------------------------------- /src/fm/tr1_2d_cbs.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/tr1_2d_cbs.C -------------------------------------------------------------------------------- /src/fm/tr1_2d_cbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/tr1_2d_cbs.h -------------------------------------------------------------------------------- /src/fm/tr1_2d_supg.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/tr1_2d_supg.C -------------------------------------------------------------------------------- /src/fm/tr1_2d_supg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/tr1_2d_supg.h -------------------------------------------------------------------------------- /src/fm/tr1_2d_supg2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/tr1_2d_supg2.C -------------------------------------------------------------------------------- /src/fm/tr1_2d_supg2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/tr1_2d_supg2.h -------------------------------------------------------------------------------- /src/fm/tr1_2d_supg2_axi.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/tr1_2d_supg2_axi.C -------------------------------------------------------------------------------- /src/fm/tr1_2d_supg2_axi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/tr1_2d_supg2_axi.h -------------------------------------------------------------------------------- /src/fm/tr1_2d_supg_axi.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/tr1_2d_supg_axi.C -------------------------------------------------------------------------------- /src/fm/tr1_2d_supg_axi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/tr1_2d_supg_axi.h -------------------------------------------------------------------------------- /src/fm/tr1bubblestokes.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/tr1bubblestokes.C -------------------------------------------------------------------------------- /src/fm/tr1bubblestokes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/tr1bubblestokes.h -------------------------------------------------------------------------------- /src/fm/tr21_2d_supg.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/tr21_2d_supg.C -------------------------------------------------------------------------------- /src/fm/tr21_2d_supg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/tr21_2d_supg.h -------------------------------------------------------------------------------- /src/fm/tr21stokes.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/tr21stokes.C -------------------------------------------------------------------------------- /src/fm/tr21stokes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/tr21stokes.h -------------------------------------------------------------------------------- /src/fm/tractionpressurebc.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/tractionpressurebc.C -------------------------------------------------------------------------------- /src/fm/tractionpressurebc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/fm/tractionpressurebc.h -------------------------------------------------------------------------------- /src/main/main.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/main/main.C -------------------------------------------------------------------------------- /src/main/oofeg.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/main/oofeg.C -------------------------------------------------------------------------------- /src/oofemcfg.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemcfg.h.in -------------------------------------------------------------------------------- /src/oofemlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/CMakeLists.txt -------------------------------------------------------------------------------- /src/oofemlib/activebc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/activebc.h -------------------------------------------------------------------------------- /src/oofemlib/activedof.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/activedof.C -------------------------------------------------------------------------------- /src/oofemlib/activedof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/activedof.h -------------------------------------------------------------------------------- /src/oofemlib/bcgeomtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/bcgeomtype.h -------------------------------------------------------------------------------- /src/oofemlib/bctracker.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/bctracker.C -------------------------------------------------------------------------------- /src/oofemlib/bctracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/bctracker.h -------------------------------------------------------------------------------- /src/oofemlib/bctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/bctype.h -------------------------------------------------------------------------------- /src/oofemlib/bcvaltype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/bcvaltype.h -------------------------------------------------------------------------------- /src/oofemlib/bodyload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/bodyload.h -------------------------------------------------------------------------------- /src/oofemlib/boundaryload.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/boundaryload.C -------------------------------------------------------------------------------- /src/oofemlib/boundaryload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/boundaryload.h -------------------------------------------------------------------------------- /src/oofemlib/calmls.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/calmls.C -------------------------------------------------------------------------------- /src/oofemlib/calmls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/calmls.h -------------------------------------------------------------------------------- /src/oofemlib/chartype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/chartype.h -------------------------------------------------------------------------------- /src/oofemlib/classfactory.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/classfactory.C -------------------------------------------------------------------------------- /src/oofemlib/classfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/classfactory.h -------------------------------------------------------------------------------- /src/oofemlib/cltypes.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/cltypes.C -------------------------------------------------------------------------------- /src/oofemlib/cltypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/cltypes.h -------------------------------------------------------------------------------- /src/oofemlib/combuff.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/combuff.C -------------------------------------------------------------------------------- /src/oofemlib/combuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/combuff.h -------------------------------------------------------------------------------- /src/oofemlib/commbufftype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/commbufftype.h -------------------------------------------------------------------------------- /src/oofemlib/communicator.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/communicator.C -------------------------------------------------------------------------------- /src/oofemlib/communicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/communicator.h -------------------------------------------------------------------------------- /src/oofemlib/compcol.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/compcol.C -------------------------------------------------------------------------------- /src/oofemlib/compcol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/compcol.h -------------------------------------------------------------------------------- /src/oofemlib/contextfilemode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/contextfilemode.h -------------------------------------------------------------------------------- /src/oofemlib/contextioerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/contextioerr.h -------------------------------------------------------------------------------- /src/oofemlib/contextmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/contextmode.h -------------------------------------------------------------------------------- /src/oofemlib/crosssection.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/crosssection.C -------------------------------------------------------------------------------- /src/oofemlib/crosssection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/crosssection.h -------------------------------------------------------------------------------- /src/oofemlib/datareader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/datareader.h -------------------------------------------------------------------------------- /src/oofemlib/datastream.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/datastream.C -------------------------------------------------------------------------------- /src/oofemlib/datastream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/datastream.h -------------------------------------------------------------------------------- /src/oofemlib/deadweight.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/deadweight.C -------------------------------------------------------------------------------- /src/oofemlib/deadweight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/deadweight.h -------------------------------------------------------------------------------- /src/oofemlib/dictionary.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/dictionary.C -------------------------------------------------------------------------------- /src/oofemlib/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/dictionary.h -------------------------------------------------------------------------------- /src/oofemlib/dof.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/dof.C -------------------------------------------------------------------------------- /src/oofemlib/dof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/dof.h -------------------------------------------------------------------------------- /src/oofemlib/dofiditem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/dofiditem.h -------------------------------------------------------------------------------- /src/oofemlib/dofmanager.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/dofmanager.C -------------------------------------------------------------------------------- /src/oofemlib/dofmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/dofmanager.h -------------------------------------------------------------------------------- /src/oofemlib/dofmanvalfield.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/dofmanvalfield.C -------------------------------------------------------------------------------- /src/oofemlib/dofmanvalfield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/dofmanvalfield.h -------------------------------------------------------------------------------- /src/oofemlib/doftype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/doftype.h -------------------------------------------------------------------------------- /src/oofemlib/domain.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/domain.C -------------------------------------------------------------------------------- /src/oofemlib/domain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/domain.h -------------------------------------------------------------------------------- /src/oofemlib/domaintype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/domaintype.h -------------------------------------------------------------------------------- /src/oofemlib/drawmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/drawmode.h -------------------------------------------------------------------------------- /src/oofemlib/dummylocalizer.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/dummylocalizer.C -------------------------------------------------------------------------------- /src/oofemlib/dummylocalizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/dummylocalizer.h -------------------------------------------------------------------------------- /src/oofemlib/dummymaterial.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/dummymaterial.C -------------------------------------------------------------------------------- /src/oofemlib/dummymaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/dummymaterial.h -------------------------------------------------------------------------------- /src/oofemlib/dyncombuff.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/dyncombuff.C -------------------------------------------------------------------------------- /src/oofemlib/dyncombuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/dyncombuff.h -------------------------------------------------------------------------------- /src/oofemlib/element.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/element.C -------------------------------------------------------------------------------- /src/oofemlib/element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/element.h -------------------------------------------------------------------------------- /src/oofemlib/elementside.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/elementside.C -------------------------------------------------------------------------------- /src/oofemlib/elementside.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/elementside.h -------------------------------------------------------------------------------- /src/oofemlib/emptycs.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/emptycs.C -------------------------------------------------------------------------------- /src/oofemlib/emptycs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/emptycs.h -------------------------------------------------------------------------------- /src/oofemlib/engngm.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/engngm.C -------------------------------------------------------------------------------- /src/oofemlib/engngm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/engngm.h -------------------------------------------------------------------------------- /src/oofemlib/enumitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/enumitem.h -------------------------------------------------------------------------------- /src/oofemlib/error.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/error.C -------------------------------------------------------------------------------- /src/oofemlib/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/error.h -------------------------------------------------------------------------------- /src/oofemlib/errorestimator.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/errorestimator.C -------------------------------------------------------------------------------- /src/oofemlib/errorestimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/errorestimator.h -------------------------------------------------------------------------------- /src/oofemlib/exportmodule.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/exportmodule.C -------------------------------------------------------------------------------- /src/oofemlib/exportmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/exportmodule.h -------------------------------------------------------------------------------- /src/oofemlib/fei1dhermite.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei1dhermite.C -------------------------------------------------------------------------------- /src/oofemlib/fei1dhermite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei1dhermite.h -------------------------------------------------------------------------------- /src/oofemlib/fei1dlin.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei1dlin.C -------------------------------------------------------------------------------- /src/oofemlib/fei1dlin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei1dlin.h -------------------------------------------------------------------------------- /src/oofemlib/fei1dquad.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei1dquad.C -------------------------------------------------------------------------------- /src/oofemlib/fei1dquad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei1dquad.h -------------------------------------------------------------------------------- /src/oofemlib/fei2dlinelin.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei2dlinelin.C -------------------------------------------------------------------------------- /src/oofemlib/fei2dlinelin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei2dlinelin.h -------------------------------------------------------------------------------- /src/oofemlib/fei2dlinequad.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei2dlinequad.C -------------------------------------------------------------------------------- /src/oofemlib/fei2dlinequad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei2dlinequad.h -------------------------------------------------------------------------------- /src/oofemlib/fei2dquadbiquad.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei2dquadbiquad.C -------------------------------------------------------------------------------- /src/oofemlib/fei2dquadbiquad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei2dquadbiquad.h -------------------------------------------------------------------------------- /src/oofemlib/fei2dquadconst.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei2dquadconst.C -------------------------------------------------------------------------------- /src/oofemlib/fei2dquadconst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei2dquadconst.h -------------------------------------------------------------------------------- /src/oofemlib/fei2dquadlin.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei2dquadlin.C -------------------------------------------------------------------------------- /src/oofemlib/fei2dquadlin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei2dquadlin.h -------------------------------------------------------------------------------- /src/oofemlib/fei2dquadquad.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei2dquadquad.C -------------------------------------------------------------------------------- /src/oofemlib/fei2dquadquad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei2dquadquad.h -------------------------------------------------------------------------------- /src/oofemlib/fei2dtrconst.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei2dtrconst.C -------------------------------------------------------------------------------- /src/oofemlib/fei2dtrconst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei2dtrconst.h -------------------------------------------------------------------------------- /src/oofemlib/fei2dtrlin.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei2dtrlin.C -------------------------------------------------------------------------------- /src/oofemlib/fei2dtrlin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei2dtrlin.h -------------------------------------------------------------------------------- /src/oofemlib/fei2dtrquad.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei2dtrquad.C -------------------------------------------------------------------------------- /src/oofemlib/fei2dtrquad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei2dtrquad.h -------------------------------------------------------------------------------- /src/oofemlib/fei3dhexalin.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei3dhexalin.C -------------------------------------------------------------------------------- /src/oofemlib/fei3dhexalin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei3dhexalin.h -------------------------------------------------------------------------------- /src/oofemlib/fei3dhexaquad.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei3dhexaquad.C -------------------------------------------------------------------------------- /src/oofemlib/fei3dhexaquad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei3dhexaquad.h -------------------------------------------------------------------------------- /src/oofemlib/fei3dlinelin.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei3dlinelin.C -------------------------------------------------------------------------------- /src/oofemlib/fei3dlinelin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei3dlinelin.h -------------------------------------------------------------------------------- /src/oofemlib/fei3dtetlin.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei3dtetlin.C -------------------------------------------------------------------------------- /src/oofemlib/fei3dtetlin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei3dtetlin.h -------------------------------------------------------------------------------- /src/oofemlib/fei3dtetquad.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei3dtetquad.C -------------------------------------------------------------------------------- /src/oofemlib/fei3dtetquad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei3dtetquad.h -------------------------------------------------------------------------------- /src/oofemlib/fei3dtrlin.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei3dtrlin.C -------------------------------------------------------------------------------- /src/oofemlib/fei3dtrlin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei3dtrlin.h -------------------------------------------------------------------------------- /src/oofemlib/fei3dtrquad.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei3dtrquad.C -------------------------------------------------------------------------------- /src/oofemlib/fei3dtrquad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei3dtrquad.h -------------------------------------------------------------------------------- /src/oofemlib/fei3dwedgelin.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei3dwedgelin.C -------------------------------------------------------------------------------- /src/oofemlib/fei3dwedgelin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei3dwedgelin.h -------------------------------------------------------------------------------- /src/oofemlib/fei3dwedgequad.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei3dwedgequad.C -------------------------------------------------------------------------------- /src/oofemlib/fei3dwedgequad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fei3dwedgequad.h -------------------------------------------------------------------------------- /src/oofemlib/feinterpol.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/feinterpol.C -------------------------------------------------------------------------------- /src/oofemlib/feinterpol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/feinterpol.h -------------------------------------------------------------------------------- /src/oofemlib/feinterpol1d.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/feinterpol1d.C -------------------------------------------------------------------------------- /src/oofemlib/feinterpol1d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/feinterpol1d.h -------------------------------------------------------------------------------- /src/oofemlib/feinterpol2d.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/feinterpol2d.C -------------------------------------------------------------------------------- /src/oofemlib/feinterpol2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/feinterpol2d.h -------------------------------------------------------------------------------- /src/oofemlib/feinterpol3d.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/feinterpol3d.C -------------------------------------------------------------------------------- /src/oofemlib/feinterpol3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/feinterpol3d.h -------------------------------------------------------------------------------- /src/oofemlib/femcmpnn.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/femcmpnn.C -------------------------------------------------------------------------------- /src/oofemlib/femcmpnn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/femcmpnn.h -------------------------------------------------------------------------------- /src/oofemlib/field.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/field.C -------------------------------------------------------------------------------- /src/oofemlib/field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/field.h -------------------------------------------------------------------------------- /src/oofemlib/fieldmanager.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fieldmanager.C -------------------------------------------------------------------------------- /src/oofemlib/fieldmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fieldmanager.h -------------------------------------------------------------------------------- /src/oofemlib/floatarray.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/floatarray.C -------------------------------------------------------------------------------- /src/oofemlib/floatarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/floatarray.h -------------------------------------------------------------------------------- /src/oofemlib/floatmatrix.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/floatmatrix.C -------------------------------------------------------------------------------- /src/oofemlib/floatmatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/floatmatrix.h -------------------------------------------------------------------------------- /src/oofemlib/fmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fmode.h -------------------------------------------------------------------------------- /src/oofemlib/fracturemanager.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fracturemanager.C -------------------------------------------------------------------------------- /src/oofemlib/fracturemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/fracturemanager.h -------------------------------------------------------------------------------- /src/oofemlib/freeminterface.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/freeminterface.C -------------------------------------------------------------------------------- /src/oofemlib/freeminterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/freeminterface.h -------------------------------------------------------------------------------- /src/oofemlib/function.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/function.C -------------------------------------------------------------------------------- /src/oofemlib/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/function.h -------------------------------------------------------------------------------- /src/oofemlib/gausspoint.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/gausspoint.C -------------------------------------------------------------------------------- /src/oofemlib/gausspoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/gausspoint.h -------------------------------------------------------------------------------- /src/oofemlib/geometry.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/geometry.C -------------------------------------------------------------------------------- /src/oofemlib/geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/geometry.h -------------------------------------------------------------------------------- /src/oofemlib/geotoolbox.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/geotoolbox.C -------------------------------------------------------------------------------- /src/oofemlib/geotoolbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/geotoolbox.h -------------------------------------------------------------------------------- /src/oofemlib/gjacobi.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/gjacobi.C -------------------------------------------------------------------------------- /src/oofemlib/gjacobi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/gjacobi.h -------------------------------------------------------------------------------- /src/oofemlib/gpexportmodule.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/gpexportmodule.C -------------------------------------------------------------------------------- /src/oofemlib/gpexportmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/gpexportmodule.h -------------------------------------------------------------------------------- /src/oofemlib/grid.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/grid.C -------------------------------------------------------------------------------- /src/oofemlib/grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/grid.h -------------------------------------------------------------------------------- /src/oofemlib/hangingnode.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/hangingnode.C -------------------------------------------------------------------------------- /src/oofemlib/hangingnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/hangingnode.h -------------------------------------------------------------------------------- /src/oofemlib/heap.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/heap.C -------------------------------------------------------------------------------- /src/oofemlib/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/heap.h -------------------------------------------------------------------------------- /src/oofemlib/homexportmodule.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/homexportmodule.C -------------------------------------------------------------------------------- /src/oofemlib/homexportmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/homexportmodule.h -------------------------------------------------------------------------------- /src/oofemlib/homogenize.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/homogenize.C -------------------------------------------------------------------------------- /src/oofemlib/homogenize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/homogenize.h -------------------------------------------------------------------------------- /src/oofemlib/iga/feibspline.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/iga/feibspline.C -------------------------------------------------------------------------------- /src/oofemlib/iga/feibspline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/iga/feibspline.h -------------------------------------------------------------------------------- /src/oofemlib/iga/feinurbs.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/iga/feinurbs.C -------------------------------------------------------------------------------- /src/oofemlib/iga/feinurbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/iga/feinurbs.h -------------------------------------------------------------------------------- /src/oofemlib/iga/feitspline.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/iga/feitspline.C -------------------------------------------------------------------------------- /src/oofemlib/iga/feitspline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/iga/feitspline.h -------------------------------------------------------------------------------- /src/oofemlib/iga/iga.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/iga/iga.C -------------------------------------------------------------------------------- /src/oofemlib/iga/iga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/iga/iga.h -------------------------------------------------------------------------------- /src/oofemlib/iml/diagpre.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/iml/diagpre.C -------------------------------------------------------------------------------- /src/oofemlib/iml/diagpre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/iml/diagpre.h -------------------------------------------------------------------------------- /src/oofemlib/iml/dyncompcol.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/iml/dyncompcol.C -------------------------------------------------------------------------------- /src/oofemlib/iml/dyncompcol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/iml/dyncompcol.h -------------------------------------------------------------------------------- /src/oofemlib/iml/dyncomprow.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/iml/dyncomprow.C -------------------------------------------------------------------------------- /src/oofemlib/iml/dyncomprow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/iml/dyncomprow.h -------------------------------------------------------------------------------- /src/oofemlib/iml/icprecond.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/iml/icprecond.C -------------------------------------------------------------------------------- /src/oofemlib/iml/icprecond.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/iml/icprecond.h -------------------------------------------------------------------------------- /src/oofemlib/iml/iluprecond.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/iml/iluprecond.C -------------------------------------------------------------------------------- /src/oofemlib/iml/iluprecond.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/iml/iluprecond.h -------------------------------------------------------------------------------- /src/oofemlib/iml/imlsolver.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/iml/imlsolver.C -------------------------------------------------------------------------------- /src/oofemlib/iml/imlsolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/iml/imlsolver.h -------------------------------------------------------------------------------- /src/oofemlib/iml/precond.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/iml/precond.C -------------------------------------------------------------------------------- /src/oofemlib/iml/precond.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/iml/precond.h -------------------------------------------------------------------------------- /src/oofemlib/iml/voidprecond.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/iml/voidprecond.C -------------------------------------------------------------------------------- /src/oofemlib/iml/voidprecond.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/iml/voidprecond.h -------------------------------------------------------------------------------- /src/oofemlib/initmodule.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/initmodule.C -------------------------------------------------------------------------------- /src/oofemlib/initmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/initmodule.h -------------------------------------------------------------------------------- /src/oofemlib/inputrecord.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/inputrecord.C -------------------------------------------------------------------------------- /src/oofemlib/inputrecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/inputrecord.h -------------------------------------------------------------------------------- /src/oofemlib/intarray.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/intarray.C -------------------------------------------------------------------------------- /src/oofemlib/intarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/intarray.h -------------------------------------------------------------------------------- /src/oofemlib/integrationrule.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/integrationrule.C -------------------------------------------------------------------------------- /src/oofemlib/integrationrule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/integrationrule.h -------------------------------------------------------------------------------- /src/oofemlib/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/interface.h -------------------------------------------------------------------------------- /src/oofemlib/interfacetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/interfacetype.h -------------------------------------------------------------------------------- /src/oofemlib/intvarfield.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/intvarfield.C -------------------------------------------------------------------------------- /src/oofemlib/intvarfield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/intvarfield.h -------------------------------------------------------------------------------- /src/oofemlib/inverseit.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/inverseit.C -------------------------------------------------------------------------------- /src/oofemlib/inverseit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/inverseit.h -------------------------------------------------------------------------------- /src/oofemlib/irresulttype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/irresulttype.h -------------------------------------------------------------------------------- /src/oofemlib/ldltfact.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/ldltfact.C -------------------------------------------------------------------------------- /src/oofemlib/ldltfact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/ldltfact.h -------------------------------------------------------------------------------- /src/oofemlib/linearedgeload.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/linearedgeload.C -------------------------------------------------------------------------------- /src/oofemlib/linearedgeload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/linearedgeload.h -------------------------------------------------------------------------------- /src/oofemlib/linesearch.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/linesearch.C -------------------------------------------------------------------------------- /src/oofemlib/linesearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/linesearch.h -------------------------------------------------------------------------------- /src/oofemlib/load.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/load.C -------------------------------------------------------------------------------- /src/oofemlib/load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/load.h -------------------------------------------------------------------------------- /src/oofemlib/loadbalancer.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/loadbalancer.C -------------------------------------------------------------------------------- /src/oofemlib/loadbalancer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/loadbalancer.h -------------------------------------------------------------------------------- /src/oofemlib/lobattoir.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/lobattoir.C -------------------------------------------------------------------------------- /src/oofemlib/lobattoir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/lobattoir.h -------------------------------------------------------------------------------- /src/oofemlib/logger.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/logger.C -------------------------------------------------------------------------------- /src/oofemlib/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/logger.h -------------------------------------------------------------------------------- /src/oofemlib/masterdof.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/masterdof.C -------------------------------------------------------------------------------- /src/oofemlib/masterdof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/masterdof.h -------------------------------------------------------------------------------- /src/oofemlib/matconst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/matconst.h -------------------------------------------------------------------------------- /src/oofemlib/material.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/material.C -------------------------------------------------------------------------------- /src/oofemlib/material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/material.h -------------------------------------------------------------------------------- /src/oofemlib/materialmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/materialmode.h -------------------------------------------------------------------------------- /src/oofemlib/mathfem.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/mathfem.C -------------------------------------------------------------------------------- /src/oofemlib/mathfem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/mathfem.h -------------------------------------------------------------------------------- /src/oofemlib/matresponsemode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/matresponsemode.h -------------------------------------------------------------------------------- /src/oofemlib/matstatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/matstatus.h -------------------------------------------------------------------------------- /src/oofemlib/matstatusvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/matstatusvar.h -------------------------------------------------------------------------------- /src/oofemlib/mesherinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/mesherinterface.h -------------------------------------------------------------------------------- /src/oofemlib/meshpackagetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/meshpackagetype.h -------------------------------------------------------------------------------- /src/oofemlib/metastep.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/metastep.C -------------------------------------------------------------------------------- /src/oofemlib/metastep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/metastep.h -------------------------------------------------------------------------------- /src/oofemlib/modulemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/modulemanager.h -------------------------------------------------------------------------------- /src/oofemlib/nmstatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/nmstatus.h -------------------------------------------------------------------------------- /src/oofemlib/nodalload.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/nodalload.C -------------------------------------------------------------------------------- /src/oofemlib/nodalload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/nodalload.h -------------------------------------------------------------------------------- /src/oofemlib/node.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/node.C -------------------------------------------------------------------------------- /src/oofemlib/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/node.h -------------------------------------------------------------------------------- /src/oofemlib/nonlocalbarrier.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/nonlocalbarrier.C -------------------------------------------------------------------------------- /src/oofemlib/nonlocalbarrier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/nonlocalbarrier.h -------------------------------------------------------------------------------- /src/oofemlib/nonlocalmatwtp.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/nonlocalmatwtp.C -------------------------------------------------------------------------------- /src/oofemlib/nonlocalmatwtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/nonlocalmatwtp.h -------------------------------------------------------------------------------- /src/oofemlib/nrsolver.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/nrsolver.C -------------------------------------------------------------------------------- /src/oofemlib/nrsolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/nrsolver.h -------------------------------------------------------------------------------- /src/oofemlib/numericalcmpn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/numericalcmpn.h -------------------------------------------------------------------------------- /src/oofemlib/nummet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/nummet.h -------------------------------------------------------------------------------- /src/oofemlib/octreelocalizer.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/octreelocalizer.C -------------------------------------------------------------------------------- /src/oofemlib/octreelocalizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/octreelocalizer.h -------------------------------------------------------------------------------- /src/oofemlib/oofegutils.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/oofegutils.C -------------------------------------------------------------------------------- /src/oofemlib/oofegutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/oofegutils.h -------------------------------------------------------------------------------- /src/oofemlib/oofem_terminate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/oofem_terminate.h -------------------------------------------------------------------------------- /src/oofemlib/outputmanager.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/outputmanager.C -------------------------------------------------------------------------------- /src/oofemlib/outputmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/outputmanager.h -------------------------------------------------------------------------------- /src/oofemlib/pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/pair.h -------------------------------------------------------------------------------- /src/oofemlib/parallel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/parallel.h -------------------------------------------------------------------------------- /src/oofemlib/parallelcontext.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/parallelcontext.C -------------------------------------------------------------------------------- /src/oofemlib/parallelcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/parallelcontext.h -------------------------------------------------------------------------------- /src/oofemlib/parser.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/parser.C -------------------------------------------------------------------------------- /src/oofemlib/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/parser.h -------------------------------------------------------------------------------- /src/oofemlib/particlegrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/particlegrid.h -------------------------------------------------------------------------------- /src/oofemlib/peakfunction.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/peakfunction.C -------------------------------------------------------------------------------- /src/oofemlib/peakfunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/peakfunction.h -------------------------------------------------------------------------------- /src/oofemlib/petscsolver.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/petscsolver.C -------------------------------------------------------------------------------- /src/oofemlib/petscsolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/petscsolver.h -------------------------------------------------------------------------------- /src/oofemlib/petscsparsemtrx.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/petscsparsemtrx.C -------------------------------------------------------------------------------- /src/oofemlib/petscsparsemtrx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/petscsparsemtrx.h -------------------------------------------------------------------------------- /src/oofemlib/pointload.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/pointload.C -------------------------------------------------------------------------------- /src/oofemlib/pointload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/pointload.h -------------------------------------------------------------------------------- /src/oofemlib/prescribedmean.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/prescribedmean.C -------------------------------------------------------------------------------- /src/oofemlib/prescribedmean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/prescribedmean.h -------------------------------------------------------------------------------- /src/oofemlib/primaryfield.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/primaryfield.C -------------------------------------------------------------------------------- /src/oofemlib/primaryfield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/primaryfield.h -------------------------------------------------------------------------------- /src/oofemlib/problemcomm.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/problemcomm.C -------------------------------------------------------------------------------- /src/oofemlib/problemcomm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/problemcomm.h -------------------------------------------------------------------------------- /src/oofemlib/problemmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/problemmode.h -------------------------------------------------------------------------------- /src/oofemlib/problemsequence.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/problemsequence.C -------------------------------------------------------------------------------- /src/oofemlib/problemsequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/problemsequence.h -------------------------------------------------------------------------------- /src/oofemlib/processcomm.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/processcomm.C -------------------------------------------------------------------------------- /src/oofemlib/processcomm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/processcomm.h -------------------------------------------------------------------------------- /src/oofemlib/qcnode.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/qcnode.C -------------------------------------------------------------------------------- /src/oofemlib/qcnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/qcnode.h -------------------------------------------------------------------------------- /src/oofemlib/range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/range.h -------------------------------------------------------------------------------- /src/oofemlib/reinforcement.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/reinforcement.C -------------------------------------------------------------------------------- /src/oofemlib/reinforcement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/reinforcement.h -------------------------------------------------------------------------------- /src/oofemlib/remeshingcrit.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/remeshingcrit.C -------------------------------------------------------------------------------- /src/oofemlib/remeshingcrit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/remeshingcrit.h -------------------------------------------------------------------------------- /src/oofemlib/rigidarmnode.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/rigidarmnode.C -------------------------------------------------------------------------------- /src/oofemlib/rigidarmnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/rigidarmnode.h -------------------------------------------------------------------------------- /src/oofemlib/rowcol.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/rowcol.C -------------------------------------------------------------------------------- /src/oofemlib/rowcol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/rowcol.h -------------------------------------------------------------------------------- /src/oofemlib/scalarfunction.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/scalarfunction.C -------------------------------------------------------------------------------- /src/oofemlib/scalarfunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/scalarfunction.h -------------------------------------------------------------------------------- /src/oofemlib/set.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/set.C -------------------------------------------------------------------------------- /src/oofemlib/set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/set.h -------------------------------------------------------------------------------- /src/oofemlib/simpleslavedof.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/simpleslavedof.C -------------------------------------------------------------------------------- /src/oofemlib/simpleslavedof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/simpleslavedof.h -------------------------------------------------------------------------------- /src/oofemlib/skyline.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/skyline.C -------------------------------------------------------------------------------- /src/oofemlib/skyline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/skyline.h -------------------------------------------------------------------------------- /src/oofemlib/skylineu.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/skylineu.C -------------------------------------------------------------------------------- /src/oofemlib/skylineu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/skylineu.h -------------------------------------------------------------------------------- /src/oofemlib/slavedof.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/slavedof.C -------------------------------------------------------------------------------- /src/oofemlib/slavedof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/slavedof.h -------------------------------------------------------------------------------- /src/oofemlib/slavenode.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/slavenode.C -------------------------------------------------------------------------------- /src/oofemlib/slavenode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/slavenode.h -------------------------------------------------------------------------------- /src/oofemlib/slepcsolver.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/slepcsolver.C -------------------------------------------------------------------------------- /src/oofemlib/slepcsolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/slepcsolver.h -------------------------------------------------------------------------------- /src/oofemlib/sloangraph.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/sloangraph.C -------------------------------------------------------------------------------- /src/oofemlib/sloangraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/sloangraph.h -------------------------------------------------------------------------------- /src/oofemlib/sloangraphnode.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/sloangraphnode.C -------------------------------------------------------------------------------- /src/oofemlib/sloangraphnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/sloangraphnode.h -------------------------------------------------------------------------------- /src/oofemlib/sparsemtrx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/sparsemtrx.h -------------------------------------------------------------------------------- /src/oofemlib/sparsemtrxtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/sparsemtrxtype.h -------------------------------------------------------------------------------- /src/oofemlib/spoolessolver.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/spoolessolver.C -------------------------------------------------------------------------------- /src/oofemlib/spoolessolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/spoolessolver.h -------------------------------------------------------------------------------- /src/oofemlib/staggeredsolver.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/staggeredsolver.C -------------------------------------------------------------------------------- /src/oofemlib/staggeredsolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/staggeredsolver.h -------------------------------------------------------------------------------- /src/oofemlib/subdivision.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/subdivision.C -------------------------------------------------------------------------------- /src/oofemlib/subdivision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/subdivision.h -------------------------------------------------------------------------------- /src/oofemlib/subspaceit.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/subspaceit.C -------------------------------------------------------------------------------- /src/oofemlib/subspaceit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/subspaceit.h -------------------------------------------------------------------------------- /src/oofemlib/superlusolver.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/superlusolver.C -------------------------------------------------------------------------------- /src/oofemlib/superlusolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/superlusolver.h -------------------------------------------------------------------------------- /src/oofemlib/symcompcol.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/symcompcol.C -------------------------------------------------------------------------------- /src/oofemlib/symcompcol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/symcompcol.h -------------------------------------------------------------------------------- /src/oofemlib/t3dinterface.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/t3dinterface.C -------------------------------------------------------------------------------- /src/oofemlib/t3dinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/t3dinterface.h -------------------------------------------------------------------------------- /src/oofemlib/targe2interface.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/targe2interface.C -------------------------------------------------------------------------------- /src/oofemlib/targe2interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/targe2interface.h -------------------------------------------------------------------------------- /src/oofemlib/timer.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/timer.C -------------------------------------------------------------------------------- /src/oofemlib/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/timer.h -------------------------------------------------------------------------------- /src/oofemlib/timestep.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/timestep.C -------------------------------------------------------------------------------- /src/oofemlib/timestep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/timestep.h -------------------------------------------------------------------------------- /src/oofemlib/tokenizer.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/tokenizer.C -------------------------------------------------------------------------------- /src/oofemlib/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/tokenizer.h -------------------------------------------------------------------------------- /src/oofemlib/unknowntype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/unknowntype.h -------------------------------------------------------------------------------- /src/oofemlib/util.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/util.C -------------------------------------------------------------------------------- /src/oofemlib/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/util.h -------------------------------------------------------------------------------- /src/oofemlib/valuemodetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/valuemodetype.h -------------------------------------------------------------------------------- /src/oofemlib/varscaletype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/varscaletype.h -------------------------------------------------------------------------------- /src/oofemlib/verbose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/verbose.h -------------------------------------------------------------------------------- /src/oofemlib/vtkexportmodule.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/vtkexportmodule.C -------------------------------------------------------------------------------- /src/oofemlib/vtkexportmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/vtkexportmodule.h -------------------------------------------------------------------------------- /src/oofemlib/weakperiodicbc.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/weakperiodicbc.C -------------------------------------------------------------------------------- /src/oofemlib/weakperiodicbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/weakperiodicbc.h -------------------------------------------------------------------------------- /src/oofemlib/xfem/delaunay.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/xfem/delaunay.C -------------------------------------------------------------------------------- /src/oofemlib/xfem/delaunay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/xfem/delaunay.h -------------------------------------------------------------------------------- /src/oofemlib/xfem/directei.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/xfem/directei.C -------------------------------------------------------------------------------- /src/oofemlib/xfem/directei.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/xfem/directei.h -------------------------------------------------------------------------------- /src/oofemlib/xfem/hybridei.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/xfem/hybridei.C -------------------------------------------------------------------------------- /src/oofemlib/xfem/hybridei.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/xfem/hybridei.h -------------------------------------------------------------------------------- /src/oofemlib/xfem/inclusion.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/xfem/inclusion.C -------------------------------------------------------------------------------- /src/oofemlib/xfem/inclusion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/xfem/inclusion.h -------------------------------------------------------------------------------- /src/oofemlib/xfem/tipinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/oofemlib/xfem/tipinfo.h -------------------------------------------------------------------------------- /src/sm/.docstates.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/.docstates.suo -------------------------------------------------------------------------------- /src/sm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/CMakeLists.txt -------------------------------------------------------------------------------- /src/sm/Contact/cdefnode2node.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Contact/cdefnode2node.C -------------------------------------------------------------------------------- /src/sm/Contact/cdefnode2node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Contact/cdefnode2node.h -------------------------------------------------------------------------------- /src/sm/Contact/celnode2node.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Contact/celnode2node.C -------------------------------------------------------------------------------- /src/sm/Contact/celnode2node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Contact/celnode2node.h -------------------------------------------------------------------------------- /src/sm/Elements/3D/lspace.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/3D/lspace.C -------------------------------------------------------------------------------- /src/sm/Elements/3D/lspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/3D/lspace.h -------------------------------------------------------------------------------- /src/sm/Elements/3D/lspacebb.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/3D/lspacebb.C -------------------------------------------------------------------------------- /src/sm/Elements/3D/lspacebb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/3D/lspacebb.h -------------------------------------------------------------------------------- /src/sm/Elements/3D/ltrspace.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/3D/ltrspace.C -------------------------------------------------------------------------------- /src/sm/Elements/3D/ltrspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/3D/ltrspace.h -------------------------------------------------------------------------------- /src/sm/Elements/3D/lwedge.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/3D/lwedge.C -------------------------------------------------------------------------------- /src/sm/Elements/3D/lwedge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/3D/lwedge.h -------------------------------------------------------------------------------- /src/sm/Elements/3D/q27space.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/3D/q27space.C -------------------------------------------------------------------------------- /src/sm/Elements/3D/q27space.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/3D/q27space.h -------------------------------------------------------------------------------- /src/sm/Elements/3D/qspace.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/3D/qspace.C -------------------------------------------------------------------------------- /src/sm/Elements/3D/qspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/3D/qspace.h -------------------------------------------------------------------------------- /src/sm/Elements/3D/qtrspace.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/3D/qtrspace.C -------------------------------------------------------------------------------- /src/sm/Elements/3D/qtrspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/3D/qtrspace.h -------------------------------------------------------------------------------- /src/sm/Elements/3D/qwedge.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/3D/qwedge.C -------------------------------------------------------------------------------- /src/sm/Elements/3D/qwedge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/3D/qwedge.h -------------------------------------------------------------------------------- /src/sm/Elements/Bars/truss1d.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/Bars/truss1d.C -------------------------------------------------------------------------------- /src/sm/Elements/Bars/truss1d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/Bars/truss1d.h -------------------------------------------------------------------------------- /src/sm/Elements/Bars/truss2d.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/Bars/truss2d.C -------------------------------------------------------------------------------- /src/sm/Elements/Bars/truss2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/Bars/truss2d.h -------------------------------------------------------------------------------- /src/sm/Elements/Bars/truss3d.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/Bars/truss3d.C -------------------------------------------------------------------------------- /src/sm/Elements/Bars/truss3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/Bars/truss3d.h -------------------------------------------------------------------------------- /src/sm/Elements/Beams/beam2d.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/Beams/beam2d.C -------------------------------------------------------------------------------- /src/sm/Elements/Beams/beam2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/Beams/beam2d.h -------------------------------------------------------------------------------- /src/sm/Elements/Beams/beam3d.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/Beams/beam3d.C -------------------------------------------------------------------------------- /src/sm/Elements/Beams/beam3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/Beams/beam3d.h -------------------------------------------------------------------------------- /src/sm/Elements/Plates/cct.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/Plates/cct.C -------------------------------------------------------------------------------- /src/sm/Elements/Plates/cct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/Plates/cct.h -------------------------------------------------------------------------------- /src/sm/Elements/Plates/dkt.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/Plates/dkt.C -------------------------------------------------------------------------------- /src/sm/Elements/Plates/dkt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/Plates/dkt.h -------------------------------------------------------------------------------- /src/sm/Elements/Plates/dkt3d.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/Plates/dkt3d.C -------------------------------------------------------------------------------- /src/sm/Elements/Plates/dkt3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/Plates/dkt3d.h -------------------------------------------------------------------------------- /src/sm/Elements/Plates/qdkt.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/Plates/qdkt.C -------------------------------------------------------------------------------- /src/sm/Elements/Plates/qdkt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/Plates/qdkt.h -------------------------------------------------------------------------------- /src/sm/Elements/Shells/cct3d.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/Shells/cct3d.C -------------------------------------------------------------------------------- /src/sm/Elements/Shells/cct3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/Shells/cct3d.h -------------------------------------------------------------------------------- /src/sm/Elements/Shells/mitc4.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/Shells/mitc4.C -------------------------------------------------------------------------------- /src/sm/Elements/Shells/mitc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/Shells/mitc4.h -------------------------------------------------------------------------------- /src/sm/Elements/htselement.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/htselement.C -------------------------------------------------------------------------------- /src/sm/Elements/lattice2d.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/lattice2d.C -------------------------------------------------------------------------------- /src/sm/Elements/lattice2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/lattice2d.h -------------------------------------------------------------------------------- /src/sm/Elements/trwarp.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/trwarp.C -------------------------------------------------------------------------------- /src/sm/Elements/trwarp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Elements/trwarp.h -------------------------------------------------------------------------------- /src/sm/Loads/tf1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Loads/tf1.C -------------------------------------------------------------------------------- /src/sm/Loads/tf1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Loads/tf1.h -------------------------------------------------------------------------------- /src/sm/Materials/dustmat.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Materials/dustmat.C -------------------------------------------------------------------------------- /src/sm/Materials/dustmat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Materials/dustmat.h -------------------------------------------------------------------------------- /src/sm/Materials/fcm.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Materials/fcm.C -------------------------------------------------------------------------------- /src/sm/Materials/fcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Materials/fcm.h -------------------------------------------------------------------------------- /src/sm/Materials/j2mat.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Materials/j2mat.C -------------------------------------------------------------------------------- /src/sm/Materials/j2mat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Materials/j2mat.h -------------------------------------------------------------------------------- /src/sm/Materials/m4.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Materials/m4.C -------------------------------------------------------------------------------- /src/sm/Materials/m4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Materials/m4.h -------------------------------------------------------------------------------- /src/sm/Materials/mdm.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Materials/mdm.C -------------------------------------------------------------------------------- /src/sm/Materials/mdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Materials/mdm.h -------------------------------------------------------------------------------- /src/sm/Materials/misesmat.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Materials/misesmat.C -------------------------------------------------------------------------------- /src/sm/Materials/misesmat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Materials/misesmat.h -------------------------------------------------------------------------------- /src/sm/Materials/rcm2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Materials/rcm2.C -------------------------------------------------------------------------------- /src/sm/Materials/rcm2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Materials/rcm2.h -------------------------------------------------------------------------------- /src/sm/Materials/rcsd.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Materials/rcsd.C -------------------------------------------------------------------------------- /src/sm/Materials/rcsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Materials/rcsd.h -------------------------------------------------------------------------------- /src/sm/Materials/rcsde.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Materials/rcsde.C -------------------------------------------------------------------------------- /src/sm/Materials/rcsde.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Materials/rcsde.h -------------------------------------------------------------------------------- /src/sm/Materials/rcsdnl.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Materials/rcsdnl.C -------------------------------------------------------------------------------- /src/sm/Materials/rcsdnl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/Materials/rcsdnl.h -------------------------------------------------------------------------------- /src/sm/gpinitmodule.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/gpinitmodule.C -------------------------------------------------------------------------------- /src/sm/gpinitmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/gpinitmodule.h -------------------------------------------------------------------------------- /src/sm/microplane.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/microplane.C -------------------------------------------------------------------------------- /src/sm/microplane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/microplane.h -------------------------------------------------------------------------------- /src/sm/particle.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/particle.C -------------------------------------------------------------------------------- /src/sm/particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/particle.h -------------------------------------------------------------------------------- /src/sm/refinedelement.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/refinedelement.C -------------------------------------------------------------------------------- /src/sm/refinedelement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/refinedelement.h -------------------------------------------------------------------------------- /src/sm/refinedmesh.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/refinedmesh.C -------------------------------------------------------------------------------- /src/sm/refinedmesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/refinedmesh.h -------------------------------------------------------------------------------- /src/sm/shell7basePhFi.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/shell7basePhFi.C -------------------------------------------------------------------------------- /src/sm/shell7basePhFi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/shell7basePhFi.H -------------------------------------------------------------------------------- /src/sm/strainvector.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/strainvector.C -------------------------------------------------------------------------------- /src/sm/strainvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/strainvector.h -------------------------------------------------------------------------------- /src/sm/stressvector.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/stressvector.C -------------------------------------------------------------------------------- /src/sm/stressvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/stressvector.h -------------------------------------------------------------------------------- /src/sm/symmetrybarrier.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/symmetrybarrier.C -------------------------------------------------------------------------------- /src/sm/symmetrybarrier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/symmetrybarrier.h -------------------------------------------------------------------------------- /src/sm/tr2shell7PhFi.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/tr2shell7PhFi.C -------------------------------------------------------------------------------- /src/sm/tr2shell7PhFi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/sm/tr2shell7PhFi.H -------------------------------------------------------------------------------- /src/tm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/tm/CMakeLists.txt -------------------------------------------------------------------------------- /src/tm/Elements/brick1_ht.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/tm/Elements/brick1_ht.C -------------------------------------------------------------------------------- /src/tm/Elements/brick1_ht.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/tm/Elements/brick1_ht.h -------------------------------------------------------------------------------- /src/tm/Elements/quad1_ht.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/tm/Elements/quad1_ht.C -------------------------------------------------------------------------------- /src/tm/Elements/quad1_ht.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/tm/Elements/quad1_ht.h -------------------------------------------------------------------------------- /src/tm/Elements/qwedge_ht.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/tm/Elements/qwedge_ht.C -------------------------------------------------------------------------------- /src/tm/Elements/qwedge_ht.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/tm/Elements/qwedge_ht.h -------------------------------------------------------------------------------- /src/tm/Elements/tr1_ht.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/tm/Elements/tr1_ht.C -------------------------------------------------------------------------------- /src/tm/Elements/tr1_ht.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/tm/Elements/tr1_ht.h -------------------------------------------------------------------------------- /src/tm/Elements/tr1darcy.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/tm/Elements/tr1darcy.C -------------------------------------------------------------------------------- /src/tm/Elements/tr1darcy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/tm/Elements/tr1darcy.h -------------------------------------------------------------------------------- /src/tm/Elements/wedge_ht.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/tm/Elements/wedge_ht.C -------------------------------------------------------------------------------- /src/tm/Elements/wedge_ht.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/tm/Elements/wedge_ht.h -------------------------------------------------------------------------------- /src/tm/Materials/hydram.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/tm/Materials/hydram.C -------------------------------------------------------------------------------- /src/tm/Materials/hydram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/src/tm/Materials/hydram.h -------------------------------------------------------------------------------- /tests/Guidelines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/Guidelines.txt -------------------------------------------------------------------------------- /tests/benchmark/sm/j2mat.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/benchmark/sm/j2mat.in -------------------------------------------------------------------------------- /tests/fm/patch02.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/fm/patch02.in -------------------------------------------------------------------------------- /tests/fm/patch03.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/fm/patch03.in -------------------------------------------------------------------------------- /tests/fm/patch05.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/fm/patch05.in -------------------------------------------------------------------------------- /tests/fm/scctest01.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/fm/scctest01.in -------------------------------------------------------------------------------- /tests/partests/bar/bar.ctrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/partests/bar/bar.ctrl -------------------------------------------------------------------------------- /tests/sm/EC2creep.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/EC2creep.in -------------------------------------------------------------------------------- /tests/sm/EC2shrinkage.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/EC2shrinkage.in -------------------------------------------------------------------------------- /tests/sm/MPS_01_sec_sm.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/MPS_01_sec_sm.in -------------------------------------------------------------------------------- /tests/sm/MPS_01_sm.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/MPS_01_sm.in -------------------------------------------------------------------------------- /tests/sm/Mises01.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/Mises01.in -------------------------------------------------------------------------------- /tests/sm/adapt01.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/adapt01.in -------------------------------------------------------------------------------- /tests/sm/adapt02.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/adapt02.in -------------------------------------------------------------------------------- /tests/sm/axisymm01.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/axisymm01.in -------------------------------------------------------------------------------- /tests/sm/axisymm02.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/axisymm02.in -------------------------------------------------------------------------------- /tests/sm/axisymm03.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/axisymm03.in -------------------------------------------------------------------------------- /tests/sm/axisymm04.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/axisymm04.in -------------------------------------------------------------------------------- /tests/sm/axisymm05.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/axisymm05.in -------------------------------------------------------------------------------- /tests/sm/axisymm06.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/axisymm06.in -------------------------------------------------------------------------------- /tests/sm/beam2d_1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/beam2d_1.in -------------------------------------------------------------------------------- /tests/sm/beam2d_2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/beam2d_2.in -------------------------------------------------------------------------------- /tests/sm/beam2d_3.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/beam2d_3.in -------------------------------------------------------------------------------- /tests/sm/beam2d_4.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/beam2d_4.in -------------------------------------------------------------------------------- /tests/sm/beam2d_5.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/beam2d_5.in -------------------------------------------------------------------------------- /tests/sm/beam3d_1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/beam3d_1.in -------------------------------------------------------------------------------- /tests/sm/beam3d_2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/beam3d_2.in -------------------------------------------------------------------------------- /tests/sm/beam3d_3.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/beam3d_3.in -------------------------------------------------------------------------------- /tests/sm/beam3dsubsoil01.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/beam3dsubsoil01.in -------------------------------------------------------------------------------- /tests/sm/beam44.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/beam44.in -------------------------------------------------------------------------------- /tests/sm/brick_nlgeo_1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/brick_nlgeo_1.in -------------------------------------------------------------------------------- /tests/sm/brick_nlgeo_2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/brick_nlgeo_2.in -------------------------------------------------------------------------------- /tests/sm/brick_nlgeo_3.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/brick_nlgeo_3.in -------------------------------------------------------------------------------- /tests/sm/brick_nlgeo_4.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/brick_nlgeo_4.in -------------------------------------------------------------------------------- /tests/sm/brick_nlgeo_5.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/brick_nlgeo_5.in -------------------------------------------------------------------------------- /tests/sm/brick_nlgeo_6.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/brick_nlgeo_6.in -------------------------------------------------------------------------------- /tests/sm/brick_nlgeo_7.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/brick_nlgeo_7.in -------------------------------------------------------------------------------- /tests/sm/compoDamMat.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/compoDamMat.in -------------------------------------------------------------------------------- /tests/sm/con2dpm1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/con2dpm1.in -------------------------------------------------------------------------------- /tests/sm/con2dpm2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/con2dpm2.in -------------------------------------------------------------------------------- /tests/sm/con2dpm3.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/con2dpm3.in -------------------------------------------------------------------------------- /tests/sm/con2dpm4.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/con2dpm4.in -------------------------------------------------------------------------------- /tests/sm/deactivate_1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/deactivate_1.in -------------------------------------------------------------------------------- /tests/sm/deactivate_2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/deactivate_2.in -------------------------------------------------------------------------------- /tests/sm/deadweight01.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/deadweight01.in -------------------------------------------------------------------------------- /tests/sm/deadweight02.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/deadweight02.in -------------------------------------------------------------------------------- /tests/sm/dkt_bending01.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/dkt_bending01.in -------------------------------------------------------------------------------- /tests/sm/dkt_twist01.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/dkt_twist01.in -------------------------------------------------------------------------------- /tests/sm/dkt_twist02.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/dkt_twist02.in -------------------------------------------------------------------------------- /tests/sm/eigen_beam2d.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/eigen_beam2d.in -------------------------------------------------------------------------------- /tests/sm/eigen_beam3d.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/eigen_beam3d.in -------------------------------------------------------------------------------- /tests/sm/eigenstrain01.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/eigenstrain01.in -------------------------------------------------------------------------------- /tests/sm/eigenstrain02.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/eigenstrain02.in -------------------------------------------------------------------------------- /tests/sm/ex-bspline-01.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/ex-bspline-01.in -------------------------------------------------------------------------------- /tests/sm/ex-bspline-02.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/ex-bspline-02.in -------------------------------------------------------------------------------- /tests/sm/ex-bspline-03.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/ex-bspline-03.in -------------------------------------------------------------------------------- /tests/sm/ex-bspline-04.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/ex-bspline-04.in -------------------------------------------------------------------------------- /tests/sm/ex-bspline-05.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/ex-bspline-05.in -------------------------------------------------------------------------------- /tests/sm/ex-bspline-06.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/ex-bspline-06.in -------------------------------------------------------------------------------- /tests/sm/ex-bspline-07.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/ex-bspline-07.in -------------------------------------------------------------------------------- /tests/sm/ex-bspline-08.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/ex-bspline-08.in -------------------------------------------------------------------------------- /tests/sm/ex-bspline-09.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/ex-bspline-09.in -------------------------------------------------------------------------------- /tests/sm/ex3d-nurbs-01.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/ex3d-nurbs-01.in -------------------------------------------------------------------------------- /tests/sm/ex3d-nurbs-02.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/ex3d-nurbs-02.in -------------------------------------------------------------------------------- /tests/sm/ex3d-nurbs-03.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/ex3d-nurbs-03.in -------------------------------------------------------------------------------- /tests/sm/frcfcm_shear.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/frcfcm_shear.in -------------------------------------------------------------------------------- /tests/sm/frcfcm_tension.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/frcfcm_tension.in -------------------------------------------------------------------------------- /tests/sm/hangingnode01.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/hangingnode01.in -------------------------------------------------------------------------------- /tests/sm/hangingnode02.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/hangingnode02.in -------------------------------------------------------------------------------- /tests/sm/hangingnode03.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/hangingnode03.in -------------------------------------------------------------------------------- /tests/sm/homog01.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/homog01.in -------------------------------------------------------------------------------- /tests/sm/homog02.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/homog02.in -------------------------------------------------------------------------------- /tests/sm/homog03.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/homog03.in -------------------------------------------------------------------------------- /tests/sm/idm01.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/idm01.in -------------------------------------------------------------------------------- /tests/sm/idm02.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/idm02.in -------------------------------------------------------------------------------- /tests/sm/idm03.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/idm03.in -------------------------------------------------------------------------------- /tests/sm/idm04.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/idm04.in -------------------------------------------------------------------------------- /tests/sm/idm05.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/idm05.in -------------------------------------------------------------------------------- /tests/sm/idm06.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/idm06.in -------------------------------------------------------------------------------- /tests/sm/idm07.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/idm07.in -------------------------------------------------------------------------------- /tests/sm/idm08.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/idm08.in -------------------------------------------------------------------------------- /tests/sm/interface01.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/interface01.in -------------------------------------------------------------------------------- /tests/sm/interface3d.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/interface3d.in -------------------------------------------------------------------------------- /tests/sm/lattice2drandom.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/lattice2drandom.in -------------------------------------------------------------------------------- /tests/sm/layered_cube.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/layered_cube.in -------------------------------------------------------------------------------- /tests/sm/libean3dnl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/libean3dnl.in -------------------------------------------------------------------------------- /tests/sm/linstab_beam2d.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/linstab_beam2d.in -------------------------------------------------------------------------------- /tests/sm/lshape.oofem.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/lshape.oofem.in -------------------------------------------------------------------------------- /tests/sm/macroLspace01.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/macroLspace01.in -------------------------------------------------------------------------------- /tests/sm/materOrient01.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/materOrient01.in -------------------------------------------------------------------------------- /tests/sm/nodalspring01.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/nodalspring01.in -------------------------------------------------------------------------------- /tests/sm/patch010.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/patch010.in -------------------------------------------------------------------------------- /tests/sm/patch011.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/patch011.in -------------------------------------------------------------------------------- /tests/sm/patch100.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/patch100.in -------------------------------------------------------------------------------- /tests/sm/patch101.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/patch101.in -------------------------------------------------------------------------------- /tests/sm/patch102.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/patch102.in -------------------------------------------------------------------------------- /tests/sm/patch103.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/patch103.in -------------------------------------------------------------------------------- /tests/sm/patch104.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/patch104.in -------------------------------------------------------------------------------- /tests/sm/patch105.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/patch105.in -------------------------------------------------------------------------------- /tests/sm/patch106.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/patch106.in -------------------------------------------------------------------------------- /tests/sm/patch107.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/patch107.in -------------------------------------------------------------------------------- /tests/sm/patch108.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/patch108.in -------------------------------------------------------------------------------- /tests/sm/patch110.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/patch110.in -------------------------------------------------------------------------------- /tests/sm/patch130.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/patch130.in -------------------------------------------------------------------------------- /tests/sm/patch140.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/patch140.in -------------------------------------------------------------------------------- /tests/sm/patch150.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/patch150.in -------------------------------------------------------------------------------- /tests/sm/patch160.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/patch160.in -------------------------------------------------------------------------------- /tests/sm/patch200.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/patch200.in -------------------------------------------------------------------------------- /tests/sm/patch300.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/patch300.in -------------------------------------------------------------------------------- /tests/sm/patch301.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/patch301.in -------------------------------------------------------------------------------- /tests/sm/patch302.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/patch302.in -------------------------------------------------------------------------------- /tests/sm/patch303.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/patch303.in -------------------------------------------------------------------------------- /tests/sm/patch_cct.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/patch_cct.in -------------------------------------------------------------------------------- /tests/sm/patch_cct3d.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/patch_cct3d.in -------------------------------------------------------------------------------- /tests/sm/patch_cct_02.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/patch_cct_02.in -------------------------------------------------------------------------------- /tests/sm/patch_dkt.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/patch_dkt.in -------------------------------------------------------------------------------- /tests/sm/patch_mitc4.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/patch_mitc4.in -------------------------------------------------------------------------------- /tests/sm/patch_mitc4_02.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/patch_mitc4_02.in -------------------------------------------------------------------------------- /tests/sm/patch_qdtk.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/patch_qdtk.in -------------------------------------------------------------------------------- /tests/sm/patch_rershell.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/patch_rershell.in -------------------------------------------------------------------------------- /tests/sm/planestress_j2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/planestress_j2.in -------------------------------------------------------------------------------- /tests/sm/plasticRemap1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/plasticRemap1.in -------------------------------------------------------------------------------- /tests/sm/qTrxFemCrackVal.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/qTrxFemCrackVal.in -------------------------------------------------------------------------------- /tests/sm/rigarm01.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/rigarm01.in -------------------------------------------------------------------------------- /tests/sm/rigarm02.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/rigarm02.in -------------------------------------------------------------------------------- /tests/sm/rigarm03.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/rigarm03.in -------------------------------------------------------------------------------- /tests/sm/rigarm04.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/rigarm04.in -------------------------------------------------------------------------------- /tests/sm/rigarm05.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/rigarm05.in -------------------------------------------------------------------------------- /tests/sm/rotated_1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/rotated_1.in -------------------------------------------------------------------------------- /tests/sm/rotated_2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/rotated_2.in -------------------------------------------------------------------------------- /tests/sm/rvesmall.out-gp1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sm/scordelis_mitc4.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/scordelis_mitc4.in -------------------------------------------------------------------------------- /tests/sm/slavedofs.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/slavedofs.in -------------------------------------------------------------------------------- /tests/sm/spring01.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/spring01.in -------------------------------------------------------------------------------- /tests/sm/spring02.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/spring02.in -------------------------------------------------------------------------------- /tests/sm/spring03.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/spring03.in -------------------------------------------------------------------------------- /tests/sm/spring04.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/spring04.in -------------------------------------------------------------------------------- /tests/sm/spring05.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/spring05.in -------------------------------------------------------------------------------- /tests/sm/spring06.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/spring06.in -------------------------------------------------------------------------------- /tests/sm/staggeredsolver.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/staggeredsolver.in -------------------------------------------------------------------------------- /tests/sm/steelRelaxMat.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/steelRelaxMat.in -------------------------------------------------------------------------------- /tests/sm/steelRelaxMat2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/steelRelaxMat2.in -------------------------------------------------------------------------------- /tests/sm/structmateval.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/structmateval.in -------------------------------------------------------------------------------- /tests/sm/t3d.bmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/t3d.bmf -------------------------------------------------------------------------------- /tests/sm/test_wp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/test_wp.in -------------------------------------------------------------------------------- /tests/sm/test_wp2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/test_wp2.in -------------------------------------------------------------------------------- /tests/sm/test_wp3.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/test_wp3.in -------------------------------------------------------------------------------- /tests/sm/trshell02_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/trshell02_test.in -------------------------------------------------------------------------------- /tests/sm/truss2d_01.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/truss2d_01.in -------------------------------------------------------------------------------- /tests/sm/trussb3_creep.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/trussb3_creep.in -------------------------------------------------------------------------------- /tests/sm/trussb3_relax.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/trussb3_relax.in -------------------------------------------------------------------------------- /tests/sm/tutorialelement.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/tutorialelement.in -------------------------------------------------------------------------------- /tests/sm/vitrification01.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/vitrification01.in -------------------------------------------------------------------------------- /tests/sm/xFemCrackVal.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/sm/xFemCrackVal.in -------------------------------------------------------------------------------- /tests/tm/HeMoKunzel_1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/HeMoKunzel_1.in -------------------------------------------------------------------------------- /tests/tm/bazantnajjar.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/bazantnajjar.in -------------------------------------------------------------------------------- /tests/tm/isolinmoisture.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/isolinmoisture.in -------------------------------------------------------------------------------- /tests/tm/latticetransmat.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/latticetransmat.in -------------------------------------------------------------------------------- /tests/tm/nlisomoisture01.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/nlisomoisture01.in -------------------------------------------------------------------------------- /tests/tm/nlisomoisture02.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/nlisomoisture02.in -------------------------------------------------------------------------------- /tests/tm/qbrick_01.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/qbrick_01.in -------------------------------------------------------------------------------- /tests/tm/qbrick_02.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/qbrick_02.in -------------------------------------------------------------------------------- /tests/tm/qbrick_03.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/qbrick_03.in -------------------------------------------------------------------------------- /tests/tm/quadaxisym01.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/quadaxisym01.in -------------------------------------------------------------------------------- /tests/tm/quadaxisym02.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/quadaxisym02.in -------------------------------------------------------------------------------- /tests/tm/quadaxisym03.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/quadaxisym03.in -------------------------------------------------------------------------------- /tests/tm/simpleDarcy.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/simpleDarcy.in -------------------------------------------------------------------------------- /tests/tm/tmpatch01.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/tmpatch01.in -------------------------------------------------------------------------------- /tests/tm/tmpatch02.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/tmpatch02.in -------------------------------------------------------------------------------- /tests/tm/tmpatch03.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/tmpatch03.in -------------------------------------------------------------------------------- /tests/tm/tmpatch04.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/tmpatch04.in -------------------------------------------------------------------------------- /tests/tm/tmpatch05.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/tmpatch05.in -------------------------------------------------------------------------------- /tests/tm/tmpatch06.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/tmpatch06.in -------------------------------------------------------------------------------- /tests/tm/tmpatch07-8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/tmpatch07-8.in -------------------------------------------------------------------------------- /tests/tm/tmpatch08-8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/tmpatch08-8.in -------------------------------------------------------------------------------- /tests/tm/tmpatch11.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/tmpatch11.in -------------------------------------------------------------------------------- /tests/tm/tmpatch11dtf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/tmpatch11dtf.in -------------------------------------------------------------------------------- /tests/tm/tmpatch15.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/tmpatch15.in -------------------------------------------------------------------------------- /tests/tm/tmpatch16.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/tmpatch16.in -------------------------------------------------------------------------------- /tests/tm/tmpatch17.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/tmpatch17.in -------------------------------------------------------------------------------- /tests/tm/tmpatch20-8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/tmpatch20-8.in -------------------------------------------------------------------------------- /tests/tm/tmpatch21-8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/tmpatch21-8.in -------------------------------------------------------------------------------- /tests/tm/tmpatch31.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/tmpatch31.in -------------------------------------------------------------------------------- /tests/tm/tmpatch32.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/tmpatch32.in -------------------------------------------------------------------------------- /tests/tm/tmpatch33.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/tmpatch33.in -------------------------------------------------------------------------------- /tests/tm/tmpatch34.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/tmpatch34.in -------------------------------------------------------------------------------- /tests/tm/tmpatch35.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/tmpatch35.in -------------------------------------------------------------------------------- /tests/tm/tmpatch36.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/tmpatch36.in -------------------------------------------------------------------------------- /tests/tm/tmpatch37.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/tmpatch37.in -------------------------------------------------------------------------------- /tests/tm/tmpatch38.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/tmpatch38.in -------------------------------------------------------------------------------- /tests/tm/tmpatch39.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/tmpatch39.in -------------------------------------------------------------------------------- /tests/tm/tmpatch40.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/tmpatch40.in -------------------------------------------------------------------------------- /tests/tm/tmpatch41.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/tmpatch41.in -------------------------------------------------------------------------------- /tests/tm/tmpatch42.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/tmpatch42.in -------------------------------------------------------------------------------- /tests/tm/tmpatch43-1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/tmpatch43-1.in -------------------------------------------------------------------------------- /tests/tm/tmpatch43-2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/tmpatch43-2.in -------------------------------------------------------------------------------- /tests/tm/tmpatch43-3.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/tmpatch43-3.in -------------------------------------------------------------------------------- /tests/tm/tmpatch44-1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/tmpatch44-1.in -------------------------------------------------------------------------------- /tests/tm/tmpatch44-2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/tmpatch44-2.in -------------------------------------------------------------------------------- /tests/tm/tmpatch44-3.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/tmpatch44-3.in -------------------------------------------------------------------------------- /tests/tm/tmpatch45-1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/tmpatch45-1.in -------------------------------------------------------------------------------- /tests/tm/tmpatch46.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/tmpatch46.in -------------------------------------------------------------------------------- /tests/tm/tmquad12.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tm/tmquad12.in -------------------------------------------------------------------------------- /tests/tmcemhyd/cemhyd01.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tmcemhyd/cemhyd01.in -------------------------------------------------------------------------------- /tests/tmcemhyd/cemhyd02.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tmcemhyd/cemhyd02.in -------------------------------------------------------------------------------- /tests/tmsm/MPS_02_in.sm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tmsm/MPS_02_in.sm -------------------------------------------------------------------------------- /tests/tmsm/MPS_02_in.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tmsm/MPS_02_in.tm -------------------------------------------------------------------------------- /tests/tmsm/MPS_02_sec_in.sm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tmsm/MPS_02_sec_in.sm -------------------------------------------------------------------------------- /tests/tmsm/MPS_02_sec_in.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tmsm/MPS_02_sec_in.tm -------------------------------------------------------------------------------- /tests/tmsm/MPS_02_tmsm.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tmsm/MPS_02_tmsm.in -------------------------------------------------------------------------------- /tests/tmsm/MPS_03_in.sm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tmsm/MPS_03_in.sm -------------------------------------------------------------------------------- /tests/tmsm/MPS_03_in.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tmsm/MPS_03_in.tm -------------------------------------------------------------------------------- /tests/tmsm/MPS_03_sec_in.sm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tmsm/MPS_03_sec_in.sm -------------------------------------------------------------------------------- /tests/tmsm/MPS_03_sec_in.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tmsm/MPS_03_sec_in.tm -------------------------------------------------------------------------------- /tests/tmsm/MPS_03_tmsm.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tmsm/MPS_03_tmsm.in -------------------------------------------------------------------------------- /tests/tmsm/MPS_04_in.sm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tmsm/MPS_04_in.sm -------------------------------------------------------------------------------- /tests/tmsm/MPS_04_in.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tmsm/MPS_04_in.tm -------------------------------------------------------------------------------- /tests/tmsm/MPS_04_tmsm.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tmsm/MPS_04_tmsm.in -------------------------------------------------------------------------------- /tests/tmsm/MPS_05_in.sm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tmsm/MPS_05_in.sm -------------------------------------------------------------------------------- /tests/tmsm/MPS_05_in.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tmsm/MPS_05_in.tm -------------------------------------------------------------------------------- /tests/tmsm/MPS_05_tmsm.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tmsm/MPS_05_tmsm.in -------------------------------------------------------------------------------- /tests/tmsm/MPS_06_in.sm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tmsm/MPS_06_in.sm -------------------------------------------------------------------------------- /tests/tmsm/MPS_06_in.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tmsm/MPS_06_in.tm -------------------------------------------------------------------------------- /tests/tmsm/MPS_06_tmsm.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tmsm/MPS_06_tmsm.in -------------------------------------------------------------------------------- /tests/tmsm/nltrans_incr.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tests/tmsm/nltrans_incr.in -------------------------------------------------------------------------------- /tools/adapt_job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tools/adapt_job -------------------------------------------------------------------------------- /tools/extractconvergence.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tools/extractconvergence.pl -------------------------------------------------------------------------------- /tools/extractor.old/seek.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tools/extractor.old/seek.C -------------------------------------------------------------------------------- /tools/extractor.old/seek.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tools/extractor.old/seek.h -------------------------------------------------------------------------------- /tools/extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tools/extractor.py -------------------------------------------------------------------------------- /tools/findlaststeptime.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tools/findlaststeptime.pl -------------------------------------------------------------------------------- /tools/oofem2part.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tools/oofem2part.py -------------------------------------------------------------------------------- /tools/summer.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tools/summer.pl -------------------------------------------------------------------------------- /tools/unv2oofem/FEM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tools/unv2oofem/FEM.py -------------------------------------------------------------------------------- /tools/unv2oofem/abaqus2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tools/unv2oofem/abaqus2x.py -------------------------------------------------------------------------------- /tools/unv2oofem/unv2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tools/unv2oofem/unv2x.py -------------------------------------------------------------------------------- /tools/version_upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/tools/version_upgrade.py -------------------------------------------------------------------------------- /uncrustify.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micket/oofem/HEAD/uncrustify.cfg --------------------------------------------------------------------------------