├── .clang-format ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── problem_using_tandem.md ├── .gitignore ├── .gitmodules ├── .readthedocs.yml ├── .travis.yml ├── CHECKS.md ├── CITATION.cff ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── app ├── CMakeLists.txt ├── check-bc.cpp ├── common │ ├── Banner.cpp │ ├── Banner.h │ ├── CmdLine.h │ ├── ElasticityScenario.h │ ├── MGConfig.cpp │ ├── MGConfig.h │ ├── MeshConfig.cpp │ ├── MeshConfig.h │ ├── PetscDGMatrix.cpp │ ├── PetscDGMatrix.h │ ├── PetscDGShell.cpp │ ├── PetscDGShell.h │ ├── PetscInterplMatrix.cpp │ ├── PetscInterplMatrix.h │ ├── PetscLinearSolver.cpp │ ├── PetscLinearSolver.h │ ├── PetscMatrix.h │ ├── PetscTimeSolver.cpp │ ├── PetscTimeSolver.h │ ├── PetscUtil.h │ ├── PetscVector.cpp │ ├── PetscVector.h │ ├── PoissonScenario.h │ ├── Scenario.h │ ├── Type.h │ └── lapack.h ├── config.h.in ├── form │ ├── AbstractAdapterOperator.h │ ├── AbstractFrictionOperator.h │ ├── AdapterOperator.h │ ├── FacetFunctionalFactory.h │ ├── FrictionOperator.h │ ├── SeasFDOperator.cpp │ ├── SeasFDOperator.h │ ├── SeasQDDiscreteGreenOperator.cpp │ ├── SeasQDDiscreteGreenOperator.h │ ├── SeasQDOperator.cpp │ ├── SeasQDOperator.h │ └── VolumeFunctionalFactory.h ├── kernels │ ├── elasticity.py │ ├── elasticity_adapter.py │ ├── flop_counter.cpp │ ├── generate.py │ ├── poisson.py │ └── poisson_adapter.py ├── localoperator │ ├── Adapter.h │ ├── AdapterBase.cpp │ ├── AdapterBase.h │ ├── DieterichRuinaAgeing.h │ ├── Elasticity.cpp │ ├── Elasticity.h │ ├── ElasticityAdapter.cpp │ ├── ModalInterpolation.h │ ├── NodalInterpolation.cpp │ ├── NodalInterpolation.h │ ├── Poisson.cpp │ ├── Poisson.h │ ├── PoissonAdapter.cpp │ ├── RateAndState.h │ ├── RateAndStateBase.cpp │ └── RateAndStateBase.h ├── pc │ ├── eigdeflate.c │ ├── eigdeflate.h │ ├── lspoly.c │ ├── lspoly.h │ ├── register.cpp │ ├── register.h │ ├── reig_aux.c │ └── reig_aux.h ├── preprocess.cpp ├── static.cpp ├── tandem.cpp ├── tandem │ ├── AdaptiveOutputStrategy.h │ ├── Context.h │ ├── ContextBase.h │ ├── FrictionConfig.h │ ├── Monitor.cpp │ ├── Monitor.h │ ├── SEAS.cpp │ ├── SEAS.h │ ├── SeasConfig.cpp │ ├── SeasConfig.h │ ├── SeasScenario.h │ ├── SeasSolution.h │ └── Writer.h ├── tensors.cpp ├── test-gauss.cpp ├── test-mesh.cpp ├── test-scatter.cpp └── warp-blend-opt.cpp ├── cmake ├── FindLibxsmmGenerator.cmake ├── FindPETSc.cmake ├── FindParMETIS.cmake ├── GetGitRevisionDescription.cmake ├── GetGitRevisionDescription.cmake.in ├── cpu_arch_flags.cmake ├── doctest.cmake ├── doctestAddTests.cmake ├── filesystem.cmake ├── filesystem.cpp └── user_options.cmake ├── docs ├── Doxyfile ├── Makefile ├── conf.py ├── first-model │ ├── index.rst │ ├── lua-scripting.rst │ ├── mesh.rst │ ├── parameters.rst │ ├── post-processing.rst │ └── run-model.rst ├── getting-started │ ├── examples.rst │ ├── index.rst │ ├── installation.rst │ └── quick-start.rst ├── images │ ├── banner.png │ └── cosine.png ├── index.rst ├── reference │ ├── fault-basis.rst │ ├── index.rst │ ├── scaling.rst │ └── sign-conventions.rst └── requirements.txt ├── examples ├── elasticity │ ├── 2d │ │ ├── circular_hole.geo │ │ ├── circular_hole.lua │ │ ├── circular_hole.toml │ │ ├── cosine.lua │ │ ├── cosine.toml │ │ ├── cosine_oscillatory.lua │ │ ├── cosine_oscillatory.toml │ │ ├── cosine_variable.lua │ │ ├── cosine_variable.toml │ │ ├── dip.geo │ │ ├── dip.lua │ │ ├── dip.toml │ │ ├── embedded.lua │ │ ├── embedded.toml │ │ ├── embedded_half.lua │ │ ├── embedded_half.toml │ │ ├── warp.lua │ │ ├── wedge.geo │ │ ├── wedge.lua │ │ └── wedge.toml │ └── 3d │ │ ├── beam.lua │ │ ├── beam.toml │ │ ├── cosine.lua │ │ ├── cosine.toml │ │ ├── spherical_hole.geo │ │ ├── spherical_hole.lua │ │ ├── spherical_hole.toml │ │ └── warp.lua ├── options │ ├── eigdeflate_amg_mumps.cfg │ ├── eigdeflate_mumps.cfg │ ├── eigdeflate_mumps_2.cfg │ ├── lu_mumps.cfg │ ├── mg_cheby.cfg │ └── rk45.cfg ├── poisson │ └── 2d │ │ ├── circular_hole.geo │ │ ├── circular_hole.lua │ │ ├── circular_hole.toml │ │ ├── cosine.lua │ │ ├── cosine.toml │ │ ├── embedded.lua │ │ ├── embedded.toml │ │ ├── embedded_half.geo │ │ ├── embedded_half.lua │ │ ├── embedded_half.msh │ │ ├── embedded_half.toml │ │ ├── embedded_half_msh.toml │ │ ├── manufactured.lua │ │ ├── manufactured.toml │ │ ├── manufactured_variable.lua │ │ ├── manufactured_variable.toml │ │ ├── singular.lua │ │ ├── singular.toml │ │ └── warp.lua └── tandem │ ├── 2d │ ├── BP6 │ │ ├── bp6.geo │ │ ├── bp6.lua │ │ ├── bp6_A.toml │ │ ├── bp6_S.toml │ │ ├── generate_mesh.sh │ │ ├── options.cfg │ │ ├── readme.md │ │ └── run_BP6.sh │ ├── bp1.lua │ ├── bp1.toml │ ├── bp1_sym.geo │ ├── bp1_sym.toml │ ├── bp3.geo │ ├── bp3.lua │ ├── bp3.toml │ ├── mms1.lua │ ├── mms1.toml │ ├── mms3.lua │ ├── mms3.toml │ ├── tutorial.geo │ ├── tutorial.lua │ └── tutorial.toml │ └── 3d │ ├── bp5.geo │ ├── bp5.lua │ ├── bp5.toml │ ├── mms5.lua │ ├── mms5.toml │ ├── plane_wave.lua │ ├── plane_wave.toml │ ├── tpv102.geo │ ├── tpv102.lua │ └── tpv102.toml ├── external ├── .clang-format ├── CMakeLists.txt ├── argparse.hpp ├── doctest.h ├── tinyxml2 │ ├── tinyxml2.cpp │ └── tinyxml2.h └── toml │ ├── toml.cpp │ ├── toml.hpp │ └── toml_impl.hpp ├── notebooks ├── antiplane_shear_mms.ipynb ├── bp3_like_mms.ipynb ├── bp5_like_mms.ipynb ├── circular_hole.ipynb ├── elasticity_mms.ipynb ├── poisson_mms.ipynb ├── spherical_hole.ipynb ├── util │ ├── __init__.py │ └── util.py ├── wedge.ipynb └── wedge.svg ├── src ├── CMakeLists.txt ├── basis │ ├── Equidistant.cpp │ ├── Equidistant.h │ ├── Functions.cpp │ ├── Functions.h │ ├── GaussLegendre.cpp │ ├── GaussLegendre.h │ ├── Nodal.cpp │ ├── Nodal.h │ ├── NumberingConvention.h │ ├── Util.h │ ├── WarpAndBlend.cpp │ └── WarpAndBlend.h ├── form │ ├── AbstractDGOperator.h │ ├── AbstractInterpolationOperator.h │ ├── BC.h │ ├── BoundaryMap.cpp │ ├── BoundaryMap.h │ ├── DGCurvilinearCommon.cpp │ ├── DGCurvilinearCommon.h │ ├── DGOperator.h │ ├── DGOperatorTopo.cpp │ ├── DGOperatorTopo.h │ ├── Error.cpp │ ├── Error.h │ ├── FacetInfo.h │ ├── FiniteElementFunction.cpp │ ├── FiniteElementFunction.h │ ├── InterpolationOperator.h │ ├── InverseInequality.h │ ├── LocalOperatorInterface.h │ ├── RefElement.cpp │ ├── RefElement.h │ └── SolverInterface.h ├── geometry │ ├── Affine.h │ ├── Curvilinear.cpp │ ├── Curvilinear.h │ ├── PointLocator.cpp │ ├── PointLocator.h │ ├── SimplexDistance.h │ └── Vector.h ├── interface │ ├── BlockMatrix.h │ ├── BlockVector.h │ └── BlockView.h ├── io │ ├── BoundaryProbeWriter.cpp │ ├── BoundaryProbeWriter.h │ ├── CSVWriter.h │ ├── DataType.h │ ├── Endianness.h │ ├── GMSHLexer.cpp │ ├── GMSHLexer.h │ ├── GMSHParser.cpp │ ├── GMSHParser.h │ ├── GlobalSimplexMeshBuilder.cpp │ ├── GlobalSimplexMeshBuilder.h │ ├── PVDWriter.cpp │ ├── PVDWriter.h │ ├── Probe.h │ ├── ProbeWriter.cpp │ ├── ProbeWriter.h │ ├── ProbeWriterUtil.h │ ├── ScalarWriter.cpp │ ├── ScalarWriter.h │ ├── TableWriter.h │ ├── TecplotWriter.h │ ├── VTUAdapter.h │ ├── VTUWriter.cpp │ └── VTUWriter.h ├── mesh │ ├── GenMesh.cpp │ ├── GenMesh.h │ ├── GlobalSimplexMesh.cpp │ ├── GlobalSimplexMesh.h │ ├── LocalFaces.h │ ├── LocalSimplexMesh.h │ ├── MeshData.h │ └── Simplex.h ├── parallel │ ├── Affinity.cpp │ ├── Affinity.h │ ├── CommPattern.cpp │ ├── CommPattern.h │ ├── Distribute.h │ ├── DistributedCSR.h │ ├── LocalGhostCompositeView.h │ ├── MPITraits.h │ ├── MetisPartitioner.cpp │ ├── MetisPartitioner.h │ ├── Profile.cpp │ ├── Profile.h │ ├── Scatter.h │ ├── ScatterPlan.cpp │ ├── ScatterPlan.h │ ├── SimpleScatter.h │ ├── SortedDistribution.cpp │ ├── SortedDistribution.h │ ├── SparseBlockVector.h │ ├── Summary.cpp │ └── Summary.h ├── quadrules │ ├── AutoRule.h │ ├── GaussJacobi.cpp │ ├── GaussJacobi.h │ ├── IntervalQuadratureRule.cpp │ ├── IntervalQuadratureRule.h │ ├── JaskowiecSukumar2020.cpp │ ├── SimplexQuadratureRule.h │ ├── TabulatedRules.h │ ├── TensorProductRule.cpp │ ├── TensorProductRule.h │ ├── WitherdenVincent2015_Tet.cpp │ └── WitherdenVincent2015_Tri.cpp ├── script │ ├── LuaLib.cpp │ └── LuaLib.h ├── tensor │ ├── EigenMap.h │ ├── Managed.h │ ├── Reshape.h │ ├── Tensor.h │ ├── TensorBase.h │ └── Utility.h └── util │ ├── Algorithm.h │ ├── Combinatorics.h │ ├── Enumerate.h │ ├── Hash.h │ ├── LinearAllocator.h │ ├── Math.cpp │ ├── Math.h │ ├── MultiIndex.h │ ├── NullStream.h │ ├── Permutation.h │ ├── Range.h │ ├── Schema.h │ ├── SchemaHelper.h │ ├── Scratch.h │ ├── Sequence.h │ ├── Stopwatch.h │ ├── TablePrinter.cpp │ ├── TablePrinter.h │ ├── Traits.h │ ├── Typelist.h │ ├── Utility.h │ ├── Zero.cpp │ └── Zero.h ├── tandem.imp └── test ├── CMakeLists.txt ├── basis.cpp ├── form.cpp ├── geometry.cpp ├── io.cpp ├── main-mpi.cpp ├── main.cpp ├── parallel.cpp ├── quadrules.cpp ├── script.cpp ├── simplex.cpp ├── tensor.cpp └── util.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/problem_using_tandem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/.github/ISSUE_TEMPLATE/problem_using_tandem.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/.gitmodules -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHECKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/CHECKS.md -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/README.md -------------------------------------------------------------------------------- /app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/CMakeLists.txt -------------------------------------------------------------------------------- /app/check-bc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/check-bc.cpp -------------------------------------------------------------------------------- /app/common/Banner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/common/Banner.cpp -------------------------------------------------------------------------------- /app/common/Banner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/common/Banner.h -------------------------------------------------------------------------------- /app/common/CmdLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/common/CmdLine.h -------------------------------------------------------------------------------- /app/common/ElasticityScenario.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/common/ElasticityScenario.h -------------------------------------------------------------------------------- /app/common/MGConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/common/MGConfig.cpp -------------------------------------------------------------------------------- /app/common/MGConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/common/MGConfig.h -------------------------------------------------------------------------------- /app/common/MeshConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/common/MeshConfig.cpp -------------------------------------------------------------------------------- /app/common/MeshConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/common/MeshConfig.h -------------------------------------------------------------------------------- /app/common/PetscDGMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/common/PetscDGMatrix.cpp -------------------------------------------------------------------------------- /app/common/PetscDGMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/common/PetscDGMatrix.h -------------------------------------------------------------------------------- /app/common/PetscDGShell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/common/PetscDGShell.cpp -------------------------------------------------------------------------------- /app/common/PetscDGShell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/common/PetscDGShell.h -------------------------------------------------------------------------------- /app/common/PetscInterplMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/common/PetscInterplMatrix.cpp -------------------------------------------------------------------------------- /app/common/PetscInterplMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/common/PetscInterplMatrix.h -------------------------------------------------------------------------------- /app/common/PetscLinearSolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/common/PetscLinearSolver.cpp -------------------------------------------------------------------------------- /app/common/PetscLinearSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/common/PetscLinearSolver.h -------------------------------------------------------------------------------- /app/common/PetscMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/common/PetscMatrix.h -------------------------------------------------------------------------------- /app/common/PetscTimeSolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/common/PetscTimeSolver.cpp -------------------------------------------------------------------------------- /app/common/PetscTimeSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/common/PetscTimeSolver.h -------------------------------------------------------------------------------- /app/common/PetscUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/common/PetscUtil.h -------------------------------------------------------------------------------- /app/common/PetscVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/common/PetscVector.cpp -------------------------------------------------------------------------------- /app/common/PetscVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/common/PetscVector.h -------------------------------------------------------------------------------- /app/common/PoissonScenario.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/common/PoissonScenario.h -------------------------------------------------------------------------------- /app/common/Scenario.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/common/Scenario.h -------------------------------------------------------------------------------- /app/common/Type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/common/Type.h -------------------------------------------------------------------------------- /app/common/lapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/common/lapack.h -------------------------------------------------------------------------------- /app/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/config.h.in -------------------------------------------------------------------------------- /app/form/AbstractAdapterOperator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/form/AbstractAdapterOperator.h -------------------------------------------------------------------------------- /app/form/AbstractFrictionOperator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/form/AbstractFrictionOperator.h -------------------------------------------------------------------------------- /app/form/AdapterOperator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/form/AdapterOperator.h -------------------------------------------------------------------------------- /app/form/FacetFunctionalFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/form/FacetFunctionalFactory.h -------------------------------------------------------------------------------- /app/form/FrictionOperator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/form/FrictionOperator.h -------------------------------------------------------------------------------- /app/form/SeasFDOperator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/form/SeasFDOperator.cpp -------------------------------------------------------------------------------- /app/form/SeasFDOperator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/form/SeasFDOperator.h -------------------------------------------------------------------------------- /app/form/SeasQDDiscreteGreenOperator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/form/SeasQDDiscreteGreenOperator.cpp -------------------------------------------------------------------------------- /app/form/SeasQDDiscreteGreenOperator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/form/SeasQDDiscreteGreenOperator.h -------------------------------------------------------------------------------- /app/form/SeasQDOperator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/form/SeasQDOperator.cpp -------------------------------------------------------------------------------- /app/form/SeasQDOperator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/form/SeasQDOperator.h -------------------------------------------------------------------------------- /app/form/VolumeFunctionalFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/form/VolumeFunctionalFactory.h -------------------------------------------------------------------------------- /app/kernels/elasticity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/kernels/elasticity.py -------------------------------------------------------------------------------- /app/kernels/elasticity_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/kernels/elasticity_adapter.py -------------------------------------------------------------------------------- /app/kernels/flop_counter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/kernels/flop_counter.cpp -------------------------------------------------------------------------------- /app/kernels/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/kernels/generate.py -------------------------------------------------------------------------------- /app/kernels/poisson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/kernels/poisson.py -------------------------------------------------------------------------------- /app/kernels/poisson_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/kernels/poisson_adapter.py -------------------------------------------------------------------------------- /app/localoperator/Adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/localoperator/Adapter.h -------------------------------------------------------------------------------- /app/localoperator/AdapterBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/localoperator/AdapterBase.cpp -------------------------------------------------------------------------------- /app/localoperator/AdapterBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/localoperator/AdapterBase.h -------------------------------------------------------------------------------- /app/localoperator/DieterichRuinaAgeing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/localoperator/DieterichRuinaAgeing.h -------------------------------------------------------------------------------- /app/localoperator/Elasticity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/localoperator/Elasticity.cpp -------------------------------------------------------------------------------- /app/localoperator/Elasticity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/localoperator/Elasticity.h -------------------------------------------------------------------------------- /app/localoperator/ElasticityAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/localoperator/ElasticityAdapter.cpp -------------------------------------------------------------------------------- /app/localoperator/ModalInterpolation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/localoperator/ModalInterpolation.h -------------------------------------------------------------------------------- /app/localoperator/NodalInterpolation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/localoperator/NodalInterpolation.cpp -------------------------------------------------------------------------------- /app/localoperator/NodalInterpolation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/localoperator/NodalInterpolation.h -------------------------------------------------------------------------------- /app/localoperator/Poisson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/localoperator/Poisson.cpp -------------------------------------------------------------------------------- /app/localoperator/Poisson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/localoperator/Poisson.h -------------------------------------------------------------------------------- /app/localoperator/PoissonAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/localoperator/PoissonAdapter.cpp -------------------------------------------------------------------------------- /app/localoperator/RateAndState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/localoperator/RateAndState.h -------------------------------------------------------------------------------- /app/localoperator/RateAndStateBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/localoperator/RateAndStateBase.cpp -------------------------------------------------------------------------------- /app/localoperator/RateAndStateBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/localoperator/RateAndStateBase.h -------------------------------------------------------------------------------- /app/pc/eigdeflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/pc/eigdeflate.c -------------------------------------------------------------------------------- /app/pc/eigdeflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/pc/eigdeflate.h -------------------------------------------------------------------------------- /app/pc/lspoly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/pc/lspoly.c -------------------------------------------------------------------------------- /app/pc/lspoly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/pc/lspoly.h -------------------------------------------------------------------------------- /app/pc/register.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/pc/register.cpp -------------------------------------------------------------------------------- /app/pc/register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/pc/register.h -------------------------------------------------------------------------------- /app/pc/reig_aux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/pc/reig_aux.c -------------------------------------------------------------------------------- /app/pc/reig_aux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/pc/reig_aux.h -------------------------------------------------------------------------------- /app/preprocess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/preprocess.cpp -------------------------------------------------------------------------------- /app/static.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/static.cpp -------------------------------------------------------------------------------- /app/tandem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/tandem.cpp -------------------------------------------------------------------------------- /app/tandem/AdaptiveOutputStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/tandem/AdaptiveOutputStrategy.h -------------------------------------------------------------------------------- /app/tandem/Context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/tandem/Context.h -------------------------------------------------------------------------------- /app/tandem/ContextBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/tandem/ContextBase.h -------------------------------------------------------------------------------- /app/tandem/FrictionConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/tandem/FrictionConfig.h -------------------------------------------------------------------------------- /app/tandem/Monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/tandem/Monitor.cpp -------------------------------------------------------------------------------- /app/tandem/Monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/tandem/Monitor.h -------------------------------------------------------------------------------- /app/tandem/SEAS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/tandem/SEAS.cpp -------------------------------------------------------------------------------- /app/tandem/SEAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/tandem/SEAS.h -------------------------------------------------------------------------------- /app/tandem/SeasConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/tandem/SeasConfig.cpp -------------------------------------------------------------------------------- /app/tandem/SeasConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/tandem/SeasConfig.h -------------------------------------------------------------------------------- /app/tandem/SeasScenario.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/tandem/SeasScenario.h -------------------------------------------------------------------------------- /app/tandem/SeasSolution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/tandem/SeasSolution.h -------------------------------------------------------------------------------- /app/tandem/Writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/tandem/Writer.h -------------------------------------------------------------------------------- /app/tensors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/tensors.cpp -------------------------------------------------------------------------------- /app/test-gauss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/test-gauss.cpp -------------------------------------------------------------------------------- /app/test-mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/test-mesh.cpp -------------------------------------------------------------------------------- /app/test-scatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/test-scatter.cpp -------------------------------------------------------------------------------- /app/warp-blend-opt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/app/warp-blend-opt.cpp -------------------------------------------------------------------------------- /cmake/FindLibxsmmGenerator.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/cmake/FindLibxsmmGenerator.cmake -------------------------------------------------------------------------------- /cmake/FindPETSc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/cmake/FindPETSc.cmake -------------------------------------------------------------------------------- /cmake/FindParMETIS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/cmake/FindParMETIS.cmake -------------------------------------------------------------------------------- /cmake/GetGitRevisionDescription.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/cmake/GetGitRevisionDescription.cmake -------------------------------------------------------------------------------- /cmake/GetGitRevisionDescription.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/cmake/GetGitRevisionDescription.cmake.in -------------------------------------------------------------------------------- /cmake/cpu_arch_flags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/cmake/cpu_arch_flags.cmake -------------------------------------------------------------------------------- /cmake/doctest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/cmake/doctest.cmake -------------------------------------------------------------------------------- /cmake/doctestAddTests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/cmake/doctestAddTests.cmake -------------------------------------------------------------------------------- /cmake/filesystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/cmake/filesystem.cmake -------------------------------------------------------------------------------- /cmake/filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/cmake/filesystem.cpp -------------------------------------------------------------------------------- /cmake/user_options.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/cmake/user_options.cmake -------------------------------------------------------------------------------- /docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/docs/Doxyfile -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/first-model/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/docs/first-model/index.rst -------------------------------------------------------------------------------- /docs/first-model/lua-scripting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/docs/first-model/lua-scripting.rst -------------------------------------------------------------------------------- /docs/first-model/mesh.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/docs/first-model/mesh.rst -------------------------------------------------------------------------------- /docs/first-model/parameters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/docs/first-model/parameters.rst -------------------------------------------------------------------------------- /docs/first-model/post-processing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/docs/first-model/post-processing.rst -------------------------------------------------------------------------------- /docs/first-model/run-model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/docs/first-model/run-model.rst -------------------------------------------------------------------------------- /docs/getting-started/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/docs/getting-started/examples.rst -------------------------------------------------------------------------------- /docs/getting-started/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/docs/getting-started/index.rst -------------------------------------------------------------------------------- /docs/getting-started/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/docs/getting-started/installation.rst -------------------------------------------------------------------------------- /docs/getting-started/quick-start.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/docs/getting-started/quick-start.rst -------------------------------------------------------------------------------- /docs/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/docs/images/banner.png -------------------------------------------------------------------------------- /docs/images/cosine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/docs/images/cosine.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/reference/fault-basis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/docs/reference/fault-basis.rst -------------------------------------------------------------------------------- /docs/reference/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/docs/reference/index.rst -------------------------------------------------------------------------------- /docs/reference/scaling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/docs/reference/scaling.rst -------------------------------------------------------------------------------- /docs/reference/sign-conventions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/docs/reference/sign-conventions.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | furo 2 | sphinxcontrib-katex 3 | matplotlib 4 | urllib3<2 5 | -------------------------------------------------------------------------------- /examples/elasticity/2d/circular_hole.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/elasticity/2d/circular_hole.geo -------------------------------------------------------------------------------- /examples/elasticity/2d/circular_hole.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/elasticity/2d/circular_hole.lua -------------------------------------------------------------------------------- /examples/elasticity/2d/circular_hole.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/elasticity/2d/circular_hole.toml -------------------------------------------------------------------------------- /examples/elasticity/2d/cosine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/elasticity/2d/cosine.lua -------------------------------------------------------------------------------- /examples/elasticity/2d/cosine.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/elasticity/2d/cosine.toml -------------------------------------------------------------------------------- /examples/elasticity/2d/cosine_oscillatory.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/elasticity/2d/cosine_oscillatory.lua -------------------------------------------------------------------------------- /examples/elasticity/2d/cosine_oscillatory.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/elasticity/2d/cosine_oscillatory.toml -------------------------------------------------------------------------------- /examples/elasticity/2d/cosine_variable.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/elasticity/2d/cosine_variable.lua -------------------------------------------------------------------------------- /examples/elasticity/2d/cosine_variable.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/elasticity/2d/cosine_variable.toml -------------------------------------------------------------------------------- /examples/elasticity/2d/dip.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/elasticity/2d/dip.geo -------------------------------------------------------------------------------- /examples/elasticity/2d/dip.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/elasticity/2d/dip.lua -------------------------------------------------------------------------------- /examples/elasticity/2d/dip.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/elasticity/2d/dip.toml -------------------------------------------------------------------------------- /examples/elasticity/2d/embedded.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/elasticity/2d/embedded.lua -------------------------------------------------------------------------------- /examples/elasticity/2d/embedded.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/elasticity/2d/embedded.toml -------------------------------------------------------------------------------- /examples/elasticity/2d/embedded_half.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/elasticity/2d/embedded_half.lua -------------------------------------------------------------------------------- /examples/elasticity/2d/embedded_half.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/elasticity/2d/embedded_half.toml -------------------------------------------------------------------------------- /examples/elasticity/2d/warp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/elasticity/2d/warp.lua -------------------------------------------------------------------------------- /examples/elasticity/2d/wedge.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/elasticity/2d/wedge.geo -------------------------------------------------------------------------------- /examples/elasticity/2d/wedge.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/elasticity/2d/wedge.lua -------------------------------------------------------------------------------- /examples/elasticity/2d/wedge.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/elasticity/2d/wedge.toml -------------------------------------------------------------------------------- /examples/elasticity/3d/beam.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/elasticity/3d/beam.lua -------------------------------------------------------------------------------- /examples/elasticity/3d/beam.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/elasticity/3d/beam.toml -------------------------------------------------------------------------------- /examples/elasticity/3d/cosine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/elasticity/3d/cosine.lua -------------------------------------------------------------------------------- /examples/elasticity/3d/cosine.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/elasticity/3d/cosine.toml -------------------------------------------------------------------------------- /examples/elasticity/3d/spherical_hole.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/elasticity/3d/spherical_hole.geo -------------------------------------------------------------------------------- /examples/elasticity/3d/spherical_hole.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/elasticity/3d/spherical_hole.lua -------------------------------------------------------------------------------- /examples/elasticity/3d/spherical_hole.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/elasticity/3d/spherical_hole.toml -------------------------------------------------------------------------------- /examples/elasticity/3d/warp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/elasticity/3d/warp.lua -------------------------------------------------------------------------------- /examples/options/eigdeflate_amg_mumps.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/options/eigdeflate_amg_mumps.cfg -------------------------------------------------------------------------------- /examples/options/eigdeflate_mumps.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/options/eigdeflate_mumps.cfg -------------------------------------------------------------------------------- /examples/options/eigdeflate_mumps_2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/options/eigdeflate_mumps_2.cfg -------------------------------------------------------------------------------- /examples/options/lu_mumps.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/options/lu_mumps.cfg -------------------------------------------------------------------------------- /examples/options/mg_cheby.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/options/mg_cheby.cfg -------------------------------------------------------------------------------- /examples/options/rk45.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/options/rk45.cfg -------------------------------------------------------------------------------- /examples/poisson/2d/circular_hole.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/poisson/2d/circular_hole.geo -------------------------------------------------------------------------------- /examples/poisson/2d/circular_hole.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/poisson/2d/circular_hole.lua -------------------------------------------------------------------------------- /examples/poisson/2d/circular_hole.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/poisson/2d/circular_hole.toml -------------------------------------------------------------------------------- /examples/poisson/2d/cosine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/poisson/2d/cosine.lua -------------------------------------------------------------------------------- /examples/poisson/2d/cosine.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/poisson/2d/cosine.toml -------------------------------------------------------------------------------- /examples/poisson/2d/embedded.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/poisson/2d/embedded.lua -------------------------------------------------------------------------------- /examples/poisson/2d/embedded.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/poisson/2d/embedded.toml -------------------------------------------------------------------------------- /examples/poisson/2d/embedded_half.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/poisson/2d/embedded_half.geo -------------------------------------------------------------------------------- /examples/poisson/2d/embedded_half.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/poisson/2d/embedded_half.lua -------------------------------------------------------------------------------- /examples/poisson/2d/embedded_half.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/poisson/2d/embedded_half.msh -------------------------------------------------------------------------------- /examples/poisson/2d/embedded_half.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/poisson/2d/embedded_half.toml -------------------------------------------------------------------------------- /examples/poisson/2d/embedded_half_msh.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/poisson/2d/embedded_half_msh.toml -------------------------------------------------------------------------------- /examples/poisson/2d/manufactured.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/poisson/2d/manufactured.lua -------------------------------------------------------------------------------- /examples/poisson/2d/manufactured.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/poisson/2d/manufactured.toml -------------------------------------------------------------------------------- /examples/poisson/2d/manufactured_variable.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/poisson/2d/manufactured_variable.lua -------------------------------------------------------------------------------- /examples/poisson/2d/manufactured_variable.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/poisson/2d/manufactured_variable.toml -------------------------------------------------------------------------------- /examples/poisson/2d/singular.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/poisson/2d/singular.lua -------------------------------------------------------------------------------- /examples/poisson/2d/singular.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/poisson/2d/singular.toml -------------------------------------------------------------------------------- /examples/poisson/2d/warp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/poisson/2d/warp.lua -------------------------------------------------------------------------------- /examples/tandem/2d/BP6/bp6.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/tandem/2d/BP6/bp6.geo -------------------------------------------------------------------------------- /examples/tandem/2d/BP6/bp6.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/tandem/2d/BP6/bp6.lua -------------------------------------------------------------------------------- /examples/tandem/2d/BP6/bp6_A.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/tandem/2d/BP6/bp6_A.toml -------------------------------------------------------------------------------- /examples/tandem/2d/BP6/bp6_S.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/tandem/2d/BP6/bp6_S.toml -------------------------------------------------------------------------------- /examples/tandem/2d/BP6/generate_mesh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/tandem/2d/BP6/generate_mesh.sh -------------------------------------------------------------------------------- /examples/tandem/2d/BP6/options.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/tandem/2d/BP6/options.cfg -------------------------------------------------------------------------------- /examples/tandem/2d/BP6/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/tandem/2d/BP6/readme.md -------------------------------------------------------------------------------- /examples/tandem/2d/BP6/run_BP6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/tandem/2d/BP6/run_BP6.sh -------------------------------------------------------------------------------- /examples/tandem/2d/bp1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/tandem/2d/bp1.lua -------------------------------------------------------------------------------- /examples/tandem/2d/bp1.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/tandem/2d/bp1.toml -------------------------------------------------------------------------------- /examples/tandem/2d/bp1_sym.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/tandem/2d/bp1_sym.geo -------------------------------------------------------------------------------- /examples/tandem/2d/bp1_sym.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/tandem/2d/bp1_sym.toml -------------------------------------------------------------------------------- /examples/tandem/2d/bp3.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/tandem/2d/bp3.geo -------------------------------------------------------------------------------- /examples/tandem/2d/bp3.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/tandem/2d/bp3.lua -------------------------------------------------------------------------------- /examples/tandem/2d/bp3.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/tandem/2d/bp3.toml -------------------------------------------------------------------------------- /examples/tandem/2d/mms1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/tandem/2d/mms1.lua -------------------------------------------------------------------------------- /examples/tandem/2d/mms1.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/tandem/2d/mms1.toml -------------------------------------------------------------------------------- /examples/tandem/2d/mms3.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/tandem/2d/mms3.lua -------------------------------------------------------------------------------- /examples/tandem/2d/mms3.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/tandem/2d/mms3.toml -------------------------------------------------------------------------------- /examples/tandem/2d/tutorial.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/tandem/2d/tutorial.geo -------------------------------------------------------------------------------- /examples/tandem/2d/tutorial.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/tandem/2d/tutorial.lua -------------------------------------------------------------------------------- /examples/tandem/2d/tutorial.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/tandem/2d/tutorial.toml -------------------------------------------------------------------------------- /examples/tandem/3d/bp5.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/tandem/3d/bp5.geo -------------------------------------------------------------------------------- /examples/tandem/3d/bp5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/tandem/3d/bp5.lua -------------------------------------------------------------------------------- /examples/tandem/3d/bp5.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/tandem/3d/bp5.toml -------------------------------------------------------------------------------- /examples/tandem/3d/mms5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/tandem/3d/mms5.lua -------------------------------------------------------------------------------- /examples/tandem/3d/mms5.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/tandem/3d/mms5.toml -------------------------------------------------------------------------------- /examples/tandem/3d/plane_wave.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/tandem/3d/plane_wave.lua -------------------------------------------------------------------------------- /examples/tandem/3d/plane_wave.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/tandem/3d/plane_wave.toml -------------------------------------------------------------------------------- /examples/tandem/3d/tpv102.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/tandem/3d/tpv102.geo -------------------------------------------------------------------------------- /examples/tandem/3d/tpv102.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/tandem/3d/tpv102.lua -------------------------------------------------------------------------------- /examples/tandem/3d/tpv102.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/examples/tandem/3d/tpv102.toml -------------------------------------------------------------------------------- /external/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | SortIncludes: false 3 | -------------------------------------------------------------------------------- /external/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/external/CMakeLists.txt -------------------------------------------------------------------------------- /external/argparse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/external/argparse.hpp -------------------------------------------------------------------------------- /external/doctest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/external/doctest.h -------------------------------------------------------------------------------- /external/tinyxml2/tinyxml2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/external/tinyxml2/tinyxml2.cpp -------------------------------------------------------------------------------- /external/tinyxml2/tinyxml2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/external/tinyxml2/tinyxml2.h -------------------------------------------------------------------------------- /external/toml/toml.cpp: -------------------------------------------------------------------------------- 1 | #define TOML_IMPLEMENTATION 2 | #include "toml.hpp" 3 | -------------------------------------------------------------------------------- /external/toml/toml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/external/toml/toml.hpp -------------------------------------------------------------------------------- /external/toml/toml_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/external/toml/toml_impl.hpp -------------------------------------------------------------------------------- /notebooks/antiplane_shear_mms.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/notebooks/antiplane_shear_mms.ipynb -------------------------------------------------------------------------------- /notebooks/bp3_like_mms.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/notebooks/bp3_like_mms.ipynb -------------------------------------------------------------------------------- /notebooks/bp5_like_mms.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/notebooks/bp5_like_mms.ipynb -------------------------------------------------------------------------------- /notebooks/circular_hole.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/notebooks/circular_hole.ipynb -------------------------------------------------------------------------------- /notebooks/elasticity_mms.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/notebooks/elasticity_mms.ipynb -------------------------------------------------------------------------------- /notebooks/poisson_mms.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/notebooks/poisson_mms.ipynb -------------------------------------------------------------------------------- /notebooks/spherical_hole.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/notebooks/spherical_hole.ipynb -------------------------------------------------------------------------------- /notebooks/util/__init__.py: -------------------------------------------------------------------------------- 1 | from .util import * 2 | -------------------------------------------------------------------------------- /notebooks/util/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/notebooks/util/util.py -------------------------------------------------------------------------------- /notebooks/wedge.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/notebooks/wedge.ipynb -------------------------------------------------------------------------------- /notebooks/wedge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/notebooks/wedge.svg -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/basis/Equidistant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/basis/Equidistant.cpp -------------------------------------------------------------------------------- /src/basis/Equidistant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/basis/Equidistant.h -------------------------------------------------------------------------------- /src/basis/Functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/basis/Functions.cpp -------------------------------------------------------------------------------- /src/basis/Functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/basis/Functions.h -------------------------------------------------------------------------------- /src/basis/GaussLegendre.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/basis/GaussLegendre.cpp -------------------------------------------------------------------------------- /src/basis/GaussLegendre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/basis/GaussLegendre.h -------------------------------------------------------------------------------- /src/basis/Nodal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/basis/Nodal.cpp -------------------------------------------------------------------------------- /src/basis/Nodal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/basis/Nodal.h -------------------------------------------------------------------------------- /src/basis/NumberingConvention.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/basis/NumberingConvention.h -------------------------------------------------------------------------------- /src/basis/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/basis/Util.h -------------------------------------------------------------------------------- /src/basis/WarpAndBlend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/basis/WarpAndBlend.cpp -------------------------------------------------------------------------------- /src/basis/WarpAndBlend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/basis/WarpAndBlend.h -------------------------------------------------------------------------------- /src/form/AbstractDGOperator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/form/AbstractDGOperator.h -------------------------------------------------------------------------------- /src/form/AbstractInterpolationOperator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/form/AbstractInterpolationOperator.h -------------------------------------------------------------------------------- /src/form/BC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/form/BC.h -------------------------------------------------------------------------------- /src/form/BoundaryMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/form/BoundaryMap.cpp -------------------------------------------------------------------------------- /src/form/BoundaryMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/form/BoundaryMap.h -------------------------------------------------------------------------------- /src/form/DGCurvilinearCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/form/DGCurvilinearCommon.cpp -------------------------------------------------------------------------------- /src/form/DGCurvilinearCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/form/DGCurvilinearCommon.h -------------------------------------------------------------------------------- /src/form/DGOperator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/form/DGOperator.h -------------------------------------------------------------------------------- /src/form/DGOperatorTopo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/form/DGOperatorTopo.cpp -------------------------------------------------------------------------------- /src/form/DGOperatorTopo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/form/DGOperatorTopo.h -------------------------------------------------------------------------------- /src/form/Error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/form/Error.cpp -------------------------------------------------------------------------------- /src/form/Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/form/Error.h -------------------------------------------------------------------------------- /src/form/FacetInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/form/FacetInfo.h -------------------------------------------------------------------------------- /src/form/FiniteElementFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/form/FiniteElementFunction.cpp -------------------------------------------------------------------------------- /src/form/FiniteElementFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/form/FiniteElementFunction.h -------------------------------------------------------------------------------- /src/form/InterpolationOperator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/form/InterpolationOperator.h -------------------------------------------------------------------------------- /src/form/InverseInequality.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/form/InverseInequality.h -------------------------------------------------------------------------------- /src/form/LocalOperatorInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/form/LocalOperatorInterface.h -------------------------------------------------------------------------------- /src/form/RefElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/form/RefElement.cpp -------------------------------------------------------------------------------- /src/form/RefElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/form/RefElement.h -------------------------------------------------------------------------------- /src/form/SolverInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/form/SolverInterface.h -------------------------------------------------------------------------------- /src/geometry/Affine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/geometry/Affine.h -------------------------------------------------------------------------------- /src/geometry/Curvilinear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/geometry/Curvilinear.cpp -------------------------------------------------------------------------------- /src/geometry/Curvilinear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/geometry/Curvilinear.h -------------------------------------------------------------------------------- /src/geometry/PointLocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/geometry/PointLocator.cpp -------------------------------------------------------------------------------- /src/geometry/PointLocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/geometry/PointLocator.h -------------------------------------------------------------------------------- /src/geometry/SimplexDistance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/geometry/SimplexDistance.h -------------------------------------------------------------------------------- /src/geometry/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/geometry/Vector.h -------------------------------------------------------------------------------- /src/interface/BlockMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/interface/BlockMatrix.h -------------------------------------------------------------------------------- /src/interface/BlockVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/interface/BlockVector.h -------------------------------------------------------------------------------- /src/interface/BlockView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/interface/BlockView.h -------------------------------------------------------------------------------- /src/io/BoundaryProbeWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/io/BoundaryProbeWriter.cpp -------------------------------------------------------------------------------- /src/io/BoundaryProbeWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/io/BoundaryProbeWriter.h -------------------------------------------------------------------------------- /src/io/CSVWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/io/CSVWriter.h -------------------------------------------------------------------------------- /src/io/DataType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/io/DataType.h -------------------------------------------------------------------------------- /src/io/Endianness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/io/Endianness.h -------------------------------------------------------------------------------- /src/io/GMSHLexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/io/GMSHLexer.cpp -------------------------------------------------------------------------------- /src/io/GMSHLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/io/GMSHLexer.h -------------------------------------------------------------------------------- /src/io/GMSHParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/io/GMSHParser.cpp -------------------------------------------------------------------------------- /src/io/GMSHParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/io/GMSHParser.h -------------------------------------------------------------------------------- /src/io/GlobalSimplexMeshBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/io/GlobalSimplexMeshBuilder.cpp -------------------------------------------------------------------------------- /src/io/GlobalSimplexMeshBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/io/GlobalSimplexMeshBuilder.h -------------------------------------------------------------------------------- /src/io/PVDWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/io/PVDWriter.cpp -------------------------------------------------------------------------------- /src/io/PVDWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/io/PVDWriter.h -------------------------------------------------------------------------------- /src/io/Probe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/io/Probe.h -------------------------------------------------------------------------------- /src/io/ProbeWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/io/ProbeWriter.cpp -------------------------------------------------------------------------------- /src/io/ProbeWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/io/ProbeWriter.h -------------------------------------------------------------------------------- /src/io/ProbeWriterUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/io/ProbeWriterUtil.h -------------------------------------------------------------------------------- /src/io/ScalarWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/io/ScalarWriter.cpp -------------------------------------------------------------------------------- /src/io/ScalarWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/io/ScalarWriter.h -------------------------------------------------------------------------------- /src/io/TableWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/io/TableWriter.h -------------------------------------------------------------------------------- /src/io/TecplotWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/io/TecplotWriter.h -------------------------------------------------------------------------------- /src/io/VTUAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/io/VTUAdapter.h -------------------------------------------------------------------------------- /src/io/VTUWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/io/VTUWriter.cpp -------------------------------------------------------------------------------- /src/io/VTUWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/io/VTUWriter.h -------------------------------------------------------------------------------- /src/mesh/GenMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/mesh/GenMesh.cpp -------------------------------------------------------------------------------- /src/mesh/GenMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/mesh/GenMesh.h -------------------------------------------------------------------------------- /src/mesh/GlobalSimplexMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/mesh/GlobalSimplexMesh.cpp -------------------------------------------------------------------------------- /src/mesh/GlobalSimplexMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/mesh/GlobalSimplexMesh.h -------------------------------------------------------------------------------- /src/mesh/LocalFaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/mesh/LocalFaces.h -------------------------------------------------------------------------------- /src/mesh/LocalSimplexMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/mesh/LocalSimplexMesh.h -------------------------------------------------------------------------------- /src/mesh/MeshData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/mesh/MeshData.h -------------------------------------------------------------------------------- /src/mesh/Simplex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/mesh/Simplex.h -------------------------------------------------------------------------------- /src/parallel/Affinity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/parallel/Affinity.cpp -------------------------------------------------------------------------------- /src/parallel/Affinity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/parallel/Affinity.h -------------------------------------------------------------------------------- /src/parallel/CommPattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/parallel/CommPattern.cpp -------------------------------------------------------------------------------- /src/parallel/CommPattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/parallel/CommPattern.h -------------------------------------------------------------------------------- /src/parallel/Distribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/parallel/Distribute.h -------------------------------------------------------------------------------- /src/parallel/DistributedCSR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/parallel/DistributedCSR.h -------------------------------------------------------------------------------- /src/parallel/LocalGhostCompositeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/parallel/LocalGhostCompositeView.h -------------------------------------------------------------------------------- /src/parallel/MPITraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/parallel/MPITraits.h -------------------------------------------------------------------------------- /src/parallel/MetisPartitioner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/parallel/MetisPartitioner.cpp -------------------------------------------------------------------------------- /src/parallel/MetisPartitioner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/parallel/MetisPartitioner.h -------------------------------------------------------------------------------- /src/parallel/Profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/parallel/Profile.cpp -------------------------------------------------------------------------------- /src/parallel/Profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/parallel/Profile.h -------------------------------------------------------------------------------- /src/parallel/Scatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/parallel/Scatter.h -------------------------------------------------------------------------------- /src/parallel/ScatterPlan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/parallel/ScatterPlan.cpp -------------------------------------------------------------------------------- /src/parallel/ScatterPlan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/parallel/ScatterPlan.h -------------------------------------------------------------------------------- /src/parallel/SimpleScatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/parallel/SimpleScatter.h -------------------------------------------------------------------------------- /src/parallel/SortedDistribution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/parallel/SortedDistribution.cpp -------------------------------------------------------------------------------- /src/parallel/SortedDistribution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/parallel/SortedDistribution.h -------------------------------------------------------------------------------- /src/parallel/SparseBlockVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/parallel/SparseBlockVector.h -------------------------------------------------------------------------------- /src/parallel/Summary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/parallel/Summary.cpp -------------------------------------------------------------------------------- /src/parallel/Summary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/parallel/Summary.h -------------------------------------------------------------------------------- /src/quadrules/AutoRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/quadrules/AutoRule.h -------------------------------------------------------------------------------- /src/quadrules/GaussJacobi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/quadrules/GaussJacobi.cpp -------------------------------------------------------------------------------- /src/quadrules/GaussJacobi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/quadrules/GaussJacobi.h -------------------------------------------------------------------------------- /src/quadrules/IntervalQuadratureRule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/quadrules/IntervalQuadratureRule.cpp -------------------------------------------------------------------------------- /src/quadrules/IntervalQuadratureRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/quadrules/IntervalQuadratureRule.h -------------------------------------------------------------------------------- /src/quadrules/JaskowiecSukumar2020.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/quadrules/JaskowiecSukumar2020.cpp -------------------------------------------------------------------------------- /src/quadrules/SimplexQuadratureRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/quadrules/SimplexQuadratureRule.h -------------------------------------------------------------------------------- /src/quadrules/TabulatedRules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/quadrules/TabulatedRules.h -------------------------------------------------------------------------------- /src/quadrules/TensorProductRule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/quadrules/TensorProductRule.cpp -------------------------------------------------------------------------------- /src/quadrules/TensorProductRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/quadrules/TensorProductRule.h -------------------------------------------------------------------------------- /src/quadrules/WitherdenVincent2015_Tet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/quadrules/WitherdenVincent2015_Tet.cpp -------------------------------------------------------------------------------- /src/quadrules/WitherdenVincent2015_Tri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/quadrules/WitherdenVincent2015_Tri.cpp -------------------------------------------------------------------------------- /src/script/LuaLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/script/LuaLib.cpp -------------------------------------------------------------------------------- /src/script/LuaLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/script/LuaLib.h -------------------------------------------------------------------------------- /src/tensor/EigenMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/tensor/EigenMap.h -------------------------------------------------------------------------------- /src/tensor/Managed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/tensor/Managed.h -------------------------------------------------------------------------------- /src/tensor/Reshape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/tensor/Reshape.h -------------------------------------------------------------------------------- /src/tensor/Tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/tensor/Tensor.h -------------------------------------------------------------------------------- /src/tensor/TensorBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/tensor/TensorBase.h -------------------------------------------------------------------------------- /src/tensor/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/tensor/Utility.h -------------------------------------------------------------------------------- /src/util/Algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/util/Algorithm.h -------------------------------------------------------------------------------- /src/util/Combinatorics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/util/Combinatorics.h -------------------------------------------------------------------------------- /src/util/Enumerate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/util/Enumerate.h -------------------------------------------------------------------------------- /src/util/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/util/Hash.h -------------------------------------------------------------------------------- /src/util/LinearAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/util/LinearAllocator.h -------------------------------------------------------------------------------- /src/util/Math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/util/Math.cpp -------------------------------------------------------------------------------- /src/util/Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/util/Math.h -------------------------------------------------------------------------------- /src/util/MultiIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/util/MultiIndex.h -------------------------------------------------------------------------------- /src/util/NullStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/util/NullStream.h -------------------------------------------------------------------------------- /src/util/Permutation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/util/Permutation.h -------------------------------------------------------------------------------- /src/util/Range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/util/Range.h -------------------------------------------------------------------------------- /src/util/Schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/util/Schema.h -------------------------------------------------------------------------------- /src/util/SchemaHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/util/SchemaHelper.h -------------------------------------------------------------------------------- /src/util/Scratch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/util/Scratch.h -------------------------------------------------------------------------------- /src/util/Sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/util/Sequence.h -------------------------------------------------------------------------------- /src/util/Stopwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/util/Stopwatch.h -------------------------------------------------------------------------------- /src/util/TablePrinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/util/TablePrinter.cpp -------------------------------------------------------------------------------- /src/util/TablePrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/util/TablePrinter.h -------------------------------------------------------------------------------- /src/util/Traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/util/Traits.h -------------------------------------------------------------------------------- /src/util/Typelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/util/Typelist.h -------------------------------------------------------------------------------- /src/util/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/util/Utility.h -------------------------------------------------------------------------------- /src/util/Zero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/util/Zero.cpp -------------------------------------------------------------------------------- /src/util/Zero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/src/util/Zero.h -------------------------------------------------------------------------------- /tandem.imp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/tandem.imp -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/basis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/test/basis.cpp -------------------------------------------------------------------------------- /test/form.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/test/form.cpp -------------------------------------------------------------------------------- /test/geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/test/geometry.cpp -------------------------------------------------------------------------------- /test/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/test/io.cpp -------------------------------------------------------------------------------- /test/main-mpi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/test/main-mpi.cpp -------------------------------------------------------------------------------- /test/main.cpp: -------------------------------------------------------------------------------- 1 | #define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN 2 | #include "doctest.h" 3 | -------------------------------------------------------------------------------- /test/parallel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/test/parallel.cpp -------------------------------------------------------------------------------- /test/quadrules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/test/quadrules.cpp -------------------------------------------------------------------------------- /test/script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/test/script.cpp -------------------------------------------------------------------------------- /test/simplex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/test/simplex.cpp -------------------------------------------------------------------------------- /test/tensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/test/tensor.cpp -------------------------------------------------------------------------------- /test/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAR-ERC/tandem/HEAD/test/util.cpp --------------------------------------------------------------------------------