├── .buildkite ├── pipeline.gcc7.yml ├── pipeline.generic.yml ├── pipeline.homebrew.yml ├── pipeline.pkg.yml ├── pipeline.testsuite.yml └── pipeline.yml ├── .clang-format ├── .codacy.yml ├── .devcontainer ├── Dockerfile ├── detect_platform.sh ├── devcontainer.json └── feelppconfig.sh ├── .dir-locals.el ├── .emacs-dirvars ├── .gitattributes ├── .github ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── PULL_REQUEST_TEMPLATE.md ├── SUPPORT.md ├── dependabot.yml ├── plan-ci.json ├── release.yml └── workflows │ ├── build_from_dispatch.yml │ ├── ci.yml │ ├── doxygen.yml │ ├── manual.yml │ ├── pkg-apptainer.yml │ ├── pkg-containers.yml │ ├── pkg-dist.yml │ ├── pkg-docker.yml │ ├── pkg-factory.yml │ ├── pkg-manual.yml │ ├── pkg.yml │ ├── scheduled-ci.yml │ ├── stale.yml │ └── version.yml ├── .gitignore ├── .gitmodules ├── .templates ├── README ├── README.tpl ├── TEMPLATE.cmake.tpl ├── TEMPLATE.cpp.tpl ├── TEMPLATE.dox.tpl ├── TEMPLATE.hpp.tpl ├── TEMPLATE.oct.tpl ├── TEMPLATE.py.tpl └── TEMPLATE.txt.tpl ├── .travis.yml ├── .vscode ├── c_cpp_properties.json ├── extensions.json ├── feelpp.code-snippets ├── keybindings.json ├── launch.json └── settings.json ├── AGENTS.md ├── CHANGELOG.adoc ├── CMakeLists.txt ├── CMakeLists.txt.user ├── CMakePresets.json ├── COPYING.adoc ├── CTestConfig.cmake ├── LICENSE ├── README.adoc ├── benchmarks ├── .gitignore ├── ATTIC │ ├── CMakeLists.txt │ ├── curl │ │ ├── CMakeLists.txt │ │ └── curl.hpp │ ├── darcy │ │ ├── CMakeLists.txt │ │ ├── cst.cfg │ │ └── darcy.hpp │ ├── hdg │ │ ├── CMakeLists.txt │ │ ├── README.adoc │ │ ├── beam.geo │ │ ├── beam3d.geo │ │ ├── cvg-el-tests │ │ │ ├── checker.json │ │ │ ├── cvgElasticity-Dir.json │ │ │ ├── cvgElasticity-Ibc.json │ │ │ ├── cvgElasticity-Neu.json │ │ │ ├── cvgElasticity-checker.json │ │ │ ├── cvgElasticity.cfg │ │ │ ├── cvgElasticity2D-Dir.json │ │ │ ├── cvgElasticity2D-Ibc.json │ │ │ ├── cvgElasticity2D-Neu.json │ │ │ ├── cvgElasticity2D.cfg │ │ │ ├── darcy2D.geo │ │ │ └── darcy3D.geo │ │ ├── cvg-mp-tests │ │ │ ├── checker.json │ │ │ ├── darcy.json │ │ │ ├── darcy2D.geo │ │ │ ├── darcy2DDir.cfg │ │ │ ├── darcy2DIBC.cfg │ │ │ ├── darcy2DNeu.cfg │ │ │ ├── darcy2DP0.cfg │ │ │ ├── darcy2DP1.cfg │ │ │ ├── darcy2DP2.cfg │ │ │ ├── darcy2DP3.cfg │ │ │ ├── darcy2DP4.cfg │ │ │ ├── darcy3D.geo │ │ │ ├── darcy3DDir.cfg │ │ │ ├── darcy3DIBC.cfg │ │ │ ├── darcy3DNeu.cfg │ │ │ ├── darcy3DP0.cfg │ │ │ ├── darcy3DP1.cfg │ │ │ ├── darcy3DP2.cfg │ │ │ ├── darcy3DP3.cfg │ │ │ ├── darcy3DP4.cfg │ │ │ ├── darcyGAMG.cfg │ │ │ └── darcyGASM.cfg │ │ ├── cvg_mixedelasticity.hpp │ │ ├── cvg_mixedelasticity_main.cpp │ │ ├── cvg_mixedpoisson.hpp │ │ ├── cvg_mixedpoisson_main.cpp │ │ ├── hdg_laplacian.hpp │ │ ├── hdg_laplacian_ibc.hpp │ │ ├── hdg_linear_elasticity.hpp │ │ ├── hdg_linear_elasticity_ibc.hpp │ │ ├── hdg_me │ │ │ ├── checker.json │ │ │ ├── hdg_elasticity.cfg │ │ │ ├── hdg_elasticity_ibc.cfg │ │ │ ├── quarter-turn2D-IBC.geo │ │ │ └── quarter-turn2D.geo │ │ ├── hdg_mp_ibc │ │ │ ├── hdg_laplacian_ibc.cfg │ │ │ └── quarter-turn2D-IBC.geo │ │ ├── le-beam-3d.cfg │ │ ├── le-beam.cfg │ │ ├── oneelt.msh │ │ ├── quarter-turn2D.geo │ │ ├── quarter-turn3D.geo │ │ ├── tetra.geo │ │ ├── tetra.msh │ │ ├── twoelt-p2.msh │ │ └── twoelt.msh │ ├── laplacian │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── cG │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── laplacian.hpp │ │ │ └── laplacianv.hpp │ │ ├── convergence.py │ │ └── nonlinearpow.cpp │ ├── logs.cpp │ ├── logs.hpp │ ├── magnetostatic │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── backend.cfg │ │ ├── batchGenerator.sh │ │ ├── displayRes.tex │ │ ├── logParser.sh │ │ ├── one_elet.geo │ │ ├── precAFP2D.geo │ │ ├── precAFP2D.mod │ │ ├── precAFP2D_poly.cfg │ │ ├── precAFP2D_sin.cfg │ │ ├── precAFP3D.geo │ │ ├── precAFP3D.mod │ │ ├── precAFP3D_poly.cfg │ │ ├── precAFP3D_sin.cfg │ │ ├── regul.cfg │ │ ├── regul │ │ │ ├── CMakeLists.txt │ │ │ ├── cv.cfg │ │ │ ├── cv.geo │ │ │ ├── cv.mod │ │ │ ├── torus_quart.cfg │ │ │ └── torus_quart.mod │ │ ├── saddle │ │ │ ├── CMakeLists.txt │ │ │ ├── backend_saddle.cfg │ │ │ ├── torus_quart_saddle.cfg │ │ │ └── torus_quart_saddle.mod │ │ ├── sphere.geo │ │ ├── test_precAFP.cpp │ │ ├── test_regul.cpp │ │ ├── torus_quart.geo │ │ └── two_elet.geo │ ├── mesh │ │ ├── CMakeLists.txt │ │ └── bench1.cpp │ ├── navierstokes │ │ ├── CMakeLists.txt │ │ ├── ethiersteinman │ │ │ ├── ethiersteinman.cpp │ │ │ ├── ethiersteinman.hpp │ │ │ ├── ethiersteinman3d.cpp │ │ │ ├── ethiersteinman_os12.cpp │ │ │ ├── ethiersteinman_osb1.cpp │ │ │ ├── ethiersteinman_osb2.cpp │ │ │ └── ethiersteinman_osin.cpp │ │ ├── kovasznay │ │ │ ├── CMakeLists.txt │ │ │ ├── kovasznay.cpp │ │ │ └── kovasznay.hpp │ │ ├── kovasznay2 │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── kovasznay.cpp │ │ │ ├── kovasznay.hpp │ │ │ ├── kovasznay2d.cpp │ │ │ ├── kovasznay_osin.cpp │ │ │ ├── kovasznay_osit.cpp │ │ │ ├── options.cpp │ │ │ └── options.hpp │ │ ├── nozzle │ │ │ ├── 2D_FDA_L.geo │ │ │ ├── CMakeLists.txt │ │ │ ├── FDA2.geo │ │ │ ├── cyl.geo │ │ │ ├── fda-2d.cfg │ │ │ ├── fda-3d.geo │ │ │ ├── geom1.geo │ │ │ ├── marche.cfg │ │ │ ├── marche.geo │ │ │ ├── ns_oseen.cfg │ │ │ ├── ns_oseen.cpp │ │ │ ├── ns_oseen_2d.cfg │ │ │ ├── step-erturk.cfg │ │ │ └── step-erturk.geo │ │ ├── phantom │ │ │ ├── CMakeLists.txt │ │ │ ├── Reseau_bifurcation.geo │ │ │ ├── display_flowrates.cpp │ │ │ ├── mean_uIn_80_1.dat │ │ │ ├── ns_phantom.cpp │ │ │ ├── phantom.bc │ │ │ ├── phantom.cfg │ │ │ ├── phantom_cst.bc │ │ │ ├── phantom_cst.cfg │ │ │ └── velocity_equation.cpp │ │ ├── poiseuille │ │ │ ├── CMakeLists.txt │ │ │ └── poiseuille.hpp │ │ ├── steps │ │ │ ├── 2Dsection.png │ │ │ ├── CMakeLists.txt │ │ │ ├── README.adoc │ │ │ ├── TurekHronExt3d │ │ │ │ ├── cfd.geo │ │ │ │ ├── cfd3.cfg │ │ │ │ ├── cfd3.json │ │ │ │ └── cfd_bis.geo │ │ │ ├── display_flowrates.cpp │ │ │ ├── fda-1.png │ │ │ ├── fda-sections.png │ │ │ ├── fda_2d.bc │ │ │ ├── fda_2d.cfg │ │ │ ├── fda_2d_lsc.cfg │ │ │ ├── fda_2d_simple.cfg │ │ │ ├── fda_3d.bc │ │ │ ├── fda_3d.cfg │ │ │ ├── fda_3d_2000.bc │ │ │ ├── fda_3d_3500.bc │ │ │ ├── fda_3d_500.bc │ │ │ ├── lsc.cfg │ │ │ ├── scripts │ │ │ │ ├── genFDAMesh.py │ │ │ │ └── mesh.json │ │ │ ├── simple.cfg │ │ │ ├── steady_ns.cpp │ │ │ ├── steady_ns_2d.bc │ │ │ ├── steady_ns_2d.cfg │ │ │ ├── steady_ns_3d.bc │ │ │ ├── steady_ns_3d.cfg │ │ │ ├── step_2d_lsc.cfg │ │ │ ├── step_2d_simple.cfg │ │ │ ├── step_3d_lsc.cfg │ │ │ ├── step_3d_simple.cfg │ │ │ └── unsteady_fda.cpp │ │ ├── stokes │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── sphere.cpp │ │ │ ├── stokes_stabilized.cpp │ │ │ ├── stokes_stabilized.hpp │ │ │ ├── timings.py │ │ │ └── timings_separate.py │ │ └── turek │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── TODO │ │ │ ├── benchmark_results.ps.gz │ │ │ ├── cylinder.m │ │ │ ├── data.cpp │ │ │ ├── data.hpp │ │ │ ├── figures │ │ │ ├── cylinder2d_geom.eps │ │ │ ├── cylinder2d_geom.png │ │ │ ├── cylinder_geom.eps │ │ │ └── cylinder_geom.png │ │ │ ├── report.bib │ │ │ ├── report.tex │ │ │ ├── turek.hpp │ │ │ ├── turek_d2o2g1.cpp │ │ │ ├── turek_d2o2g2.cpp │ │ │ ├── turek_d2o3g1.cpp │ │ │ ├── turek_d2o3g2.cpp │ │ │ ├── turek_d2o4g1.cpp │ │ │ ├── turek_d2o4g2.cpp │ │ │ ├── turek_d3o2g1.cpp │ │ │ ├── turek_d3o2g2.cpp │ │ │ ├── turek_d3o3g1.cpp │ │ │ ├── turek_d3o3g2.cpp │ │ │ ├── turek_d3o4g1.cpp │ │ │ ├── turek_d3o4g2.cpp │ │ │ ├── turek_impl.hpp │ │ │ └── turekapp.cpp │ ├── perf │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── assembly.cpp │ │ ├── assembly_2d.edp │ │ ├── assembly_3d.edp │ │ ├── bench1.hpp │ │ ├── bench1_impl.hpp │ │ ├── bench1_main.cpp │ │ ├── bench1_run.cpp │ │ ├── bench1_run1d.cpp │ │ ├── bench1_run2d.cpp │ │ ├── bench1_run3d.cpp │ │ ├── curvature │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── bench.cpp │ │ │ ├── curvature.cfg │ │ │ ├── curvature.hpp │ │ │ ├── curvature.tex │ │ │ └── plot_err.py │ │ ├── dar │ │ │ ├── CMakeLists.txt │ │ │ ├── bench.cpp │ │ │ ├── dar.cfg │ │ │ └── dar.hpp │ │ ├── io │ │ │ ├── CMakeLists.txt │ │ │ ├── bench_perf_io.cpp │ │ │ ├── bench_perf_io_vector.cpp │ │ │ └── io_perf_optimization.adoc │ │ ├── laplacian │ │ │ ├── CMakeLists.txt │ │ │ ├── bench.cpp │ │ │ ├── laplacian-ellipsoid.cfg │ │ │ ├── laplacian.cfg │ │ │ ├── laplacian.hpp │ │ │ └── laplacianv.hpp │ │ ├── mortar │ │ │ ├── CMakeLists.txt │ │ │ ├── bench.cpp │ │ │ ├── mortar.cfg │ │ │ └── mortar.hpp │ │ ├── perf2.cpp │ │ ├── stokes │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Kovasnay_Curved_Bottom │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bench.cpp │ │ │ │ ├── kovasnay_curve.cfg │ │ │ │ └── stokes_kovasnay_curve.hpp │ │ │ ├── Poiseuille │ │ │ │ ├── .gitignore │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── stokes.hpp │ │ │ │ ├── stokes_poiseuille.cpp │ │ │ │ └── stokes_poiseuille_test.cpp │ │ │ ├── bench.cpp │ │ │ ├── bercovierEngelmann.cfg │ │ │ ├── brain │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── brainVeines.msh │ │ │ │ ├── display_flowrates.cpp │ │ │ │ ├── stokes.cfg │ │ │ │ ├── stokes.cpp │ │ │ │ ├── stokes.geo │ │ │ │ ├── vincent_1.geo │ │ │ │ └── vincent_1.mesh │ │ │ ├── curvedtube.geo │ │ │ ├── curvedtube3d.geo │ │ │ ├── ethiersteinmann.cfg │ │ │ ├── ethiersteinmann.geo │ │ │ ├── exec.sh │ │ │ ├── kovasnay.cfg │ │ │ ├── kovasnay_curve.geo │ │ │ ├── kovasnaystraight1.geo │ │ │ ├── kovasnaystraight2.geo │ │ │ ├── poiseuille.cfg │ │ │ ├── poiseuille.geo │ │ │ ├── printstats.cpp │ │ │ ├── resultats │ │ │ │ └── bercovierengelman │ │ │ │ │ ├── 2D-P2P1-Simplex-10-all.dat │ │ │ │ │ ├── 2D-P3P2-Simplex-10-all.dat │ │ │ │ │ ├── 2D-P4P3-Simplex-10-all.dat │ │ │ │ │ └── 2D-P5P4-Simplex-10-all.dat │ │ │ ├── stokes.cfg │ │ │ ├── stokes.hpp │ │ │ ├── stokes_bench.cpp │ │ │ ├── stokes_bench_hc.cpp │ │ │ ├── stokes_kovaznay.cpp │ │ │ ├── stokes_pressure.cpp │ │ │ ├── stokes_pressure.hpp │ │ │ └── straighttube.geo │ │ └── tilted │ │ │ ├── CMakeLists.txt │ │ │ ├── README │ │ │ ├── bench.cpp │ │ │ ├── tilted.cfg │ │ │ ├── tilted.hpp │ │ │ ├── tilted1.msh │ │ │ ├── tilted2.msh │ │ │ ├── tilted3.msh │ │ │ ├── tilted4.msh │ │ │ ├── tilted5.msh │ │ │ └── tilted6.msh │ ├── python │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── batch_validation.py │ │ ├── codeCalcul.py │ │ ├── codeCalculParaview.py │ │ ├── displayGraphics.py │ │ ├── displaySolution.py │ │ ├── error.py │ │ ├── interface.py │ │ ├── test_error.py │ │ ├── test_xml.py │ │ ├── tests.py │ │ ├── tests2.py │ │ ├── tests_paraview.py │ │ ├── util.py │ │ ├── validation.py │ │ ├── view.py │ │ ├── view.ui │ │ └── xmlParser.py │ ├── structure │ │ ├── .gitignore │ │ ├── TODO │ │ ├── structureapp.cpp │ │ ├── structurebase.cpp │ │ ├── structurebase.hpp │ │ ├── stvenant_kirchhoff.hpp │ │ ├── stvenant_kirchhoff_d2p3.cpp │ │ ├── stvenant_kirchhoff_d2p8.cpp │ │ └── stvenant_kirchhoff_impl.hpp │ └── wrapper │ │ └── python │ │ ├── CMakeLists.txt │ │ ├── laplacian.hpp │ │ ├── laplacian1dP1.xml.in │ │ ├── laplacian1dP1_wrapper.cpp │ │ ├── laplacian1dP1test.py │ │ ├── laplacian_main.cpp │ │ ├── wrapper.hpp │ │ ├── wrapper1.py │ │ ├── wrapper1.xml.in │ │ ├── wrapper1_wrapper.cpp │ │ ├── wrapper1app.hpp │ │ └── wrapper1test.py ├── CMakeLists.txt ├── compilation │ ├── CMakeLists.txt │ ├── discr │ │ ├── CMakeLists.txt │ │ ├── pch.cpp.erb │ │ ├── pch2.cpp.erb │ │ ├── pch3.cpp.erb │ │ └── pch4.cpp.erb │ ├── headers │ │ ├── CMakeLists.txt │ │ ├── feel1.cpp │ │ ├── feelcore.cpp │ │ ├── feeldiscr.cpp │ │ ├── feelpoly.cpp │ │ └── feelvf.cpp │ ├── mesh │ │ ├── CMakeLists.txt │ │ ├── geoelement.cpp.erb │ │ ├── geoentity.cpp.erb │ │ ├── geomap.cpp.erb │ │ ├── geond.cpp.erb │ │ └── mesh.cpp.erb │ └── poly │ │ ├── CMakeLists.txt │ │ ├── lagrange2d.cpp.erb │ │ └── lagrange3d.cpp.erb └── feelpp │ ├── 01-env.cpp │ ├── 02-mesh.cpp │ ├── 03-space.cpp │ ├── 04-integrate.cpp │ ├── 99-specx.cpp │ ├── CMakeLists.txt │ └── gmc.cpp ├── bin └── feelpp ├── configure ├── data ├── .gitignore ├── CMakeLists.txt ├── genlist.sh ├── geo │ ├── Box_with_a_sphere.geo │ ├── Box_with_a_sphere.mesh │ ├── Cylref.geo │ ├── Cylref.med │ ├── Cylref.mesh │ ├── ReferenceTriangle.geo │ ├── aneurism │ │ ├── aneurysm.geo │ │ └── aneurysm.stl │ ├── aorta │ │ ├── aorta2.stl │ │ ├── aorta_centerlines.geo │ │ └── centerlinesAORTA.vtk │ ├── bean.geo │ ├── cantilever.geo │ ├── cube_cubeHole.geo │ ├── cube_twoMaterials.geo │ ├── fda │ │ ├── fda-2d.geo │ │ ├── fda_Re500_coarse.geo │ │ └── fda_Re500_fine.geo │ ├── feelpp │ │ ├── feel.geo │ │ ├── feel2d-ns.geo │ │ ├── feel3d-ns.geo │ │ └── feel3d.geo │ ├── geom3D_conductor.geo │ ├── life.geo │ ├── lncmi_bitter │ │ ├── BE-02-01M.stp │ │ ├── bitter-qs-electro.msh │ │ ├── bitter-qs-thermo.msh │ │ ├── bitter_meshgems.py │ │ ├── bitter_stl_be02-adapted.msh │ │ ├── bitter_stl_be02-coarse.msh │ │ ├── bitter_stl_be02-fine.msh │ │ ├── bitter_stl_be02.geo │ │ ├── bitter_stl_be02.msh │ │ └── bitter_stl_be02_2.msh │ ├── magnetostatic │ │ ├── torus3d.geo │ │ ├── torus3d_quart.geo │ │ ├── torus3d_quart_fer.geo │ │ ├── torusaxi.geo │ │ └── torusaxi_quart_fer.geo │ ├── marche.geo │ ├── one-elt-meshes-2d │ │ ├── one-elt-real-homo.msh │ │ ├── one-elt-real-rot1.msh │ │ ├── one-elt-real-rot2.msh │ │ ├── one-elt-ref.msh │ │ └── two_elements_mesh.msh │ ├── one-elt-meshes-3d │ │ ├── one-elt-real-homo-3d.msh │ │ ├── one-elt-real-rotx.msh │ │ ├── one-elt-real-roty.msh │ │ ├── one-elt-real-rotz.msh │ │ └── one-elt-ref-3d.msh │ ├── pelvis │ │ ├── pelvis.geo │ │ └── pelvis.stl │ ├── primitives │ │ ├── cylinder.geo │ │ ├── rectangle.geo │ │ └── torus.geo │ ├── square_squareHole.geo │ ├── square_twoMaterials.geo │ ├── steps │ │ └── step-elmann-2009.geo │ ├── tripod.geo │ ├── tripod.med │ └── tripod.mesh └── operatorlagrangep1 │ ├── CMakeLists.txt │ ├── hypercube-2d-lagrange-order2.msh │ ├── simplex-2d-lagrange-order2.msh │ ├── simplex-2d-lagrange-order3-equispaced.msh │ ├── simplex-2d-lagrange-order3-fekete.msh │ ├── simplex-2d-lagrange-order4-equispaced.msh │ ├── simplex-2d-lagrange-order4-fekete.msh │ ├── simplex-2d-lagrange-order5-equispaced.msh │ ├── simplex-2d-lagrange-order5-fekete.msh │ ├── simplex-3d-lagrange-order2.msh │ ├── simplex-3d-lagrange-order3-equispaced.msh │ └── simplex-3d-lagrange-order3-warpblend.msh ├── databases └── materials │ ├── fluid │ ├── air.json │ ├── blood.json │ └── water.json │ └── pure │ ├── copper.json │ ├── iron.json │ └── lead.json ├── doc ├── .gitignore ├── CMakeLists.txt ├── api │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Credits.doc │ ├── Doxyfile.in │ ├── Notations.doc │ ├── biblio.doc │ ├── eigen_navtree_hacks.js │ ├── examples.md │ ├── extract_command.sh │ ├── feel.css │ ├── feelppmacros.sty │ ├── footer.html │ ├── header.html │ ├── ignore_errors.sh │ ├── index.md │ ├── layout.xml │ ├── package-lock.json │ ├── package.json │ ├── pngs │ │ └── logos │ │ │ ├── cc-LGPL-a.png │ │ │ ├── feel_logo.png │ │ │ ├── feel_logo_small.png │ │ │ ├── google.png │ │ │ ├── home.png │ │ │ ├── logoIRMIA.png │ │ │ ├── logo_amies.png │ │ │ ├── logo_anr.png │ │ │ ├── logo_cemosis.png │ │ │ ├── logo_cnrs.png │ │ │ ├── logo_imati.jpg │ │ │ ├── logo_isle.jpeg │ │ │ ├── logo_isle.jpg │ │ │ ├── logo_ljk.png │ │ │ ├── logo_ra.png │ │ │ ├── logo_uc.png │ │ │ ├── logo_uds.png │ │ │ └── logo_ujf.jpg │ ├── preprocess.sh.in │ ├── tabs.css │ └── unpreprocess.pl ├── biblio │ ├── .gitignore │ ├── biblio.bib │ ├── feelpp-manual.bib │ ├── feelpp-thesis.bib │ └── feelpp.bib ├── common │ ├── GPL │ ├── LGPL │ ├── doxygen.css │ ├── footer.html │ ├── header.html │ ├── mainfooter.html │ └── mainheader.html ├── manual │ ├── .emacs-dirvars │ ├── .gitignore │ ├── CMakeLists.txt │ ├── accoustic │ │ ├── CMakeLists.txt │ │ ├── room.cpp │ │ ├── sound.cfg │ │ └── sound.cpp │ ├── adapt │ │ ├── CMakeLists.txt │ │ ├── Lshape.cfg │ │ ├── Lshape.cpp │ │ ├── Lshape3D.cfg │ │ ├── meshadaptfromls.cfg │ │ ├── meshadaptfromparamcurve.cpp │ │ ├── meshadaptfromsimplels.cpp │ │ ├── residualestimator.cpp │ │ ├── residualestimator.hpp │ │ ├── residualestimator.m │ │ └── residualestimator_oct.hpp │ ├── advection │ │ ├── CMakeLists.txt │ │ ├── advection.cfg │ │ ├── advection.cpp │ │ ├── dar_gals.cfg │ │ ├── dar_gals.cpp │ │ ├── feelpp_GaLS.cpp │ │ └── feelpp_advection.cpp │ ├── dd │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Decompositon.doc │ │ ├── dd.tex │ │ ├── ddframework.cpp │ │ ├── explicit.cpp │ │ ├── geneo.cfg │ │ ├── geneo.cpp │ │ ├── geneo_coefficients.cpp │ │ ├── geneo_coefficients.hpp │ │ ├── mortar.cpp │ │ ├── multi_levels.cpp │ │ ├── nonoverlapping.cpp │ │ ├── nonoverlappinggeo.cpp │ │ ├── overlapping_ddmethod.cpp │ │ ├── overlapping_ddmethodgeo.cpp │ │ ├── partitioning.cpp │ │ ├── threefields.cpp │ │ └── traces.cpp │ ├── eigen │ │ ├── CMakeLists.txt │ │ ├── cylinder.geo │ │ ├── eigen.doc │ │ ├── ge_curlcurl.cfg │ │ ├── ge_curlcurl.cpp │ │ ├── ge_laplacian.cfg │ │ ├── ge_laplacian.cpp │ │ ├── ge_laplacianv.cfg │ │ ├── ge_laplacianv.cpp │ │ ├── ge_sm.cfg │ │ ├── ge_sm.cpp │ │ ├── ge_stokes.cfg │ │ ├── ge_stokes.cpp │ │ ├── ge_stokes_curl.cfg │ │ └── ge_stokes_curl.cpp │ ├── eikonal │ │ ├── CMakeLists.txt │ │ ├── dist2curve.cfg │ │ ├── dist2curve.cpp │ │ ├── dist2curvefromfile.cpp │ │ ├── dist2curveho.cpp │ │ ├── dist2curvehoperiodic.cpp │ │ ├── dist2curveperf.cpp │ │ ├── dist2paramcurve.cpp │ │ ├── dist2paramsurface.cpp │ │ ├── dist2unorderpoints.cpp │ │ ├── dist2walls-hypercube.cfg │ │ ├── dist2walls.cpp │ │ ├── dist2wallsoptimized.cpp │ │ └── normalToBoundary.cpp │ ├── fd │ │ ├── CMakeLists.txt │ │ ├── mesh_2d.geo │ │ ├── mesh_3d.geo │ │ ├── penalisation.cpp │ │ ├── penalisation.doc │ │ ├── penalisation.hpp │ │ ├── penalisation2.cfg │ │ ├── penalisation2.cpp │ │ ├── penalisation3.cfg │ │ └── penalisation3.cpp │ ├── hdg │ │ ├── CMakeLists.txt │ │ ├── LinearElasticity │ │ │ ├── testElasticity.cfg │ │ │ └── testElasticity.json │ │ ├── double-integral │ │ │ ├── lc_integral.geo │ │ │ ├── test_integral.cfg │ │ │ └── test_integral.json │ │ ├── et.cfg │ │ ├── et.hpp │ │ ├── et2.hpp │ │ ├── et2_main.cpp │ │ ├── et_errchk.hpp │ │ ├── et_main.cpp │ │ ├── et_main_errchk.cpp │ │ ├── et_main_model.cpp.in │ │ ├── et_model.hpp │ │ ├── lamina-cribrosa │ │ │ ├── quarter-turn3D.geo │ │ │ ├── test3d0d.cfg │ │ │ └── test3d0d.json │ │ ├── lc_main_model.cpp │ │ ├── lc_model.hpp │ │ ├── mixed-elasticity │ │ │ ├── cvgElasticity.cfg │ │ │ ├── cvgElasticity.json │ │ │ ├── cylinder_traction.geo │ │ │ ├── darcy2D.geo │ │ │ ├── lc_elasticity.cfg │ │ │ ├── lc_elasticity.json │ │ │ ├── lc_elasticityRetina.cfg │ │ │ ├── lc_elasticityRetina.json │ │ │ ├── prism_traction.geo │ │ │ ├── quarter-turn3D.geo │ │ │ ├── testElasticity.cfg │ │ │ ├── testElasticity.geo │ │ │ ├── testElasticity.json │ │ │ ├── testElasticity3D.geo │ │ │ ├── testGeometric2D.cfg │ │ │ ├── testGeometric2D.json │ │ │ ├── testIBCelasticity.cfg │ │ │ └── testIBCelasticity.json │ │ ├── mixedpoissonelasticity.hpp │ │ ├── mixedpoissonelasticity_main.cpp │ │ ├── mixedstokes.cpp │ │ ├── quarter-turn │ │ │ ├── electro2D.json │ │ │ ├── electro3D.json │ │ │ ├── quarter-turn2D.cfg │ │ │ ├── quarter-turn2D.geo │ │ │ ├── quarter-turn3D.cfg │ │ │ ├── quarter-turn3D.geo │ │ │ ├── thermal2D.json │ │ │ └── thermal3D.json │ │ ├── readme.adoc │ │ └── red │ │ │ └── red.geo │ ├── heat │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── README.adoc │ │ ├── cases │ │ │ ├── cylindrical_cavity │ │ │ │ ├── cylindrical_cavity.cfg │ │ │ │ ├── cylindrical_cavity.geo │ │ │ │ ├── cylindrical_cavity.json │ │ │ │ ├── cylindrical_cavity2.geo │ │ │ │ ├── cylindrical_cavity_severalSurfaces.cfg │ │ │ │ ├── cylindrical_cavity_severalSurfaces.json │ │ │ │ ├── cylindrical_cavity_vf.json │ │ │ │ └── cylindrical_cavity_vf_severalSurfaces.json │ │ │ ├── rectangular_cavity │ │ │ │ ├── rectangular_cavity.cfg │ │ │ │ ├── rectangular_cavity.geo │ │ │ │ ├── rectangular_cavity.json │ │ │ │ └── rectangular_cavity_vf.json │ │ │ ├── rht │ │ │ │ ├── fin.geo │ │ │ │ ├── fin1 │ │ │ │ │ ├── fin.cfg │ │ │ │ │ └── fin3d.cfg │ │ │ │ ├── fin2d.json │ │ │ │ ├── fin3d.json │ │ │ │ └── fin4 │ │ │ │ │ ├── fin.cfg │ │ │ │ │ └── fin3d.cfg │ │ │ └── triangular_cavity │ │ │ │ ├── triangular_cavity.cfg │ │ │ │ ├── triangular_cavity.geo │ │ │ │ ├── triangular_cavity.json │ │ │ │ └── triangular_cavity_vf.json │ │ ├── fin_sink.cpp │ │ ├── ground-realistic-2.cfg │ │ ├── ground-realistic.cfg │ │ ├── ground.cfg │ │ ├── ground.cpp │ │ ├── ground2D.geo │ │ ├── heatsink.cfg │ │ ├── heatsink.cpp │ │ ├── heatsink.doc │ │ ├── heatsink2d.geo │ │ ├── muwave.cfg │ │ ├── muwave.cpp │ │ ├── muwave.geo │ │ ├── resistance.cpp │ │ ├── rht.cpp │ │ ├── specs.json │ │ ├── thermalfin.cfg │ │ ├── thermalfin.cpp │ │ └── thermalfin.geo │ ├── heatns │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── cavity │ │ │ ├── CMakeLists.txt │ │ │ ├── README.org │ │ │ ├── convection.cfg │ │ │ ├── convection_crb_specifics.cpp │ │ │ └── convection_main.cpp │ │ ├── convection.hpp │ │ ├── convection_crb.hpp │ │ ├── convection_crb_other.cpp │ │ ├── convection_crb_residual.cpp │ │ ├── convection_jacobian.cpp │ │ ├── convection_jacobian1.cpp │ │ ├── convection_jacobian2.cpp │ │ ├── convection_lo.cpp │ │ ├── convection_lo2.cpp │ │ ├── convection_other.cpp │ │ ├── convection_residual.cpp │ │ ├── convection_run.cpp │ │ ├── cooling │ │ │ └── README.adoc │ │ ├── functionSup.cpp │ │ ├── heatns.cfg │ │ ├── heatns.geo │ │ └── natural-convection-2d.tex │ ├── laplacian │ │ ├── CMakeLists.txt │ │ ├── Laplacian.doc │ │ ├── LaplacianParabolic.doc │ │ ├── cartesian.geo │ │ ├── error.hpp │ │ ├── feel.geo │ │ ├── feelpp_doc_laplacian_ot.xml │ │ ├── harmonic.cpp │ │ ├── laplacian.cfg │ │ ├── laplacian.cpp │ │ ├── laplacian.py │ │ ├── laplacian_bean.cfg │ │ ├── laplacian_bean.cpp │ │ ├── laplacian_block.cfg │ │ ├── laplacian_block.cpp │ │ ├── laplacian_cartesian.cfg │ │ ├── laplacian_dg.cfg │ │ ├── laplacian_dg.cpp │ │ ├── laplacian_dg2.cfg │ │ ├── laplacian_dg2.cpp │ │ ├── laplacian_dirac.cfg │ │ ├── laplacian_dirac.cpp │ │ ├── laplacian_full.cpp │ │ ├── laplacian_hypercube.cfg │ │ ├── laplacian_hypercube.cpp │ │ ├── laplacian_lagrange_multiplier.cfg │ │ ├── laplacian_lagrange_multiplier.cpp │ │ ├── laplacian_lagrange_multiplier2.cfg │ │ ├── laplacian_lagrange_multiplier2.cpp │ │ ├── laplacian_matlab.cpp │ │ ├── laplacian_matlab.m │ │ ├── laplacian_meshsupport.cfg │ │ ├── laplacian_meshsupport.cpp │ │ ├── laplacian_meshsupport.geo │ │ ├── laplacian_mixed.cfg │ │ ├── laplacian_mixed.cpp │ │ ├── laplacian_parabolic.cfg │ │ ├── laplacian_parabolic.cpp │ │ ├── laplacian_parabolic.geo │ │ ├── laplacian_periodic.cpp │ │ ├── laplacian_polar.cfg │ │ ├── laplacian_polar.cpp │ │ ├── laplacian_quad.cfg │ │ ├── laplacian_quad.cpp │ │ ├── laplacian_submesh.cpp │ │ ├── laplacian_with_holes.cpp │ │ ├── partition.cfg │ │ ├── partition.cpp │ │ ├── polar-cart.geo │ │ └── polar.geo │ ├── magnetostatic │ │ ├── CMakeLists.txt │ │ ├── ferromagnetostatic.cfg │ │ ├── ferromagnetostatic.cpp │ │ ├── magnetostatic.cfg │ │ ├── magnetostatic.cpp │ │ ├── magnetostatic.doc │ │ ├── magnetostatic2d.cfg │ │ ├── magnetostatic3d.cfg │ │ └── magnetostatic_saddle.cpp │ ├── maxwell │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── diode-hypercube.geo │ │ ├── diode-simplex.geo │ │ ├── diode.cfg │ │ ├── diode.cpp │ │ ├── diodegeo.cpp │ │ └── maxwell.tex │ ├── nirb │ │ ├── CMakeLists.txt │ │ ├── nirb.cpp │ │ └── nirb.hpp │ ├── nonlinear │ │ ├── .gitignore │ │ ├── 2D_FDA_L.geo │ │ ├── CMakeLists.txt │ │ ├── README.org │ │ ├── bratu.cpp │ │ ├── driven_cavity.cpp │ │ ├── kovasnay.cfg │ │ ├── kovasnaystraight2.geo │ │ ├── navierstokes.cpp │ │ ├── nlda-bratu.cfg │ │ ├── nlda-exactsolution1.cfg │ │ ├── nlda-pow.cfg │ │ ├── nlda.cpp │ │ ├── nonlinear.tex │ │ ├── nonlinearpow.cpp │ │ └── passerni.cfg │ ├── ns │ │ ├── CMakeLists.txt │ │ ├── boundarycondition.hpp │ │ ├── bs.cpp │ │ ├── drivencavity │ │ │ ├── CMakeLists.txt │ │ │ ├── drivencavity.cfg │ │ │ ├── drivencavity.hpp │ │ │ ├── drivencavity_2d.cpp │ │ │ ├── drivencavity_2d.geo │ │ │ ├── drivencavity_3d.cpp │ │ │ ├── drivencavity_3d.geo │ │ │ ├── drivencavity_impl.hpp │ │ │ └── drivencavity_main.cpp │ │ ├── ns.hpp │ │ ├── nsproj.cfg │ │ ├── nsproj.cpp │ │ ├── nsprojRecycling.cpp │ │ └── tubecylinder.geo │ ├── opt │ │ ├── CMakeLists.txt │ │ ├── circle_incs.geo │ │ ├── laplacian_nlopt.cfg │ │ ├── laplacian_nlopt.cpp │ │ └── qs_nlopt.cpp │ ├── pdfs │ │ ├── .gitignore │ │ ├── attention.pdf │ │ ├── danger.pdf │ │ ├── dd2dgeometry.pdf │ │ ├── dd2dmesh.pdf │ │ ├── notabene.pdf │ │ └── question.pdf │ ├── pngs │ │ ├── .gitignore │ │ ├── Laplacian │ │ │ ├── laplacian_1.png │ │ │ ├── laplacian_2.png │ │ │ ├── laplacian_3.png │ │ │ └── laplacian_Pid.png │ │ ├── Laplacian_parabolic_BDF1.png │ │ ├── Laplacian_parabolic_BDF2.png │ │ ├── Laplacian_parabolic_BDF3.png │ │ ├── Laplacian_parabolic_H1_error.png │ │ ├── Laplacian_parabolic_L2_error.png │ │ ├── debit_grashof.png │ │ ├── feel_logo.png │ │ ├── feel_logo_small.png │ │ ├── flow_grashof.png │ │ ├── heatsink │ │ │ ├── complete_cooler.png │ │ │ ├── figure_2d.png │ │ │ ├── figure_3d.png │ │ │ ├── heatsink_1.png │ │ │ ├── heatsink_1_gamma1.png │ │ │ ├── heatsink_1_gamma4.png │ │ │ ├── heatsink_3.png │ │ │ ├── heatsink_3_gamma1.png │ │ │ ├── heatsink_3_gamma4.png │ │ │ ├── mesh_2d.png │ │ │ ├── mesh_3d.png │ │ │ └── sink_geom.png │ │ ├── iter_1.png │ │ ├── iter_10.png │ │ ├── laplacian.png │ │ ├── laplacian_mesh.png │ │ ├── laplacian_warp.png │ │ ├── logo-ljk.png │ │ ├── mode-0.png │ │ ├── mode-1.png │ │ ├── mode-2.png │ │ ├── myadvection │ │ │ ├── sol-dar-1.png │ │ │ ├── sol-dar-2.png │ │ │ └── sol-dar-3.png │ │ ├── mymesh │ │ │ ├── hypercube_1.png │ │ │ ├── hypercube_2.png │ │ │ ├── hypercube_3.png │ │ │ ├── mesh3.png │ │ │ ├── mesh_cube.png │ │ │ ├── mesh_triangle.png │ │ │ ├── pelvis_msh.png │ │ │ ├── pelvis_stl.png │ │ │ └── simplex_3.png │ │ ├── mymeshpartition.png │ │ ├── stokes-p.png │ │ ├── stokes-u.png │ │ └── temp_grashof.png │ ├── python │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── feelpp-test.py │ │ ├── myfunctionspace.cfg │ │ ├── myfunctionspace.cpp │ │ ├── myfunctionspace.py │ │ ├── myintegrals.py │ │ ├── mylaplacian.py │ │ └── mymesh.py │ ├── solid │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── axi_1D.cpp │ │ ├── beam.cpp │ │ ├── linelaxi.cpp │ │ ├── stvenant_kirchhoff.cpp │ │ ├── stvenant_kirchhoff2.cfg │ │ └── stvenant_kirchhoff2.cpp │ ├── stokes │ │ ├── CMakeLists.txt │ │ ├── curvedtube.geo │ │ ├── stokes.cpp │ │ ├── stokes3d.cpp │ │ ├── stokes_curl.cfg │ │ ├── stokes_curl.cpp │ │ ├── stokes_dirichletlm.cpp │ │ ├── stokes_periodic.cpp │ │ ├── stokes_poiseuille.cpp │ │ ├── stokes_pressurelm.cpp │ │ └── straighttube.geo │ ├── stokes_1D │ │ ├── CMakeLists.txt │ │ ├── cylinder2D.geo │ │ ├── cylinder3D.geo │ │ ├── extrude_prisme.geo │ │ ├── stokes1D.cfg │ │ ├── stokes1D.cpp │ │ └── tige1D.geo │ ├── styles │ │ ├── .gitignore │ │ ├── fvrb.sty │ │ ├── nota.sty │ │ └── texcode.sty │ ├── tex │ │ ├── README.md │ │ ├── authors.tex │ │ ├── building.tex │ │ ├── crash_course.tex │ │ ├── feel-manual.dox │ │ ├── feel-manual.ist │ │ ├── feel.tex │ │ ├── feelpp-manual.tex │ │ ├── getting-started.tex │ │ ├── gfdl.tex │ │ ├── howto.tex │ │ ├── myadvection.tex │ │ ├── myapp.tex │ │ ├── myfunctionspace.tex │ │ ├── myintegrals.tex │ │ ├── mylaplacian.tex │ │ ├── mymesh.tex │ │ ├── mystokes.tex │ │ ├── randomnotes.tex │ │ ├── tips_n_tricks.tex │ │ └── version.tex.in │ └── tutorial.pos ├── snippets │ ├── CMakeLists.txt │ ├── bdfpod.cpp │ ├── dofboundary.cpp │ ├── dofneighbors.cpp │ ├── dofpoints.cpp │ ├── forms.cpp │ ├── meshho.cpp │ ├── perf.cpp │ ├── pmesh.cfg │ └── pmesh.cpp ├── stylesheet.css └── tex │ ├── feelalg.bib │ ├── feeloop.bib │ ├── feelsolver.bib │ ├── feelstyle.cls │ ├── feelv.bib │ ├── framed.sty │ └── rcs.sty ├── feelpp.package.cmake ├── feelpp.version.cmake ├── feelpp ├── CMakeLists.txt ├── cmake │ ├── CMakeLists.txt │ ├── codes │ │ └── try-mpiio.cpp │ ├── dashboard │ │ ├── .gitignore │ │ ├── ctest.cmake │ │ ├── feelbuild.sh │ │ ├── feelpp.site.cp-debian-stable.cmake │ │ ├── feelpp.site.cp-debian.cmake │ │ ├── feelpp.site.cp-ubuntu.cmake │ │ ├── feelpp.site.d-i7-2.cmake │ │ ├── feelpp.site.d-i7.cmake │ │ ├── feelpp.site.d-xeon.cmake │ │ ├── feelpp.site.euler.cmake │ │ ├── feelpp.site.io.cmake │ │ ├── feelpp.site.irma-atlas.cmake │ │ ├── feelpp.site.irma-hpc.cmake │ │ ├── feelpp.site.irma-hpc2.cmake │ │ ├── feelpp.site.m-prudhomme.cmake │ │ ├── linux.sh │ │ ├── mac.sh │ │ ├── old_linux.sh │ │ ├── setup.sh │ │ └── testsuite.cmake │ ├── eigen2feel.sh │ ├── machines │ │ ├── CMakeLists.txt │ │ ├── feelpp.machines.cineca.cmake │ │ ├── feelpp.machines.config.cmake │ │ ├── feelpp.machines.curie.cmake │ │ ├── feelpp.machines.debian64.cmake │ │ ├── feelpp.machines.froggy1.cmake │ │ ├── feelpp.machines.froggy2.cmake │ │ ├── feelpp.machines.homebrew.cmake │ │ ├── feelpp.machines.hpc-login.cmake │ │ ├── feelpp.machines.irma-atlas.cmake │ │ ├── feelpp.machines.irma-gaya.cmake │ │ ├── feelpp.machines.irma-hpc.cmake │ │ ├── feelpp.machines.login.cmake │ │ ├── feelpp.machines.lrz.cmake │ │ ├── feelpp.machines.occigen.cmake │ │ ├── feelpp.machines.rheticus.cmake │ │ ├── feelpp.machines.sd-87660.cmake │ │ ├── feelpp.machines.syrah.cmake │ │ └── feelpp.machines.turing.cmake │ ├── modules │ │ ├── .gitignore │ │ ├── ATTIC_FindGLOG.cmake │ │ ├── ATTIC_FindNLOpt.cmake │ │ ├── CMakeLists.txt │ │ ├── Feel++Config.cmake.in │ │ ├── FeelppContribConfig.cmake │ │ ├── FindANN.cmake │ │ ├── FindAsciidoctor.cmake │ │ ├── FindBerkeleyDB.cmake │ │ ├── FindCLN.cmake │ │ ├── FindCling.cmake │ │ ├── FindDDT.cmake │ │ ├── FindEigen2.cmake │ │ ├── FindEigen3.cmake │ │ ├── FindFFTW.cmake │ │ ├── FindFMILib.cmake │ │ ├── FindFeel++.cmake │ │ ├── FindGFLAGS.cmake │ │ ├── FindGINAC.cmake │ │ ├── FindGLPK.cmake │ │ ├── FindGMM.cmake │ │ ├── FindGMP.cmake │ │ ├── FindGmsh.cmake │ │ ├── FindGooglePerfTools.cmake │ │ ├── FindHARTS.cmake │ │ ├── FindHDF5.cmake.new │ │ ├── FindHDF5.cmake.old │ │ ├── FindMETIS.cmake │ │ ├── FindMKL.cmake │ │ ├── FindML.cmake │ │ ├── FindMPI4PY.cmake │ │ ├── FindMUMPS.cmake │ │ ├── FindMadLib.cmake │ │ ├── FindOMC.cmake │ │ ├── FindOctave.cmake │ │ ├── FindOpenTURNS.cmake │ │ ├── FindPETSC4PY.cmake │ │ ├── FindPackageMultipass.cmake │ │ ├── FindPythonModules.cmake │ │ ├── FindReadline.cmake │ │ ├── FindSLEPc.cmake │ │ ├── FindScotch.cmake │ │ ├── FindTBB.cmake │ │ ├── FindTrilinos.cmake │ │ ├── GitWatcher.cmake │ │ ├── ParseArguments.cmake │ │ ├── ResolveCompilerPaths.cmake │ │ ├── UseDoxygen.cmake │ │ ├── UseLATEX.cmake │ │ ├── contrib.dependencies.cmake │ │ ├── cotire.cmake │ │ ├── extradist.cmake.in │ │ ├── feelpp.adoc.cmake │ │ ├── feelpp.dependencies.cmake │ │ ├── feelpp.directive.cmake │ │ ├── feelpp.dirs.cmake │ │ ├── feelpp.extra.astyle.cmake │ │ ├── feelpp.extra.warnings.cmake │ │ ├── feelpp.generate.cling.interpreter.bash.cmake │ │ ├── feelpp.host.cmake │ │ ├── feelpp.install.cmake │ │ ├── feelpp.install.config.cmake.in │ │ ├── feelpp.interpreter.bash.cmake │ │ ├── feelpp.lib.install.cmake │ │ ├── feelpp.macros.cmake │ │ ├── feelpp.macros.om.cmake │ │ ├── feelpp.module.altair.cmake │ │ ├── feelpp.module.cereal.cmake │ │ ├── feelpp.module.cling.interpreter.cmake │ │ ├── feelpp.module.fmilib.cmake │ │ ├── feelpp.module.gmsh.cmake │ │ ├── feelpp.module.hana.cmake │ │ ├── feelpp.module.hpddm.cmake │ │ ├── feelpp.module.ipopt.cmake │ │ ├── feelpp.module.jsonlab.cmake │ │ ├── feelpp.module.kwsys.cmake │ │ ├── feelpp.module.metis.cmake │ │ ├── feelpp.module.mongocxx.cmake │ │ ├── feelpp.module.mor.cmake │ │ ├── feelpp.module.nlopt.cmake │ │ ├── feelpp.module.omc.cmake │ │ ├── feelpp.module.paralution.cmake │ │ ├── feelpp.module.petsc.cmake │ │ ├── feelpp.module.pybind11.cmake │ │ ├── feelpp.module.pyfeelpp.cmake │ │ ├── feelpp.module.quickstart.cmake │ │ ├── feelpp.module.toolboxes.cmake │ │ ├── feelpp.precompiled.headers.cmake │ │ ├── feelpp.sched.ccc.cmake │ │ ├── feelpp.sched.loadleveler.cmake │ │ ├── feelpp.sched.oar.cmake │ │ ├── feelpp.sched.slurm.cmake │ │ ├── feelpp.schedulers.cmake │ │ ├── metabench.cmake │ │ ├── omwrapper.cpp.in │ │ └── omwrapper.hpp.in │ └── templates │ │ ├── ot_python.xml.in │ │ └── ot_python_command_wrapper.cpp ├── contrib │ ├── .gitignore │ ├── CMakeLists.txt │ ├── boost │ │ ├── CMakeLists.txt │ │ ├── fusion │ │ │ └── include │ │ │ │ └── boost │ │ │ │ └── fusion │ │ │ │ └── container │ │ │ │ └── vector │ │ │ │ └── vector.hpp │ │ ├── mpi │ │ │ └── allocator.hpp │ │ ├── v1.69.0 │ │ │ └── boost │ │ │ │ └── mpi │ │ │ │ └── communicator.hpp │ │ └── v1.70.0 │ │ │ └── boost │ │ │ └── mpi │ │ │ └── communicator.hpp │ ├── gflags │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── .travis.yml │ │ ├── AUTHORS.txt │ │ ├── BUILD │ │ ├── CMakeLists.txt │ │ ├── COPYING.txt │ │ ├── ChangeLog.txt │ │ ├── INSTALL.md │ │ ├── README.md │ │ ├── WORKSPACE │ │ ├── appveyor.yml │ │ ├── bazel │ │ │ └── gflags.bzl │ │ ├── cmake │ │ │ ├── README_runtime.txt │ │ │ ├── config.cmake.in │ │ │ ├── execute_test.cmake │ │ │ ├── package.cmake.in │ │ │ ├── package.pc.in │ │ │ ├── utils.cmake │ │ │ └── version.cmake.in │ │ ├── src │ │ │ ├── config.h.in │ │ │ ├── gflags.cc │ │ │ ├── gflags.h.in │ │ │ ├── gflags_completions.cc │ │ │ ├── gflags_completions.h.in │ │ │ ├── gflags_completions.sh │ │ │ ├── gflags_declare.h.in │ │ │ ├── gflags_ns.h.in │ │ │ ├── gflags_reporting.cc │ │ │ ├── mutex.h │ │ │ ├── util.h │ │ │ ├── windows_port.cc │ │ │ └── windows_port.h │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ ├── config │ │ │ ├── CMakeLists.txt │ │ │ └── main.cc │ │ │ ├── flagfile.1 │ │ │ ├── flagfile.2 │ │ │ ├── flagfile.3 │ │ │ ├── gflags_build.py.in │ │ │ ├── gflags_declare_flags.cc │ │ │ ├── gflags_declare_test.cc │ │ │ ├── gflags_strip_flags_test.cc │ │ │ ├── gflags_strip_flags_test.cmake │ │ │ ├── gflags_unittest.cc │ │ │ ├── gflags_unittest_flagfile │ │ │ └── nc │ │ │ ├── CMakeLists.txt │ │ │ └── gflags_nc.cc │ ├── ginac │ │ ├── AUTHORS │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── CVSROOT │ │ │ ├── checkoutlist │ │ │ ├── commitinfo │ │ │ ├── config │ │ │ ├── cvswrappers │ │ │ ├── editinfo │ │ │ ├── loginfo │ │ │ ├── modules │ │ │ ├── notify │ │ │ ├── rcsinfo │ │ │ ├── taginfo │ │ │ └── verifymsg │ │ ├── ChangeLog │ │ ├── GiNaC.spec │ │ ├── GiNaC.spec.in │ │ ├── INSTALL │ │ ├── INSTALL.CMake │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── NEWS │ │ ├── README │ │ ├── acinclude.m4 │ │ ├── aclocal.m4 │ │ ├── check │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── bugme_chinrem_gcd.cpp │ │ │ ├── check_inifcns.cpp │ │ │ ├── check_lsolve.cpp │ │ │ ├── check_matrices.cpp │ │ │ ├── check_mul_info.cpp │ │ │ ├── check_numeric.cpp │ │ │ ├── error_report.h │ │ │ ├── exam_archive.cpp │ │ │ ├── exam_clifford.cpp │ │ │ ├── exam_color.cpp │ │ │ ├── exam_cra.cpp │ │ │ ├── exam_differentiation.cpp │ │ │ ├── exam_factor.cpp │ │ │ ├── exam_hashmap.cpp │ │ │ ├── exam_indexed.cpp │ │ │ ├── exam_inifcns.cpp │ │ │ ├── exam_inifcns_nstdsums.cpp │ │ │ ├── exam_inifcns_nstdsums.h │ │ │ ├── exam_lsolve.cpp │ │ │ ├── exam_matrices.cpp │ │ │ ├── exam_misc.cpp │ │ │ ├── exam_mod_gcd.cpp │ │ │ ├── exam_normalization.cpp │ │ │ ├── exam_numeric.cpp │ │ │ ├── exam_paranoia.cpp │ │ │ ├── exam_polygcd.cpp │ │ │ ├── exam_powerlaws.cpp │ │ │ ├── exam_pseries.cpp │ │ │ ├── exam_real_imag.cpp │ │ │ ├── exam_structure.cpp │ │ │ ├── factor_univariate_bug.cpp │ │ │ ├── genex.cpp │ │ │ ├── heur_gcd_bug.cpp │ │ │ ├── match_bug.cpp │ │ │ ├── mul_eval_memleak.cpp │ │ │ ├── numeric_archive.cpp │ │ │ ├── parser_bugs.cpp │ │ │ ├── parser_memleak.cpp │ │ │ ├── pgcd_infinite_loop.cpp │ │ │ ├── pgcd_relatively_prime_bug.cpp │ │ │ ├── randomize_serials.cpp │ │ │ ├── test_runner.h │ │ │ ├── time_antipode.cpp │ │ │ ├── time_dennyfliegner.cpp │ │ │ ├── time_fateman_expand.cpp │ │ │ ├── time_gammaseries.cpp │ │ │ ├── time_hashmap.cpp │ │ │ ├── time_lw_A.cpp │ │ │ ├── time_lw_B.cpp │ │ │ ├── time_lw_C.cpp │ │ │ ├── time_lw_D.cpp │ │ │ ├── time_lw_E.cpp │ │ │ ├── time_lw_F.cpp │ │ │ ├── time_lw_G.cpp │ │ │ ├── time_lw_H.cpp │ │ │ ├── time_lw_IJKL.cpp │ │ │ ├── time_lw_M1.cpp │ │ │ ├── time_lw_M2.cpp │ │ │ ├── time_lw_N.cpp │ │ │ ├── time_lw_O.cpp │ │ │ ├── time_lw_P.cpp │ │ │ ├── time_lw_Pprime.cpp │ │ │ ├── time_lw_Q.cpp │ │ │ ├── time_lw_Qprime.cpp │ │ │ ├── time_parser.cpp │ │ │ ├── time_toeplitz.cpp │ │ │ ├── time_uvar_gcd.cpp │ │ │ ├── time_vandermonde.cpp │ │ │ ├── timer.cpp │ │ │ └── timer.h │ │ ├── cmake │ │ │ └── modules │ │ │ │ ├── FindCLN.cmake │ │ │ │ ├── FindGiNaC.cmake │ │ │ │ ├── FindLibDL.cmake │ │ │ │ └── FindReadline.cmake │ │ ├── config.cmake.in │ │ ├── config │ │ │ ├── compile │ │ │ ├── config.guess │ │ │ ├── config.h.in │ │ │ ├── config.rpath │ │ │ ├── config.sub │ │ │ ├── depcomp │ │ │ ├── install-sh │ │ │ ├── ltmain.sh │ │ │ ├── mdate-sh │ │ │ ├── missing │ │ │ ├── test-driver │ │ │ ├── texinfo.tex │ │ │ └── ylwrap │ │ ├── configure │ │ ├── configure.ac │ │ ├── doc │ │ │ ├── CMakeLists.txt │ │ │ ├── CodingStyle │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── examples │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── archive1.cpp │ │ │ │ ├── compile1.cpp │ │ │ │ ├── compile2.cpp │ │ │ │ ├── compile3.cpp │ │ │ │ ├── derivative.cpp │ │ │ │ ├── ginac-examples.info │ │ │ │ ├── ginac-examples.texi │ │ │ │ ├── lanczos.cpp │ │ │ │ └── mystring.cpp │ │ │ ├── powerlaws.tex │ │ │ ├── reference │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── DoxyfileHTML.in │ │ │ │ ├── DoxyfilePDF.in │ │ │ │ ├── DoxyfileTEX.in │ │ │ │ ├── Doxyfooter.in │ │ │ │ ├── Makefile.am │ │ │ │ └── Makefile.in │ │ │ └── tutorial │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── classhierarchy.fig │ │ │ │ ├── ginac.info │ │ │ │ ├── ginac.texi │ │ │ │ ├── mdate-sh │ │ │ │ ├── repnaive.fig │ │ │ │ ├── reppair.fig │ │ │ │ ├── repreal.fig │ │ │ │ ├── stamp-vti │ │ │ │ ├── version.texi │ │ │ │ └── version.texi.cmake │ │ ├── ginac.pc.cmake │ │ ├── ginac.pc.in │ │ ├── ginac │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── add.cpp │ │ │ ├── add.h │ │ │ ├── archive.cpp │ │ │ ├── archive.h │ │ │ ├── assertion.h │ │ │ ├── basic.cpp │ │ │ ├── basic.h │ │ │ ├── class_info.h │ │ │ ├── clifford.cpp │ │ │ ├── clifford.h │ │ │ ├── color.cpp │ │ │ ├── color.h │ │ │ ├── compiler.h │ │ │ ├── constant.cpp │ │ │ ├── constant.h │ │ │ ├── container.h │ │ │ ├── crc32.h │ │ │ ├── ex.cpp │ │ │ ├── ex.h │ │ │ ├── excompiler.cpp.in │ │ │ ├── excompiler.h │ │ │ ├── expair.cpp │ │ │ ├── expair.h │ │ │ ├── expairseq.cpp │ │ │ ├── expairseq.h │ │ │ ├── exprseq.cpp │ │ │ ├── exprseq.h │ │ │ ├── factor.cpp │ │ │ ├── factor.h │ │ │ ├── fail.cpp │ │ │ ├── fail.h │ │ │ ├── fderivative.cpp │ │ │ ├── fderivative.h │ │ │ ├── flags.h │ │ │ ├── function.cpp │ │ │ ├── function.cppy │ │ │ ├── function.h │ │ │ ├── function.hppy │ │ │ ├── function.py │ │ │ ├── ginac.h │ │ │ ├── hash_map.h │ │ │ ├── hash_seed.h │ │ │ ├── idx.cpp │ │ │ ├── idx.h │ │ │ ├── indexed.cpp │ │ │ ├── indexed.h │ │ │ ├── inifcns.cpp │ │ │ ├── inifcns.h │ │ │ ├── inifcns_gamma.cpp │ │ │ ├── inifcns_nstdsums.cpp │ │ │ ├── inifcns_trans.cpp │ │ │ ├── integral.cpp │ │ │ ├── integral.h │ │ │ ├── lst.cpp │ │ │ ├── lst.h │ │ │ ├── matrix.cpp │ │ │ ├── matrix.h │ │ │ ├── mul.cpp │ │ │ ├── mul.h │ │ │ ├── ncmul.cpp │ │ │ ├── ncmul.h │ │ │ ├── normal.cpp │ │ │ ├── normal.h │ │ │ ├── numeric.cpp │ │ │ ├── numeric.h │ │ │ ├── operators.cpp │ │ │ ├── operators.h │ │ │ ├── parser │ │ │ │ ├── .gitignore │ │ │ │ ├── debug.h │ │ │ │ ├── default_reader.cpp │ │ │ │ ├── lexer.cpp │ │ │ │ ├── lexer.h │ │ │ │ ├── parse_binop_rhs.cpp │ │ │ │ ├── parse_context.cpp │ │ │ │ ├── parse_context.h │ │ │ │ ├── parser.cpp │ │ │ │ ├── parser.h │ │ │ │ └── parser_compat.cpp │ │ │ ├── polynomial │ │ │ │ ├── .gitignore │ │ │ │ ├── chinrem_gcd.cpp │ │ │ │ ├── chinrem_gcd.h │ │ │ │ ├── collect_vargs.cpp │ │ │ │ ├── collect_vargs.h │ │ │ │ ├── cra_garner.cpp │ │ │ │ ├── cra_garner.h │ │ │ │ ├── debug.h │ │ │ │ ├── divide_in_z_p.cpp │ │ │ │ ├── divide_in_z_p.h │ │ │ │ ├── euclid_gcd_wrap.h │ │ │ │ ├── eval_point_finder.h │ │ │ │ ├── eval_uvar.h │ │ │ │ ├── gcd_euclid.h │ │ │ │ ├── gcd_uvar.cpp │ │ │ │ ├── heur_gcd_uvar.h │ │ │ │ ├── interpolate_padic_uvar.h │ │ │ │ ├── mgcd.cpp │ │ │ │ ├── mod_gcd.cpp │ │ │ │ ├── mod_gcd.h │ │ │ │ ├── newton_interpolate.h │ │ │ │ ├── normalize.cpp │ │ │ │ ├── normalize.h │ │ │ │ ├── optimal_vars_finder.cpp │ │ │ │ ├── optimal_vars_finder.h │ │ │ │ ├── pgcd.cpp │ │ │ │ ├── pgcd.h │ │ │ │ ├── poly_cra.h │ │ │ │ ├── prem_uvar.h │ │ │ │ ├── primes_factory.h │ │ │ │ ├── primpart_content.cpp │ │ │ │ ├── remainder.cpp │ │ │ │ ├── remainder.h │ │ │ │ ├── ring_traits.h │ │ │ │ ├── smod_helpers.h │ │ │ │ ├── sr_gcd_uvar.h │ │ │ │ ├── upoly.h │ │ │ │ ├── upoly_io.cpp │ │ │ │ └── upoly_io.h │ │ │ ├── power.cpp │ │ │ ├── power.h │ │ │ ├── print.cpp │ │ │ ├── print.h │ │ │ ├── pseries.cpp │ │ │ ├── pseries.h │ │ │ ├── ptr.h │ │ │ ├── registrar.cpp │ │ │ ├── registrar.h │ │ │ ├── relational.cpp │ │ │ ├── relational.h │ │ │ ├── remember.cpp │ │ │ ├── remember.h │ │ │ ├── structure.h │ │ │ ├── symbol.cpp │ │ │ ├── symbol.h │ │ │ ├── symmetry.cpp │ │ │ ├── symmetry.h │ │ │ ├── tensor.cpp │ │ │ ├── tensor.h │ │ │ ├── tostring.h │ │ │ ├── utils.cpp │ │ │ ├── utils.h │ │ │ ├── version.h │ │ │ ├── wildcard.cpp │ │ │ └── wildcard.h │ │ ├── ginsh │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── ginsh.1.in │ │ │ ├── ginsh.h │ │ │ ├── ginsh_extensions.h │ │ │ ├── ginsh_fcn_help.py │ │ │ ├── ginsh_lexer.cpp │ │ │ ├── ginsh_lexer.ll │ │ │ ├── ginsh_lexer.lpp │ │ │ ├── ginsh_op_help.py │ │ │ ├── ginsh_parser.cpp │ │ │ ├── ginsh_parser.hpp │ │ │ ├── ginsh_parser.ypp │ │ │ └── ginsh_parser.yy │ │ ├── m4 │ │ │ ├── ax_cxx_compile_stdcxx.m4 │ │ │ ├── lib-ld.m4 │ │ │ ├── lib-link.m4 │ │ │ ├── lib-prefix.m4 │ │ │ ├── libtool.m4 │ │ │ ├── ltoptions.m4 │ │ │ ├── ltsugar.m4 │ │ │ ├── ltversion.m4 │ │ │ └── lt~obsolete.m4 │ │ ├── scripts │ │ │ ├── .gitignore │ │ │ ├── fixupind.py │ │ │ └── yaptu.py │ │ └── tools │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── ginac-excompiler.in │ │ │ ├── ginac-extern-math.h │ │ │ ├── viewgar.1.in │ │ │ └── viewgar.cpp │ ├── glog │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CMakeLists.txt │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── NEWS │ │ ├── README │ │ ├── README.windows │ │ ├── aclocal.m4 │ │ ├── cmake │ │ │ ├── DetermineGflagsNamespace.cmake │ │ │ └── INSTALL.md │ │ ├── compile │ │ ├── config.guess │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── depcomp │ │ ├── doc │ │ │ ├── designstyle.css │ │ │ └── glog.html │ │ ├── glog-config.cmake.in │ │ ├── google-glog.sln │ │ ├── install-sh │ │ ├── libglog.pc.in │ │ ├── ltmain.sh │ │ ├── m4 │ │ │ ├── ac_have_attribute.m4 │ │ │ ├── ac_have_builtin_expect.m4 │ │ │ ├── ac_have_sync_val_compare_and_swap.m4 │ │ │ ├── ac_rwlock.m4 │ │ │ ├── acx_pthread.m4 │ │ │ ├── google_namespace.m4 │ │ │ ├── libtool.m4 │ │ │ ├── ltoptions.m4 │ │ │ ├── ltsugar.m4 │ │ │ ├── ltversion.m4 │ │ │ ├── lt~obsolete.m4 │ │ │ ├── namespaces.m4 │ │ │ ├── pc_from_ucontext.m4 │ │ │ ├── stl_namespace.m4 │ │ │ └── using_operator.m4 │ │ ├── missing │ │ ├── mkinstalldirs │ │ ├── packages │ │ │ ├── deb.sh │ │ │ ├── deb │ │ │ │ ├── README │ │ │ │ ├── changelog │ │ │ │ ├── compat │ │ │ │ ├── control │ │ │ │ ├── copyright │ │ │ │ ├── docs │ │ │ │ ├── libgoogle-glog-dev.dirs │ │ │ │ ├── libgoogle-glog-dev.install │ │ │ │ ├── libgoogle-glog0.dirs │ │ │ │ ├── libgoogle-glog0.install │ │ │ │ └── rules │ │ │ ├── rpm.sh │ │ │ └── rpm │ │ │ │ └── rpm.spec │ │ ├── src │ │ │ ├── .gitignore │ │ │ ├── base │ │ │ │ ├── commandlineflags.h │ │ │ │ ├── googleinit.h │ │ │ │ └── mutex.h │ │ │ ├── config.h.cmake.in │ │ │ ├── config.h.in │ │ │ ├── config_for_unittests.h │ │ │ ├── demangle.cc │ │ │ ├── demangle.h │ │ │ ├── demangle_unittest.cc │ │ │ ├── demangle_unittest.sh │ │ │ ├── demangle_unittest.txt │ │ │ ├── glog │ │ │ │ ├── log_severity.h │ │ │ │ ├── logging.h.in │ │ │ │ ├── raw_logging.h.in │ │ │ │ ├── stl_logging.h.in │ │ │ │ └── vlog_is_on.h.in │ │ │ ├── googletest.h │ │ │ ├── logging.cc │ │ │ ├── logging_striplog_test.sh │ │ │ ├── logging_striptest10.cc │ │ │ ├── logging_striptest2.cc │ │ │ ├── logging_striptest_main.cc │ │ │ ├── logging_unittest.cc │ │ │ ├── logging_unittest.err │ │ │ ├── mock-log.h │ │ │ ├── mock-log_test.cc │ │ │ ├── raw_logging.cc │ │ │ ├── signalhandler.cc │ │ │ ├── signalhandler_unittest.cc │ │ │ ├── signalhandler_unittest.sh │ │ │ ├── stacktrace.h │ │ │ ├── stacktrace_generic-inl.h │ │ │ ├── stacktrace_libunwind-inl.h │ │ │ ├── stacktrace_powerpc-inl.h │ │ │ ├── stacktrace_unittest.cc │ │ │ ├── stacktrace_x86-inl.h │ │ │ ├── stacktrace_x86_64-inl.h │ │ │ ├── stl_logging_unittest.cc │ │ │ ├── symbolize.cc │ │ │ ├── symbolize.h │ │ │ ├── symbolize_unittest.cc │ │ │ ├── utilities.cc │ │ │ ├── utilities.h │ │ │ ├── utilities_unittest.cc │ │ │ ├── vlog_is_on.cc │ │ │ └── windows │ │ │ │ ├── config.h │ │ │ │ ├── glog │ │ │ │ ├── log_severity.h │ │ │ │ ├── logging.h │ │ │ │ ├── raw_logging.h │ │ │ │ ├── stl_logging.h │ │ │ │ └── vlog_is_on.h │ │ │ │ ├── port.cc │ │ │ │ ├── port.h │ │ │ │ └── preprocess.sh │ │ └── vsprojects │ │ │ ├── libglog │ │ │ └── libglog.vcproj │ │ │ ├── libglog_static │ │ │ └── libglog_static.vcproj │ │ │ ├── logging_unittest │ │ │ └── logging_unittest.vcproj │ │ │ └── logging_unittest_static │ │ │ └── logging_unittest_static.vcproj │ ├── gmsh │ │ ├── 2.8.5 │ │ │ ├── BasisFactory.h │ │ │ ├── MetricBasis.h │ │ │ └── OpenFile.h │ │ ├── 4.1.3 │ │ │ └── gmsh.h │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ └── patches │ │ │ ├── add-missing-headers.patch │ │ │ ├── alauzet.patch │ │ │ ├── clang.patch │ │ │ └── petsc.patch │ ├── metis │ │ ├── CMakeLists.txt │ │ ├── GKlib │ │ │ ├── BUILD.txt │ │ │ ├── CMakeLists.txt │ │ │ ├── GKlib.h │ │ │ ├── GKlibSystem.cmake │ │ │ ├── b64.c │ │ │ ├── blas.c │ │ │ ├── conf │ │ │ │ └── check_thread_storage.c │ │ │ ├── csr.c │ │ │ ├── error.c │ │ │ ├── evaluate.c │ │ │ ├── fkvkselect.c │ │ │ ├── fs.c │ │ │ ├── getopt.c │ │ │ ├── gk_arch.h │ │ │ ├── gk_defs.h │ │ │ ├── gk_externs.h │ │ │ ├── gk_getopt.h │ │ │ ├── gk_macros.h │ │ │ ├── gk_mkblas.h │ │ │ ├── gk_mkmemory.h │ │ │ ├── gk_mkpqueue.h │ │ │ ├── gk_mkpqueue2.h │ │ │ ├── gk_mkrandom.h │ │ │ ├── gk_mksort.h │ │ │ ├── gk_mkutils.h │ │ │ ├── gk_proto.h │ │ │ ├── gk_struct.h │ │ │ ├── gk_types.h │ │ │ ├── gkregex.c │ │ │ ├── gkregex.h │ │ │ ├── graph.c │ │ │ ├── htable.c │ │ │ ├── io.c │ │ │ ├── itemsets.c │ │ │ ├── mcore.c │ │ │ ├── memory.c │ │ │ ├── ms_inttypes.h │ │ │ ├── ms_stat.h │ │ │ ├── ms_stdint.h │ │ │ ├── omp.c │ │ │ ├── pdb.c │ │ │ ├── pqueue.c │ │ │ ├── random.c │ │ │ ├── rw.c │ │ │ ├── seq.c │ │ │ ├── sort.c │ │ │ ├── string.c │ │ │ ├── test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.in.old │ │ │ │ ├── Makefile.old │ │ │ │ ├── fis.c │ │ │ │ ├── gkgraph.c │ │ │ │ ├── gksort.c │ │ │ │ ├── rw.c │ │ │ │ └── strings.c │ │ │ ├── timers.c │ │ │ ├── tokenizer.c │ │ │ └── util.c │ │ ├── feelpp.metis.patch │ │ ├── include │ │ │ ├── CMakeLists.txt │ │ │ ├── feelmetis.h │ │ │ └── metis.h │ │ └── libmetis │ │ │ ├── CMakeLists.txt │ │ │ ├── auxapi.c │ │ │ ├── balance.c │ │ │ ├── bucketsort.c │ │ │ ├── checkgraph.c │ │ │ ├── coarsen.c │ │ │ ├── compress.c │ │ │ ├── contig.c │ │ │ ├── debug.c │ │ │ ├── defs.h │ │ │ ├── fm.c │ │ │ ├── fortran.c │ │ │ ├── frename.c │ │ │ ├── gklib.c │ │ │ ├── gklib_defs.h │ │ │ ├── gklib_rename.h │ │ │ ├── graph.c │ │ │ ├── initpart.c │ │ │ ├── kmetis.c │ │ │ ├── kwayfm.c │ │ │ ├── kwayrefine.c │ │ │ ├── macros.h │ │ │ ├── mcutil.c │ │ │ ├── mesh.c │ │ │ ├── meshpart.c │ │ │ ├── metislib.h │ │ │ ├── minconn.c │ │ │ ├── mincover.c │ │ │ ├── mmd.c │ │ │ ├── ometis.c │ │ │ ├── options.c │ │ │ ├── parmetis.c │ │ │ ├── pmetis.c │ │ │ ├── proto.h │ │ │ ├── refine.c │ │ │ ├── rename.h │ │ │ ├── separator.c │ │ │ ├── sfm.c │ │ │ ├── srefine.c │ │ │ ├── stat.c │ │ │ ├── stdheaders.h │ │ │ ├── struct.h │ │ │ ├── timing.c │ │ │ ├── util.c │ │ │ └── wspace.c │ ├── parmetis │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ ├── CMakeLists.txt │ │ │ └── parmetis.h │ │ └── libparmetis │ │ │ ├── CMakeLists.txt │ │ │ ├── akwayfm.c │ │ │ ├── ametis.c │ │ │ ├── balancemylink.c │ │ │ ├── comm.c │ │ │ ├── csrmatch.c │ │ │ ├── ctrl.c │ │ │ ├── debug.c │ │ │ ├── defs.h │ │ │ ├── diffutil.c │ │ │ ├── frename.c │ │ │ ├── gkmetis.c │ │ │ ├── gkmpi.c │ │ │ ├── graph.c │ │ │ ├── initbalance.c │ │ │ ├── initmsection.c │ │ │ ├── initpart.c │ │ │ ├── kmetis.c │ │ │ ├── kwayrefine.c │ │ │ ├── macros.h │ │ │ ├── match.c │ │ │ ├── mdiffusion.c │ │ │ ├── mesh.c │ │ │ ├── mmetis.c │ │ │ ├── move.c │ │ │ ├── msetup.c │ │ │ ├── node_refine.c │ │ │ ├── ometis.c │ │ │ ├── parmetislib.h │ │ │ ├── proto.h │ │ │ ├── pspases.c │ │ │ ├── redomylink.c │ │ │ ├── remap.c │ │ │ ├── rename.h │ │ │ ├── renumber.c │ │ │ ├── rmetis.c │ │ │ ├── selectq.c │ │ │ ├── serial.c │ │ │ ├── stat.c │ │ │ ├── struct.h │ │ │ ├── timer.c │ │ │ ├── util.c │ │ │ ├── wave.c │ │ │ ├── weird.c │ │ │ ├── wspace.c │ │ │ └── xyzpart.c │ └── petsc │ │ └── petsc.sh ├── feel │ ├── .gitignore │ ├── CMakeLists.txt │ ├── debug.areas │ ├── feel.hpp │ ├── feelalg │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── aitken.hpp │ │ ├── aitken2.hpp │ │ ├── alg.hpp │ │ ├── backend.cpp │ │ ├── backend.hpp │ │ ├── backendeigen.cpp │ │ ├── backendeigen.hpp │ │ ├── backendpetsc.cpp │ │ ├── backendpetsc.hpp │ │ ├── backendtrilinos.cpp │ │ ├── backendtrilinos.hpp │ │ ├── bfgs.hpp │ │ ├── boundingbox.hpp │ │ ├── cholesky.hpp │ │ ├── condenser.hpp │ │ ├── datamap.cpp │ │ ├── datamap.hpp │ │ ├── dummy.cpp │ │ ├── enums.cpp │ │ ├── enums.hpp │ │ ├── functionspetsc.cpp │ │ ├── functionspetsc.hpp │ │ ├── glas.hpp │ │ ├── glastransposed.hpp │ │ ├── graphcsr.cpp │ │ ├── graphcsr.hpp │ │ ├── iteration.hpp │ │ ├── ldl.hpp │ │ ├── lu.hpp │ │ ├── matrix.hpp │ │ ├── matrixblock.cpp │ │ ├── matrixblock.hpp │ │ ├── matrixcondensed.cpp │ │ ├── matrixcondensed.hpp │ │ ├── matrixeigendense.cpp │ │ ├── matrixeigendense.hpp │ │ ├── matrixeigensparse.cpp │ │ ├── matrixeigensparse.hpp │ │ ├── matrixepetra.cpp │ │ ├── matrixepetra.hpp │ │ ├── matrixpetsc.cpp │ │ ├── matrixpetsc.hpp │ │ ├── matrixshell.hpp │ │ ├── matrixshellsparse.cpp │ │ ├── matrixshellsparse.hpp │ │ ├── matrixsparse.hpp │ │ ├── matrixtriplet.hpp │ │ ├── matrixublas.hpp │ │ ├── matrixvalue.hpp │ │ ├── nullspace.cpp │ │ ├── nullspace.hpp │ │ ├── operator.hpp │ │ ├── operatortrilinos.hpp │ │ ├── petscguard.hpp │ │ ├── preconditioner.cpp │ │ ├── preconditioner.hpp │ │ ├── preconditionerifpack.cpp │ │ ├── preconditionerifpack.hpp │ │ ├── preconditionerml.cpp │ │ ├── preconditionerml.hpp │ │ ├── preconditionerpetsc.cpp │ │ ├── preconditionerpetsc.hpp │ │ ├── preconditionerpetscfeelpp.cpp │ │ ├── preconditionerpetsclsc.cpp │ │ ├── preconditionerpetscpatch.cpp │ │ ├── preconditionerpetscpcd.cpp │ │ ├── preconditionerpetscpmm.cpp │ │ ├── products.hpp │ │ ├── solverbase.hpp │ │ ├── solvereigen.cpp │ │ ├── solvereigen.hpp │ │ ├── solvereigenslepc.cpp │ │ ├── solvereigenslepc.hpp │ │ ├── solverlinear.hpp │ │ ├── solverlinearepetra.hpp │ │ ├── solverlinearpetsc.cpp │ │ ├── solverlinearpetsc.hpp │ │ ├── solverlineartrilinos.cpp │ │ ├── solverlineartrilinos.hpp │ │ ├── solvernonlinear.cpp │ │ ├── solvernonlinear.hpp │ │ ├── solvernonlinearpetsc.cpp │ │ ├── solvernonlinearpetsc.hpp │ │ ├── solvernonlineartrilinos.cpp │ │ ├── solvernonlineartrilinos.hpp │ │ ├── solverumfpack.cpp │ │ ├── solverumfpack.hpp │ │ ├── staticcondensation.cpp │ │ ├── staticcondensation.hpp │ │ ├── svd.hpp │ │ ├── topetsc.cpp │ │ ├── topetsc.hpp │ │ ├── traits.hpp │ │ ├── vector.cpp │ │ ├── vector.hpp │ │ ├── vectorblock.cpp │ │ ├── vectorblock.hpp │ │ ├── vectorcondensed.cpp │ │ ├── vectorcondensed.hpp │ │ ├── vectoreigen.cpp │ │ ├── vectoreigen.hpp │ │ ├── vectorepetra.cpp │ │ ├── vectorepetra.hpp │ │ ├── vectorpetsc.cpp │ │ ├── vectorpetsc.hpp │ │ ├── vectorublas.cpp │ │ ├── vectorublas.hpp │ │ └── vectorvalue.hpp │ ├── feelconfig.h.in │ ├── feelcore │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── _json.hpp │ │ ├── about.cpp │ │ ├── about.hpp │ │ ├── application.cpp │ │ ├── application.hpp │ │ ├── applicationmpi.cpp │ │ ├── applicationmpi.hpp │ │ ├── applicationxml.cpp │ │ ├── applicationxml.hpp │ │ ├── checker.cpp │ │ ├── checker.hpp │ │ ├── commobject.hpp │ │ ├── constants.hpp │ │ ├── context.hpp │ │ ├── core.hpp │ │ ├── dataset.hpp │ │ ├── debug.cpp │ │ ├── debug.hpp │ │ ├── debugeigen.hpp │ │ ├── disablewarnings.hpp │ │ ├── enumerate.hpp │ │ ├── enums.hpp │ │ ├── environment.cpp │ │ ├── environment.hpp │ │ ├── exceptions.cpp │ │ ├── factory.hpp │ │ ├── feel.cpp │ │ ├── feel.hpp │ │ ├── feelassert.hpp │ │ ├── feelcomplex.hpp │ │ ├── feelgmsh.hpp │ │ ├── feelio.cpp │ │ ├── feelio.hpp │ │ ├── feelmacros.hpp │ │ ├── feelmath.hpp │ │ ├── feelpetsc.hpp │ │ ├── feelslepc.hpp │ │ ├── feeltypes.hpp │ │ ├── flags.hpp │ │ ├── fmemopen.c │ │ ├── fmemopen.h │ │ ├── functors.hpp │ │ ├── git.cpp.in │ │ ├── git.hpp │ │ ├── hana.hpp │ │ ├── hashtables.hpp │ │ ├── hdf5.cpp │ │ ├── hdf5.hpp │ │ ├── info.cpp │ │ ├── info.hpp │ │ ├── journalfeed.hpp │ │ ├── journalmanager.cpp │ │ ├── journalmanager.hpp │ │ ├── journalwatcher.cpp │ │ ├── journalwatcher.hpp │ │ ├── json.hpp │ │ ├── mongocxx.cpp │ │ ├── mongocxx.hpp │ │ ├── mparam.hpp │ │ ├── mpfr-gmp.hpp │ │ ├── mpfr-impl.hpp │ │ ├── mpfr.cpp │ │ ├── mpfr.hpp │ │ ├── mpicompat.hpp │ │ ├── parameter.hpp │ │ ├── policy.hpp │ │ ├── pslogger.cpp │ │ ├── pslogger.hpp │ │ ├── ptr.hpp │ │ ├── ptreetools.cpp │ │ ├── ptreetools.hpp │ │ ├── pybind11_json.hpp │ │ ├── range.hpp │ │ ├── rank.hpp │ │ ├── reenablewarnings.hpp │ │ ├── remotedata.cpp │ │ ├── remotedata.hpp │ │ ├── remotedatackan.cpp │ │ ├── remotedatagirder.cpp │ │ ├── remotedatagithub.cpp │ │ ├── repository.cpp │ │ ├── repository.hpp │ │ ├── serialization.hpp │ │ ├── simget.cpp │ │ ├── simget.hpp │ │ ├── singleton.hpp │ │ ├── smartassert.cpp │ │ ├── smartassert.hpp │ │ ├── table.cpp │ │ ├── table.hpp │ │ ├── tabulateinformations.cpp │ │ ├── tabulateinformations.hpp │ │ ├── temp_file │ │ ├── termcolor.hpp │ │ ├── terminalproperties.cpp │ │ ├── terminalproperties.hpp │ │ ├── testsuite.hpp │ │ ├── timermap.hpp │ │ ├── timertable.hpp │ │ ├── timeutils.hpp │ │ ├── traits.hpp │ │ ├── tuple_utils.hpp │ │ ├── typeinfo.cpp │ │ ├── typeinfo.hpp │ │ ├── typetraits.hpp │ │ ├── ublastraits.hpp │ │ ├── units.hpp │ │ ├── unwrapptr.hpp │ │ ├── utility.cpp │ │ ├── utility.hpp │ │ ├── version.hpp │ │ ├── visitor.hpp │ │ ├── worldcomm.cpp │ │ ├── worldcomm.hpp │ │ ├── worldscomm.hpp │ │ ├── xmlparser.hpp │ │ ├── zip.cpp │ │ └── zip.hpp │ ├── feeldiscr │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── advreact.hpp │ │ ├── bases.hpp │ │ ├── basisfunctions.hpp │ │ ├── bdf.hpp │ │ ├── bdf2.hpp │ │ ├── check.hpp │ │ ├── context.hpp │ │ ├── createsubmesh.hpp │ │ ├── csrgraphblocks.hpp │ │ ├── detail │ │ │ ├── createelementvector.hpp │ │ │ ├── element_impl.hpp │ │ │ └── spacecontext.hpp │ │ ├── dh.hpp │ │ ├── dhpdh.hpp │ │ ├── discr.hpp │ │ ├── discretizationsdescr.hpp │ │ ├── dof.hpp │ │ ├── dofcomposite.hpp │ │ ├── doffromboundary.hpp │ │ ├── doffromedge.hpp │ │ ├── doffromelement.hpp │ │ ├── doffrommortar.hpp │ │ ├── doffromperiodic.hpp │ │ ├── doftable.hpp │ │ ├── doftablebase.hpp │ │ ├── doftablempi.hpp │ │ ├── dummy.cpp │ │ ├── elementdiv.hpp │ │ ├── elementproduct.hpp │ │ ├── enums.hpp │ │ ├── expansion.hpp │ │ ├── facet.hpp │ │ ├── fftmultiscale.hpp │ │ ├── fsfunctional.hpp │ │ ├── fsfunctionallinear.hpp │ │ ├── fsfunctionallinearcomposite.hpp │ │ ├── fsfunctionallinearfree.hpp │ │ ├── functionspace.hpp │ │ ├── functionspace_inst_pch_3d.cpp │ │ ├── functionspace_inst_pdh_3d.cpp │ │ ├── functionspace_inst_qch_3d.cpp │ │ ├── functionspace_inst_qdh_3d.cpp │ │ ├── functionspacebase.hpp │ │ ├── geometricspace.hpp │ │ ├── interpolate.hpp │ │ ├── localization.hpp │ │ ├── makemesh.hpp │ │ ├── measureofelementsatpoints.hpp │ │ ├── measures.hpp │ │ ├── mesh.cpp │ │ ├── mesh.hpp │ │ ├── mesh1.cpp │ │ ├── mesh2.cpp │ │ ├── mesh3.cpp │ │ ├── mesh_fwd.hpp │ │ ├── meshhighorder.cpp │ │ ├── meshhighorder.hpp │ │ ├── meshhighorderimpl.hpp │ │ ├── meshimpl.hpp │ │ ├── meshio.hpp │ │ ├── meshstructured.cpp │ │ ├── meshstructured.hpp │ │ ├── minmax.hpp │ │ ├── moch.hpp │ │ ├── mortar.hpp │ │ ├── multiscaleimage.hpp │ │ ├── nch.hpp │ │ ├── ned1h.hpp │ │ ├── odh.hpp │ │ ├── operator.hpp │ │ ├── operatorinterpolation.hpp │ │ ├── operatorlagrangep1.hpp │ │ ├── operatorlinear.hpp │ │ ├── operatorlinearcomposite.hpp │ │ ├── operatorlinearfree.hpp │ │ ├── operatorsteklovpoincare.hpp │ │ ├── operatortrace.hpp │ │ ├── oseen.hpp │ │ ├── oseendata.cpp │ │ ├── oseendata.hpp │ │ ├── p2ch.hpp │ │ ├── parameter.hpp │ │ ├── pch.cpp │ │ ├── pch.hpp │ │ ├── pchm.hpp │ │ ├── pchv.hpp │ │ ├── pdh.hpp │ │ ├── pdhm.hpp │ │ ├── pdhv.hpp │ │ ├── periodic.hpp │ │ ├── product.hpp │ │ ├── projector.hpp │ │ ├── quadptlocalization.hpp │ │ ├── quality.hpp │ │ ├── region.hpp │ │ ├── sensors.hpp │ │ ├── stencil.cpp │ │ ├── stencil.hpp │ │ ├── subelements.hpp │ │ ├── syncdofs.hpp │ │ ├── thch.hpp │ │ ├── timeset.cpp │ │ ├── timeset.hpp │ │ ├── traits.hpp │ │ ├── tsbase.hpp │ │ └── twospacesmap.hpp │ ├── feelevent │ │ ├── CMakeLists.txt │ │ ├── events.hpp │ │ ├── signalhandler.cpp │ │ ├── signalhandler.hpp │ │ ├── slothandler.cpp │ │ └── slothandler.hpp │ ├── feelfilters │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── convert2msh.hpp │ │ ├── converteracusimdatabase.hpp │ │ ├── creategmshmesh.hpp │ │ ├── databymeshentity.hpp │ │ ├── detail │ │ │ ├── fileindex.cpp │ │ │ ├── fileindex.hpp │ │ │ ├── mesh.hpp │ │ │ ├── meshcontiguousnumberingmapping.hpp │ │ │ └── meshfromgeoentity.hpp │ │ ├── domain.hpp │ │ ├── enums.hpp │ │ ├── exporter.hpp │ │ ├── exporterensight.hpp │ │ ├── exporterensight_impl.hpp │ │ ├── exporterensightgold.hpp │ │ ├── exporterensightgold_impl.hpp │ │ ├── exporterexodus.hpp │ │ ├── exporterfactoryhypercube.cpp │ │ ├── exporterfactorysimplex.cpp │ │ ├── exportergmsh.hpp │ │ ├── exportergmsh_impl.hpp │ │ ├── exportergnuplot.cpp │ │ ├── exportergnuplot.hpp │ │ ├── exporterimpl.hpp │ │ ├── exporterquick.hpp │ │ ├── exportervtk.hpp │ │ ├── exportervtk_impl.hpp │ │ ├── exporterxdmf.hpp │ │ ├── exporterxdmf_impl.hpp │ │ ├── feelppdatabase.hpp │ │ ├── filterfromvtk.hpp │ │ ├── filters.hpp │ │ ├── geo.hpp │ │ ├── geotool.cpp │ │ ├── geotool.hpp │ │ ├── geotoolshape.cpp │ │ ├── gmsh.cpp │ │ ├── gmsh.hpp │ │ ├── gmshellipsoiddomain.cpp │ │ ├── gmshellipsoiddomain.hpp │ │ ├── gmshenums.cpp │ │ ├── gmshenums.hpp │ │ ├── gmshhypercubedomain.cpp │ │ ├── gmshhypercubedomain.hpp │ │ ├── gmshsimplexdomain.cpp │ │ ├── gmshsimplexdomain.hpp │ │ ├── hbf.cpp │ │ ├── hbf.hpp │ │ ├── img2msh.hpp │ │ ├── importer.cpp │ │ ├── importer.hpp │ │ ├── importeracusimrawmesh.hpp │ │ ├── importercsv.cpp │ │ ├── importercsv.hpp │ │ ├── importergmsh.cpp │ │ ├── importergmsh.hpp │ │ ├── importersamcefmesh.hpp │ │ ├── loadcsv.cpp │ │ ├── loadcsv.hpp │ │ ├── loadgmshmesh.hpp │ │ ├── loadmesh.hpp │ │ ├── partitionio.hpp │ │ ├── periodicentities.hpp │ │ ├── pointsettomesh.hpp │ │ ├── savegmshmesh.hpp │ │ ├── straightenmesh.hpp │ │ ├── straightenmesh_impl.hpp │ │ ├── straightenmesh_inst_1d.cpp │ │ ├── straightenmesh_inst_1d_p2.cpp │ │ ├── straightenmesh_inst_2d.cpp │ │ ├── straightenmesh_inst_2d_ho.cpp │ │ ├── straightenmesh_inst_3d.cpp │ │ ├── straightenmesh_inst_3d_ho.cpp │ │ ├── unitcircle.hpp │ │ ├── unitcube.cpp │ │ ├── unitcube.hpp │ │ ├── unithypercube.hpp │ │ ├── unitsegment.cpp │ │ ├── unitsegment.hpp │ │ ├── unitsphere.hpp │ │ ├── unitsquare.cpp │ │ ├── unitsquare.hpp │ │ ├── vtkBaseInsituPipeline.cpp │ │ └── vtkBaseInsituPipeline.hpp │ ├── feelfit │ │ ├── CMakeLists.txt │ │ ├── enums.hpp │ │ ├── fit.hpp │ │ ├── interpolator.cpp │ │ └── interpolator.hpp │ ├── feelfmi │ │ ├── CMakeLists.txt │ │ ├── cssolver.hpp │ │ ├── fmi4cpp.hpp │ │ ├── fmu.cpp │ │ ├── fmu.hpp │ │ ├── fmumodel2.cpp │ │ ├── fmumodel2.hpp │ │ ├── fmumodelbase.hpp │ │ └── solverbase.hpp │ ├── feelhwsys │ │ ├── CMakeLists.txt │ │ ├── hwsys.hpp │ │ ├── hwsysbase.hpp │ │ └── kwsys.hpp │ ├── feelinfo.h.in │ ├── feells.hpp │ ├── feells │ │ ├── CMakeLists.txt │ │ ├── curveparametrizations.hpp │ │ ├── distancepointtoface.hpp │ │ ├── distancetomesh.hpp │ │ ├── distancetorange.hpp │ │ ├── disttocurve.hpp │ │ ├── disttoentityrange.hpp │ │ ├── eigenmap.hpp │ │ ├── extenderfrominterface.hpp │ │ ├── fastmarching.hpp │ │ ├── fastmarching_impl.hpp │ │ ├── fastmarchingdofstatus.hpp │ │ ├── feelpp.code-workspace │ │ ├── fmsheap.hpp │ │ ├── fmspoint.hpp │ │ ├── geometryconceptwrappers.hpp │ │ ├── ls.hpp │ │ ├── lstypes.hpp │ │ ├── reinit_fms.hpp │ │ ├── reinit_fms_impl.hpp │ │ ├── reinit_fms_inst_2d.cpp │ │ ├── reinit_fms_inst_2d_g2.cpp │ │ ├── reinit_fms_inst_3d.cpp │ │ ├── reinit_fms_inst_3d_g2.cpp │ │ ├── simplexeikonalsolver.hpp │ │ └── trianglesintersect.hpp │ ├── feelmaterial │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── air.cpp │ │ ├── air.hpp │ │ ├── castiron.cpp │ │ ├── castiron.hpp │ │ ├── material.cpp │ │ ├── material.hpp │ │ ├── materiallib.cpp │ │ └── materiallib.hpp │ ├── feelmath │ │ ├── CMakeLists.txt │ │ ├── jacobiellipticfunctions.hpp │ │ ├── polyfit.hpp │ │ ├── randint.hpp │ │ └── vector.hpp │ ├── feelmesh │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── bvh.cpp │ │ ├── bvh.hpp │ │ ├── complement.hpp │ │ ├── concatenate.hpp │ │ ├── convex.hpp │ │ ├── detail │ │ │ ├── concatenate.hpp │ │ │ ├── filters.hpp │ │ │ └── intersect.hpp │ │ ├── dump.hpp │ │ ├── edges.hpp │ │ ├── elements.hpp │ │ ├── entities.cpp │ │ ├── entities.hpp │ │ ├── entitymarkers.hpp │ │ ├── enums.hpp │ │ ├── faces.hpp │ │ ├── filters.hpp │ │ ├── functors.cpp │ │ ├── functors.hpp │ │ ├── geo0d.hpp │ │ ├── geoelement.hpp │ │ ├── geoentity.hpp │ │ ├── geond.hpp │ │ ├── hypercube.cpp │ │ ├── hypercube.hpp │ │ ├── hypercubeordering.hpp │ │ ├── intersect.hpp │ │ ├── iterator.hpp │ │ ├── kdtree.cpp │ │ ├── kdtree.hpp │ │ ├── lineordering.hpp │ │ ├── marker.cpp │ │ ├── marker.hpp │ │ ├── mesh0d.hpp │ │ ├── mesh1d.hpp │ │ ├── mesh2d.hpp │ │ ├── mesh3d.hpp │ │ ├── meshadaptation.hpp │ │ ├── meshbase.cpp │ │ ├── meshbase.hpp │ │ ├── meshfragmentation.hpp │ │ ├── meshmover.cpp │ │ ├── meshmover.hpp │ │ ├── meshpartitionset.hpp │ │ ├── meshsupport.hpp │ │ ├── meshsupportbase.hpp │ │ ├── meshutil.hpp │ │ ├── metric.hpp │ │ ├── migrate.hpp │ │ ├── partitionmesh.hpp │ │ ├── points.hpp │ │ ├── pointset.hpp │ │ ├── ranges.hpp │ │ ├── refentity.hpp │ │ ├── refhypercube.hpp │ │ ├── refsimplex.hpp │ │ ├── regiontree.cpp │ │ ├── regiontree.hpp │ │ ├── remesh.hpp │ │ ├── remesher.cpp │ │ ├── remesher.hpp │ │ ├── simplex.cpp │ │ ├── simplex.hpp │ │ ├── simplexordering.hpp │ │ ├── sphere.hpp │ │ ├── structuredgrid.hpp │ │ ├── submeshdata.hpp │ │ ├── surface.hpp │ │ └── traits.hpp │ ├── feelmodels │ │ ├── CMakeLists.txt │ │ ├── modelboundaryconditions.cpp │ │ ├── modelboundaryconditions.hpp │ │ ├── modelexpression.cpp │ │ ├── modelexpression.hpp │ │ ├── modelindexes.cpp │ │ ├── modelindexes.hpp │ │ ├── modelinitialconditions.cpp │ │ ├── modelinitialconditions.hpp │ │ ├── modelmarkers.cpp │ │ ├── modelmarkers.hpp │ │ ├── modelmaterials.cpp │ │ ├── modelmaterials.hpp │ │ ├── modelmodels.cpp │ │ ├── modelmodels.hpp │ │ ├── modeloutputs.cpp │ │ ├── modeloutputs.hpp │ │ ├── modelparameters.cpp │ │ ├── modelparameters.hpp │ │ ├── modelpostprocess.cpp │ │ ├── modelpostprocess.hpp │ │ ├── modelproperties.cpp │ │ └── modelproperties.hpp │ ├── feelom │ │ └── ommodel.hpp │ ├── feelopt │ │ ├── CMakeLists.txt │ │ ├── adbinaryfunctions.hpp │ │ ├── adbinaryfunctions.tmpl.hpp │ │ ├── adbinaryoperators.hpp │ │ ├── adbinaryoperators.tmpl.hpp │ │ ├── adexpr.hpp │ │ ├── adfstream.hpp │ │ ├── adfunctions.hpp │ │ ├── adfunctions.tmpl.hpp │ │ ├── adgenerate.cpp │ │ ├── adoperators.hpp │ │ ├── adtraits.hpp │ │ ├── adtype.hpp │ │ ├── adtypeorder0.hpp │ │ ├── adtypeorder1.hpp │ │ ├── adtypeorder2.hpp │ │ ├── dirscalingmatrix.hpp │ │ ├── enums.cpp │ │ ├── enums.hpp │ │ ├── glpk.cpp │ │ ├── glpk.hpp │ │ ├── nlopt.cpp │ │ ├── nlopt.hpp │ │ ├── problem.hpp │ │ ├── solverconstrained.hpp │ │ ├── solverunconstrained.hpp │ │ └── test_ad.cpp │ ├── feelpartition │ │ ├── CMakeLists.txt │ │ ├── csrgraphmetis.hpp │ │ ├── partition.hpp │ │ ├── partitioner.hpp │ │ ├── partitioner_impl.hpp │ │ ├── partitionerlinear.hpp │ │ ├── partitionerlinear_impl.hpp │ │ ├── partitionermetis.hpp │ │ └── partitionermetis_impl.hpp │ ├── feelpde │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── boundaryconditions.cpp │ │ ├── boundaryconditions.hpp │ │ ├── cg_laplacian.hpp │ │ ├── operatorpcd.hpp │ │ ├── operatorpcdbase.hpp │ │ ├── operatorpmm.hpp │ │ ├── operatorpmmbase.hpp │ │ ├── pde.hpp │ │ ├── preconditioneras.hpp │ │ ├── preconditionerblockms.hpp │ │ ├── preconditionerblockns.hpp │ │ └── reinit_fms.hpp │ ├── feelpoly │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── basis.hpp │ │ ├── boundadapted.hpp │ │ ├── boundaryadaptedpolynomialset.hpp │ │ ├── constrainedpolynomialset.hpp │ │ ├── context.hpp │ │ ├── continuity.hpp │ │ ├── crouzeixraviart.hpp │ │ ├── discontinuous.cpp │ │ ├── discontinuous.hpp │ │ ├── discontinuousinterfaces.hpp │ │ ├── dualbasis.hpp │ │ ├── dubiner.hpp │ │ ├── electrostatic.hpp │ │ ├── equispaced.hpp │ │ ├── expansions.hpp │ │ ├── expansiontypes.hpp │ │ ├── fe.hpp │ │ ├── fekete.hpp │ │ ├── functional.hpp │ │ ├── functionals.hpp │ │ ├── functionals2.hpp │ │ ├── functionalset.hpp │ │ ├── gauss.hpp │ │ ├── gausshypercube.cpp │ │ ├── gausslobatto.hpp │ │ ├── gausssimplex.cpp │ │ ├── geomap.cpp │ │ ├── geomap.hpp │ │ ├── geomapinv.hpp │ │ ├── h1polynomialset.hpp │ │ ├── hcurlpolynomialset.hpp │ │ ├── hdivpolynomialset.hpp │ │ ├── hermite.hpp │ │ ├── im.hpp │ │ ├── imexact.hpp │ │ ├── imfactory.hpp │ │ ├── imsimplex.cpp │ │ ├── imsimplex.hpp │ │ ├── imsimplex2.hpp │ │ ├── isp0continuous.hpp │ │ ├── jacobi.hpp │ │ ├── l2polynomialset.hpp │ │ ├── lagrange.hpp │ │ ├── lebesgue.hpp │ │ ├── legendre.hpp │ │ ├── mapped.hpp │ │ ├── moment.hpp │ │ ├── mortar.hpp │ │ ├── multiscalequadrature.hpp │ │ ├── nedelec.hpp │ │ ├── operations.hpp │ │ ├── orthogonalpolynomialset.hpp │ │ ├── orthonormalpolynomialset.hpp │ │ ├── parameter.hpp │ │ ├── pointsetinterpolation.hpp │ │ ├── pointsetquadrature.hpp │ │ ├── policy.hpp │ │ ├── poly.hpp │ │ ├── polynomial.hpp │ │ ├── polynomialset.hpp │ │ ├── polynomialset_impl.hpp │ │ ├── principal.hpp │ │ ├── quadmapped.hpp │ │ ├── raviartthomas.hpp │ │ ├── tensorisedboundadapted.hpp │ │ ├── test_equispaced.cpp │ │ ├── traits.hpp │ │ └── warpblend.hpp │ ├── feelpython │ │ ├── CMakeLists.txt │ │ ├── libPyFeelpp.cpp │ │ ├── libPyInteg.cpp │ │ ├── libPyLapla.cpp │ │ ├── pybind11 │ │ │ ├── eigen.h │ │ │ ├── embed.h │ │ │ ├── functional.h │ │ │ ├── json.h │ │ │ ├── mpi.h │ │ │ ├── numpy.h │ │ │ ├── pybind11.h │ │ │ ├── stl.h │ │ │ └── stl_bind.h │ │ ├── pyexpr.cpp │ │ ├── pyexpr.hpp │ │ └── sympy2ginac.py │ ├── feelsystem │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── system.hpp │ │ ├── systemexplicit.hpp │ │ ├── systemimplicit.hpp │ │ ├── systemimplicitlinear.hpp │ │ └── systemimplicitnonlinear.hpp │ ├── feeltiming │ │ ├── CMakeLists.txt │ │ ├── now.cpp │ │ ├── now.hpp │ │ ├── tic.hpp │ │ └── timer.hpp │ ├── feelts │ │ ├── CMakeLists.txt │ │ ├── bdf.hpp │ │ ├── cnab2.hpp │ │ ├── cnab2x2.hpp │ │ ├── newmark.hpp │ │ ├── timeset.cpp │ │ ├── timeset.hpp │ │ ├── ts.hpp │ │ ├── tsbase.cpp │ │ └── tsbase.hpp │ ├── feelvf │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── arithmetic.hpp │ │ ├── bilinearform.hpp │ │ ├── bilinearformbase.cpp │ │ ├── bilinearformbase.hpp │ │ ├── bilinearformcontext.hpp │ │ ├── binaryfunctor.hpp │ │ ├── block.hpp │ │ ├── blockforms.hpp │ │ ├── cast.hpp │ │ ├── convolve.hpp │ │ ├── cross.hpp │ │ ├── cst.hpp │ │ ├── databymeshentity.hpp │ │ ├── det.hpp │ │ ├── detail │ │ │ ├── clean.hpp │ │ │ ├── ginacbuildlibrary.cpp │ │ │ ├── ginacbuildlibrary.hpp │ │ │ ├── ginacex.hpp │ │ │ ├── ginacexvf.hpp │ │ │ ├── ginacmatrix.hpp │ │ │ ├── gmc.hpp │ │ │ └── integrator.hpp │ │ ├── dummy.cpp │ │ ├── eig.hpp │ │ ├── evaluator.hpp │ │ ├── evaluatorcontext.hpp │ │ ├── expr.cpp │ │ ├── expr.hpp │ │ ├── exprbase.cpp │ │ ├── exprbase.hpp │ │ ├── expressionevaluator.hpp │ │ ├── exproptionalconcat.hpp │ │ ├── eye.hpp │ │ ├── fec.hpp │ │ ├── flat.hpp │ │ ├── form.hpp │ │ ├── formcontextbase.hpp │ │ ├── function.hpp │ │ ├── function2.hpp │ │ ├── functionexpr.hpp │ │ ├── functordomain.cpp │ │ ├── functordomain.hpp │ │ ├── geometricdata.hpp │ │ ├── ginac.cpp │ │ ├── ginac.hpp │ │ ├── ginacbase.cpp │ │ ├── ginacbase.hpp │ │ ├── inner.hpp │ │ ├── integrate.hpp │ │ ├── integrator.hpp │ │ ├── integratordirac.hpp │ │ ├── inv.hpp │ │ ├── lambda.hpp │ │ ├── linearform.hpp │ │ ├── linearformcontext.hpp │ │ ├── matvec.hpp │ │ ├── mean.hpp │ │ ├── measure.hpp │ │ ├── minmax.hpp │ │ ├── msi.hpp │ │ ├── norm.hpp │ │ ├── norm2.hpp │ │ ├── normh1.hpp │ │ ├── norml2.hpp │ │ ├── norml2squared.hpp │ │ ├── normsemih1.hpp │ │ ├── on.hpp │ │ ├── one.hpp │ │ ├── ones.hpp │ │ ├── operations.hpp │ │ ├── operators.hpp │ │ ├── operators2.hpp │ │ ├── operators3.hpp │ │ ├── pattern.hpp │ │ ├── pow.hpp │ │ ├── print.hpp │ │ ├── products.hpp │ │ ├── projectors.hpp │ │ ├── rand.hpp │ │ ├── redux.hpp │ │ ├── set.hpp │ │ ├── shape.hpp │ │ ├── stdmathfunctors.hpp │ │ ├── symbolsexpr.cpp │ │ ├── symbolsexpr.hpp │ │ ├── symm.hpp │ │ ├── time.hpp │ │ ├── trace.hpp │ │ ├── trans.hpp │ │ ├── tresca.hpp │ │ ├── twovalued.hpp │ │ ├── unary.hpp │ │ ├── unaryfunctor.cpp │ │ ├── unaryfunctor.hpp │ │ ├── val.hpp │ │ ├── vf.hpp │ │ └── vonmises.hpp │ ├── feelviewfactor │ │ ├── CMakeLists.txt │ │ ├── kdtreevectorofvectorsadaptor.hpp │ │ ├── raytracingviewfactor.cpp │ │ ├── raytracingviewfactor.hpp │ │ ├── unobstructedplanarviewfactor.cpp │ │ ├── unobstructedplanarviewfactor.hpp │ │ ├── viewfactorbase.cpp │ │ ├── viewfactorbase.hpp │ │ └── viewfactorfactory.hpp │ ├── options.cpp │ └── options.hpp ├── quickstart │ ├── .tests.adr_2d │ ├── .tests.elasticity_2d │ ├── .tests.hdg_elasticity_2d │ ├── .tests.hdg_elasticity_3d │ ├── .tests.hdg_stokes_2d │ ├── .tests.hdg_stokes_3d │ ├── .tests.stokes_2d │ ├── .tests.stokes_3d │ ├── CMakeLists.txt │ ├── README.adoc │ ├── adr │ │ ├── CMakeLists.txt │ │ ├── README.adoc │ │ ├── circle │ │ ├── feelpp2d │ │ ├── feelpp3d │ │ └── square │ │ │ ├── README.adoc │ │ │ ├── square.cfg │ │ │ └── square.geo │ ├── configure │ ├── elasticity │ │ ├── cantilever │ │ │ ├── README.adoc │ │ │ ├── cantilever.cfg │ │ │ └── cantilever.geo │ │ ├── cantilever2 │ │ │ ├── README.adoc │ │ │ ├── cantilever.cfg │ │ │ └── cantilever.geo │ │ ├── quarter-turn │ │ │ ├── quarter-turn2D.cfg │ │ │ └── quarter-turn2D.geo │ │ ├── solenoid │ │ │ ├── solenoid.cfg │ │ │ ├── solenoid.geo │ │ │ └── solenoid.json │ │ ├── tetrahedron │ │ │ ├── checker.json │ │ │ ├── tetrahedron-ibc.cfg │ │ │ ├── tetrahedron-ibc.geo │ │ │ ├── tetrahedron.cfg │ │ │ └── tetrahedron.geo │ │ └── triangle │ │ │ ├── checker.json │ │ │ ├── triangle-ibc.cfg │ │ │ ├── triangle-ibc.geo │ │ │ ├── triangle-ibcode.cfg │ │ │ ├── triangle-ibcode.geo │ │ │ ├── triangle.cfg │ │ │ └── triangle.geo │ ├── laplacian.adoc │ ├── laplacian │ │ ├── .tests.hdg_laplacian_2d │ │ ├── .tests.hdg_laplacian_3d │ │ ├── .tests.hdg_laplacian_ibc_2d │ │ ├── .tests.hdg_laplacian_ibc_3d │ │ ├── .tests.laplacian_2d │ │ ├── .tests.laplacian_3d │ │ ├── CMakeLists.txt │ │ ├── cases │ │ │ ├── CMakeLists.txt │ │ │ ├── README.adoc │ │ │ ├── bitter │ │ │ │ ├── bitter-electro.cfg │ │ │ │ ├── bitter-thermo.cfg │ │ │ │ ├── bitter.cfg │ │ │ │ └── bitter.geo │ │ │ ├── circle │ │ │ │ ├── README.adoc │ │ │ │ ├── checker.json │ │ │ │ ├── circle-all.cfg │ │ │ │ ├── circle-all.geo │ │ │ │ ├── circle-dirichlet-2.cfg │ │ │ │ ├── circle-dirichlet.cfg │ │ │ │ ├── circle-dirichlet.geo │ │ │ │ ├── circle-neumann.cfg │ │ │ │ ├── circle-neumann.geo │ │ │ │ ├── circle-robin.cfg │ │ │ │ ├── circle-robin.geo │ │ │ │ ├── circle.cfg │ │ │ │ ├── circle.geo │ │ │ │ └── circle.json │ │ │ ├── feelpp2d │ │ │ │ ├── README.adoc │ │ │ │ ├── feelpp2d.cfg │ │ │ │ └── feelpp2d.geo │ │ │ ├── feelpp3d │ │ │ │ ├── feelpp3d.cfg │ │ │ │ └── feelpp3d.geo │ │ │ ├── quarter-turn │ │ │ │ ├── quarter-turn2D-ibc.cfg │ │ │ │ ├── quarter-turn2D-ibc.geo │ │ │ │ ├── quarter-turn2D.cfg │ │ │ │ ├── quarter-turn2D.geo │ │ │ │ ├── quarter-turn3D-ibc.cfg │ │ │ │ ├── quarter-turn3D-ibc.geo │ │ │ │ ├── quarter-turn3D.cfg │ │ │ │ └── quarter-turn3D.geo │ │ │ ├── square │ │ │ │ ├── square.cfg │ │ │ │ └── square.geo │ │ │ ├── tetrahedron │ │ │ │ ├── checker.json │ │ │ │ ├── tetrahedron-ibc.cfg │ │ │ │ ├── tetrahedron-ibc.geo │ │ │ │ ├── tetrahedron.cfg │ │ │ │ └── tetrahedron.geo │ │ │ ├── triangle │ │ │ │ ├── checker.json │ │ │ │ ├── triangle-ibc.cfg │ │ │ │ ├── triangle-ibc.geo │ │ │ │ ├── triangle-ibcode.cfg │ │ │ │ ├── triangle-ibcode.geo │ │ │ │ ├── triangle.cfg │ │ │ │ ├── triangle.geo │ │ │ │ ├── triangle.json │ │ │ │ └── triangle2.json │ │ │ └── unitcube │ │ │ │ ├── unitcube.cfg │ │ │ │ └── unitcube.geo │ │ ├── python │ │ │ ├── CMakeLists.txt │ │ │ └── laplacian.py │ │ ├── qs_hdg_laplacian.cpp │ │ ├── qs_hdg_laplacian_ibc.cpp │ │ ├── qs_hdg_laplacian_ibc_dt.cpp │ │ ├── qs_laplacian.cpp │ │ └── qs_laplacian_model.cpp │ ├── nullspace-rigidbody.hpp │ ├── prec-gamg-2.cfg │ ├── prec-gamg.cfg │ ├── prec-lu.cfg │ ├── python │ │ ├── CMakeLists.txt │ │ ├── elasticity.py │ │ └── stokes.py │ ├── qs_adr.cpp │ ├── qs_elasticity.cpp │ ├── qs_elasticity_pure_traction.cpp │ ├── qs_hdg_elasticity.cpp │ ├── qs_hdg_stokes.cpp │ ├── qs_stokes.cpp │ └── stokes │ │ ├── CMakeLists.txt │ │ ├── README.adoc │ │ ├── ethiersteinmann │ │ ├── ethiersteinmann.cfg │ │ ├── ethiersteinmann.geo │ │ └── ethiersteinmann.py │ │ ├── feelpp2d │ │ ├── feelpp2d.cfg │ │ └── feelpp2d.geo │ │ ├── kovasznay │ │ ├── kovasznay.cfg │ │ ├── kovasznay.geo │ │ └── kovasznay.py │ │ ├── square │ │ ├── checker.json │ │ ├── square.cfg │ │ └── square.geo │ │ ├── tetrahedron │ │ ├── checker.json │ │ ├── tetrahedron.cfg │ │ └── tetrahedron.geo │ │ └── triangle │ │ ├── checker.json │ │ ├── triangle-dn.cfg │ │ ├── triangle-dn.geo │ │ ├── triangle.cfg │ │ └── triangle.geo └── tools │ ├── CMakeLists.txt │ ├── check │ ├── .gitignore │ ├── CMakeLists.txt │ ├── check.cfg │ ├── check.cpp │ ├── check.py │ └── feelpp_check_ot.xml │ ├── databases │ ├── CMakeLists.txt │ ├── README.adoc │ ├── converter_database_acusim.cpp │ ├── export_database.cpp │ └── pod_database.cpp │ ├── fmi │ ├── CMakeLists.txt │ ├── fmu.adoc │ ├── fmu.cpp │ └── fmus │ │ └── bouncingball.cfg │ ├── info │ ├── CMakeLists.txt │ ├── info.adoc │ └── info.cpp │ ├── journal │ ├── README.adoc │ ├── journal_pack.py │ ├── journal_plot.py │ └── json │ │ ├── journal-1.json │ │ ├── journal-2.json │ │ ├── journal-3.json │ │ └── journal-4.json │ ├── lsan │ └── suppressions.txt │ ├── mesh │ ├── CMakeLists.txt │ ├── cases │ │ ├── partitioner_examples │ │ │ ├── case2d.cfg │ │ │ ├── case2d.json │ │ │ └── domain2d.geo │ │ ├── three-spheres-part.json │ │ └── three-spheres.geo │ ├── dump.hpp │ ├── exporter.adoc │ ├── mesh.cpp │ ├── mesh_exporter.cpp │ ├── mesh_exporter.hpp │ ├── mesh_partitioner.cpp │ ├── mesh_partitioner.hpp │ ├── mesh_partitioner_hypercube.cpp │ ├── mesh_partitioner_impl.hpp │ ├── mesh_partitioner_simplex.cpp │ ├── partitioner.adoc │ └── submesh.cpp │ ├── plot │ ├── CMakeLists.txt │ └── plot.cpp │ ├── polyvis │ ├── .gitignore │ ├── CMakeLists.txt │ ├── basisgen.hpp │ ├── crouzeixraviart.hpp │ ├── crouzeixraviart2d.cpp │ ├── crouzeixraviart3d.cpp │ ├── geom.cpp │ ├── hermite.cpp │ ├── hermite.hpp │ ├── hypercube.py │ ├── lagrange.hpp │ ├── lagrange1d.cpp │ ├── lagrange2d.cpp │ ├── lagrange3d.cpp │ ├── nedelec.hpp │ ├── nedelec2d.cpp │ ├── nedelec3d.cpp │ ├── nedelec3d.hpp │ ├── orthonormalpset.hpp │ ├── orthonormalpset1d.cpp │ ├── orthonormalpset2d.cpp │ ├── orthonormalpset3d.cpp │ ├── polysetvis.py │ ├── polyvis.cfg │ ├── polyvis.hpp │ ├── polyvisapp.cpp │ ├── polyvisbase.cpp │ ├── polyvisbase.hpp │ ├── raviartthomas.hpp │ ├── raviartthomas2d.cpp │ ├── raviartthomas3d.cpp │ └── simplex.py │ ├── remotedata │ ├── CMakeLists.txt │ ├── remotedata.adoc │ └── remotedata.cpp │ ├── scripts │ ├── CMakeLists.txt │ ├── ParaView │ │ ├── CMakeLists.txt │ │ ├── export-scene-macro.py │ │ ├── feelpp_screenshot │ │ └── insitu.base.py │ ├── astyle │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── feelpp.astyle.options │ │ └── feelpp.astyle.sh.in │ ├── bash │ │ └── feelpp_completion.sh │ ├── buildkite │ │ ├── CMakeLists.txt │ │ ├── build-osx.sh │ │ ├── common.sh │ │ ├── install-feelpp-lib.sh │ │ ├── install-feelpp.sh │ │ ├── list.sh │ │ ├── release.sh │ │ ├── ubuntu-16.04 │ │ │ ├── dev-env.sh │ │ │ ├── feelpp-lib.sh │ │ │ └── feelpp-models.sh │ │ └── ubuntu │ │ │ ├── dev-env.sh │ │ │ └── feelpp-lib.sh │ ├── docker │ │ ├── CMakeLists.txt │ │ ├── Dockerfile.template │ │ ├── feelpp_build.sh.in │ │ ├── feelpp_dockerize.adoc │ │ └── feelpp_dockerize.sh.in │ ├── doxygen │ │ ├── publish.sh │ │ └── publish_to_www.feelpp.org.sh │ ├── feel_get_tutorial.sh │ ├── github │ │ ├── README.adoc │ │ ├── gen_changelog.sh │ │ ├── issues.py │ │ ├── releases.sh │ │ └── upload.sh │ ├── onelab │ │ ├── README.md │ │ ├── onefeel.py │ │ └── syncData.py │ ├── pkg │ │ ├── CMakeLists.txt │ │ ├── Dockerfile │ │ ├── Dockerfile-dev │ │ ├── add_key.sh │ │ ├── bookworm │ │ ├── bullseye │ │ ├── feelpp_pbuilder.sh │ │ ├── feelpp_pkg.sh │ │ ├── feelpp_pkg_common.sh │ │ ├── feelpp_pkg_docker.sh │ │ ├── feelpp_pkg_publish.sh │ │ ├── focal │ │ ├── jammy │ │ ├── lunar │ │ ├── mantic │ │ ├── noble │ │ ├── publish-reprepro.sh │ │ └── trixie │ ├── stdcpp.sh │ └── travis │ │ ├── build-docker.sh │ │ └── build-osx.sh │ ├── sync_case │ ├── CMakeLists.txt │ ├── sync_case.adoc │ └── sync_case.cpp │ └── view_factor │ └── CMakeLists.txt ├── mor ├── .gitignore ├── CMakeLists.txt ├── CONTRIBUTING.adoc ├── COPYING.adoc ├── README.adoc ├── apps │ ├── CMakeLists.txt │ ├── README.adoc │ ├── crbonlinerun.cpp │ ├── onlinerun.adoc │ ├── opusheat │ │ ├── opusheat-cfpdes.cfg │ │ ├── opusheat-cfpdes.json │ │ ├── opusheat-heat.cfg │ │ ├── opusheat-heat.json │ │ └── opusheat.geo │ ├── thermalfin │ │ ├── crb_setup.json │ │ ├── crb_setup_3d.json │ │ ├── fin2d.geo │ │ ├── fin3d.geo │ │ ├── thermal-fin_2d.cfg │ │ ├── thermal-fin_3d.cfg │ │ └── toolbox_setup.json │ ├── toolboxmor_cfpdes.cpp │ ├── toolboxmor_heat.cpp │ ├── toolboxmor_heat.hpp │ └── toolboxmor_heat_offline.cpp ├── cases │ ├── nirb │ │ ├── lid-driven-cavity │ │ │ ├── lid-driven-cavity │ │ │ └── nirb_param.json │ │ ├── square │ │ │ ├── 2squares.cfg │ │ │ ├── 2squares.geo │ │ │ ├── 2squares.json │ │ │ ├── square.cfg │ │ │ ├── square.geo │ │ │ ├── square.json │ │ │ ├── square9.cfg │ │ │ ├── square9.geo │ │ │ └── square9.json │ │ └── thermal-fin-3d │ ├── testcase │ │ └── linear │ │ │ ├── linear.cfg │ │ │ ├── linear.json │ │ │ └── testcase.geo │ └── thermal-fin │ │ ├── 2d │ │ ├── fin.geo │ │ ├── thermal-fin.cfg │ │ └── thermal-fin.json │ │ └── 3d │ │ ├── fin.geo │ │ ├── thermal-fin.cfg │ │ └── thermal-fin.json ├── cmake │ ├── CMakeLists.txt │ ├── Feel++-MORConfig.cmake.in │ ├── UseCRB.cmake │ ├── feelpp-mor.package.cmake │ ├── feelpp.macros.mor.cmake │ ├── feelpp.mor.cmake │ ├── feelpp.mor.install.config.cmake.in │ └── feelpp.version.cmake ├── contrib │ └── CMakeLists.txt ├── examples │ ├── BenchmarkGrepl │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── README.adoc │ │ ├── benchmarkgrepl-linear-elliptic.cfg.in │ │ ├── benchmarkgrepl-linear-elliptic.cpp │ │ ├── benchmarkgrepl-linear-elliptic.hpp │ │ ├── benchmarkgrepl-linear-elliptic.xml.in │ │ ├── benchmarkgrepl-linear-elliptic1.cfg │ │ ├── benchmarkgrepl-linear-elliptic1.xml.in │ │ ├── benchmarkgrepl-linear-elliptic2.cfg │ │ ├── benchmarkgrepl-linear-elliptic2.xml.in │ │ ├── benchmarkgrepl-linear-elliptic3.cfg │ │ ├── benchmarkgrepl-linear-elliptic3.xml.in │ │ ├── benchmarkgrepl-nonlinear-elliptic.cfg.in │ │ ├── benchmarkgrepl-nonlinear-elliptic.hpp │ │ ├── benchmarkgrepl-nonlinear-elliptic.xml.in │ │ ├── benchmarkgrepl-nonlinear-elliptic1-2D.cfg │ │ ├── benchmarkgrepl-nonlinear-elliptic1-2D.xml.in │ │ ├── benchmarkgrepl-nonlinear-elliptic1-3D.cfg │ │ ├── benchmarkgrepl-nonlinear-elliptic1-3D.xml.in │ │ ├── benchmarkgrepl-nonlinear-elliptic1_ser.cfg │ │ ├── benchmarkgrepl-nonlinear-elliptic2-2D.cfg │ │ ├── benchmarkgrepl-nonlinear-elliptic2-2D.xml.in │ │ ├── benchmarkgrepl-nonlinear-elliptic2-3D.cfg │ │ ├── benchmarkgrepl-nonlinear-elliptic2-3D.xml.in │ │ ├── benchmarkgrepl-nonlinear-elliptic3-2D.cfg │ │ ├── benchmarkgrepl-nonlinear-elliptic3-2D.xml.in │ │ ├── benchmarkgrepl-nonlinear-elliptic3-3D.cfg │ │ ├── benchmarkgrepl-nonlinear-elliptic3-3D.xml.in │ │ ├── benchmarkgrepl-nonlinear-elliptic_impl.cpp │ │ ├── benchmarkgrepl-nonlinear-elliptic_inst2d.cpp │ │ ├── benchmarkgrepl-nonlinear-elliptic_inst3d.cpp │ │ ├── benchmarkgrepl-nonlinear-parabolic.hpp │ │ ├── benchmarkgrepl-nonlinear-parabolic3.cfg │ │ ├── benchmarkgrepl-nonlinear-parabolic3.xml.in │ │ ├── benchmarkgrepl-options.cpp │ │ ├── benchmarkgrepl-options.hpp │ │ ├── cube.geo │ │ ├── cube.mod │ │ └── grepl_fem.cpp │ ├── CMakeLists.txt │ ├── Cabineheat │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Cabineheat.cfg │ │ ├── Cabineheat.cpp │ │ ├── Cabineheat.hpp │ │ ├── Cabineheat.m │ │ └── Cabineheat.xml.in │ ├── Finalcabineheat │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Finalcabineheat.cfg │ │ ├── Finalcabineheat.cpp │ │ ├── Finalcabineheat.hpp │ │ ├── Finalcabineheat.m │ │ └── Finalcabineheat.xml.in │ ├── GeoHeatDiffusion │ │ ├── CMakeLists.txt │ │ ├── geoheatdiffusion.cpp │ │ ├── geoheatdiffusion.hpp │ │ ├── geoheatdiffusion.xml.in │ │ ├── geoheatdiffusion │ │ │ └── geoheatdiffusion.cfg │ │ └── geoheatdiffusionapp.cpp │ ├── Rbheat │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Rbheat.cfg │ │ ├── Rbheat.cpp │ │ ├── Rbheat.hpp │ │ ├── Rbheat.m │ │ ├── Rbheat.xml.in │ │ └── SAUVE_Rbheatapp.cpp │ ├── advection-diffusion-2d-1 │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── README.adoc │ │ ├── ad.cfg │ │ ├── ad.cpp │ │ ├── ad.hpp │ │ ├── ad.m │ │ ├── ad.xml.in │ │ ├── ad1crb.cfg │ │ ├── ad1crb.cpp │ │ ├── ad1pfem.cfg │ │ ├── ad1pfem.cpp │ │ ├── opusadcrb.xml.in │ │ ├── opusadpfem.xml.in │ │ └── opusadscm.xml.in │ ├── biotsavart │ │ ├── CMakeLists.txt │ │ ├── bancmesure │ │ │ ├── bancmesure.cfg │ │ │ └── bancmesure.json │ │ ├── biotsavart-alpha-electric.cpp │ │ ├── biotsavart-alpha-electric.hpp │ │ ├── biotsavart-alpha-electric_main.cpp │ │ ├── biotsavart.cpp │ │ ├── biotsavart.hpp │ │ ├── biotsavart_main.cpp │ │ ├── biotsavart_opt.cpp │ │ ├── bs-alpha-hel │ │ │ ├── alpha.cfg │ │ │ ├── alpha.geo │ │ │ └── alpha.json │ │ ├── bs-bancmesure │ │ │ ├── bancmesure1.cfg │ │ │ ├── bancmesure1.json │ │ │ ├── bancmesure2.cfg │ │ │ └── bancmesure2.json │ │ ├── bs-crb-HL-31-H1 │ │ │ ├── HL-31-H1.cfg │ │ │ └── HL-31-H1.json │ │ ├── bs-crb-quarterturn │ │ │ ├── quarter-turn3D.geo │ │ │ ├── quarterturn.cfg │ │ │ └── quarterturn.json │ │ ├── bs-crb-torus3d │ │ │ ├── torus3d.cfg │ │ │ ├── torus3d.geo │ │ │ └── torus3d.json │ │ └── readme.adoc │ ├── convection │ │ ├── CMakeLists.txt │ │ ├── cabin │ │ │ ├── CMakeLists.txt │ │ │ ├── cabin.cfg │ │ │ ├── cabin.geo │ │ │ ├── init.cpp │ │ │ ├── main.cpp │ │ │ └── specific.cpp │ │ ├── cavity │ │ │ ├── CMakeLists.txt │ │ │ ├── cavity.cfg │ │ │ ├── cavity2d.geo │ │ │ ├── cavity3d.geo │ │ │ ├── init.cpp │ │ │ ├── main.cpp │ │ │ └── specific.cpp │ │ ├── convection.hpp │ │ ├── jacobian.cpp │ │ ├── other.cpp │ │ ├── residual.cpp │ │ └── room │ │ │ ├── CMakeLists.txt │ │ │ ├── init.cpp │ │ │ ├── main.cpp │ │ │ ├── room2d.cfg │ │ │ ├── room2d.geo │ │ │ ├── room3d.cfg │ │ │ ├── room3d.geo │ │ │ └── specific.cpp │ ├── eads │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── eads.cpp │ │ ├── eads.hpp │ │ ├── eadscrb.cfg │ │ ├── eadscrbmain.cpp │ │ ├── eadsmfem.cfg │ │ ├── eadsmfemapp.cpp │ │ ├── eadsmfemapp.hpp │ │ ├── eadsmfemmain.cpp │ │ ├── eadspfem.cfg │ │ ├── eadspfemmain.cpp │ │ ├── eadsscm.cfg │ │ ├── eadsscmapp.cpp │ │ ├── eadsscmapp.hpp │ │ ├── eadsscmmain.cpp │ │ ├── octave │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── generate_lhs.m │ │ │ ├── moat.m │ │ │ ├── opuseadsmfem.cpp │ │ │ ├── opuseadsmfemtest.m │ │ │ ├── opuseadspfem.cpp │ │ │ ├── opuseadspfemtest.m │ │ │ ├── opuseadstest_lhs.m │ │ │ ├── pfemapp.m │ │ │ ├── plhs.m │ │ │ ├── plott.m │ │ │ ├── sobol_fst_order.m │ │ │ └── sobol_sd_order.m │ │ ├── opuscomponent.cpp │ │ ├── opuscomponent.hpp │ │ ├── opusdata.cpp │ │ ├── opusdata.hpp │ │ ├── opusdefs.hpp │ │ ├── opuseadsrb.cpp │ │ ├── opuseadsrb.hpp │ │ ├── opuseadsrb.xml.in │ │ ├── opuseadsrbtest.py │ │ ├── opusmodel.cpp │ │ ├── opusmodel.hpp │ │ ├── opusmodel_211.cpp │ │ ├── opusmodel_212.cpp │ │ ├── opusmodel_213.cpp │ │ ├── opusmodel_214.cpp │ │ ├── opusmodel_impl.hpp │ │ ├── opusmodelbase.cpp │ │ ├── opusmodelbase.hpp │ │ ├── opusmodelfactory.cpp │ │ ├── opusmodelfactory.hpp │ │ ├── opusmodelfluid.cpp │ │ ├── opusmodelfluid.hpp │ │ ├── opusmodelfluidoseen.cpp │ │ ├── opusmodelfluidoseen.hpp │ │ ├── opusmodelfluidpoiseuille.hpp │ │ ├── opusmodelrb.cpp │ │ ├── opusmodelrb.hpp │ │ ├── opusmodelrb_211.cpp │ │ ├── opusmodelrb_212.cpp │ │ ├── opusmodelrb_213.cpp │ │ ├── opusmodelrb_214.cpp │ │ ├── opusmodelrb_impl.hpp │ │ ├── opusmodelthermal.cpp │ │ ├── opusmodelthermal.hpp │ │ ├── opusthermal.geo │ │ └── python │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── OpenTernsTest.py │ │ │ ├── ct_thermique.py │ │ │ ├── generesample_mfem.py │ │ │ ├── lhhs.py │ │ │ ├── opuseads_lhs_sob_2.py │ │ │ ├── opuseads_mfem_lhs.py │ │ │ ├── opuseads_oat.py │ │ │ ├── opuseads_pfem_lhs.py │ │ │ ├── opuseadscrb.xml.in │ │ │ ├── opuseadscrb_wrapper.cpp │ │ │ ├── opuseadscrbtest.py │ │ │ ├── opuseadsmfem.xml.in │ │ │ ├── opuseadsmfem_wrapper.cpp │ │ │ ├── opuseadsmfemtest.py │ │ │ ├── opuseadspfem.xml.in │ │ │ ├── opuseadspfem_wrapper.cpp │ │ │ ├── opuseadspfemtest.py │ │ │ ├── opuseadstest_lhs.py │ │ │ ├── opuseadstest_lhs_1D.py │ │ │ └── opuseadstest_log_1D.py │ ├── eeg │ │ ├── CMakeLists.txt │ │ ├── diraniso │ │ ├── eeg.cfg │ │ ├── eeg.hpp │ │ ├── eeg.xml.in │ │ ├── eegpfem.cpp │ │ ├── eegscm.cpp │ │ └── real.msh │ ├── eye2brain │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── FunctionalChaos.hpp │ │ ├── README.adoc │ │ ├── compFE-RB.py │ │ ├── eye2brain.cpp │ │ ├── eye2brain.hpp │ │ ├── eye2brain │ │ │ ├── crb_param.json │ │ │ ├── eye-linear.cfg │ │ │ ├── eye-linear.json │ │ │ ├── eye2brain-2d.cfg │ │ │ ├── eye2brain-3d.cfg │ │ │ ├── paraview-plugin.json │ │ │ ├── pfem_compliant.slurm │ │ │ ├── post-process.json │ │ │ └── run_offline.slurm │ │ ├── plot-data.py │ │ ├── results.hpp │ │ ├── sensitivity_analysis.cpp │ │ └── tqdm │ │ │ ├── tqdm.h │ │ │ └── utils.h │ ├── grepldeim │ │ ├── CMakeLists.txt │ │ ├── grepldeim.cfg │ │ ├── grepldeim.hpp │ │ └── main.cpp │ ├── heat1d │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── README.adoc │ │ ├── heat1d.cfg │ │ ├── heat1d.cpp │ │ ├── heat1d.geo │ │ ├── heat1d.hpp │ │ ├── heat1d.m │ │ ├── heat1d.xml.in │ │ ├── heat1dfem.cpp │ │ ├── heat1dscm.cfg │ │ ├── heat1dscm.cpp │ │ ├── opusheat1dcrb.xml.in │ │ ├── opusheat1dpfem.xml.in │ │ └── opusheat1dscm.xml.in │ ├── heat2d │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── README.adoc │ │ ├── heat2d.cpp │ │ ├── heat2d.hpp │ │ ├── heat2d.xml.in │ │ ├── heat2d │ │ │ ├── heat2d.cfg │ │ │ └── heat2d.geo │ │ └── pngs │ │ │ ├── heat2d_geo.png │ │ │ └── heat2d_res.png │ ├── heat3d │ │ ├── CMakeLists.txt │ │ ├── README.adoc │ │ ├── heat3d.cpp │ │ ├── heat3d.hpp │ │ ├── heat3d.xml.in │ │ └── heat3d │ │ │ ├── heat3d.cfg │ │ │ ├── paraview-plugin.json │ │ │ └── tripod.geo │ ├── heatshield │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── MultiGridCfgUsedForScalability.cfg │ │ ├── heatshield-minimalversion.hpp │ │ ├── heatshield.cfg.in │ │ ├── heatshield.geo │ │ ├── heatshield.hpp │ │ ├── heatshield.m │ │ ├── heatshield.xml.in │ │ ├── heatshieldminimalversion.cfg.in │ │ ├── heatshieldminimalversion.xml.in │ │ ├── heatshieldminimalversion1.cfg │ │ ├── heatshieldminimalversion1.xml.in │ │ ├── heatshieldminimalversion1app.cpp │ │ ├── heatshieldminimalversion2.cfg │ │ ├── heatshieldminimalversion2.xml.in │ │ ├── heatshieldminimalversion2app.cpp │ │ ├── heatshieldminimalversion3.cfg │ │ ├── heatshieldminimalversion3.xml.in │ │ └── heatshieldminimalversion3app.cpp │ ├── heatsink-2d │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── heatsink2d.cfg │ │ ├── heatsink2d.cpp │ │ ├── heatsink2d.hpp │ │ ├── heatsink2d.m │ │ ├── heatsink2d.xml.in │ │ ├── heatsink2dapp.cpp │ │ ├── opusheatSink2dcrb.xml.in │ │ ├── opusheatSink2dpfem.xml.in │ │ └── opusheatSink2dscm.xml.in │ ├── helmholtz │ │ ├── CMakeLists.txt │ │ ├── anisotropic-wavespeed │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── aw.cfg │ │ │ ├── aw.hpp │ │ │ ├── aw.m │ │ │ └── aw.xml.in │ │ └── microphone │ │ │ ├── CMakeLists.txt │ │ │ ├── mic.cfg │ │ │ ├── mic.hpp │ │ │ ├── mic.m │ │ │ ├── mic.xml.in │ │ │ └── micapp.cpp │ ├── linearelasticity3d │ │ ├── CMakeLists.txt │ │ ├── README.adoc │ │ ├── linearelasticity3d.cpp │ │ ├── linearelasticity3d.hpp │ │ ├── linearelasticity3d.xml.in │ │ └── linearelasticity3d │ │ │ ├── linearelasticity3d.cfg │ │ │ └── tripod.geo │ ├── minimal │ │ ├── CMakeLists.txt │ │ ├── poisson │ │ │ ├── heatCRB.cfg │ │ │ ├── heatCRB.geo │ │ │ ├── heatCRB.json │ │ │ └── poissonFE.cfg │ │ ├── poissonCRB.cpp │ │ ├── poissonCRB.hpp │ │ ├── poissonCRB_main.cpp │ │ ├── poissonFE.cpp │ │ └── readme.adoc │ ├── opusheat │ │ ├── CMakeLists.txt │ │ ├── opusheat-stationary.cpp │ │ ├── opusheat-stationaryapp.cpp │ │ ├── opusheat.cpp │ │ ├── opusheat.hpp │ │ ├── opusheat.xml.in │ │ ├── opusheat │ │ │ ├── opusheat-stationary.cfg │ │ │ ├── opusheat.cfg │ │ │ └── opusheat.geo │ │ ├── opusheat_impl.cpp │ │ └── opusheatapp.cpp │ ├── stokesdeim │ │ ├── CMakeLists.txt │ │ ├── README.adoc │ │ ├── stokesdeim.cpp │ │ ├── stokesdeim.hpp │ │ ├── stokesdeim │ │ │ ├── stokesdeim.cfg │ │ │ └── stokesdeim.geo │ │ └── stokesdeimapp.cpp │ ├── thermalblock │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── python │ │ │ └── CMakeLists.txt │ │ ├── thermalblock-minimalversion.hpp │ │ ├── thermalblock-operatorsfree.hpp │ │ ├── thermalblock.cfg │ │ ├── thermalblock.hpp │ │ ├── thermalblock.m │ │ ├── thermalblock.xml.in │ │ ├── thermalblock21.geo │ │ ├── thermalblock33.geo │ │ ├── thermalblockcrb.cfg │ │ ├── thermalblockcrb.cpp │ │ ├── thermalblockfree.cfg │ │ ├── thermalblockfree.m │ │ ├── thermalblockfree.xml.in │ │ ├── thermalblockfreeapp.cpp │ │ ├── thermalblockgeo.cpp │ │ ├── thermalblockmain.cpp │ │ ├── thermalblockminimalversion.cfg │ │ ├── thermalblockminimalversion.m │ │ ├── thermalblockminimalversion.xml.in │ │ ├── thermalblockminimalversionapp.cpp │ │ ├── thermalblockpfem.cfg │ │ └── thermalblockpfem.cpp │ ├── thermalbuilding │ │ ├── CMakeLists.txt │ │ ├── README.adoc │ │ ├── thermalbuilding.cpp │ │ ├── thermalbuilding.hpp │ │ ├── thermalbuilding.xml.in │ │ ├── thermalbuilding │ │ │ ├── paraview-plugin.json │ │ │ ├── thermalbuilding.cfg │ │ │ └── thermalbuilding.geo │ │ └── thermalbuildingapp.cpp │ ├── thermalfin │ │ ├── CMakeLists.txt │ │ ├── thermalfin.cfg │ │ ├── thermalfin.geo │ │ ├── thermalfin.hpp │ │ ├── thermalfin.xml.in │ │ └── thermalfinapp.cpp │ ├── thermoelectric │ │ ├── CMakeLists.txt │ │ ├── alphaelectricFE_main.cpp │ │ ├── biotsavart-electric-alpha.cpp │ │ ├── biotsavart-electric-alpha.hpp │ │ ├── biotsavart-electric-alpha_main.cpp │ │ ├── biotsavart.hpp │ │ ├── biotsavart_main.cpp │ │ ├── biotsavartbase.hpp │ │ ├── bs-alpha-hel │ │ │ ├── HL-31-H1H4.cfg │ │ │ ├── HL-31-H1H4.json │ │ │ ├── HL-31_H1.cfg │ │ │ ├── HL-31_H1.json │ │ │ ├── alpha.cfg │ │ │ ├── alpha.geo │ │ │ ├── alpha.json │ │ │ ├── alpha2.cfg │ │ │ └── alpha2.json │ │ ├── crb-biotsavart │ │ │ ├── quarter-turn3D-wb.geo │ │ │ ├── quarterturn.cfg │ │ │ └── quarterturn.json │ │ ├── crb-electric-alpha │ │ │ ├── alpha.cfg │ │ │ ├── alpha.geo │ │ │ ├── alpha.json │ │ │ └── alpha.msh │ │ ├── crb-electric │ │ │ ├── quarterturn.cfg │ │ │ ├── quarterturn.geo │ │ │ └── quarterturn.json │ │ ├── crb-thermic │ │ │ ├── quarterturn.cfg │ │ │ └── quarterturn.json │ │ ├── crb-thermoelectric-linear │ │ │ ├── quarterturn.cfg │ │ │ └── quarterturn.json │ │ ├── crb-thermoelectric-nonlinear │ │ │ ├── quarterturn.cfg │ │ │ └── quarterturn.json │ │ ├── crb-thermoelectric-simple │ │ │ ├── quarterturn.cfg │ │ │ ├── quarterturn.geo │ │ │ └── quarterturn.json │ │ ├── electric-alpha.cpp │ │ ├── electric-alpha.hpp │ │ ├── electric-alpha_main.cpp │ │ ├── electric.cpp │ │ ├── electric.hpp │ │ ├── electric_main.cpp │ │ ├── readme.adoc │ │ ├── te-bancmesure │ │ │ ├── bancmesure1.cfg │ │ │ ├── bancmesure1.json │ │ │ ├── bancmesure2.cfg │ │ │ └── bancmesure2.json │ │ ├── test.cpp │ │ ├── test_eq.cpp │ │ ├── th-crb-quarterturn │ │ │ ├── nl-quarterturn.cfg │ │ │ ├── nl-quarterturn.json │ │ │ ├── quarter-turn3D.geo │ │ │ ├── quarterturn.cfg │ │ │ └── quarterturn.json │ │ ├── thermic.cpp │ │ ├── thermic.hpp │ │ ├── thermic_main.cpp │ │ ├── thermoelectric-linear.cpp │ │ ├── thermoelectric-linear.hpp │ │ ├── thermoelectric-linear_main.cpp │ │ ├── thermoelectric-nonlinear.cpp │ │ ├── thermoelectric-nonlinear.hpp │ │ ├── thermoelectric-nonlinear_main.cpp │ │ ├── thermoelectric-simple.cpp │ │ ├── thermoelectric-simple.hpp │ │ └── thermoelectric-simple_main.cpp │ └── unsteady_heat1d │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── opusunsteadyHeat1dcrb.xml.in │ │ ├── opusunsteadyHeat1dpfem.xml.in │ │ ├── opusunsteadyHeat1dscm.xml.in │ │ ├── unsteadyHeat1d.m │ │ ├── unsteadyHeat1d.xml.in │ │ ├── unsteadyheat │ │ └── unsteadyHeat1d.cfg │ │ ├── unsteadyheat1d.cpp │ │ └── unsteadyheat1d.hpp ├── mor │ └── feel │ │ └── feelmor │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── benchmark.dox │ │ ├── biotsavartrb.hpp │ │ ├── crb.cl │ │ ├── crb.cpp │ │ ├── crb.dox │ │ ├── crb.hpp │ │ ├── crb_trilinear.hpp │ │ ├── crbaero.hpp │ │ ├── crbapp.hpp │ │ ├── crbblock.hpp │ │ ├── crbclcontext.hpp │ │ ├── crbdata.hpp │ │ ├── crbdb.cpp │ │ ├── crbdb.hpp │ │ ├── crbelementsdb.hpp │ │ ├── crbenums.hpp │ │ ├── crbmodel.hpp │ │ ├── crbmodel_wrapper.cpp │ │ ├── crbmodelaero.hpp │ │ ├── crbmodelbase.hpp │ │ ├── crbmodelblock.hpp │ │ ├── crbmodeldb.cpp │ │ ├── crbmodeldb.hpp │ │ ├── crbmodeloutputs.cpp │ │ ├── crbmodeloutputs.hpp │ │ ├── crbmodelparameters.cpp │ │ ├── crbmodelparameters.hpp │ │ ├── crbmodelproperties.cpp │ │ ├── crbmodelproperties.hpp │ │ ├── crbmodelsaddlepoint.hpp │ │ ├── crbmodeltrilinear.hpp │ │ ├── crboptions.hpp │ │ ├── crbplugin.hpp │ │ ├── crbplugin_interface.cpp │ │ ├── crbplugin_interface.hpp │ │ ├── crbsaddlepoint.hpp │ │ ├── crbsaddlepointplugin.hpp │ │ ├── crbscm.cpp │ │ ├── crbscm.dox │ │ ├── crbscm.hpp │ │ ├── crbtrilinearplugin.hpp │ │ ├── crbwrapper.hpp │ │ ├── cvgstudy.hpp │ │ ├── deim.hpp │ │ ├── deimbase.hpp │ │ ├── deimmodel.hpp │ │ ├── eim.cpp │ │ ├── eim.hpp │ │ ├── eimoptions.hpp │ │ ├── empiricalquadrature.hpp │ │ ├── geim.hpp │ │ ├── mdeim.hpp │ │ ├── modelcrbbase.hpp │ │ ├── mormodels.cpp │ │ ├── mormodels.hpp │ │ ├── operatorlinearparametrized.hpp │ │ ├── options.hpp │ │ ├── opusapp.cpp │ │ ├── opusapp.hpp │ │ ├── opusapp_impl.hpp │ │ ├── opusappeigs.cpp │ │ ├── parameterspace.hpp │ │ ├── pbdw.hpp │ │ ├── pfemapp.cpp │ │ ├── pfemapp.hpp │ │ ├── pod.cpp │ │ ├── pod.hpp │ │ ├── podoptions.hpp │ │ ├── reducedbasisspace.hpp │ │ ├── ser.hpp │ │ ├── toolboxmor.cpp │ │ ├── toolboxmor.hpp │ │ └── toolboxmor_impl.hpp ├── research │ └── CMakeLists.txt ├── templates │ ├── octave_wrapper.cpp │ ├── ot_python_command_wrapper.cpp │ └── python_wrapper.cpp └── tests │ ├── CMakeLists.txt │ └── feelmor │ ├── CMakeLists.txt │ ├── feelpp.json │ ├── parameterspace.cfg │ ├── parameterspace.json │ ├── parameterspace_wrong.json │ ├── parameterspace_wrong2.json │ ├── test_crbmodelproperties.cpp │ ├── test_db.cfg │ ├── test_db.cpp │ ├── test_db.geo │ ├── test_deim.cpp │ ├── test_deim.geo │ ├── test_eim.cpp │ ├── test_eim_composite.cfg │ ├── test_eim_composite.cpp │ ├── test_eim_grepl.cpp │ ├── test_empiricalquadrature.cpp │ ├── test_exprevaluator.cpp │ ├── test_geim.cpp │ ├── test_geim.geo │ ├── test_parameterspace.cpp │ ├── test_pbdw.cpp │ ├── test_rbspace.cpp │ ├── test_rbspacevector.cpp │ └── test_reducedglobaldof.cpp ├── ports ├── Centos65 │ ├── boost.sh │ ├── coreInstall.sh │ ├── feelpp.sh │ ├── gmsh.sh │ ├── install.sh │ └── petsc.sh ├── README.md ├── ccma │ ├── boost.sh │ ├── env.sh │ ├── gmsh.sh │ └── petsc.sh ├── cesga │ ├── README.adoc │ ├── configure_feelpp.sh │ ├── environment │ ├── install.sh │ ├── install_boost.sh │ ├── install_cln.sh │ ├── install_cmake.sh │ ├── install_feelpp.sh │ ├── install_gmsh.sh │ ├── install_petsc.sh │ └── modules ├── curie │ ├── ATTIC │ │ ├── README.org │ │ ├── boost.sh │ │ ├── gmsh.sh │ │ ├── lapack.sh │ │ ├── petsc.sh │ │ └── slepc.sh │ ├── llvm.sh │ ├── petsc.sh │ └── slepc.sh ├── fermi │ ├── boost.sh │ ├── gmsh.sh │ ├── mpich.sh │ ├── ompi.sh │ ├── petsc.sh │ └── slepc.sh ├── froggy │ ├── Patches │ │ ├── ann-1.1.2+doc │ │ │ ├── 001-autotools-files.diff │ │ │ ├── 002-consider-pts-null.diff │ │ │ └── 003-annkFRSearch-default-argument.diff │ │ └── gcc-4.7.3-ppl-version.diff │ ├── Readme.md │ ├── ann.sh │ ├── autoconf.sh │ ├── automake.sh │ ├── cloog-parma.sh │ ├── feelpprc │ ├── freeride │ │ ├── bison.sh │ │ ├── gmsh-tetgen.sh │ │ ├── matplotlib.sh │ │ ├── numpy.sh │ │ ├── oce.sh │ │ ├── openturns.sh │ │ ├── patches │ │ │ ├── gmsh-tetgen │ │ │ │ ├── 00-change_shared_library_name.patch │ │ │ │ ├── 01-skip_license_file.patch │ │ │ │ ├── 02-fix_spelling_errors.patch │ │ │ │ ├── 03-delete_gl2ps_from_source.patch │ │ │ │ ├── 04-switch_from_opencascade_to_oce.patch │ │ │ │ ├── 05-api_demos.patch │ │ │ │ ├── 06-fix_FTBFS_linking.patch │ │ │ │ ├── 07-cgns.patch │ │ │ │ ├── 08-metis.patch │ │ │ │ ├── 09-alauzet.patch │ │ │ │ ├── 10-add-missing-headers.patch │ │ │ │ ├── 11-fix_gmshpy_import.patch │ │ │ │ ├── 12-fix_libdir.patch │ │ │ │ └── series │ │ │ ├── oce │ │ │ │ ├── 01-split-export.patch │ │ │ │ ├── 02-fix-Hurd.patch │ │ │ │ └── prerequisite.txt │ │ │ └── openturns-1.1 │ │ │ │ ├── 01-debian-soname.patch │ │ │ │ ├── 02-fix-bigendian.patch │ │ │ │ ├── 03-add-missing-header-file.patch │ │ │ │ ├── 04-tests-disable-timing.patch │ │ │ │ ├── 05-remove-soname-python-module.patch │ │ │ │ └── 06-install-froggy.patch │ │ ├── scipy.sh │ │ └── scripts │ │ │ ├── bitter.sh │ │ │ ├── crb_thermoelec.sh │ │ │ ├── feelpp-freeride.sh │ │ │ ├── heatcartnonlinear2DP1.sh │ │ │ └── test.sh │ ├── gcc47.sh │ ├── glpk.sh │ ├── gmp.sh │ ├── libedit.sh │ ├── libtool.sh │ ├── mpc.sh │ ├── mpfr.sh │ ├── petsc.sh │ └── ppl.sh ├── libc++ │ └── boost.sh ├── linux │ ├── CMake │ │ ├── CMakeLists.txt │ │ ├── Deps.cmake │ │ ├── feelpp.profile.in │ │ ├── get_distrib.sh.in │ │ └── setup_env.sh.in │ ├── ParaView.sh │ ├── asciidoctor-latex.sh │ ├── gcc-4.9.0.sh │ ├── gmsh.sh │ ├── mkl.sh │ ├── openmpi.sh │ ├── petsc.sh │ └── scorep.sh ├── macosx │ ├── attic │ │ ├── macports-xc5 │ │ │ ├── .gitignore │ │ │ ├── INSTALL │ │ │ ├── science │ │ │ │ ├── feelpp │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── Portfile │ │ │ │ ├── gmsh-devel │ │ │ │ │ └── Portfile │ │ │ │ ├── gmsh │ │ │ │ │ └── Portfile │ │ │ │ ├── libANN │ │ │ │ │ ├── Portfile │ │ │ │ │ └── files │ │ │ │ │ │ ├── patch-Make-config.diff │ │ │ │ │ │ └── patch-Makefile.diff │ │ │ │ ├── openturns │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── Portfile │ │ │ │ └── petsc │ │ │ │ │ ├── Portfile │ │ │ │ │ └── files │ │ │ │ │ └── patch-conf-rules.diff │ │ │ └── tcl │ │ │ │ └── fixLibsAndExecutables.tcl │ │ └── macports │ │ │ ├── .gitignore │ │ │ ├── INSTALL │ │ │ ├── devel │ │ │ ├── .gitignore │ │ │ └── boost │ │ │ │ ├── Portfile │ │ │ │ ├── Portfile.feelpp │ │ │ │ ├── Portfile.old │ │ │ │ └── files │ │ │ │ ├── patch-boost-foreach.diff │ │ │ │ ├── patch-boost-python3.diff │ │ │ │ ├── patch-bootstrap.sh.diff │ │ │ │ ├── patch-libs-context-130308-0.diff │ │ │ │ ├── patch-libs-mpi-build-Jamfile.v2.diff │ │ │ │ ├── patch-libs-python-src-converter-builtin_converters.cpp │ │ │ │ ├── patch-thread_visibility.diff │ │ │ │ ├── patch-tools-build-v2-tools-python-2.jam.diff │ │ │ │ ├── patch-tools-build-v2-tools-python.jam.diff │ │ │ │ ├── patch-tools_build_v2_engine_src_build.jam.diff │ │ │ │ └── patch-tools_build_v2_engine_src_build.sh.diff │ │ │ ├── math │ │ │ └── cln │ │ │ │ └── Portfile │ │ │ ├── science │ │ │ ├── feelpp │ │ │ │ ├── .gitignore │ │ │ │ └── Portfile │ │ │ ├── gmsh-devel │ │ │ │ ├── Portfile │ │ │ │ └── files │ │ │ │ │ ├── gmsh-devel-petsc.patch │ │ │ │ │ └── gmsh-devel.patch │ │ │ ├── gmsh │ │ │ │ └── Portfile │ │ │ ├── hdf5-18 │ │ │ │ └── Portfile │ │ │ ├── hdf5 │ │ │ │ └── Portfile │ │ │ ├── openmpi │ │ │ │ ├── .gitignore │ │ │ │ ├── Portfile │ │ │ │ └── Portfile.old │ │ │ ├── openturns │ │ │ │ ├── .gitignore │ │ │ │ └── Portfile │ │ │ ├── petsc-3.2 │ │ │ │ └── Portfile │ │ │ ├── petsc │ │ │ │ ├── .gitignore │ │ │ │ ├── Portfile │ │ │ │ ├── Portfile-3.1 │ │ │ │ ├── Portfile-3.2 │ │ │ │ └── files │ │ │ │ │ └── patch-shared.diff │ │ │ ├── scotch │ │ │ │ ├── .gitignore │ │ │ │ └── Portfile │ │ │ └── slepc │ │ │ │ ├── Portfile │ │ │ │ ├── Portfile.old │ │ │ │ └── files │ │ │ │ └── slepc.patch │ │ │ └── textproc │ │ │ └── source-highlight │ │ │ └── Portfile │ ├── macports │ ├── macports-bigsur │ │ ├── .gitignore │ │ ├── devel │ │ │ └── boost175 │ │ │ │ ├── Portfile │ │ │ │ └── files │ │ │ │ ├── patch-compiler.diff │ │ │ │ └── patch-tools-build-src-tools-python.jam.diff │ │ ├── math │ │ │ ├── cln │ │ │ │ ├── Portfile │ │ │ │ └── files │ │ │ │ │ └── patch-clang.diff │ │ │ ├── mumps │ │ │ │ ├── Portfile │ │ │ │ └── files │ │ │ │ │ ├── patch-Makefile.inc.diff │ │ │ │ │ └── patch-shared.diff │ │ │ ├── petsc │ │ │ │ ├── Portfile │ │ │ │ └── files │ │ │ │ │ ├── patch-src-mat-impls-aij-mpi-superlu_dist-superlu_dist.c.diff │ │ │ │ │ ├── patch-sundials.py.diff │ │ │ │ │ └── patch-sundials_version.diff │ │ │ └── slepc │ │ │ │ └── Portfile │ │ └── science │ │ │ ├── feelpp │ │ │ └── Portfile │ │ │ ├── gmsh │ │ │ ├── Portfile │ │ │ └── files │ │ │ │ ├── patch-CMakeLists.txt.diff │ │ │ │ └── patch-gmm.diff │ │ │ ├── netcdf-cxx │ │ │ ├── Portfile │ │ │ └── files │ │ │ │ └── patch-include-libcxx.diff │ │ │ └── paraview │ │ │ └── Portfile │ ├── macports-catalina │ │ ├── .gitignore │ │ ├── math │ │ │ ├── atlas │ │ │ │ ├── Portfile │ │ │ │ └── files │ │ │ │ │ ├── patch-archinfo_x86_c.diff │ │ │ │ │ ├── patch-emit_mm_c.diff │ │ │ │ │ └── patch-makes-Make.lib.diff │ │ │ ├── cln │ │ │ │ ├── Portfile │ │ │ │ └── files │ │ │ │ │ └── patch-clang.diff │ │ │ ├── ml │ │ │ │ ├── Portfile │ │ │ │ └── files │ │ │ │ │ └── patch-perl.diff │ │ │ ├── petsc │ │ │ │ └── Portfile │ │ │ └── slepc │ │ │ │ └── Portfile │ │ └── science │ │ │ ├── feelpp │ │ │ └── Portfile │ │ │ ├── gmsh │ │ │ ├── Portfile │ │ │ └── files │ │ │ │ ├── gmsh.patch │ │ │ │ ├── patch-bamg.diff │ │ │ │ └── patch-bamg2.diff │ │ │ └── paraview │ │ │ ├── Portfile │ │ │ └── files │ │ │ └── patch-install-paraview.patch │ ├── macports-elcapitan │ │ ├── .gitignore │ │ ├── math │ │ │ ├── cln │ │ │ │ ├── Portfile │ │ │ │ └── files │ │ │ │ │ └── patch-clang.diff │ │ │ └── ml │ │ │ │ └── Portfile │ │ └── science │ │ │ ├── feelpp │ │ │ └── Portfile │ │ │ └── gmsh │ │ │ ├── Portfile │ │ │ └── files │ │ │ └── gmsh.patch │ ├── macports-high_sierra │ │ ├── .gitignore │ │ ├── math │ │ │ ├── atlas │ │ │ │ ├── Portfile │ │ │ │ ├── files │ │ │ │ │ ├── patch-archinfo_x86_c.diff │ │ │ │ │ ├── patch-emit_mm_c.diff │ │ │ │ │ └── patch-makes-Make.lib.diff │ │ │ │ └── work │ │ │ │ │ └── .macports.atlas.state │ │ │ ├── cln │ │ │ │ ├── Portfile │ │ │ │ └── files │ │ │ │ │ └── patch-clang.diff │ │ │ ├── ml │ │ │ │ ├── Portfile │ │ │ │ └── files │ │ │ │ │ └── patch-perl.diff │ │ │ ├── petsc │ │ │ │ └── Portfile │ │ │ └── slepc │ │ │ │ └── Portfile │ │ └── science │ │ │ ├── feelpp │ │ │ └── Portfile │ │ │ └── gmsh │ │ │ ├── Portfile │ │ │ └── files │ │ │ ├── gmsh.patch │ │ │ ├── patch-bamg.diff │ │ │ └── patch-bamg2.diff │ ├── macports-mojave │ │ ├── .gitignore │ │ ├── math │ │ │ ├── atlas │ │ │ │ ├── Portfile │ │ │ │ └── files │ │ │ │ │ ├── patch-archinfo_x86_c.diff │ │ │ │ │ ├── patch-emit_mm_c.diff │ │ │ │ │ └── patch-makes-Make.lib.diff │ │ │ ├── cln │ │ │ │ ├── Portfile │ │ │ │ └── files │ │ │ │ │ └── patch-clang.diff │ │ │ ├── ml │ │ │ │ ├── Portfile │ │ │ │ └── files │ │ │ │ │ └── patch-perl.diff │ │ │ ├── petsc │ │ │ │ └── Portfile │ │ │ └── slepc │ │ │ │ └── Portfile │ │ └── science │ │ │ ├── feelpp │ │ │ └── Portfile │ │ │ ├── gmsh │ │ │ ├── Portfile │ │ │ └── files │ │ │ │ ├── gmsh.patch │ │ │ │ ├── patch-bamg.diff │ │ │ │ └── patch-bamg2.diff │ │ │ └── paraview │ │ │ ├── Portfile │ │ │ └── files │ │ │ └── patch-install-paraview.patch │ ├── macports-monterey │ │ ├── .gitignore │ │ ├── devel │ │ │ └── boost176 │ │ │ │ ├── Portfile │ │ │ │ └── files │ │ │ │ ├── patch-apple-clang-no-libcxx.diff │ │ │ │ ├── patch-b2-build-older-OSes.diff │ │ │ │ ├── patch-boost-libcpp-force-thread-local-off.diff │ │ │ │ ├── patch-boost-python3.diff │ │ │ │ ├── patch-compiler.diff │ │ │ │ ├── patch-disable-numpy-extension.diff │ │ │ │ ├── patch-export_serialization_explicit_template_instantiations.diff │ │ │ │ ├── patch-libs-mpi-build-Jamfile.v2.diff │ │ │ │ ├── patch-revert-lib-name-tagged.diff │ │ │ │ ├── patch-tiger-availability.diff │ │ │ │ ├── patch-tools-build-src-tools-python-2.jam.diff │ │ │ │ └── patch-tools-build-src-tools-python.jam.diff │ │ ├── math │ │ │ ├── cln │ │ │ │ ├── Portfile │ │ │ │ └── files │ │ │ │ │ ├── patch-clang-extern-C.diff │ │ │ │ │ └── patch-clang.diff │ │ │ ├── mumps │ │ │ │ ├── Portfile │ │ │ │ └── files │ │ │ │ │ ├── patch-Makefile.inc.diff │ │ │ │ │ └── patch-shared.diff │ │ │ ├── petsc │ │ │ │ ├── Portfile │ │ │ │ └── files │ │ │ │ │ ├── patch-src-mat-impls-aij-mpi-superlu_dist-superlu_dist.c.diff │ │ │ │ │ ├── patch-sundials.py.diff │ │ │ │ │ └── patch-sundials_version.diff │ │ │ └── slepc │ │ │ │ └── Portfile │ │ └── science │ │ │ └── paraview │ │ │ ├── Portfile │ │ │ └── files │ │ │ └── 0001-vtkPVStringFormatter-Use-custom-dynamic-arg-store.diff │ ├── macports-sierra │ │ ├── .gitignore │ │ ├── devel │ │ │ └── boost │ │ │ │ ├── Portfile │ │ │ │ └── files │ │ │ │ ├── patch-apple-clang-no-libcxx.diff │ │ │ │ ├── patch-boost-python3.diff │ │ │ │ ├── patch-export_serialization_explicit_template_instantiations.diff │ │ │ │ ├── patch-libs-mpi-build-Jamfile.v2.diff │ │ │ │ ├── patch-tools-build-src-engine-build.jam.diff │ │ │ │ ├── patch-tools-build-src-engine-build.sh.diff │ │ │ │ ├── patch-tools-build-src-tools-python-2.jam.diff │ │ │ │ └── patch-tools-build-src-tools-python.jam.diff │ │ ├── math │ │ │ ├── atlas │ │ │ │ ├── Portfile │ │ │ │ ├── files │ │ │ │ │ ├── patch-archinfo_x86_c.diff │ │ │ │ │ ├── patch-emit_mm_c.diff │ │ │ │ │ └── patch-makes-Make.lib.diff │ │ │ │ └── work │ │ │ │ │ └── .macports.atlas.state │ │ │ ├── cln │ │ │ │ ├── Portfile │ │ │ │ └── files │ │ │ │ │ └── patch-clang.diff │ │ │ └── ml │ │ │ │ ├── Portfile │ │ │ │ └── files │ │ │ │ └── patch-perl.diff │ │ └── science │ │ │ ├── feelpp │ │ │ └── Portfile │ │ │ └── gmsh │ │ │ ├── Portfile │ │ │ └── files │ │ │ ├── gmsh.patch │ │ │ └── patch-bamg.diff │ ├── macports-sonoma │ │ ├── devel │ │ │ ├── boost │ │ │ │ └── Portfile │ │ │ └── boost181 │ │ │ │ ├── Portfile │ │ │ │ └── files │ │ │ │ ├── patch-apple-clang-no-libcxx.diff │ │ │ │ ├── patch-b2-build-older-OSes.diff │ │ │ │ ├── patch-boost-aligned-alloc.diff │ │ │ │ ├── patch-boost-asm-sources-combined-arm-intel.diff │ │ │ │ ├── patch-boost-clang-version-llvmorg-on-apple.diff │ │ │ │ ├── patch-boost-context-asm.diff │ │ │ │ ├── patch-boost-functional.diff │ │ │ │ ├── patch-boost-libcpp-force-thread-local-off.diff │ │ │ │ ├── patch-boost-python3.diff │ │ │ │ ├── patch-compiler.diff │ │ │ │ ├── patch-disable-numpy-extension.diff │ │ │ │ ├── patch-export_serialization_explicit_template_instantiations.diff │ │ │ │ ├── patch-fix-fiber.diff │ │ │ │ ├── patch-libs-mpi-build-Jamfile.v2.diff │ │ │ │ ├── patch-revert-lib-name-tagged.diff │ │ │ │ ├── patch-tiger-availability.diff │ │ │ │ ├── patch-tools-build-src-tools-python-2.jam.diff │ │ │ │ └── patch-tools-build-src-tools-python.jam.diff │ │ └── math │ │ │ └── cln │ │ │ ├── Portfile │ │ │ └── files │ │ │ ├── patch-clang-extern-C.diff │ │ │ └── patch-clang.diff │ ├── macports-ventura │ │ ├── devel │ │ │ ├── boost │ │ │ │ └── Portfile │ │ │ └── boost181 │ │ │ │ ├── Portfile │ │ │ │ └── files │ │ │ │ ├── patch-apple-clang-no-libcxx.diff │ │ │ │ ├── patch-b2-build-older-OSes.diff │ │ │ │ ├── patch-boost-aligned-alloc.diff │ │ │ │ ├── patch-boost-context-asm.diff │ │ │ │ ├── patch-boost-functional.diff │ │ │ │ ├── patch-boost-libcpp-force-thread-local-off.diff │ │ │ │ ├── patch-boost-python3.diff │ │ │ │ ├── patch-compiler.diff │ │ │ │ ├── patch-disable-numpy-extension.diff │ │ │ │ ├── patch-export_serialization_explicit_template_instantiations.diff │ │ │ │ ├── patch-fix-fiber.diff │ │ │ │ ├── patch-libs-mpi-build-Jamfile.v2.diff │ │ │ │ ├── patch-revert-lib-name-tagged.diff │ │ │ │ ├── patch-tiger-availability.diff │ │ │ │ ├── patch-tools-build-src-tools-python-2.jam.diff │ │ │ │ └── patch-tools-build-src-tools-python.jam.diff │ │ ├── math │ │ │ ├── cln │ │ │ │ ├── Portfile │ │ │ │ └── files │ │ │ │ │ ├── patch-clang-extern-C.diff │ │ │ │ │ └── patch-clang.diff │ │ │ ├── mumps │ │ │ │ ├── Portfile │ │ │ │ └── files │ │ │ │ │ ├── patch-Makefile.inc.diff │ │ │ │ │ └── patch-shared.diff │ │ │ ├── petsc │ │ │ │ ├── Portfile │ │ │ │ └── files │ │ │ │ │ ├── patch-src-mat-impls-aij-mpi-superlu_dist-superlu_dist.c.diff │ │ │ │ │ ├── patch-sundials.py.diff │ │ │ │ │ └── patch-sundials_version.diff │ │ │ └── slepc │ │ │ │ └── Portfile │ │ └── science │ │ │ └── paraview │ │ │ ├── Portfile │ │ │ └── files │ │ │ └── 0001-vtkPVStringFormatter-Use-custom-dynamic-arg-store.diff │ ├── macports-yosemite │ │ ├── .gitignore │ │ ├── devel │ │ │ └── boost │ │ │ │ ├── OLDPortfile │ │ │ │ └── files │ │ │ │ ├── patch-boost-foreach.diff │ │ │ │ ├── patch-boost-python3.diff │ │ │ │ ├── patch-bootstrap.sh.diff │ │ │ │ ├── patch-libs-context-130308-0.diff │ │ │ │ ├── patch-libs-mpi-build-Jamfile.v2.diff │ │ │ │ ├── patch-libs-python-src-converter-builtin_converters.cpp │ │ │ │ ├── patch-thread_visibility.diff │ │ │ │ ├── patch-tools-build-v2-tools-python-2.jam.diff │ │ │ │ ├── patch-tools-build-v2-tools-python.jam.diff │ │ │ │ ├── patch-tools_build_v2_engine_src_build.jam.diff │ │ │ │ ├── patch-tools_build_v2_engine_src_build.sh.diff │ │ │ │ └── py_nonblocking.patch │ │ ├── math │ │ │ ├── cln │ │ │ │ ├── Portfile │ │ │ │ └── files │ │ │ │ │ └── patch-clang.diff │ │ │ └── ml │ │ │ │ └── Portfile │ │ ├── science │ │ │ ├── feelpp │ │ │ │ └── Portfile │ │ │ └── gmsh-devel │ │ │ │ ├── Portfile │ │ │ │ └── files │ │ │ │ ├── centerlinefield.patch │ │ │ │ ├── gmsh-devel-petsc.patch │ │ │ │ └── gmsh-devel.patch │ │ └── textproc │ │ │ └── source-highlight │ │ │ └── OLDPortfile │ └── scripts │ │ └── ParaView.sh ├── openSuse12.2 │ ├── README.md │ ├── boost.sh │ ├── feelpp.sh │ ├── gcc47.sh │ ├── gmsh.sh │ ├── hdf5.sh │ ├── install.sh │ ├── openmpi.sh │ ├── petsc.sh │ └── slepc.sh ├── singularity │ └── install-singularity.sh ├── sl6x_64 │ ├── ParaView.sh │ ├── README.md │ ├── boost.sh │ ├── feelpp.sh │ ├── gcc47.sh │ ├── gmsh.sh │ ├── hdf5.sh │ ├── install.sh │ ├── openmpi.sh │ ├── petsc.sh │ └── slepc.sh ├── supermuc │ └── petsc.sh ├── titane │ ├── README │ ├── boost.sh │ ├── gmsh.sh │ ├── lapack.sh │ └── petsc.sh ├── travis │ ├── boost.sh │ ├── cln.sh │ ├── gmsh.sh │ └── petsc.sh └── turing │ ├── boost-static.sh │ ├── boost.sh │ ├── gmsh.sh │ └── petsc.sh ├── python ├── CMakeLists.txt ├── cmake │ ├── FeelppPythonNormalize.cmake │ ├── FindMPI4PY.cmake │ ├── FindPETSC4PY.cmake │ └── FindSLEPC4PY.cmake ├── notebooks │ ├── CMakeLists.txt │ ├── heat │ ├── notebook-expr.ipynb │ ├── notebook-mor-online.ipynb │ ├── notebook-toolbox-cfpdes.ipynb │ └── notebook-toolbox-heat.ipynb ├── pyfeelpp-mor │ ├── CMakeLists.txt │ ├── feelpp │ │ ├── CMakeLists.txt │ │ └── mor │ │ │ ├── CMakeLists.txt │ │ │ ├── __init__.py │ │ │ ├── crb.cpp │ │ │ ├── nirb │ │ │ ├── CMakeLists.txt │ │ │ ├── model │ │ │ ├── nirb.py │ │ │ ├── nirbOffline.py │ │ │ ├── nirbOnline.py │ │ │ ├── nirb_perf.py │ │ │ ├── postProcess.py │ │ │ ├── run_nirb_perf.py │ │ │ ├── test_nirb_offline.ipynb │ │ │ ├── test_nirb_online.ipynb │ │ │ ├── test_postProces.ipynb │ │ │ └── utils.py │ │ │ ├── online.py │ │ │ ├── opusheat │ │ │ ├── pbdw.cpp │ │ │ ├── pbdw.py │ │ │ ├── pbdw │ │ │ └── CMakeLists.txt │ │ │ ├── reducedbasis │ │ │ ├── CMakeLists.txt │ │ │ ├── __init__.py │ │ │ ├── reducedbasis.py │ │ │ └── reducedbasis_time.py │ │ │ ├── test_heat3d.py │ │ │ ├── test_parameterspace.py │ │ │ ├── toolboxmor.cpp │ │ │ └── toolboxmor.py │ ├── generate_basis.py │ ├── setup-mor.py │ └── tests │ │ ├── CMakeLists.txt │ │ ├── conftest.py │ │ ├── test_generate_basis.py │ │ ├── test_mor.py │ │ ├── test_nirb.py │ │ ├── test_reducedbasis.py │ │ ├── test_reducedbasis_time.py │ │ ├── testcase │ │ ├── nirb │ │ ├── testcase │ │ │ ├── test.cfg │ │ │ ├── test.geo │ │ │ └── test.json │ │ └── thermal-fin │ │ └── thermal-fin ├── pyfeelpp-toolboxes │ ├── CMakeLists.txt │ ├── feelpp │ │ ├── CMakeLists.txt │ │ └── toolboxes │ │ │ ├── CMakeLists.txt │ │ │ ├── __init__.py │ │ │ ├── advection │ │ │ ├── CMakeLists.txt │ │ │ ├── __init__.py │ │ │ ├── advection.cpp │ │ │ └── advection.py │ │ │ ├── coefficientformpdes │ │ │ ├── CMakeLists.txt │ │ │ ├── __init__.py │ │ │ ├── cfpdes.cpp │ │ │ └── cfpdes.py │ │ │ ├── core │ │ │ ├── CMakeLists.txt │ │ │ ├── __init__.py │ │ │ ├── modelcore.cpp │ │ │ ├── modelcore_modelmeshes.cpp │ │ │ └── modelmesh.cpp │ │ │ ├── electric │ │ │ ├── CMakeLists.txt │ │ │ ├── __init__.py │ │ │ ├── electric.cpp │ │ │ └── electric.py │ │ │ ├── fluid │ │ │ ├── CMakeLists.txt │ │ │ ├── __init__.py │ │ │ ├── cases │ │ │ ├── contactforce.hpp │ │ │ ├── fluid-remesh.py │ │ │ ├── fluid.cpp │ │ │ └── fluid.py │ │ │ ├── fsi │ │ │ ├── CMakeLists.txt │ │ │ ├── __init__.py │ │ │ ├── fsi.cpp │ │ │ └── fsi.py │ │ │ ├── hdg │ │ │ ├── CMakeLists.txt │ │ │ ├── __init__.py │ │ │ ├── hdg-elasticity.cpp │ │ │ ├── hdg-elasticity.hpp │ │ │ ├── hdg-poisson.hpp │ │ │ ├── hdg.cpp │ │ │ ├── hdg_poisson.py │ │ │ ├── hdg_poisson2.py │ │ │ └── mixedpoisson.py │ │ │ ├── heat │ │ │ ├── CMakeLists.txt │ │ │ ├── __init__.py │ │ │ ├── heat.HeatMesh.path │ │ │ ├── heat.cpp │ │ │ └── heat.py │ │ │ ├── heatfluid │ │ │ ├── CMakeLists.txt │ │ │ ├── __init__.py │ │ │ └── heatfluid.cpp │ │ │ ├── levelset │ │ │ ├── CMakeLists.txt │ │ │ ├── __init__.py │ │ │ ├── thermoelectric.cpp │ │ │ └── thermoelectric.py │ │ │ ├── maxwell │ │ │ ├── CMakeLists.txt │ │ │ ├── __init__.py │ │ │ ├── maxwell.cpp │ │ │ └── maxwell.py │ │ │ ├── multifluid │ │ │ ├── CMakeLists.txt │ │ │ ├── __init__.py │ │ │ ├── thermoelectric.cpp │ │ │ └── thermoelectric.py │ │ │ ├── solid │ │ │ ├── CMakeLists.txt │ │ │ ├── __init__.py │ │ │ ├── solid.cpp │ │ │ └── solid.py │ │ │ └── thermoelectric │ │ │ ├── CMakeLists.txt │ │ │ ├── __init__.py │ │ │ └── thermoelectric.cpp │ ├── setup-toolboxes.py │ └── tests │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── cfpdes │ │ ├── conftest.py │ │ ├── electric │ │ ├── fluid │ │ ├── hdg │ │ ├── heat │ │ ├── heatfluid │ │ ├── nirb │ │ ├── test_cfpdes.py │ │ ├── test_collision.py │ │ ├── test_electric.py │ │ ├── test_fluid.py │ │ ├── test_hdg.py │ │ ├── test_heat.py │ │ ├── test_heatfluid.py │ │ ├── test_interpolation.py │ │ ├── test_multitoolboxes.py │ │ ├── test_thermoelectric.py │ │ ├── test_toolboxes.py │ │ └── thermoelectric ├── pyfeelpp │ ├── CMakeLists.txt │ ├── feelpp │ │ ├── CMakeLists.txt │ │ └── core │ │ │ ├── CMakeLists.txt │ │ │ ├── __init__.py.in │ │ │ ├── _forms.cpp │ │ │ ├── alg.cpp │ │ │ ├── core.cpp │ │ │ ├── discr.cpp │ │ │ ├── exporter.cpp │ │ │ ├── feelpp.cpp │ │ │ ├── forms.cpp │ │ │ ├── forms.py │ │ │ ├── hbf.cpp │ │ │ ├── integrate.cpp │ │ │ ├── integrate.py │ │ │ ├── interpolation.cpp │ │ │ ├── interpolation.py │ │ │ ├── ls.cpp │ │ │ ├── measure.cpp │ │ │ ├── measure.py │ │ │ ├── mesh.cpp │ │ │ ├── mesh.hpp │ │ │ ├── mesh1.cpp │ │ │ ├── mesh2.cpp │ │ │ ├── mesh3.cpp │ │ │ ├── meshmover.cpp │ │ │ ├── meshmover.py │ │ │ ├── metric.cpp │ │ │ ├── models.cpp │ │ │ ├── operators.cpp │ │ │ ├── operators.hpp │ │ │ ├── operators.py │ │ │ ├── operators1.cpp │ │ │ ├── operators2.cpp │ │ │ ├── operators3.cpp │ │ │ ├── petsc_casters.hpp │ │ │ ├── plot.cpp │ │ │ ├── plotly.py │ │ │ ├── quality.cpp │ │ │ ├── quality.py │ │ │ ├── remotedata.cpp │ │ │ ├── timing.cpp │ │ │ ├── timing.py │ │ │ ├── ts.cpp │ │ │ └── vf.cpp │ ├── setup.py │ └── tests │ │ ├── CMakeLists.txt │ │ ├── README.adoc │ │ ├── cases │ │ ├── feelpp2d │ │ ├── feelpp3d │ │ └── nirb │ │ ├── conftest.py │ │ ├── fin.geo │ │ ├── fin.py │ │ ├── pytest-3.json │ │ ├── test.cfg │ │ ├── test_alg.py │ │ ├── test_core.py │ │ ├── test_discr.py │ │ ├── test_exporter.py │ │ ├── test_forms.py │ │ ├── test_integrate.py │ │ ├── test_measure.py │ │ ├── test_mesh.py │ │ ├── test_meshmover.py │ │ ├── test_operators.py │ │ ├── test_remesh.py │ │ ├── test_remotedata.py │ │ └── test_timing.py └── requirements.txt ├── research ├── .gitignore ├── CMakeLists.txt ├── INSTALL ├── bloodflow │ ├── .gitignore │ ├── CMakeLists.txt │ ├── oned.cpp │ ├── test_prosi.cpp │ ├── wall_lumen_1.neu │ └── wall_lumen_9473.neu ├── fluid │ ├── .gitignore │ ├── CMakeLists.txt │ ├── advreact.hpp │ ├── cavity.hpp │ ├── cavity2d.cpp │ ├── cavity3d.cpp │ ├── oseen.hpp │ ├── rclux.cpp │ ├── rclux.geo │ ├── rcluxmesh.cpp │ ├── splitting.hpp │ ├── splitting2d.cpp │ ├── twofluid.hpp │ └── twofluid2d.cpp ├── levelset │ ├── .gitignore │ ├── fmsheap.hpp │ ├── fmspoint.hpp │ ├── indicator.hpp │ ├── levelset.cpp │ ├── levelset.hpp │ ├── levelset2d.cpp │ ├── levelset_arb2.cpp │ ├── levelset_arcn.cpp │ ├── levelset_trilinos.hpp │ ├── reinit_fms.hpp │ └── reinit_ilp.hpp └── pbeq │ ├── .gitignore │ ├── CMakeLists.txt │ ├── atom.cpp │ ├── atom.hpp │ ├── atom.pqr │ ├── heavysidefunction.cpp │ ├── heavysidefunction.hpp │ ├── ligand.pqr │ ├── molecule.cpp │ ├── molecule.hpp │ ├── molecule.pqr │ ├── mymesh.cpp │ ├── mymesh.hpp │ ├── pbeq.cpp │ ├── pbeq.hpp │ ├── pbeqapplication.hpp │ ├── pbeqspace.cpp │ ├── pbeqspace.hpp │ ├── receptor.pqr │ ├── solvepbeq.cpp │ └── test_atom.cpp ├── testsuite ├── .gitignore ├── CMakeLists.txt ├── README.md ├── contrib │ ├── CMakeLists.txt │ ├── mpi.cpp │ └── po.cpp ├── feelalg │ ├── .gitignore │ ├── CMakeLists.txt │ ├── MatrixTest.cpp │ ├── MatrixTest.hpp │ ├── test_add_matrix.cpp │ ├── test_backend.cpp │ ├── test_cholesky.cpp │ ├── test_eigen3_tensor.cpp │ ├── test_eigenmode.cfg │ ├── test_eigenmode.cpp │ ├── test_epetra.cpp │ ├── test_functionspace_element_guard.cpp │ ├── test_graph.cpp │ ├── test_matrix.cpp │ ├── test_matrix_block.cpp │ ├── test_matvec.cpp │ ├── test_nlsolve_eigen.cpp │ ├── test_petsc.cpp │ ├── test_prepost_solve.cfg │ ├── test_prepost_solve.cpp │ ├── test_ptap.cpp │ ├── test_sub_matrix.cpp │ ├── test_tensor.cpp │ ├── test_topetsc.cpp │ ├── test_ublas.cpp │ ├── test_umfpack.cpp │ └── test_vector.cpp ├── feelcore │ ├── .gitignore │ ├── CMakeLists.txt │ ├── test_boostmpi.cpp │ ├── test_comm.cpp │ ├── test_context.cpp │ ├── test_dataset.cpp │ ├── test_debug.cpp │ ├── test_eigenrand.cpp │ ├── test_enumerate.cpp │ ├── test_enums.cpp │ ├── test_env.cpp │ ├── test_factory.cpp │ ├── test_feelio.cpp │ ├── test_fusion.cpp │ ├── test_gatherscatter.cpp │ ├── test_git.cpp │ ├── test_hana.cpp │ ├── test_hdf5.cpp │ ├── test_json.cpp │ ├── test_material.cpp │ ├── test_mongo.cpp │ ├── test_mpi.cpp │ ├── test_multithread.cpp │ ├── test_nt2.cpp │ ├── test_observer.cpp │ ├── test_observer_mesh.cpp │ ├── test_ptree_editions.cfg │ ├── test_ptree_editions.cpp │ ├── test_ptree_editions.json │ ├── test_range.cpp │ ├── test_remotedata.cpp │ ├── test_removecomments.cpp │ ├── test_serialization.cpp │ ├── test_simget.cpp │ ├── test_singleton.cpp │ ├── test_taskflow.cpp │ ├── test_tbb.cpp │ ├── test_traits.cpp │ ├── test_twodomains.geo │ └── test_worldcomm.cpp ├── feeldiscr │ ├── .gitignore │ ├── CMakeLists.txt │ ├── conv_geo_ho.py │ ├── eight_elements_mesh.msh │ ├── geoconv.m │ ├── hcurl_oneelt.cfg │ ├── markerhdf5_2D.geo │ ├── markerhdf5_3D.geo │ ├── mesh.cpp │ ├── sensors.cfg │ ├── sensorsdesc.json │ ├── square_mmarked.geo │ ├── test_aitken.cpp │ ├── test_aitken.m │ ├── test_continuity_h1.cpp │ ├── test_continuity_hcurl.cpp │ ├── test_continuity_hdiv.cpp │ ├── test_disc.cpp │ ├── test_eigs.cpp │ ├── test_element.cpp │ ├── test_element0D.cpp │ ├── test_element_component.cpp │ ├── test_element_component_3d.cpp │ ├── test_element_serialize.cpp │ ├── test_elementminmax.cfg │ ├── test_elementminmax.cpp │ ├── test_elementminmax2d.geo │ ├── test_elementminmax3d.geo │ ├── test_evaluator.cpp │ ├── test_extended.cpp │ ├── test_fem.cpp │ ├── test_form_severaltrialtestmesh.cpp │ ├── test_fspace_context.cpp │ ├── test_functionallinearfree.cpp │ ├── test_functionals.cpp │ ├── test_geomap.cpp │ ├── test_geometricspace.cpp │ ├── test_hcurl.cfg │ ├── test_hcurl.cpp │ ├── test_hcurl3D_oneelt.cfg │ ├── test_hcurl3D_oneelt.cpp │ ├── test_hcurl_assembly.cfg │ ├── test_hcurl_assembly.cpp │ ├── test_hcurl_lag.cpp │ ├── test_hcurl_oneelt.cfg │ ├── test_hcurl_oneelt.cpp │ ├── test_hdiv.cfg │ ├── test_hdiv.cpp │ ├── test_hdiv3D.cfg │ ├── test_hdiv3D.cpp │ ├── test_hdiv3D_oneelt.cfg │ ├── test_hdiv3D_oneelt.cpp │ ├── test_hdiv_oneelt.cfg │ ├── test_hdiv_oneelt.cpp │ ├── test_idelements.cpp │ ├── test_lag_precond.cpp │ ├── test_lambda.cpp │ ├── test_lift.cpp │ ├── test_listofrange.cpp │ ├── test_lm.cpp │ ├── test_lowerdim_entity.cpp │ ├── test_makemesh.cpp │ ├── test_markerhdf5.cpp │ ├── test_masterworker_laplacian.cpp │ ├── test_matching.cpp │ ├── test_matrixfield.cpp │ ├── test_mesh_transfinite.cfg │ ├── test_mesh_transfinite.cpp │ ├── test_mesh_transfinite.geo │ ├── test_meshstructured.cpp │ ├── test_mixed.cpp │ ├── test_mortar.cfg │ ├── test_mortar.cpp │ ├── test_mortar2.cpp │ ├── test_mult_petsc.cpp │ ├── test_multiscaleimage.cpp │ ├── test_nlSolveComposite.cfg │ ├── test_nlSolveComposite.cpp │ ├── test_normal3d.cpp │ ├── test_on_dofs.cfg │ ├── test_on_dofs.cpp │ ├── test_on_inside.cfg │ ├── test_on_inside.cpp │ ├── test_on_inside.geo │ ├── test_operatorlagrangep1.cpp │ ├── test_operatorlinearfree.cpp │ ├── test_opinterpolation.cpp │ ├── test_productspaces.cpp │ ├── test_project.cpp │ ├── test_project_prodspace.cpp │ ├── test_projector.cpp │ ├── test_sensors.cpp │ ├── test_space.cpp │ ├── test_space_0d.cpp │ ├── test_space_cst.cpp │ ├── test_space_on_range.cpp │ ├── test_spacefunc.cpp │ ├── test_spaces.cpp │ ├── test_spectral_convergence_2D.cpp │ ├── test_spectral_convergence_3D.cpp │ ├── test_stencil.cpp │ ├── test_stokes.cpp │ ├── test_submesh.cpp │ ├── test_trace.cpp │ ├── test_twolaplaciansdistributed.cpp │ ├── test_twospacesmap.cpp │ ├── test_upmarker_faces.cpp │ ├── test_wire_basket.cpp │ └── two_elements_mesh.geo ├── feelevent │ ├── .gitignore │ ├── CMakeLists.txt │ └── test_events.cpp ├── feelfilters │ ├── .gitignore │ ├── CMakeLists.txt │ ├── data │ ├── test_exporter_disc.cpp │ ├── test_exporter_sanitize.cpp │ ├── test_geotool.cpp │ ├── test_geotool2.cpp │ ├── test_gmsh.cpp │ ├── test_hbf.cpp │ ├── test_importer_mesh.cpp │ ├── test_importerarm.cpp │ ├── test_importergmsh.cpp │ ├── test_med.cfg │ ├── test_med.cpp │ └── test_read_write_data.cpp ├── feelfit │ ├── CMakeLists.txt │ ├── README.md │ ├── test_fit.cfg │ ├── test_fit.cpp │ └── test_fit_interpolator.cpp ├── feelfmi │ ├── BouncingBall.mo │ ├── CMakeLists.txt │ ├── test_fmi.cfg │ └── test_fmi.cpp ├── feelintegration │ ├── CMakeLists.txt │ ├── test_auto_order_integrate.cpp │ ├── test_integration.cpp │ ├── test_integration_ginac.cpp │ ├── test_integration_ho.cpp │ ├── test_integration_ho_geometry.geo │ ├── test_integration_ifaces.cpp │ ├── test_integration_on_manifolds.cpp │ ├── test_integration_opt.cpp │ └── test_integration_relatedmesh.cpp ├── feelinterpolation │ ├── CMakeLists.txt │ ├── interpolation_Nedelec.cfg │ ├── test_darcy_on.cfg │ ├── test_darcy_on.cpp │ ├── test_eval_at_point.cpp │ ├── test_form_interpolation.cpp │ ├── test_hypercubeinterpolation.cpp │ ├── test_interp_twomesh.cpp │ ├── test_interpolation.cpp │ ├── test_interpolation_Nedelec.cfg │ ├── test_interpolation_Nedelec.cpp │ ├── test_interpolation_Nedelec3d.cfg │ ├── test_interpolation_Nedelec3d.cpp │ ├── test_interpolation_RT.cfg │ ├── test_interpolation_RT.cpp │ ├── test_interpolation_grad.cpp │ ├── test_interpolation_id.cpp │ ├── test_interpolation_op.cpp │ ├── test_interpolation_type.cpp │ ├── test_operatorinterpolation.cpp │ ├── test_operatorinterpolation_basisexpr.cfg │ ├── test_operatorinterpolation_basisexpr.cpp │ └── test_operatorinterpolation_basisexpr_2d.geo ├── feelleaks │ ├── CMakeLists.txt │ ├── test_leak_env.cpp │ ├── test_leak_exporter.cpp │ ├── test_leak_fspace.cpp │ ├── test_leak_laplacian.cpp │ ├── test_leak_mesh.cpp │ ├── test_leak_sharedptr.cpp │ ├── test_matrix_destructor.cpp │ ├── test_solve_leak.cfg │ └── test_solve_leak.cpp ├── feells │ ├── CMakeLists.txt │ ├── test_distancetorange.cpp │ ├── test_extender_from_interface.cpp │ └── test_levelset.cpp ├── feelmaterial │ ├── .gitignore │ ├── CMakeLists.txt │ └── test_material.cpp ├── feelmath │ ├── CMakeLists.txt │ └── test_jacobiellipticfunctions.cpp ├── feelmesh │ ├── .gitignore │ ├── CMakeLists.txt │ ├── cubic_cavity.geo │ ├── domain_2d.geo │ ├── domain_3d.geo │ ├── domains_2d.geo │ ├── domains_2d_curved.geo │ ├── domains_3d.geo │ ├── domains_3d_curved.geo │ ├── test_P1mesh.cpp │ ├── test_bvh.cfg │ ├── test_bvh.cpp │ ├── test_convex.cpp │ ├── test_elementswithmarkedfaces.cpp │ ├── test_entity.cpp │ ├── test_kdtree.cpp │ ├── test_mesh.cpp │ ├── test_mesh0d.cpp │ ├── test_mesh_codim1.cpp │ ├── test_mesh_filters_operations.cfg │ ├── test_mesh_filters_operations.cpp │ ├── test_mesh_filters_operations.geo │ ├── test_meshfilters.cpp │ ├── test_meshmarker.cfg │ ├── test_meshmarker.cpp │ ├── test_meshmarker_square_4mat.geo │ ├── test_meshmover.cpp │ ├── test_partitioner_metis.cpp │ ├── test_ranges.cpp │ ├── test_regiontree.cpp │ ├── test_remesh.cfg │ ├── test_remesh.cpp │ ├── test_remesh.json │ ├── test_remesh_curved.json │ ├── test_remesh_gradedls.cfg │ ├── test_remesh_gradedls.cpp │ ├── test_remesh_gradedls.json │ ├── test_remesh_relations.json │ ├── test_submesh1d.cfg │ ├── test_submesh1d.cpp │ ├── test_submesh1d.geo │ └── test_updatemarker.cpp ├── feelmodels │ ├── CMakeLists.txt │ ├── feelpp.json │ ├── modelproperties.cfg │ └── test_modelproperties.cpp ├── feelopt │ ├── CMakeLists.txt │ ├── test_ipopt.cpp │ └── test_nlopt.cpp ├── feelpde │ ├── CMakeLists.txt │ ├── README.md │ ├── backend_saddle.cfg │ ├── backend_stab.cfg │ ├── bidomain │ │ ├── bidomain_cube.geo │ │ ├── bidomain_square.geo │ │ └── square.cfg │ ├── cube.cfg │ ├── cube.geo │ ├── inside_cube.geo │ ├── structured_cube.geo │ ├── test_ams.cpp │ ├── test_saddle.cpp │ └── test_submesh_range.cpp ├── feelpoly │ ├── .gitignore │ ├── CMakeLists.txt │ ├── polynomial_set.hpp │ ├── test_context_poly.cpp │ ├── test_dubiner.cpp │ ├── test_hermite.cpp │ ├── test_hermite.hpp │ ├── test_im.cpp │ ├── test_immultiscale.cfg │ ├── test_immultiscale.cpp │ ├── test_imsimplex.cpp │ ├── test_integrateQuadra.cfg │ ├── test_integrateQuadra.cpp │ ├── test_jacobi.cpp │ ├── test_lag.cpp │ ├── test_moment.cpp │ ├── test_poly.cpp │ ├── test_qm_pk.cpp │ ├── test_qm_pk_3D.cpp │ ├── test_qm_pk_double.cpp │ ├── test_qm_qk_3D.cpp │ ├── test_quad_order.cpp │ ├── test_raviartthomas.cpp │ ├── test_spectral_1D.cpp │ ├── test_spectral_2D.cpp │ ├── test_spectral_3D.cpp │ ├── test_spectral_laplacian_3D.cpp │ └── testlagrange.hpp ├── feelpython │ ├── CMakeLists.txt │ ├── python1.py │ ├── test_pyexpr.cpp │ ├── test_python1.cpp │ ├── test_python_basic.cpp │ └── test_python_embed.cpp ├── feelts │ ├── CMakeLists.txt │ ├── test_bdf.cpp │ ├── test_bdf2.cfg │ ├── test_bdf2.cpp │ ├── test_bdf3.cfg │ ├── test_bdf3.cpp │ ├── test_bdf_forward.cpp │ └── test_bdf_reverse.cpp ├── feelvf │ ├── CMakeLists.txt │ ├── test_convolve.cfg │ ├── test_convolve.cpp │ ├── test_divergence.cpp │ ├── test_expr.cfg │ ├── test_expr.cpp │ ├── test_expr.py │ ├── test_expr_evaluate.cpp │ ├── test_form_eigen.cpp │ ├── test_forms.cpp │ ├── test_functionexpr.cpp │ ├── test_ginac.cpp │ ├── test_idf2_functor.cpp │ ├── test_idf_functor.cpp │ ├── test_inner.cfg │ ├── test_inner.cpp │ ├── test_inner_curl.cpp │ ├── test_inner_laplacian.cpp │ ├── test_laplacian.cfg │ ├── test_laplacian.cpp │ ├── test_laplaciant.cfg │ ├── test_laplaciant.cpp │ ├── test_laplacianv.cfg │ ├── test_laplacianv.cpp │ ├── test_msi.cfg │ ├── test_msi.cpp │ ├── test_pow.cfg │ ├── test_pow.cpp │ ├── test_productspace_dofs.cpp │ ├── test_projtangent.cpp │ ├── test_symbolic_diff.cpp │ ├── test_vf_chi.cpp │ ├── test_vf_integrals.cpp │ ├── test_vf_operators.cpp │ └── test_vf_val.cpp ├── feelviewfactor │ ├── CMakeLists.txt │ ├── cases │ │ ├── cube │ │ │ ├── cube.geo │ │ │ └── cube.json │ │ ├── cylinder │ │ │ ├── cylinder.geo │ │ │ └── cylinder.json │ │ ├── raytracing │ │ │ ├── cube │ │ │ │ ├── cube.geo │ │ │ │ └── cube_raytracing.json │ │ │ └── cylinder │ │ │ │ └── cylinder_raytracing.json │ │ ├── square │ │ │ ├── square.geo │ │ │ └── square.json │ │ └── viewfactor.cfg │ ├── test_viewfactor_quadrature.cpp │ └── test_viewfactor_raytracing.cpp ├── referencestates.md └── testsuite.cpp └── toolboxes ├── CMakeLists.txt ├── CONTRIBUTING.adoc ├── COPYING.adoc ├── README.adoc ├── advection ├── CMakeLists.txt ├── cases │ ├── ring │ │ ├── ring2d.cfg │ │ ├── ring2d.geo │ │ └── ring2d.json │ └── square │ │ ├── square2d.cfg │ │ ├── square2d.geo │ │ └── square2d.json └── main_adv.cpp ├── alemesh ├── CMakeLists.txt ├── alemesh_remesh.cpp ├── cases │ ├── TurekHron │ │ ├── cfd.geo │ │ ├── pingpong.cfg │ │ └── transx.cfg │ ├── horsesaddle │ │ ├── horsesaddle.cfg │ │ └── horsesaddle.geo │ ├── meshadaptation │ │ ├── example1.cfg │ │ └── square.geo │ └── sphere │ │ ├── sphere.cfg │ │ └── sphere.geo └── main.cpp ├── cmake ├── CMakeLists.txt ├── feelpp-toolboxes.package.cmake └── feelpp.version.cmake ├── coefficientformpdes ├── .tests.coefficientformpdes ├── CMakeLists.txt ├── cases │ ├── adr │ │ ├── FrancaValentin │ │ │ ├── advection_skew.cfg │ │ │ ├── advection_skew.json │ │ │ ├── reactive_diffusive.cfg │ │ │ ├── reactive_diffusive.json │ │ │ └── square.geo │ │ ├── advection_skew_to_the_mesh │ │ │ ├── bench2d.cfg │ │ │ ├── bench2d.geo │ │ │ └── bench2d.json │ │ └── rotating_hill │ │ │ ├── case_dg.cfg │ │ │ ├── case_dg.json │ │ │ ├── circle.geo │ │ │ └── square.geo │ ├── bratu │ │ └── square │ │ │ ├── bratu.cfg │ │ │ ├── bratu.json │ │ │ └── square.geo │ ├── cahn-hilliard │ │ ├── ch.cfg │ │ ├── ch.json │ │ └── square2d.geo │ ├── fluid │ │ ├── TurekHron │ │ │ ├── cfd.geo │ │ │ ├── cfd2.cfg │ │ │ └── cfd2.json │ │ └── stokes │ │ │ ├── square2d.geo │ │ │ ├── stokes.cfg │ │ │ └── stokes.json │ ├── heat │ │ ├── ThermalBridgesENISO10211 │ │ │ ├── thermo2dCase2.cfg │ │ │ ├── thermo2dCase2.geo │ │ │ ├── thermo2dCase2.json │ │ │ └── thermo2dCase2_alternative.json │ │ ├── forced_convection │ │ │ ├── forced_convection.cfg │ │ │ └── forced_convection.json │ │ └── thermo2d │ │ │ ├── testsuite_thermo2d.cfg │ │ │ ├── thermo2d.cfg │ │ │ ├── thermo2d.geo │ │ │ ├── thermo2d.json │ │ │ ├── thermo2d_alternative.cfg │ │ │ └── thermo2d_alternative.json │ ├── heatfluid │ │ └── NaturalConvection │ │ │ └── MIT_benchmark_2001 │ │ │ ├── cfd2d.cfg │ │ │ ├── cfd2d.geo │ │ │ └── cfd2d.json │ ├── laplace │ │ └── l-shape │ │ │ ├── l-shape-3d.cfg │ │ │ ├── l-shape-3d.geo │ │ │ ├── l-shape-3d.json │ │ │ ├── l-shape.cfg │ │ │ ├── l-shape.geo │ │ │ └── l-shape.json │ ├── linear-elasticity │ │ ├── beam.geo │ │ ├── linear-elasticity.cfg │ │ └── linear-elasticity.json │ ├── magnetostatic │ │ └── h-convergence │ │ │ └── square │ │ │ ├── case_regularized.cfg │ │ │ ├── case_regularized.json │ │ │ ├── case_saddle-point.cfg │ │ │ ├── case_saddle-point.json │ │ │ └── square.geo │ ├── mesh-motion │ │ ├── harmonic-extension.cfg │ │ ├── harmonic-extension.json │ │ └── square.geo │ ├── p-laplacian │ │ ├── regularized.cfg │ │ ├── regularized.json │ │ └── square.geo │ ├── predator-prey │ │ ├── predator-prey.cfg │ │ ├── predator-prey.json │ │ └── square2d.geo │ ├── square │ │ ├── square2d.cfg │ │ ├── square2d.geo │ │ └── square2d.json │ └── thermoelectric │ │ ├── ElectroMagnets_HL-31_H1 │ │ ├── HL-31_H1.cfg │ │ ├── HL-31_H1.json │ │ ├── HL-31_H1_nonlinear.cfg │ │ └── HL-31_H1_nonlinear.json │ │ └── test │ │ ├── test-thermoelectric.cfg │ │ ├── test-thermoelectric.geo │ │ └── test-thermoelectric.json ├── coefficientformpdes.adoc └── main.cpp ├── electric ├── CMakeLists.txt ├── cases │ ├── ElectroMagnets │ │ ├── HL-31-H1H4 │ │ │ ├── HL-31-H1H4.cfg │ │ │ └── HL-31-H1H4.json │ │ └── HL-31_H1 │ │ │ ├── HL-31_H1.cfg │ │ │ └── HL-31_H1.json │ ├── busbar │ │ ├── 2d.cfg │ │ ├── 2d.geo │ │ ├── 2d.json │ │ ├── 3d.cfg │ │ ├── 3d.geo │ │ └── 3d.json │ └── quarter-turn │ │ ├── 2d.cfg │ │ ├── 2d.geo │ │ ├── 2d.json │ │ ├── 3d.cfg │ │ ├── 3d.geo │ │ └── 3d.json ├── electric.adoc └── main_electric.cpp ├── feel └── feelmodels │ ├── CMakeLists.txt │ ├── advection │ ├── CMakeLists.txt │ ├── advection.cpp │ ├── advection.hpp │ ├── advection_inst.cpp │ ├── advectionconfig.h.in │ ├── advectionstabilisation.cpp │ ├── diffusionreactionmodel.hpp │ └── libadvection.cpp │ ├── body │ ├── CMakeLists.txt │ └── bodymotion.hpp │ ├── cmake │ ├── CMakeLists.txt │ ├── Feel++-ToolboxesConfig.cmake.in │ └── feelpp.models.macros.cmake │ ├── coefficientformpdes │ ├── CMakeLists.txt │ ├── coefficientformpde.cpp │ ├── coefficientformpde.hpp │ ├── coefficientformpde_inst.cpp │ ├── coefficientformpdeassembly.hpp │ ├── coefficientformpdeassemblystabilizationgls.hpp │ ├── coefficientformpdebase.cpp │ ├── coefficientformpdebase.hpp │ ├── coefficientformpdeboundaryconditions.cpp │ ├── coefficientformpdeboundaryconditions.hpp │ ├── coefficientformpdeconfig.h.in │ ├── coefficientformpdes.cpp │ ├── coefficientformpdes.hpp │ ├── coefficientformpdes_inst.cpp │ ├── coefficientformpdes_registered_type.hpp.in │ ├── coefficientformpdesassembly.hpp │ ├── coefficientformpdesassemblyjacobian_spec.cpp │ ├── coefficientformpdesassemblylinear_spec.cpp │ ├── coefficientformpdesassemblyresidual_spec.cpp │ ├── coefficientformpdesbasisspecialisation.h.in │ ├── coefficientformpdesconfig.h.in │ └── libcoefficientformpdes.cpp │ ├── electric │ ├── CMakeLists.txt │ ├── electric.cpp │ ├── electric.hpp │ ├── electric_inst.cpp │ ├── electricassembly.hpp │ ├── electricassemblyjacobian.cpp │ ├── electricassemblyjacobian_inst.cpp │ ├── electricassemblylinear.cpp │ ├── electricassemblylinear_inst.cpp │ ├── electricassemblyresidual.cpp │ ├── electricassemblyresidual_inst.cpp │ ├── electricboundaryconditions.cpp │ ├── electricboundaryconditions.hpp │ ├── electricconfig.h.in │ └── libelectric.cpp │ ├── execute.hpp │ ├── fluid │ ├── CMakeLists.txt │ ├── fluidmechanics.hpp │ ├── fluidmechanicsassemblyjacobian.cpp │ ├── fluidmechanicsassemblyjacobian.hpp │ ├── fluidmechanicsassemblyjacobian_inst.cpp │ ├── fluidmechanicsassemblylinear.cpp │ ├── fluidmechanicsassemblylinear.hpp │ ├── fluidmechanicsassemblylinear_inst.cpp │ ├── fluidmechanicsassemblyresidual.cpp │ ├── fluidmechanicsassemblyresidual.hpp │ ├── fluidmechanicsassemblyresidual_inst.cpp │ ├── fluidmechanicsassemblystabilisationgls.hpp │ ├── fluidmechanicsassemblyturbulence.cpp │ ├── fluidmechanicsassemblyturbulence_inst.cpp │ ├── fluidmechanicsboundaryconditions.cpp │ ├── fluidmechanicsboundaryconditions.hpp │ ├── fluidmechanicsconfig.h.in │ ├── fluidmechanicscreate.cpp │ ├── fluidmechanicscreate_inst.cpp │ ├── fluidmechanicsmaterialproperties.hpp │ ├── fluidmechanicsothers.cpp │ ├── fluidmechanicsothers.hpp │ ├── fluidmechanicsothers_inst.cpp │ ├── fluidmechanicsupdatestabilisation.cpp │ ├── fluidmechanicsupdatestabilisation_inst.cpp │ └── libfluidmechanics.cpp │ ├── fsi │ ├── CMakeLists.txt │ ├── aitkenrelaxationfsi.cpp │ ├── aitkenrelaxationfsi.hpp │ ├── fsi.cpp │ ├── fsi.hpp │ ├── fsi_inst.cpp │ ├── fsibc.cpp │ ├── fsibc_inst.cpp │ ├── fsiconfig.h.in │ ├── fsiinterpolation.cpp │ └── libfsi.cpp │ ├── hdg │ ├── CMakeLists.txt │ ├── coupledmixedpoisson.hpp │ ├── enums.cpp │ ├── enums.hpp │ ├── libmixedpoisson.cpp │ ├── mixedpoisson.cpp │ ├── mixedpoisson.hpp │ ├── mixedpoisson_inst.cpp │ ├── mixedpoissonassembly.hpp │ ├── mixedpoissonassembly_inst.cpp │ ├── mixedpoissonassemblylinear.cpp │ ├── mixedpoissonassemblylinear_inst.cpp │ ├── mixedpoissonboundaryconditions.cpp │ ├── mixedpoissonboundaryconditions.hpp │ ├── mixedpoissonconfig.h.in │ ├── options.cpp │ ├── options.hpp │ ├── poroelastic.cpp │ ├── poroelastic.hpp │ └── thermoelectric.hpp │ ├── heat │ ├── CMakeLists.txt │ ├── heat.cpp │ ├── heat.hpp │ ├── heat_inst.cpp │ ├── heatassembly.hpp │ ├── heatassemblyjacobian.cpp │ ├── heatassemblyjacobian_inst.cpp │ ├── heatassemblylinear.cpp │ ├── heatassemblylinear_inst.cpp │ ├── heatassemblyresidual.cpp │ ├── heatassemblyresidual_inst.cpp │ ├── heatboundaryconditions.cpp │ ├── heatboundaryconditions.hpp │ ├── heatconfig.h.in │ ├── heatupdatestabilizationgls.hpp │ └── libheat.cpp │ ├── heatfluid │ ├── CMakeLists.txt │ ├── heatfluid.cpp │ ├── heatfluid.hpp │ ├── heatfluid_inst.cpp │ ├── heatfluidassemblyjacobian.cpp │ ├── heatfluidassemblyjacobian_inst.cpp │ ├── heatfluidassemblylinear.cpp │ ├── heatfluidassemblylinear_inst.cpp │ ├── heatfluidassemblyresidual.cpp │ ├── heatfluidassemblyresidual_inst.cpp │ ├── heatfluidconfig.h.in │ └── libheatfluid.cpp │ ├── levelset │ ├── CMakeLists.txt │ ├── cauchygreeninvariantsexpr.hpp │ ├── cauchygreentensorexpr.hpp │ ├── globallevelsetexpr.hpp │ ├── levelset.cpp │ ├── levelset.hpp │ ├── levelset_inst.cpp │ ├── levelsetadvection_inst.cpp │ ├── levelsetbase.cpp │ ├── levelsetbase.hpp │ ├── levelsetbase_inst.cpp │ ├── levelsetbaseconfig.h.in │ ├── levelsetconfig.h.in │ ├── levelsetcurvaturediffusion.hpp │ ├── levelsetdeltaexpr.hpp │ ├── levelsetfilters.hpp │ ├── levelsetheavisideexpr.hpp │ ├── levelsetparticleinjector.hpp │ ├── levelsetparticleshapes.hpp │ ├── levelsetredistanciation.hpp │ ├── levelsetredistanciation_fm.cpp │ ├── levelsetredistanciation_fm.hpp │ ├── levelsetredistanciation_fm_inst.cpp │ ├── levelsetredistanciation_hj.cpp │ ├── levelsetredistanciation_hj.hpp │ ├── levelsetredistanciation_hj_inst.cpp │ ├── levelsetspacemanager.cpp │ ├── levelsetspacemanager.hpp │ ├── levelsetspacemanager_inst.cpp │ ├── levelsettoolmanager.hpp │ ├── liblevelset.cpp │ ├── parameter_map.cpp │ ├── parameter_map.hpp │ ├── reinitializer.hpp │ ├── reinitializer_fm.hpp │ └── reinitializer_hj.hpp │ ├── maxwell │ ├── CMakeLists.txt │ ├── libmaxwell.cpp │ ├── maxwell.cpp │ ├── maxwell.hpp │ ├── maxwell_inst.cpp │ ├── maxwellconfig.h.in │ └── maxwellpropertiesdescription.hpp │ ├── modelcore │ ├── CMakeLists.txt │ ├── convergencemode.hpp │ ├── diffsymbolicexpr.hpp │ ├── feelmodelscoreconstconfig.hpp.in │ ├── genericboundaryconditions.cpp │ ├── genericboundaryconditions.hpp │ ├── log.cpp │ ├── log.hpp │ ├── markermanagement.cpp │ ├── markermanagement.hpp │ ├── modelalgebraic.cpp │ ├── modelalgebraic.hpp │ ├── modelalgebraicfactory.cpp │ ├── modelalgebraicfactory.hpp │ ├── modelbase.cpp │ ├── modelbase.hpp │ ├── modelcontext.hpp │ ├── modelcore.hpp │ ├── modelfields.hpp │ ├── modelgenericpde.cpp │ ├── modelgenericpde.hpp │ ├── modelmeasures.cpp │ ├── modelmeasures.hpp │ ├── modelmeasuresnormevaluation.hpp │ ├── modelmeasurespointsevaluation.hpp │ ├── modelmeasuresquantities.hpp │ ├── modelmeasuresstatisticsevaluation.hpp │ ├── modelmeshadaptation.cpp │ ├── modelmeshes.cpp │ ├── modelmeshes.hpp │ ├── modelnumerical.cpp │ ├── modelnumerical.hpp │ ├── modelphysics.cpp │ ├── modelphysics.hpp │ ├── options.cpp │ ├── options.hpp │ ├── rangedistributionbymaterialname.hpp │ ├── remeshinterpolation.hpp │ ├── stabilizationglsparameter.hpp │ ├── stabilizationglsparameterbase.hpp │ ├── timertool.cpp │ ├── timertool.hpp │ ├── traits.hpp │ ├── trialssymbolsexpr.hpp │ └── utils.hpp │ ├── modelmaterials │ ├── CMakeLists.txt │ └── materialsproperties.hpp │ ├── modelmesh │ ├── CMakeLists.txt │ ├── ale.cpp │ ├── ale.hpp │ ├── ale2d.cpp │ ├── ale3d.cpp │ ├── ale_impl.cpp │ ├── ale_impl.hpp │ ├── createmesh.cpp │ ├── createmesh.hpp │ ├── dofrelationshipmap.hpp │ ├── fsimesh.cpp │ ├── fsimesh.hpp │ ├── harmonicextension.cpp │ ├── harmonicextension.hpp │ ├── markedmeshtool.hpp │ ├── meshale.cpp │ ├── meshale.hpp │ ├── metricmeshadaptation.cpp │ ├── metricmeshadaptation.hpp │ ├── winslow.cpp │ ├── winslow.hpp │ ├── winslow_inst2d.cpp │ └── winslow_inst3d.cpp │ ├── modelvf │ ├── CMakeLists.txt │ ├── eigendecomposition.hpp │ ├── evalonentities.hpp │ ├── exprevaluatefieldoperators.hpp │ ├── exproperations.hpp │ ├── exprselectorbymeshelement.hpp │ ├── exprtensorbase.hpp │ ├── fluidmecconvection.hpp │ ├── fluidmecconvectiveterm.hpp │ ├── fluidmecdivstresstensor.hpp │ ├── fluidmecdynamicviscosity.hpp │ ├── fluidmecstresstensor.hpp │ ├── shockcapturing.hpp │ ├── solidmecfirstpiolakirchhoff.hpp │ ├── solidmecgeomapeulerian.hpp │ ├── solidmecincompressibility.hpp │ ├── solidmecstvenantkirchhoff.hpp │ └── stabilizationglsparameter.hpp │ ├── multifluid │ ├── CMakeLists.txt │ ├── helfrichforceexpr.hpp │ ├── helfrichforcemodel.hpp │ ├── hyperelasticforcemodel.hpp │ ├── inextensibilityforcemodel.hpp │ ├── interfaceforcesmodel.hpp │ ├── libmultifluid.cpp │ ├── linearelasticforcemodel.hpp │ ├── multifluid.cpp │ ├── multifluid.hpp │ ├── multifluid_inst.cpp │ ├── multifluidconfig.h.in │ ├── skalakforcemodel.hpp │ └── surfacetensionforcemodel.hpp │ ├── solid │ ├── CMakeLists.txt │ ├── libsolidmechanics.cpp │ ├── solidmechanics.hpp │ ├── solidmechanics1dreduced.cpp │ ├── solidmechanics1dreduced.hpp │ ├── solidmechanics1dreduced_inst.cpp │ ├── solidmechanics1dreducedboundaryconditions.cpp │ ├── solidmechanics1dreducedboundaryconditions.hpp │ ├── solidmechanicsassembly.hpp │ ├── solidmechanicsboundaryconditions.cpp │ ├── solidmechanicsboundaryconditions.hpp │ ├── solidmechanicsconfig.h.in │ ├── solidmechanicscreate.cpp │ ├── solidmechanicscreate_inst.cpp │ ├── solidmechanicsothers.cpp │ ├── solidmechanicsothers_inst.cpp │ ├── solidmechanicsupdatejacobian.cpp │ ├── solidmechanicsupdatejacobian_inst.cpp │ ├── solidmechanicsupdatelinear.cpp │ ├── solidmechanicsupdatelinear_inst.cpp │ ├── solidmechanicsupdateresidual.cpp │ └── solidmechanicsupdateresidual_inst.cpp │ └── thermoelectric │ ├── CMakeLists.txt │ ├── libthermoelectric.cpp │ ├── thermoelectric.cpp │ ├── thermoelectric.hpp │ ├── thermoelectric_inst.cpp │ ├── thermoelectricassemblyjacobian.cpp │ ├── thermoelectricassemblyjacobian_inst.cpp │ ├── thermoelectricassemblylinear.cpp │ ├── thermoelectricassemblylinear_inst.cpp │ ├── thermoelectricassemblyresidual.cpp │ ├── thermoelectricassemblyresidual_inst.cpp │ └── thermoelectricconfig.h.in ├── fluid ├── .tests.fluid ├── CMakeLists.txt ├── cases │ ├── TurekHron │ │ ├── TurekHron.cfg │ │ ├── cfd.geo │ │ ├── cfd1.cfg │ │ ├── cfd1.json │ │ ├── cfd2.cfg │ │ ├── cfd2.json │ │ ├── cfd3.cfg │ │ ├── cfd3.json │ │ ├── cfd3_meshadapt.json │ │ └── moving_body │ │ │ ├── cfd.geo │ │ │ ├── cfd3.cfg │ │ │ └── cfd3.json │ ├── TurekHronExt3d │ │ ├── README.adoc │ │ ├── cfd.geo │ │ ├── cfd3.cfg │ │ ├── cfd3.json │ │ └── cfd_bis.geo │ ├── backwardfacingstep │ │ ├── cfd2d.cfg │ │ ├── cfd2d.json │ │ ├── cfd2d_turbulence.cfg │ │ ├── cfd2d_turbulence.json │ │ ├── cfd3d.cfg │ │ ├── cfd3d.json │ │ ├── step-elmann-2009.geo │ │ ├── step-turbulence.geo │ │ └── step-turbulence_bis.geo │ ├── lid-driven-cavity │ │ ├── cfd2d.cfg │ │ ├── cfd2d.geo │ │ └── cfd2d.json │ ├── moving_body │ │ ├── gravity │ │ │ ├── Falling_one_disk │ │ │ │ ├── One_disk.cfg │ │ │ │ ├── One_disk.geo │ │ │ │ └── One_disk.json │ │ │ ├── cfd.cfg │ │ │ ├── cfd.geo │ │ │ ├── cfd.json │ │ │ ├── collisions │ │ │ │ ├── circle.cfg │ │ │ │ ├── circle.geo │ │ │ │ ├── circle.json │ │ │ │ ├── ellipse.cfg │ │ │ │ ├── ellipse.geo │ │ │ │ └── ellipse.json │ │ │ ├── cylinder_under_gravity │ │ │ │ ├── README.adoc │ │ │ │ ├── curve_comparison.csv │ │ │ │ ├── cylinder_under_gravity.cfg │ │ │ │ ├── cylinder_under_gravity.geo │ │ │ │ └── cylinder_under_gravity.json │ │ │ ├── falling_cylinder_confined │ │ │ │ ├── falling_cylinder_confined.cfg │ │ │ │ ├── falling_cylinder_confined.geo │ │ │ │ └── falling_cylinder_confined.json │ │ │ ├── falling_ellipse │ │ │ │ ├── falling_ellipse.cfg │ │ │ │ ├── falling_ellipse.geo │ │ │ │ └── falling_ellipse.json │ │ │ └── shape_under_gravity │ │ │ │ ├── 2d │ │ │ │ ├── shape_under_gravity.cfg │ │ │ │ ├── shape_under_gravity.geo │ │ │ │ └── shape_under_gravity.json │ │ │ │ └── 3d │ │ │ │ ├── pc.cfg │ │ │ │ ├── shape_under_gravity.cfg │ │ │ │ ├── shape_under_gravity.geo │ │ │ │ └── shape_under_gravity.json │ │ ├── naca0012_profile │ │ │ ├── naca0012_profile.cfg │ │ │ ├── naca0012_profile.geo │ │ │ ├── naca0012_profile.json │ │ │ └── naca0012_profile_progressive.geo │ │ ├── sphere_testcase │ │ │ ├── README.adoc │ │ │ ├── Sphere.geo │ │ │ ├── sphere_testcase.cfg │ │ │ └── sphere_testcase.json │ │ ├── three_sphere │ │ │ ├── three_sphere.cfg │ │ │ ├── three_sphere.geo │ │ │ └── three_sphere.json │ │ └── three_sphere_2D │ │ │ ├── three_sphere_2D.cfg │ │ │ ├── three_sphere_2D.geo │ │ │ └── three_sphere_2D.json │ ├── movingboundary │ │ ├── cfd.cfg │ │ ├── cfd.geo │ │ └── cfd.json │ ├── nonnewtonian_pipe │ │ ├── cfd.cfg │ │ ├── cfd.geo │ │ └── cfd.json │ └── turbulence-plane-channel │ │ ├── cfd2d.cfg │ │ ├── cfd2d.geo │ │ ├── cfd2d.json │ │ └── cfd2d_bis.geo ├── fluid.adoc ├── main_fm.cpp └── turbulence-plane-channel │ └── k-epsilon │ ├── cfd2d.cfg │ ├── cfd2d.geo │ ├── cfd2d.json │ └── cfd2d_bis.geo ├── fsi ├── CMakeLists.txt ├── cases │ ├── TurekHron │ │ ├── fsi.geo │ │ ├── fsi1.cfg │ │ ├── fsi3.cfg │ │ └── fsi3.json │ ├── cavity2d │ │ ├── cavity2d.cfg │ │ ├── cavity2d.geo │ │ └── cavity2d.json │ ├── movingboundary │ │ ├── fsi.cfg │ │ ├── fsi.geo │ │ └── fsi.json │ ├── wavepressure2d │ │ ├── wavepressure2d.cfg │ │ ├── wavepressure2d.json │ │ └── wavepressure2d_fluid.geo │ └── wavepressure3d │ │ ├── straightpipe.geo │ │ ├── wavepressure3d.cfg │ │ └── wavepressure3d.json ├── fsi.adoc └── main_fsi.cpp ├── generator └── cases │ ├── heat_nirb │ ├── case_generator_cube.adoc │ ├── cube_generator.py │ ├── cube_templates │ │ ├── cube.geo │ │ ├── heat-cube-crb.json │ │ ├── heat-cube.cfg │ │ └── heat-cube.json │ ├── cubes.png │ └── fig │ │ ├── 2d2.png │ │ ├── 2d3x3.png │ │ ├── 3d.png │ │ └── cubes.png │ └── thermal_fin │ ├── case_generator_thermal_fin.adoc │ ├── case_generator_thermal_fin.py │ ├── templates │ ├── fin.geo │ ├── thermal-fin-crb.json │ ├── thermal-fin.cfg │ └── thermal-fin.json │ └── thermal-fin.png ├── hdg ├── .tests.hdg_coupledpoisson ├── .tests.hdg_elasticity ├── .tests.hdg_poisson ├── .tests.hdg_thermoelectric ├── CMakeLists.txt ├── cases │ ├── attic │ │ ├── darcy │ │ │ ├── darcy.cfg │ │ │ ├── darcy.geo │ │ │ └── darcy.json │ │ ├── eye2brain_level1 │ │ │ ├── Retina_NBP_res.csv │ │ │ ├── lc3d.cfg │ │ │ ├── lc3d.geo │ │ │ ├── lcPoisson.json │ │ │ └── readme.md │ │ ├── mixed-elasticity │ │ │ ├── cylinder_traction.geo │ │ │ ├── laminaElasticity.cfg │ │ │ ├── laminaElasticity.json │ │ │ ├── lc3d.geo │ │ │ ├── prism_traction.geo │ │ │ ├── testElasticity.cfg │ │ │ ├── testElasticity.geo │ │ │ ├── testElasticity.json │ │ │ ├── testSC.cfg │ │ │ ├── testSC.json │ │ │ ├── tetra.geo │ │ │ ├── tractionIBCelasticity.cfg │ │ │ ├── tractionIBCelasticity.json │ │ │ └── triangle.geo │ │ ├── readme.md │ │ ├── solenoid │ │ │ ├── solenoid.cfg │ │ │ ├── solenoid.geo │ │ │ └── solenoid.json │ │ ├── test-hdgRobin │ │ │ ├── dirichlet.cfg │ │ │ ├── dirichlet.geo │ │ │ ├── dirichlet.json │ │ │ ├── readme.md │ │ │ ├── robin.cfg │ │ │ ├── robin.geo │ │ │ └── robin.json │ │ ├── testDarcy │ │ │ ├── quarter-turn2D.cfg │ │ │ ├── quarter-turn2D.geo │ │ │ ├── quarter-turn2D.json │ │ │ ├── readme.md │ │ │ ├── unitsquare.cfg │ │ │ ├── unitsquare.geo │ │ │ └── unitsquare.json │ │ ├── testDarcy2D │ │ │ ├── readme.md │ │ │ ├── testDarcy2D.cfg │ │ │ ├── testDarcy2D.geo │ │ │ └── testDarcy2D.json │ │ ├── testDarcy3D │ │ │ ├── readme.md │ │ │ ├── testDarcy3D.cfg │ │ │ ├── testDarcy3D.geo │ │ │ └── testDarcy3D.json │ │ ├── testHDG │ │ │ ├── linear.cfg │ │ │ ├── linear.json │ │ │ ├── quadratic_space.cfg │ │ │ ├── quadratic_space.json │ │ │ ├── quadratic_time.cfg │ │ │ ├── quadratic_time.json │ │ │ └── test2d.geo │ │ ├── testHdgElasticity │ │ │ ├── testElasticity-2D.cfg │ │ │ ├── testElasticity-2D.geo │ │ │ ├── testElasticity-2D.json │ │ │ ├── testElasticity.cfg │ │ │ ├── testElasticity.geo │ │ │ └── testElasticity.json │ │ └── test_gamg │ │ │ ├── test_gamg.cfg │ │ │ ├── test_gamg.geo │ │ │ └── test_gamg.json │ ├── coupledpoisson │ │ ├── 1-linear │ │ │ ├── CMakeLists.txt │ │ │ ├── cvg-test3d0d.slurm │ │ │ ├── linear-dc.json │ │ │ ├── linear.cfg │ │ │ ├── linear.json │ │ │ ├── nonlinearResistor.mo │ │ │ ├── test3d0d.fmu │ │ │ ├── test3d0d.geo │ │ │ ├── test3d0d.mo │ │ │ └── voltageTest3d0d.mo │ │ ├── 2-nonlinearR │ │ │ ├── .DS_Store │ │ │ ├── CMakeLists.txt │ │ │ ├── currentInterfaceSource.mo │ │ │ ├── nonlinearR.cfg │ │ │ ├── nonlinearR.json │ │ │ ├── nonlinearResistor.mo │ │ │ ├── test3d0d.geo │ │ │ ├── test3d0d_nonlinearR.mo │ │ │ ├── voltageInterfaceSource.mo │ │ │ └── voltage_nonlinearTest3d0d.mo │ │ ├── 3-nonlinearC │ │ │ ├── CMakeLists.txt │ │ │ ├── nonlinearC.cfg │ │ │ ├── nonlinearC.json │ │ │ ├── nonlinearCapacitor.mo │ │ │ ├── nonlinearResistor.mo │ │ │ ├── test3d0d.geo │ │ │ ├── test3d0d_nonlinearC.mo │ │ │ └── voltage_nonlinearC.mo │ │ ├── CMakeLists.txt │ │ └── test-linear │ │ │ ├── CMakeLists.txt │ │ │ ├── test_linear.cfg │ │ │ ├── test_linear.json │ │ │ └── test_linear.mo │ ├── elasticity │ │ └── quarterturn │ │ │ ├── quarterturn2D.cfg │ │ │ ├── quarterturn2D.geo │ │ │ ├── quarterturn2D.json │ │ │ ├── quarterturn3D.cfg │ │ │ ├── quarterturn3D.geo │ │ │ └── quarterturn3D.json │ ├── poisson │ │ ├── convection-diffusion │ │ │ ├── convection-diffusion-2d-square.cfg │ │ │ ├── convection-diffusion-2d-square.json │ │ │ └── square.geo │ │ ├── cylinder │ │ │ ├── cylinder.cfg │ │ │ ├── cylinder.geo │ │ │ ├── cylinder.json │ │ │ └── readme.md │ │ ├── mixed-poisson │ │ │ ├── double_rect.geo │ │ │ ├── test_double_domain.cfg │ │ │ ├── test_double_domain.json │ │ │ ├── test_double_integral.cfg │ │ │ ├── test_double_integral.geo │ │ │ └── test_double_integral.json │ │ ├── nonlinear │ │ │ ├── nonlinear.cfg │ │ │ ├── nonlinear.geo │ │ │ ├── nonlinear.json │ │ │ └── readme.md │ │ ├── parabolic │ │ │ ├── parabolic.cfg │ │ │ ├── parabolic.json │ │ │ └── test.geo │ │ ├── quarter-turn │ │ │ ├── quarter-turn2D-electro.json │ │ │ ├── quarter-turn2D-int.cfg │ │ │ ├── quarter-turn2D-int.json │ │ │ ├── quarter-turn2D-thermo.json │ │ │ ├── quarter-turn2D.cfg │ │ │ ├── quarter-turn2D.geo │ │ │ ├── quarter-turn3D-electro.json │ │ │ ├── quarter-turn3D-int.cfg │ │ │ ├── quarter-turn3D-int.json │ │ │ ├── quarter-turn3D-thermo.json │ │ │ ├── quarter-turn3D.cfg │ │ │ ├── quarter-turn3D.geo │ │ │ └── readme.md │ │ ├── red │ │ │ ├── readme.md │ │ │ ├── red.cfg │ │ │ ├── red.geo │ │ │ ├── red.json │ │ │ ├── test_red.cfg │ │ │ └── test_red.json │ │ └── testHDG │ │ │ ├── linear.cfg │ │ │ ├── linear.json │ │ │ ├── readme.md │ │ │ └── test2d.geo │ └── thermoelectric │ │ ├── HL-31_H1 │ │ ├── Cu.json │ │ ├── HL-31_H1.cfg │ │ └── HL-31_H1.json │ │ ├── bitter │ │ ├── bitter.cfg │ │ ├── bitter.geo │ │ ├── bitter.json │ │ └── omega.json │ │ ├── multimaterial │ │ ├── omega.json │ │ ├── quarterturn-mult.geo │ │ ├── quarterturn.cfg │ │ └── quarterturn.json │ │ └── quarterturn │ │ ├── omega.json │ │ ├── quarterturn.cfg │ │ ├── quarterturn.geo │ │ └── quarterturn.json ├── coupledmixedpoisson_main.cpp ├── hdg_coupledpoisson.adoc ├── hdg_elasticity.adoc ├── hdg_poisson.adoc ├── mixedelasticity_main.cpp ├── mixedpoisson_main.cpp ├── poroelastic_main.cpp └── thermoelectric_main.cpp ├── heat ├── .tests.heat ├── CMakeLists.txt ├── cases │ ├── Building │ │ ├── README.adoc │ │ └── ThermalBridgesENISO10211 │ │ │ ├── README.adoc │ │ │ ├── case2.cfg │ │ │ ├── case2.geo │ │ │ ├── case2.json │ │ │ ├── case3.cfg │ │ │ ├── case3.geo │ │ │ ├── case3.json │ │ │ ├── case4.cfg │ │ │ ├── case4.geo │ │ │ ├── case4.json │ │ │ └── testsuite_case2.json │ ├── cylindrical_cavity │ │ ├── VF_Matrix_Cavity.csv │ │ ├── cylindrical_cavity.cfg │ │ ├── cylindrical_cavity.geo │ │ ├── cylindrical_cavity.json │ │ └── cylindrical_cavity_vf.json │ ├── h-convergence │ │ └── square │ │ │ ├── square.cfg │ │ │ ├── square.geo │ │ │ └── square.json │ ├── hollow_sphere │ │ ├── case.cfg │ │ ├── case.geo │ │ └── case.json │ ├── rectangular_cavity │ │ ├── rectangular_cavity.cfg │ │ ├── rectangular_cavity.geo │ │ ├── rectangular_cavity.json │ │ └── rectangular_cavity_vf.json │ ├── test_time-stepping │ │ ├── test.cfg │ │ ├── test.geo │ │ └── test.json │ ├── testsuite │ │ ├── cube_8mat.geo │ │ ├── square_4mat.geo │ │ ├── test2d_1.cfg │ │ ├── test2d_1.json │ │ ├── test3d_1.cfg │ │ └── test3d_1.json │ ├── thermo2d │ │ ├── thermo2d.cfg │ │ ├── thermo2d.geo │ │ └── thermo2d.json │ └── triangular_cavity │ │ ├── triangular_cavity.cfg │ │ ├── triangular_cavity.geo │ │ ├── triangular_cavity.json │ │ └── triangular_cavity_vf.json ├── heat.adoc └── main_ht.cpp ├── heatfluid ├── .tests.heatfluid ├── CMakeLists.txt ├── cases │ ├── ForcedConvection │ │ └── TurekHron │ │ │ ├── cfd.geo │ │ │ ├── cfd3.cfg │ │ │ └── cfd3.json │ └── NaturalConvection │ │ ├── MIT_benchmark_2001 │ │ ├── bench.cfg │ │ ├── bench.geo │ │ └── bench.json │ │ └── cavity │ │ ├── 2d_laminar.cfg │ │ ├── 2d_laminar.geo │ │ ├── 2d_laminar.json │ │ ├── 3d_laminar.cfg │ │ ├── 3d_laminar.geo │ │ └── 3d_laminar.json ├── heatfluid.adoc └── main_heatfluid.cpp ├── levelset ├── CMakeLists.txt ├── cases │ ├── injector │ │ ├── injector2d.cfg │ │ ├── injector2d.json │ │ └── rect2d.geo │ ├── square │ │ ├── square2d.cfg │ │ ├── square2d.geo │ │ └── square2d.json │ └── tube │ │ ├── tube2d.cfg │ │ ├── tube2d.geo │ │ └── tube2d.json └── main_ls.cpp ├── maxwell ├── CMakeLists.txt ├── cases │ ├── cvg │ │ ├── 2d.cfg │ │ ├── 2d.geo │ │ ├── 2d.json │ │ ├── 3d.cfg │ │ ├── 3d.geo │ │ └── 3d.json │ └── test │ │ ├── test2d.cfg │ │ ├── test2d.geo │ │ ├── test3d.cfg │ │ ├── test3d.geo │ │ └── test3d.json ├── cvg_maxwell.cpp └── main_maxwell.cpp ├── multifluid ├── CMakeLists.txt ├── cases │ ├── drop │ │ ├── drop2d.cfg │ │ ├── drop2d.geo │ │ ├── drop2d.json │ │ ├── drop3d.geo │ │ ├── drop3d_ellipsoidal.cfg │ │ ├── drop3d_skirted.cfg │ │ ├── fluid2d.json │ │ ├── fluid3d.json │ │ └── levelset3d.json │ ├── sheared_sphere │ │ ├── fluid3d.json │ │ ├── sheared_sphere3d.cfg │ │ ├── sphere3d.json │ │ ├── square3d.geo │ │ └── square3d_refined2.geo │ ├── square │ │ ├── multifluid2d_poiseuille.json │ │ ├── multifluid2d_rest.json │ │ ├── multifluid2d_shear.json │ │ ├── rect2d.geo │ │ ├── square2d.geo │ │ ├── square2d_poiseuille.cfg │ │ ├── square2d_rest.cfg │ │ └── square2d_shear.cfg │ ├── vesicle_rest │ │ ├── fluid2d.json │ │ ├── fluid3d.json │ │ ├── square2d.geo │ │ ├── square3d.geo │ │ ├── vesicle2d.json │ │ ├── vesicle3d.json │ │ ├── vesicle_rest2d.cfg │ │ └── vesicle_rest3d.cfg │ └── vesicle_shear │ │ ├── multifluid2d.json │ │ ├── rect2d.geo │ │ ├── tanktreading2d.cfg │ │ └── tumbling2d.cfg └── main_mf.cpp ├── pyfeelpp-toolboxes └── feelpp │ └── toolboxes │ └── fluid │ └── configuration.json ├── solid ├── .tests.solid ├── CMakeLists.txt ├── cases │ ├── NAFEMS-LE1 │ │ ├── le1.cfg │ │ ├── le1.geo │ │ └── le1.json │ ├── NAFEMS-LE10 │ │ ├── le10.cfg │ │ ├── le10.geo │ │ └── le10.json │ ├── Solenoid │ │ ├── sol.cfg │ │ ├── sol.geo │ │ └── sol.json │ ├── TurekHron │ │ ├── csm.geo │ │ ├── csm1.cfg │ │ ├── csm1.json │ │ ├── csm2.cfg │ │ ├── csm2.json │ │ ├── csm3.cfg │ │ └── csm3.json │ ├── cantilever │ │ ├── cantilever.cfg │ │ ├── cantilever.geo │ │ ├── cantilever.json │ │ └── cantilever.pvsm │ └── torsionbar │ │ ├── torsionbar.cfg │ │ ├── torsionbar.geo │ │ └── torsionbar.json ├── main_sm.cpp ├── solid.adoc └── stress.cpp ├── tests ├── CMakeLists.txt ├── coefficientformpdes │ ├── CMakeLists.txt │ └── test_coefficientformpdes.cpp └── heat │ ├── CMakeLists.txt │ ├── cases │ ├── cavity_radiation_jacobian.hpp │ ├── rht.hpp │ ├── rht_readers.hpp │ ├── test_cavity_cylindrical.cpp │ ├── test_cavity_rectangular.cpp │ ├── test_cavity_triangular.cpp │ └── test_heat.cpp ├── thermoelectric ├── .tests.thermoelectric ├── CMakeLists.txt ├── README.adoc ├── cases │ ├── ElectroMagnets │ │ ├── HL-31_H1 │ │ │ ├── HL-31_H1.cfg │ │ │ ├── HL-31_H1.json │ │ │ ├── HL-31_H1_nonlinear.cfg │ │ │ └── HL-31_H1_nonlinear.json │ │ ├── README.adoc │ │ ├── bitter │ │ │ ├── bitter.cfg │ │ │ ├── bitter.json │ │ │ ├── bitter_nonlinear.cfg │ │ │ └── bitter_nonlinear.json │ │ └── quarterturn │ │ │ ├── nonlinear_mat.json │ │ │ ├── omega.json │ │ │ ├── quarterturn.cfg │ │ │ ├── quarterturn.geo │ │ │ ├── quarterturn.json │ │ │ ├── quarterturn.py │ │ │ └── quarterturn_nonlinear.cfg │ ├── cvg │ │ ├── 2d.cfg │ │ ├── 2d.geo │ │ ├── 2d.json │ │ ├── 3d.cfg │ │ ├── 3d.geo │ │ ├── 3d.json │ │ ├── cube.geo │ │ ├── cube.json │ │ ├── square.geo │ │ └── square.json │ └── test │ │ ├── test-thermoelectric.cfg │ │ ├── test-thermoelectric.geo │ │ └── test-thermoelectric.json ├── cvg_thermoelectric.cpp ├── main_thermoelectric.cpp └── thermoelectric.adoc └── tools └── man ├── CMakeLists.txt ├── Gemfile ├── doc.rb.in └── template.adoc /.buildkite/pipeline.gcc7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.buildkite/pipeline.gcc7.yml -------------------------------------------------------------------------------- /.buildkite/pipeline.generic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.buildkite/pipeline.generic.yml -------------------------------------------------------------------------------- /.buildkite/pipeline.homebrew.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.buildkite/pipeline.homebrew.yml -------------------------------------------------------------------------------- /.buildkite/pipeline.pkg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.buildkite/pipeline.pkg.yml -------------------------------------------------------------------------------- /.buildkite/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.buildkite/pipeline.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.clang-format -------------------------------------------------------------------------------- /.codacy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.codacy.yml -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/detect_platform.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.devcontainer/detect_platform.sh -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/feelppconfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.devcontainer/feelppconfig.sh -------------------------------------------------------------------------------- /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.emacs-dirvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.emacs-dirvars -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @prudhomm @vincentchabannes -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/plan-ci.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.github/plan-ci.json -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/doxygen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.github/workflows/doxygen.yml -------------------------------------------------------------------------------- /.github/workflows/manual.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.github/workflows/manual.yml -------------------------------------------------------------------------------- /.github/workflows/pkg-dist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.github/workflows/pkg-dist.yml -------------------------------------------------------------------------------- /.github/workflows/pkg-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.github/workflows/pkg-docker.yml -------------------------------------------------------------------------------- /.github/workflows/pkg-manual.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.github/workflows/pkg-manual.yml -------------------------------------------------------------------------------- /.github/workflows/pkg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.github/workflows/pkg.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.github/workflows/version.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.gitmodules -------------------------------------------------------------------------------- /.templates/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.templates/README -------------------------------------------------------------------------------- /.templates/README.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.templates/README.tpl -------------------------------------------------------------------------------- /.templates/TEMPLATE.cmake.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.templates/TEMPLATE.cmake.tpl -------------------------------------------------------------------------------- /.templates/TEMPLATE.cpp.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.templates/TEMPLATE.cpp.tpl -------------------------------------------------------------------------------- /.templates/TEMPLATE.dox.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.templates/TEMPLATE.dox.tpl -------------------------------------------------------------------------------- /.templates/TEMPLATE.hpp.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.templates/TEMPLATE.hpp.tpl -------------------------------------------------------------------------------- /.templates/TEMPLATE.oct.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.templates/TEMPLATE.oct.tpl -------------------------------------------------------------------------------- /.templates/TEMPLATE.py.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.templates/TEMPLATE.py.tpl -------------------------------------------------------------------------------- /.templates/TEMPLATE.txt.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.templates/TEMPLATE.txt.tpl -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/feelpp.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.vscode/feelpp.code-snippets -------------------------------------------------------------------------------- /.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.vscode/keybindings.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CHANGELOG.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/CHANGELOG.adoc -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeLists.txt.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/CMakeLists.txt.user -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /COPYING.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/COPYING.adoc -------------------------------------------------------------------------------- /CTestConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/CTestConfig.cmake -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/README.adoc -------------------------------------------------------------------------------- /benchmarks/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/benchmarks/.gitignore -------------------------------------------------------------------------------- /benchmarks/ATTIC/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/benchmarks/ATTIC/CMakeLists.txt -------------------------------------------------------------------------------- /benchmarks/ATTIC/curl/curl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/benchmarks/ATTIC/curl/curl.hpp -------------------------------------------------------------------------------- /benchmarks/ATTIC/darcy/cst.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/benchmarks/ATTIC/darcy/cst.cfg -------------------------------------------------------------------------------- /benchmarks/ATTIC/darcy/darcy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/benchmarks/ATTIC/darcy/darcy.hpp -------------------------------------------------------------------------------- /benchmarks/ATTIC/hdg/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/benchmarks/ATTIC/hdg/README.adoc -------------------------------------------------------------------------------- /benchmarks/ATTIC/hdg/beam.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/benchmarks/ATTIC/hdg/beam.geo -------------------------------------------------------------------------------- /benchmarks/ATTIC/hdg/beam3d.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/benchmarks/ATTIC/hdg/beam3d.geo -------------------------------------------------------------------------------- /benchmarks/ATTIC/hdg/le-beam.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/benchmarks/ATTIC/hdg/le-beam.cfg -------------------------------------------------------------------------------- /benchmarks/ATTIC/hdg/oneelt.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/benchmarks/ATTIC/hdg/oneelt.msh -------------------------------------------------------------------------------- /benchmarks/ATTIC/hdg/tetra.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/benchmarks/ATTIC/hdg/tetra.geo -------------------------------------------------------------------------------- /benchmarks/ATTIC/hdg/tetra.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/benchmarks/ATTIC/hdg/tetra.msh -------------------------------------------------------------------------------- /benchmarks/ATTIC/hdg/twoelt.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/benchmarks/ATTIC/hdg/twoelt.msh -------------------------------------------------------------------------------- /benchmarks/ATTIC/logs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/benchmarks/ATTIC/logs.cpp -------------------------------------------------------------------------------- /benchmarks/ATTIC/logs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/benchmarks/ATTIC/logs.hpp -------------------------------------------------------------------------------- /benchmarks/ATTIC/mesh/bench1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/benchmarks/ATTIC/mesh/bench1.cpp -------------------------------------------------------------------------------- /benchmarks/ATTIC/navierstokes/kovasznay2/.gitignore: -------------------------------------------------------------------------------- 1 | /Makefile.in 2 | -------------------------------------------------------------------------------- /benchmarks/ATTIC/navierstokes/stokes/.gitignore: -------------------------------------------------------------------------------- 1 | /Makefile.in 2 | -------------------------------------------------------------------------------- /benchmarks/ATTIC/perf/.gitignore: -------------------------------------------------------------------------------- 1 | /Makefile.in 2 | -------------------------------------------------------------------------------- /benchmarks/ATTIC/perf/bench1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/benchmarks/ATTIC/perf/bench1.hpp -------------------------------------------------------------------------------- /benchmarks/ATTIC/perf/curvature/.gitignore: -------------------------------------------------------------------------------- 1 | /auto 2 | -------------------------------------------------------------------------------- /benchmarks/ATTIC/perf/perf2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/benchmarks/ATTIC/perf/perf2.cpp -------------------------------------------------------------------------------- /benchmarks/ATTIC/perf/stokes/resultats/bercovierengelman/2D-P4P3-Simplex-10-all.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmarks/ATTIC/python/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/benchmarks/ATTIC/python/error.py -------------------------------------------------------------------------------- /benchmarks/ATTIC/python/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/benchmarks/ATTIC/python/tests.py -------------------------------------------------------------------------------- /benchmarks/ATTIC/python/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/benchmarks/ATTIC/python/util.py -------------------------------------------------------------------------------- /benchmarks/ATTIC/python/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/benchmarks/ATTIC/python/view.py -------------------------------------------------------------------------------- /benchmarks/ATTIC/python/view.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/benchmarks/ATTIC/python/view.ui -------------------------------------------------------------------------------- /benchmarks/ATTIC/structure/.gitignore: -------------------------------------------------------------------------------- 1 | /Makefile.in 2 | -------------------------------------------------------------------------------- /benchmarks/ATTIC/structure/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/benchmarks/ATTIC/structure/TODO -------------------------------------------------------------------------------- /benchmarks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/benchmarks/CMakeLists.txt -------------------------------------------------------------------------------- /benchmarks/feelpp/01-env.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/benchmarks/feelpp/01-env.cpp -------------------------------------------------------------------------------- /benchmarks/feelpp/02-mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/benchmarks/feelpp/02-mesh.cpp -------------------------------------------------------------------------------- /benchmarks/feelpp/03-space.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/benchmarks/feelpp/03-space.cpp -------------------------------------------------------------------------------- /benchmarks/feelpp/99-specx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/benchmarks/feelpp/99-specx.cpp -------------------------------------------------------------------------------- /benchmarks/feelpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/benchmarks/feelpp/CMakeLists.txt -------------------------------------------------------------------------------- /benchmarks/feelpp/gmc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/benchmarks/feelpp/gmc.cpp -------------------------------------------------------------------------------- /bin/feelpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/bin/feelpp -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/configure -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- 1 | list -------------------------------------------------------------------------------- /data/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/data/CMakeLists.txt -------------------------------------------------------------------------------- /data/genlist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/data/genlist.sh -------------------------------------------------------------------------------- /data/geo/Box_with_a_sphere.geo: -------------------------------------------------------------------------------- 1 | Merge "Box_with_a_sphere.mesh"; 2 | -------------------------------------------------------------------------------- /data/geo/Box_with_a_sphere.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/data/geo/Box_with_a_sphere.mesh -------------------------------------------------------------------------------- /data/geo/Cylref.geo: -------------------------------------------------------------------------------- 1 | Merge "Cylref.mesh"; 2 | -------------------------------------------------------------------------------- /data/geo/Cylref.med: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/data/geo/Cylref.med -------------------------------------------------------------------------------- /data/geo/Cylref.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/data/geo/Cylref.mesh -------------------------------------------------------------------------------- /data/geo/ReferenceTriangle.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/data/geo/ReferenceTriangle.geo -------------------------------------------------------------------------------- /data/geo/aneurism/aneurysm.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/data/geo/aneurism/aneurysm.geo -------------------------------------------------------------------------------- /data/geo/aneurism/aneurysm.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/data/geo/aneurism/aneurysm.stl -------------------------------------------------------------------------------- /data/geo/aorta/aorta2.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/data/geo/aorta/aorta2.stl -------------------------------------------------------------------------------- /data/geo/bean.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/data/geo/bean.geo -------------------------------------------------------------------------------- /data/geo/cantilever.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/data/geo/cantilever.geo -------------------------------------------------------------------------------- /data/geo/cube_cubeHole.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/data/geo/cube_cubeHole.geo -------------------------------------------------------------------------------- /data/geo/cube_twoMaterials.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/data/geo/cube_twoMaterials.geo -------------------------------------------------------------------------------- /data/geo/fda/fda-2d.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/data/geo/fda/fda-2d.geo -------------------------------------------------------------------------------- /data/geo/fda/fda_Re500_fine.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/data/geo/fda/fda_Re500_fine.geo -------------------------------------------------------------------------------- /data/geo/feelpp/feel.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/data/geo/feelpp/feel.geo -------------------------------------------------------------------------------- /data/geo/feelpp/feel2d-ns.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/data/geo/feelpp/feel2d-ns.geo -------------------------------------------------------------------------------- /data/geo/feelpp/feel3d-ns.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/data/geo/feelpp/feel3d-ns.geo -------------------------------------------------------------------------------- /data/geo/feelpp/feel3d.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/data/geo/feelpp/feel3d.geo -------------------------------------------------------------------------------- /data/geo/geom3D_conductor.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/data/geo/geom3D_conductor.geo -------------------------------------------------------------------------------- /data/geo/life.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/data/geo/life.geo -------------------------------------------------------------------------------- /data/geo/marche.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/data/geo/marche.geo -------------------------------------------------------------------------------- /data/geo/pelvis/pelvis.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/data/geo/pelvis/pelvis.geo -------------------------------------------------------------------------------- /data/geo/pelvis/pelvis.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/data/geo/pelvis/pelvis.stl -------------------------------------------------------------------------------- /data/geo/primitives/cylinder.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/data/geo/primitives/cylinder.geo -------------------------------------------------------------------------------- /data/geo/primitives/torus.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/data/geo/primitives/torus.geo -------------------------------------------------------------------------------- /data/geo/square_squareHole.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/data/geo/square_squareHole.geo -------------------------------------------------------------------------------- /data/geo/square_twoMaterials.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/data/geo/square_twoMaterials.geo -------------------------------------------------------------------------------- /data/geo/tripod.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/data/geo/tripod.geo -------------------------------------------------------------------------------- /data/geo/tripod.med: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/data/geo/tripod.med -------------------------------------------------------------------------------- /data/geo/tripod.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/data/geo/tripod.mesh -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/.gitignore -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/api/.gitignore -------------------------------------------------------------------------------- /doc/api/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/api/CMakeLists.txt -------------------------------------------------------------------------------- /doc/api/Credits.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/api/Credits.doc -------------------------------------------------------------------------------- /doc/api/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/api/Doxyfile.in -------------------------------------------------------------------------------- /doc/api/Notations.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/api/Notations.doc -------------------------------------------------------------------------------- /doc/api/biblio.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/api/biblio.doc -------------------------------------------------------------------------------- /doc/api/eigen_navtree_hacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/api/eigen_navtree_hacks.js -------------------------------------------------------------------------------- /doc/api/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/api/examples.md -------------------------------------------------------------------------------- /doc/api/extract_command.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/api/extract_command.sh -------------------------------------------------------------------------------- /doc/api/feel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/api/feel.css -------------------------------------------------------------------------------- /doc/api/feelppmacros.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/api/feelppmacros.sty -------------------------------------------------------------------------------- /doc/api/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/api/footer.html -------------------------------------------------------------------------------- /doc/api/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/api/header.html -------------------------------------------------------------------------------- /doc/api/ignore_errors.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | $* 2>/dev/null 3 | exit 0 -------------------------------------------------------------------------------- /doc/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/api/index.md -------------------------------------------------------------------------------- /doc/api/layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/api/layout.xml -------------------------------------------------------------------------------- /doc/api/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/api/package-lock.json -------------------------------------------------------------------------------- /doc/api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/api/package.json -------------------------------------------------------------------------------- /doc/api/pngs/logos/cc-LGPL-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/api/pngs/logos/cc-LGPL-a.png -------------------------------------------------------------------------------- /doc/api/pngs/logos/feel_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/api/pngs/logos/feel_logo.png -------------------------------------------------------------------------------- /doc/api/pngs/logos/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/api/pngs/logos/google.png -------------------------------------------------------------------------------- /doc/api/pngs/logos/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/api/pngs/logos/home.png -------------------------------------------------------------------------------- /doc/api/pngs/logos/logoIRMIA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/api/pngs/logos/logoIRMIA.png -------------------------------------------------------------------------------- /doc/api/pngs/logos/logo_anr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/api/pngs/logos/logo_anr.png -------------------------------------------------------------------------------- /doc/api/pngs/logos/logo_cnrs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/api/pngs/logos/logo_cnrs.png -------------------------------------------------------------------------------- /doc/api/pngs/logos/logo_isle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/api/pngs/logos/logo_isle.jpg -------------------------------------------------------------------------------- /doc/api/pngs/logos/logo_ljk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/api/pngs/logos/logo_ljk.png -------------------------------------------------------------------------------- /doc/api/pngs/logos/logo_ra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/api/pngs/logos/logo_ra.png -------------------------------------------------------------------------------- /doc/api/pngs/logos/logo_uc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/api/pngs/logos/logo_uc.png -------------------------------------------------------------------------------- /doc/api/pngs/logos/logo_uds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/api/pngs/logos/logo_uds.png -------------------------------------------------------------------------------- /doc/api/pngs/logos/logo_ujf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/api/pngs/logos/logo_ujf.jpg -------------------------------------------------------------------------------- /doc/api/preprocess.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/api/preprocess.sh.in -------------------------------------------------------------------------------- /doc/api/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/api/tabs.css -------------------------------------------------------------------------------- /doc/api/unpreprocess.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/api/unpreprocess.pl -------------------------------------------------------------------------------- /doc/biblio/.gitignore: -------------------------------------------------------------------------------- 1 | /auto 2 | -------------------------------------------------------------------------------- /doc/biblio/biblio.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/biblio/biblio.bib -------------------------------------------------------------------------------- /doc/biblio/feelpp-manual.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/biblio/feelpp-manual.bib -------------------------------------------------------------------------------- /doc/biblio/feelpp-thesis.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/biblio/feelpp-thesis.bib -------------------------------------------------------------------------------- /doc/biblio/feelpp.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/biblio/feelpp.bib -------------------------------------------------------------------------------- /doc/common/GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/common/GPL -------------------------------------------------------------------------------- /doc/common/LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/common/LGPL -------------------------------------------------------------------------------- /doc/common/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/common/doxygen.css -------------------------------------------------------------------------------- /doc/common/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/common/footer.html -------------------------------------------------------------------------------- /doc/common/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/common/header.html -------------------------------------------------------------------------------- /doc/common/mainfooter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/common/mainfooter.html -------------------------------------------------------------------------------- /doc/common/mainheader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/common/mainheader.html -------------------------------------------------------------------------------- /doc/manual/.emacs-dirvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/.emacs-dirvars -------------------------------------------------------------------------------- /doc/manual/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/.gitignore -------------------------------------------------------------------------------- /doc/manual/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/CMakeLists.txt -------------------------------------------------------------------------------- /doc/manual/accoustic/room.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/accoustic/room.cpp -------------------------------------------------------------------------------- /doc/manual/accoustic/sound.cfg: -------------------------------------------------------------------------------- 1 | [benchmark] 2 | nlevels=1 3 | hsize=0.1 4 | refine=2 5 | #only=2D 6 | -------------------------------------------------------------------------------- /doc/manual/accoustic/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/accoustic/sound.cpp -------------------------------------------------------------------------------- /doc/manual/adapt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/adapt/CMakeLists.txt -------------------------------------------------------------------------------- /doc/manual/adapt/Lshape.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/adapt/Lshape.cfg -------------------------------------------------------------------------------- /doc/manual/adapt/Lshape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/adapt/Lshape.cpp -------------------------------------------------------------------------------- /doc/manual/adapt/Lshape3D.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/adapt/Lshape3D.cfg -------------------------------------------------------------------------------- /doc/manual/dd/.gitignore: -------------------------------------------------------------------------------- 1 | /dd.aux 2 | -------------------------------------------------------------------------------- /doc/manual/dd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/dd/CMakeLists.txt -------------------------------------------------------------------------------- /doc/manual/dd/Decompositon.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/dd/Decompositon.doc -------------------------------------------------------------------------------- /doc/manual/dd/dd.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/dd/dd.tex -------------------------------------------------------------------------------- /doc/manual/dd/ddframework.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/dd/ddframework.cpp -------------------------------------------------------------------------------- /doc/manual/dd/explicit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/dd/explicit.cpp -------------------------------------------------------------------------------- /doc/manual/dd/geneo.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/dd/geneo.cfg -------------------------------------------------------------------------------- /doc/manual/dd/geneo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/dd/geneo.cpp -------------------------------------------------------------------------------- /doc/manual/dd/mortar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/dd/mortar.cpp -------------------------------------------------------------------------------- /doc/manual/dd/multi_levels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/dd/multi_levels.cpp -------------------------------------------------------------------------------- /doc/manual/dd/nonoverlapping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/dd/nonoverlapping.cpp -------------------------------------------------------------------------------- /doc/manual/dd/partitioning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/dd/partitioning.cpp -------------------------------------------------------------------------------- /doc/manual/dd/threefields.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/dd/threefields.cpp -------------------------------------------------------------------------------- /doc/manual/dd/traces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/dd/traces.cpp -------------------------------------------------------------------------------- /doc/manual/eigen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/eigen/CMakeLists.txt -------------------------------------------------------------------------------- /doc/manual/eigen/cylinder.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/eigen/cylinder.geo -------------------------------------------------------------------------------- /doc/manual/eigen/eigen.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/eigen/eigen.doc -------------------------------------------------------------------------------- /doc/manual/eigen/ge_curlcurl.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/eigen/ge_curlcurl.cfg -------------------------------------------------------------------------------- /doc/manual/eigen/ge_curlcurl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/eigen/ge_curlcurl.cpp -------------------------------------------------------------------------------- /doc/manual/eigen/ge_sm.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/eigen/ge_sm.cfg -------------------------------------------------------------------------------- /doc/manual/eigen/ge_sm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/eigen/ge_sm.cpp -------------------------------------------------------------------------------- /doc/manual/eigen/ge_stokes.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/eigen/ge_stokes.cfg -------------------------------------------------------------------------------- /doc/manual/eigen/ge_stokes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/eigen/ge_stokes.cpp -------------------------------------------------------------------------------- /doc/manual/eikonal/dist2curve.cfg: -------------------------------------------------------------------------------- 1 | [gmsh] 2 | structured=1 3 | hsize=0.1 4 | -------------------------------------------------------------------------------- /doc/manual/fd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/fd/CMakeLists.txt -------------------------------------------------------------------------------- /doc/manual/fd/mesh_2d.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/fd/mesh_2d.geo -------------------------------------------------------------------------------- /doc/manual/fd/mesh_3d.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/fd/mesh_3d.geo -------------------------------------------------------------------------------- /doc/manual/fd/penalisation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/fd/penalisation.cpp -------------------------------------------------------------------------------- /doc/manual/fd/penalisation.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/fd/penalisation.doc -------------------------------------------------------------------------------- /doc/manual/fd/penalisation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/fd/penalisation.hpp -------------------------------------------------------------------------------- /doc/manual/fd/penalisation2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/fd/penalisation2.cfg -------------------------------------------------------------------------------- /doc/manual/fd/penalisation2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/fd/penalisation2.cpp -------------------------------------------------------------------------------- /doc/manual/fd/penalisation3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/fd/penalisation3.cfg -------------------------------------------------------------------------------- /doc/manual/fd/penalisation3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/fd/penalisation3.cpp -------------------------------------------------------------------------------- /doc/manual/hdg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/hdg/CMakeLists.txt -------------------------------------------------------------------------------- /doc/manual/hdg/et.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/hdg/et.cfg -------------------------------------------------------------------------------- /doc/manual/hdg/et.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/hdg/et.hpp -------------------------------------------------------------------------------- /doc/manual/hdg/et2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/hdg/et2.hpp -------------------------------------------------------------------------------- /doc/manual/hdg/et2_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/hdg/et2_main.cpp -------------------------------------------------------------------------------- /doc/manual/hdg/et_errchk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/hdg/et_errchk.hpp -------------------------------------------------------------------------------- /doc/manual/hdg/et_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/hdg/et_main.cpp -------------------------------------------------------------------------------- /doc/manual/hdg/et_model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/hdg/et_model.hpp -------------------------------------------------------------------------------- /doc/manual/hdg/lc_main_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/hdg/lc_main_model.cpp -------------------------------------------------------------------------------- /doc/manual/hdg/lc_model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/hdg/lc_model.hpp -------------------------------------------------------------------------------- /doc/manual/hdg/mixedstokes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/hdg/mixedstokes.cpp -------------------------------------------------------------------------------- /doc/manual/hdg/readme.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/hdg/readme.adoc -------------------------------------------------------------------------------- /doc/manual/hdg/red/red.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/hdg/red/red.geo -------------------------------------------------------------------------------- /doc/manual/heat/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/heat/.gitignore -------------------------------------------------------------------------------- /doc/manual/heat/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/heat/CMakeLists.txt -------------------------------------------------------------------------------- /doc/manual/heat/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/heat/README.adoc -------------------------------------------------------------------------------- /doc/manual/heat/fin_sink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/heat/fin_sink.cpp -------------------------------------------------------------------------------- /doc/manual/heat/ground.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/heat/ground.cfg -------------------------------------------------------------------------------- /doc/manual/heat/ground.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/heat/ground.cpp -------------------------------------------------------------------------------- /doc/manual/heat/ground2D.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/heat/ground2D.geo -------------------------------------------------------------------------------- /doc/manual/heat/heatsink.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/heat/heatsink.cfg -------------------------------------------------------------------------------- /doc/manual/heat/heatsink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/heat/heatsink.cpp -------------------------------------------------------------------------------- /doc/manual/heat/heatsink.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/heat/heatsink.doc -------------------------------------------------------------------------------- /doc/manual/heat/heatsink2d.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/heat/heatsink2d.geo -------------------------------------------------------------------------------- /doc/manual/heat/muwave.cfg: -------------------------------------------------------------------------------- 1 | [functions] 2 | f=0 3 | g=sin(pi*(y-15)/(15-8)):x:y 4 | -------------------------------------------------------------------------------- /doc/manual/heat/muwave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/heat/muwave.cpp -------------------------------------------------------------------------------- /doc/manual/heat/muwave.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/heat/muwave.geo -------------------------------------------------------------------------------- /doc/manual/heat/resistance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/heat/resistance.cpp -------------------------------------------------------------------------------- /doc/manual/heat/rht.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/heat/rht.cpp -------------------------------------------------------------------------------- /doc/manual/heat/specs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/heat/specs.json -------------------------------------------------------------------------------- /doc/manual/heat/thermalfin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/heat/thermalfin.cfg -------------------------------------------------------------------------------- /doc/manual/heat/thermalfin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/heat/thermalfin.cpp -------------------------------------------------------------------------------- /doc/manual/heat/thermalfin.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/heat/thermalfin.geo -------------------------------------------------------------------------------- /doc/manual/heatns/.gitignore: -------------------------------------------------------------------------------- 1 | /natural-convection-2d.aux 2 | -------------------------------------------------------------------------------- /doc/manual/heatns/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/heatns/CMakeLists.txt -------------------------------------------------------------------------------- /doc/manual/heatns/convection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/heatns/convection.hpp -------------------------------------------------------------------------------- /doc/manual/heatns/cooling/README.adoc: -------------------------------------------------------------------------------- 1 | for @MarieHouillon 2 | -------------------------------------------------------------------------------- /doc/manual/heatns/heatns.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/manual/heatns/heatns.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/heatns/heatns.geo -------------------------------------------------------------------------------- /doc/manual/laplacian/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/laplacian/error.hpp -------------------------------------------------------------------------------- /doc/manual/laplacian/feel.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/laplacian/feel.geo -------------------------------------------------------------------------------- /doc/manual/laplacian/laplacian_cartesian.cfg: -------------------------------------------------------------------------------- 1 | [gmsh] 2 | filename=cartesian.geo 3 | -------------------------------------------------------------------------------- /doc/manual/laplacian/laplacian_lagrange_multiplier2.cfg: -------------------------------------------------------------------------------- 1 | 2 | gmsh.hsize=0.03 3 | -------------------------------------------------------------------------------- /doc/manual/laplacian/laplacian_polar.cfg: -------------------------------------------------------------------------------- 1 | [gmsh] 2 | filename=polar.geo 3 | -------------------------------------------------------------------------------- /doc/manual/laplacian/partition.cfg: -------------------------------------------------------------------------------- 1 | [exporter] 2 | format=gmsh 3 | -------------------------------------------------------------------------------- /doc/manual/laplacian/polar.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/laplacian/polar.geo -------------------------------------------------------------------------------- /doc/manual/maxwell/.gitignore: -------------------------------------------------------------------------------- 1 | /maxwell.aux 2 | -------------------------------------------------------------------------------- /doc/manual/maxwell/diode.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/maxwell/diode.cfg -------------------------------------------------------------------------------- /doc/manual/maxwell/diode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/maxwell/diode.cpp -------------------------------------------------------------------------------- /doc/manual/maxwell/diodegeo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/maxwell/diodegeo.cpp -------------------------------------------------------------------------------- /doc/manual/maxwell/maxwell.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/maxwell/maxwell.tex -------------------------------------------------------------------------------- /doc/manual/nirb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/nirb/CMakeLists.txt -------------------------------------------------------------------------------- /doc/manual/nirb/nirb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/nirb/nirb.cpp -------------------------------------------------------------------------------- /doc/manual/nirb/nirb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/nirb/nirb.hpp -------------------------------------------------------------------------------- /doc/manual/nonlinear/.gitignore: -------------------------------------------------------------------------------- 1 | /README.html 2 | -------------------------------------------------------------------------------- /doc/manual/nonlinear/README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/nonlinear/README.org -------------------------------------------------------------------------------- /doc/manual/nonlinear/bratu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/nonlinear/bratu.cpp -------------------------------------------------------------------------------- /doc/manual/nonlinear/nlda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/nonlinear/nlda.cpp -------------------------------------------------------------------------------- /doc/manual/ns/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/ns/CMakeLists.txt -------------------------------------------------------------------------------- /doc/manual/ns/bs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/ns/bs.cpp -------------------------------------------------------------------------------- /doc/manual/ns/ns.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/ns/ns.hpp -------------------------------------------------------------------------------- /doc/manual/ns/nsproj.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/ns/nsproj.cfg -------------------------------------------------------------------------------- /doc/manual/ns/nsproj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/ns/nsproj.cpp -------------------------------------------------------------------------------- /doc/manual/ns/tubecylinder.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/ns/tubecylinder.geo -------------------------------------------------------------------------------- /doc/manual/opt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/opt/CMakeLists.txt -------------------------------------------------------------------------------- /doc/manual/opt/circle_incs.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/opt/circle_incs.geo -------------------------------------------------------------------------------- /doc/manual/opt/qs_nlopt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/opt/qs_nlopt.cpp -------------------------------------------------------------------------------- /doc/manual/pdfs/.gitignore: -------------------------------------------------------------------------------- 1 | /.gitignore~HEAD 2 | /Makefile.in 3 | -------------------------------------------------------------------------------- /doc/manual/pdfs/attention.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/pdfs/attention.pdf -------------------------------------------------------------------------------- /doc/manual/pdfs/danger.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/pdfs/danger.pdf -------------------------------------------------------------------------------- /doc/manual/pdfs/dd2dgeometry.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/pdfs/dd2dgeometry.pdf -------------------------------------------------------------------------------- /doc/manual/pdfs/dd2dmesh.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/pdfs/dd2dmesh.pdf -------------------------------------------------------------------------------- /doc/manual/pdfs/notabene.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/pdfs/notabene.pdf -------------------------------------------------------------------------------- /doc/manual/pdfs/question.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/pdfs/question.pdf -------------------------------------------------------------------------------- /doc/manual/pngs/.gitignore: -------------------------------------------------------------------------------- 1 | /.gitignore~HEAD 2 | /Makefile.in 3 | -------------------------------------------------------------------------------- /doc/manual/pngs/feel_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/pngs/feel_logo.png -------------------------------------------------------------------------------- /doc/manual/pngs/flow_grashof.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/pngs/flow_grashof.png -------------------------------------------------------------------------------- /doc/manual/pngs/iter_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/pngs/iter_1.png -------------------------------------------------------------------------------- /doc/manual/pngs/iter_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/pngs/iter_10.png -------------------------------------------------------------------------------- /doc/manual/pngs/laplacian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/pngs/laplacian.png -------------------------------------------------------------------------------- /doc/manual/pngs/logo-ljk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/pngs/logo-ljk.png -------------------------------------------------------------------------------- /doc/manual/pngs/mode-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/pngs/mode-0.png -------------------------------------------------------------------------------- /doc/manual/pngs/mode-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/pngs/mode-1.png -------------------------------------------------------------------------------- /doc/manual/pngs/mode-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/pngs/mode-2.png -------------------------------------------------------------------------------- /doc/manual/pngs/mymesh/mesh3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/pngs/mymesh/mesh3.png -------------------------------------------------------------------------------- /doc/manual/pngs/stokes-p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/pngs/stokes-p.png -------------------------------------------------------------------------------- /doc/manual/pngs/stokes-u.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/pngs/stokes-u.png -------------------------------------------------------------------------------- /doc/manual/pngs/temp_grashof.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/pngs/temp_grashof.png -------------------------------------------------------------------------------- /doc/manual/python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/python/CMakeLists.txt -------------------------------------------------------------------------------- /doc/manual/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/python/README.md -------------------------------------------------------------------------------- /doc/manual/python/feelpp-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/python/feelpp-test.py -------------------------------------------------------------------------------- /doc/manual/python/myintegrals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/python/myintegrals.py -------------------------------------------------------------------------------- /doc/manual/python/mylaplacian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/python/mylaplacian.py -------------------------------------------------------------------------------- /doc/manual/python/mymesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/python/mymesh.py -------------------------------------------------------------------------------- /doc/manual/solid/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/solid/.gitignore -------------------------------------------------------------------------------- /doc/manual/solid/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/solid/CMakeLists.txt -------------------------------------------------------------------------------- /doc/manual/solid/axi_1D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/solid/axi_1D.cpp -------------------------------------------------------------------------------- /doc/manual/solid/beam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/solid/beam.cpp -------------------------------------------------------------------------------- /doc/manual/solid/linelaxi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/solid/linelaxi.cpp -------------------------------------------------------------------------------- /doc/manual/stokes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/stokes/CMakeLists.txt -------------------------------------------------------------------------------- /doc/manual/stokes/curvedtube.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/stokes/curvedtube.geo -------------------------------------------------------------------------------- /doc/manual/stokes/stokes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/stokes/stokes.cpp -------------------------------------------------------------------------------- /doc/manual/stokes/stokes3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/stokes/stokes3d.cpp -------------------------------------------------------------------------------- /doc/manual/stokes/stokes_curl.cfg: -------------------------------------------------------------------------------- 1 | [gmsh] 2 | filename=curvedtube.geo 3 | -------------------------------------------------------------------------------- /doc/manual/stokes_1D/tige1D.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/stokes_1D/tige1D.geo -------------------------------------------------------------------------------- /doc/manual/styles/.gitignore: -------------------------------------------------------------------------------- 1 | /.gitignore~HEAD 2 | /Makefile.in 3 | /auto 4 | -------------------------------------------------------------------------------- /doc/manual/styles/fvrb.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/styles/fvrb.sty -------------------------------------------------------------------------------- /doc/manual/styles/nota.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/styles/nota.sty -------------------------------------------------------------------------------- /doc/manual/styles/texcode.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/styles/texcode.sty -------------------------------------------------------------------------------- /doc/manual/tex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/tex/README.md -------------------------------------------------------------------------------- /doc/manual/tex/authors.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/tex/authors.tex -------------------------------------------------------------------------------- /doc/manual/tex/building.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/tex/building.tex -------------------------------------------------------------------------------- /doc/manual/tex/crash_course.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/tex/crash_course.tex -------------------------------------------------------------------------------- /doc/manual/tex/feel-manual.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/tex/feel-manual.dox -------------------------------------------------------------------------------- /doc/manual/tex/feel-manual.ist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/tex/feel-manual.ist -------------------------------------------------------------------------------- /doc/manual/tex/feel.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/tex/feel.tex -------------------------------------------------------------------------------- /doc/manual/tex/feelpp-manual.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/tex/feelpp-manual.tex -------------------------------------------------------------------------------- /doc/manual/tex/gfdl.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/tex/gfdl.tex -------------------------------------------------------------------------------- /doc/manual/tex/howto.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/tex/howto.tex -------------------------------------------------------------------------------- /doc/manual/tex/myadvection.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/tex/myadvection.tex -------------------------------------------------------------------------------- /doc/manual/tex/myapp.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/tex/myapp.tex -------------------------------------------------------------------------------- /doc/manual/tex/myintegrals.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/tex/myintegrals.tex -------------------------------------------------------------------------------- /doc/manual/tex/mylaplacian.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/tex/mylaplacian.tex -------------------------------------------------------------------------------- /doc/manual/tex/mymesh.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/tex/mymesh.tex -------------------------------------------------------------------------------- /doc/manual/tex/mystokes.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/tex/mystokes.tex -------------------------------------------------------------------------------- /doc/manual/tex/randomnotes.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/tex/randomnotes.tex -------------------------------------------------------------------------------- /doc/manual/tex/tips_n_tricks.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/tex/tips_n_tricks.tex -------------------------------------------------------------------------------- /doc/manual/tex/version.tex.in: -------------------------------------------------------------------------------- 1 | \newcommand{\lifeversion}{@PACKAGE_VERSION@} 2 | -------------------------------------------------------------------------------- /doc/manual/tutorial.pos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/manual/tutorial.pos -------------------------------------------------------------------------------- /doc/snippets/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/snippets/CMakeLists.txt -------------------------------------------------------------------------------- /doc/snippets/bdfpod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/snippets/bdfpod.cpp -------------------------------------------------------------------------------- /doc/snippets/dofboundary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/snippets/dofboundary.cpp -------------------------------------------------------------------------------- /doc/snippets/dofneighbors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/snippets/dofneighbors.cpp -------------------------------------------------------------------------------- /doc/snippets/dofpoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/snippets/dofpoints.cpp -------------------------------------------------------------------------------- /doc/snippets/forms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/snippets/forms.cpp -------------------------------------------------------------------------------- /doc/snippets/meshho.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/snippets/meshho.cpp -------------------------------------------------------------------------------- /doc/snippets/perf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/snippets/perf.cpp -------------------------------------------------------------------------------- /doc/snippets/pmesh.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/snippets/pmesh.cfg -------------------------------------------------------------------------------- /doc/snippets/pmesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/snippets/pmesh.cpp -------------------------------------------------------------------------------- /doc/stylesheet.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/tex/feelalg.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/tex/feelalg.bib -------------------------------------------------------------------------------- /doc/tex/feeloop.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/tex/feeloop.bib -------------------------------------------------------------------------------- /doc/tex/feelsolver.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/tex/feelsolver.bib -------------------------------------------------------------------------------- /doc/tex/feelstyle.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/tex/feelstyle.cls -------------------------------------------------------------------------------- /doc/tex/feelv.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/tex/feelv.bib -------------------------------------------------------------------------------- /doc/tex/framed.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/tex/framed.sty -------------------------------------------------------------------------------- /doc/tex/rcs.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/doc/tex/rcs.sty -------------------------------------------------------------------------------- /feelpp.package.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp.package.cmake -------------------------------------------------------------------------------- /feelpp.version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp.version.cmake -------------------------------------------------------------------------------- /feelpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/CMakeLists.txt -------------------------------------------------------------------------------- /feelpp/cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /feelpp/cmake/codes/try-mpiio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/cmake/codes/try-mpiio.cpp -------------------------------------------------------------------------------- /feelpp/cmake/dashboard/linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/cmake/dashboard/linux.sh -------------------------------------------------------------------------------- /feelpp/cmake/dashboard/mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/cmake/dashboard/mac.sh -------------------------------------------------------------------------------- /feelpp/cmake/dashboard/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/cmake/dashboard/setup.sh -------------------------------------------------------------------------------- /feelpp/cmake/eigen2feel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/cmake/eigen2feel.sh -------------------------------------------------------------------------------- /feelpp/cmake/machines/feelpp.machines.irma-gaya.cmake: -------------------------------------------------------------------------------- 1 | 2 | set(FEELPP_ENABLE_VTK_FROM_PARAVIEW OFF) 3 | -------------------------------------------------------------------------------- /feelpp/cmake/modules/.gitignore: -------------------------------------------------------------------------------- 1 | /#CMakeLists.txt# 2 | /#feelpp.install.cmake# 3 | -------------------------------------------------------------------------------- /feelpp/contrib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/.gitignore -------------------------------------------------------------------------------- /feelpp/contrib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/CMakeLists.txt -------------------------------------------------------------------------------- /feelpp/contrib/gflags/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/gflags/.gitignore -------------------------------------------------------------------------------- /feelpp/contrib/gflags/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/gflags/BUILD -------------------------------------------------------------------------------- /feelpp/contrib/gflags/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/gflags/INSTALL.md -------------------------------------------------------------------------------- /feelpp/contrib/gflags/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/gflags/README.md -------------------------------------------------------------------------------- /feelpp/contrib/gflags/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/gflags/WORKSPACE -------------------------------------------------------------------------------- /feelpp/contrib/gflags/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/gflags/src/util.h -------------------------------------------------------------------------------- /feelpp/contrib/gflags/test/flagfile.1: -------------------------------------------------------------------------------- 1 | --version -------------------------------------------------------------------------------- /feelpp/contrib/gflags/test/flagfile.2: -------------------------------------------------------------------------------- 1 | --foo=bar 2 | --nounused_bool -------------------------------------------------------------------------------- /feelpp/contrib/ginac/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/ginac/AUTHORS -------------------------------------------------------------------------------- /feelpp/contrib/ginac/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/ginac/COPYING -------------------------------------------------------------------------------- /feelpp/contrib/ginac/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/ginac/ChangeLog -------------------------------------------------------------------------------- /feelpp/contrib/ginac/GiNaC.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/ginac/GiNaC.spec -------------------------------------------------------------------------------- /feelpp/contrib/ginac/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/ginac/INSTALL -------------------------------------------------------------------------------- /feelpp/contrib/ginac/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/ginac/Makefile.am -------------------------------------------------------------------------------- /feelpp/contrib/ginac/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/ginac/Makefile.in -------------------------------------------------------------------------------- /feelpp/contrib/ginac/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/ginac/NEWS -------------------------------------------------------------------------------- /feelpp/contrib/ginac/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/ginac/README -------------------------------------------------------------------------------- /feelpp/contrib/ginac/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/ginac/aclocal.m4 -------------------------------------------------------------------------------- /feelpp/contrib/ginac/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/ginac/configure -------------------------------------------------------------------------------- /feelpp/contrib/ginac/doc/examples/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_info_file(ginac-examples) 2 | -------------------------------------------------------------------------------- /feelpp/contrib/ginac/ginac.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/ginac/ginac.pc.in -------------------------------------------------------------------------------- /feelpp/contrib/ginac/ginac/.gitignore: -------------------------------------------------------------------------------- 1 | /TAGS 2 | /excompiler.cpp 3 | -------------------------------------------------------------------------------- /feelpp/contrib/ginac/ginac/add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/ginac/ginac/add.h -------------------------------------------------------------------------------- /feelpp/contrib/ginac/ginac/ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/ginac/ginac/ex.h -------------------------------------------------------------------------------- /feelpp/contrib/ginac/ginac/idx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/ginac/ginac/idx.h -------------------------------------------------------------------------------- /feelpp/contrib/ginac/ginac/lst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/ginac/ginac/lst.h -------------------------------------------------------------------------------- /feelpp/contrib/ginac/ginac/mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/ginac/ginac/mul.h -------------------------------------------------------------------------------- /feelpp/contrib/ginac/ginac/parser/.gitignore: -------------------------------------------------------------------------------- 1 | /TAGS 2 | -------------------------------------------------------------------------------- /feelpp/contrib/ginac/ginac/polynomial/.gitignore: -------------------------------------------------------------------------------- 1 | /TAGS 2 | -------------------------------------------------------------------------------- /feelpp/contrib/ginac/ginac/ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/ginac/ginac/ptr.h -------------------------------------------------------------------------------- /feelpp/contrib/ginac/scripts/.gitignore: -------------------------------------------------------------------------------- 1 | /yaptu.pyc 2 | /__pycache__ -------------------------------------------------------------------------------- /feelpp/contrib/glog/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/glog/.gitignore -------------------------------------------------------------------------------- /feelpp/contrib/glog/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/glog/AUTHORS -------------------------------------------------------------------------------- /feelpp/contrib/glog/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/glog/CONTRIBUTORS -------------------------------------------------------------------------------- /feelpp/contrib/glog/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/glog/COPYING -------------------------------------------------------------------------------- /feelpp/contrib/glog/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/glog/ChangeLog -------------------------------------------------------------------------------- /feelpp/contrib/glog/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/glog/INSTALL -------------------------------------------------------------------------------- /feelpp/contrib/glog/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/glog/Makefile.am -------------------------------------------------------------------------------- /feelpp/contrib/glog/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/glog/Makefile.in -------------------------------------------------------------------------------- /feelpp/contrib/glog/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /feelpp/contrib/glog/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/glog/README -------------------------------------------------------------------------------- /feelpp/contrib/glog/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/glog/aclocal.m4 -------------------------------------------------------------------------------- /feelpp/contrib/glog/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/glog/compile -------------------------------------------------------------------------------- /feelpp/contrib/glog/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/glog/config.guess -------------------------------------------------------------------------------- /feelpp/contrib/glog/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/glog/config.sub -------------------------------------------------------------------------------- /feelpp/contrib/glog/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/glog/configure -------------------------------------------------------------------------------- /feelpp/contrib/glog/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/glog/configure.ac -------------------------------------------------------------------------------- /feelpp/contrib/glog/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/glog/depcomp -------------------------------------------------------------------------------- /feelpp/contrib/glog/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/glog/install-sh -------------------------------------------------------------------------------- /feelpp/contrib/glog/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/glog/ltmain.sh -------------------------------------------------------------------------------- /feelpp/contrib/glog/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/glog/missing -------------------------------------------------------------------------------- /feelpp/contrib/glog/packages/deb/compat: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /feelpp/contrib/glog/packages/deb/libgoogle-glog0.dirs: -------------------------------------------------------------------------------- 1 | usr/lib 2 | -------------------------------------------------------------------------------- /feelpp/contrib/glog/src/.gitignore: -------------------------------------------------------------------------------- 1 | /config.h.in~ 2 | -------------------------------------------------------------------------------- /feelpp/contrib/gmsh/4.1.3/gmsh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/gmsh/4.1.3/gmsh.h -------------------------------------------------------------------------------- /feelpp/contrib/gmsh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/gmsh/README.md -------------------------------------------------------------------------------- /feelpp/contrib/metis/GKlib/b64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/metis/GKlib/b64.c -------------------------------------------------------------------------------- /feelpp/contrib/metis/GKlib/csr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/metis/GKlib/csr.c -------------------------------------------------------------------------------- /feelpp/contrib/metis/GKlib/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/metis/GKlib/fs.c -------------------------------------------------------------------------------- /feelpp/contrib/metis/GKlib/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/metis/GKlib/io.c -------------------------------------------------------------------------------- /feelpp/contrib/metis/GKlib/omp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/metis/GKlib/omp.c -------------------------------------------------------------------------------- /feelpp/contrib/metis/GKlib/pdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/metis/GKlib/pdb.c -------------------------------------------------------------------------------- /feelpp/contrib/metis/GKlib/rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/metis/GKlib/rw.c -------------------------------------------------------------------------------- /feelpp/contrib/metis/GKlib/seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/metis/GKlib/seq.c -------------------------------------------------------------------------------- /feelpp/contrib/parmetis/include/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | install(FILES parmetis.h DESTINATION include) -------------------------------------------------------------------------------- /feelpp/contrib/petsc/petsc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/contrib/petsc/petsc.sh -------------------------------------------------------------------------------- /feelpp/feel/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/.gitignore -------------------------------------------------------------------------------- /feelpp/feel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/CMakeLists.txt -------------------------------------------------------------------------------- /feelpp/feel/debug.areas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/debug.areas -------------------------------------------------------------------------------- /feelpp/feel/feel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feel.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelalg/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelalg/.gitignore -------------------------------------------------------------------------------- /feelpp/feel/feelalg/aitken.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelalg/aitken.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelalg/aitken2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelalg/aitken2.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelalg/alg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelalg/alg.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelalg/backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelalg/backend.cpp -------------------------------------------------------------------------------- /feelpp/feel/feelalg/backend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelalg/backend.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelalg/bfgs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelalg/bfgs.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelalg/cholesky.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelalg/cholesky.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelalg/datamap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelalg/datamap.cpp -------------------------------------------------------------------------------- /feelpp/feel/feelalg/datamap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelalg/datamap.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelalg/dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelalg/dummy.cpp -------------------------------------------------------------------------------- /feelpp/feel/feelalg/enums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelalg/enums.cpp -------------------------------------------------------------------------------- /feelpp/feel/feelalg/enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelalg/enums.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelalg/glas.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelalg/glas.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelalg/graphcsr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelalg/graphcsr.cpp -------------------------------------------------------------------------------- /feelpp/feel/feelalg/graphcsr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelalg/graphcsr.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelalg/ldl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelalg/ldl.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelalg/lu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelalg/lu.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelalg/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelalg/matrix.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelalg/operator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelalg/operator.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelalg/products.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelalg/products.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelalg/svd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelalg/svd.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelalg/topetsc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelalg/topetsc.cpp -------------------------------------------------------------------------------- /feelpp/feel/feelalg/topetsc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelalg/topetsc.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelalg/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelalg/traits.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelalg/vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelalg/vector.cpp -------------------------------------------------------------------------------- /feelpp/feel/feelalg/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelalg/vector.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelconfig.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelconfig.h.in -------------------------------------------------------------------------------- /feelpp/feel/feelcore/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelcore/.gitignore -------------------------------------------------------------------------------- /feelpp/feel/feelcore/_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelcore/_json.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelcore/about.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelcore/about.cpp -------------------------------------------------------------------------------- /feelpp/feel/feelcore/about.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelcore/about.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelcore/checker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelcore/checker.cpp -------------------------------------------------------------------------------- /feelpp/feel/feelcore/checker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelcore/checker.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelcore/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelcore/context.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelcore/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelcore/core.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelcore/dataset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelcore/dataset.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelcore/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelcore/debug.cpp -------------------------------------------------------------------------------- /feelpp/feel/feelcore/debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelcore/debug.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelcore/enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelcore/enums.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelcore/factory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelcore/factory.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelcore/feel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelcore/feel.cpp -------------------------------------------------------------------------------- /feelpp/feel/feelcore/feel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelcore/feel.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelcore/git.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelcore/git.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelcore/hana.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelcore/hana.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelcore/hdf5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelcore/hdf5.cpp -------------------------------------------------------------------------------- /feelpp/feel/feelcore/hdf5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelcore/hdf5.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelcore/info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelcore/info.cpp -------------------------------------------------------------------------------- /feelpp/feel/feelcore/info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelcore/info.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelcore/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelcore/json.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelcore/mpfr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelcore/mpfr.cpp -------------------------------------------------------------------------------- /feelpp/feel/feelcore/mpfr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelcore/mpfr.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelcore/ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelcore/ptr.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelcore/rank.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelcore/rank.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelcore/zip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelcore/zip.cpp -------------------------------------------------------------------------------- /feelpp/feel/feelcore/zip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelcore/zip.hpp -------------------------------------------------------------------------------- /feelpp/feel/feeldiscr/bdf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feeldiscr/bdf.hpp -------------------------------------------------------------------------------- /feelpp/feel/feeldiscr/dh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feeldiscr/dh.hpp -------------------------------------------------------------------------------- /feelpp/feel/feeldiscr/dof.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feeldiscr/dof.hpp -------------------------------------------------------------------------------- /feelpp/feel/feeldiscr/nch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feeldiscr/nch.hpp -------------------------------------------------------------------------------- /feelpp/feel/feeldiscr/odh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feeldiscr/odh.hpp -------------------------------------------------------------------------------- /feelpp/feel/feeldiscr/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feeldiscr/pch.cpp -------------------------------------------------------------------------------- /feelpp/feel/feeldiscr/pch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feeldiscr/pch.hpp -------------------------------------------------------------------------------- /feelpp/feel/feeldiscr/pdh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feeldiscr/pdh.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelfit/enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelfit/enums.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelfit/fit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelfit/fit.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelfmi/fmu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelfmi/fmu.cpp -------------------------------------------------------------------------------- /feelpp/feel/feelfmi/fmu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelfmi/fmu.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelinfo.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelinfo.h.in -------------------------------------------------------------------------------- /feelpp/feel/feells.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feells.hpp -------------------------------------------------------------------------------- /feelpp/feel/feells/ls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feells/ls.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelmesh/bvh.cpp: -------------------------------------------------------------------------------- 1 | // Bounding volume hierarchy -------------------------------------------------------------------------------- /feelpp/feel/feelmesh/bvh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelmesh/bvh.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelmesh/dump.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelmesh/dump.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelopt/enums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelopt/enums.cpp -------------------------------------------------------------------------------- /feelpp/feel/feelopt/enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelopt/enums.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelopt/glpk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelopt/glpk.cpp -------------------------------------------------------------------------------- /feelpp/feel/feelopt/glpk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelopt/glpk.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelopt/nlopt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelopt/nlopt.cpp -------------------------------------------------------------------------------- /feelpp/feel/feelopt/nlopt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelopt/nlopt.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelpde/.gitignore: -------------------------------------------------------------------------------- 1 | /reinit_fms_impl.hpp~ 2 | -------------------------------------------------------------------------------- /feelpp/feel/feelpde/pde.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelpde/pde.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelpoly/.gitignore: -------------------------------------------------------------------------------- 1 | /#toto.tex# 2 | /Makefile.in 3 | /test_equispaced.cpp~ 4 | -------------------------------------------------------------------------------- /feelpp/feel/feelpoly/fe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelpoly/fe.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelpoly/im.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelpoly/im.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelpoly/poly.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelpoly/poly.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelsystem/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /feelpp/feel/feelts/bdf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelts/bdf.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelts/cnab2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelts/cnab2.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelts/ts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelts/ts.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelts/tsbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelts/tsbase.cpp -------------------------------------------------------------------------------- /feelpp/feel/feelts/tsbase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelts/tsbase.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/.gitignore -------------------------------------------------------------------------------- /feelpp/feel/feelvf/block.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/block.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/cast.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/cross.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/cross.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/cst.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/cst.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/det.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/det.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/dummy.cpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/eig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/eig.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/expr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/expr.cpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/expr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/expr.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/eye.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/eye.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/fec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/fec.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/flat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/flat.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/form.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/form.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/ginac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/ginac.cpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/ginac.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/ginac.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/inner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/inner.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/inv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/inv.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/lambda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/lambda.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/matvec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/matvec.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/mean.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/mean.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/minmax.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/minmax.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/msi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/msi.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/norm.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/norm2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/norm2.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/normh1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/normh1.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/norml2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/norml2.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/on.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/on.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/one.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/one.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/ones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/ones.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/pow.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/print.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/rand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/rand.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/redux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/redux.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/set.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/shape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/shape.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/symm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/symm.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/time.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/trace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/trace.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/trans.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/trans.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/tresca.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/tresca.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/unary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/unary.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/val.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/val.hpp -------------------------------------------------------------------------------- /feelpp/feel/feelvf/vf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/feelvf/vf.hpp -------------------------------------------------------------------------------- /feelpp/feel/options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/options.cpp -------------------------------------------------------------------------------- /feelpp/feel/options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/feel/options.hpp -------------------------------------------------------------------------------- /feelpp/quickstart/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/quickstart/README.adoc -------------------------------------------------------------------------------- /feelpp/quickstart/adr/circle: -------------------------------------------------------------------------------- 1 | ../laplacian/cases/circle/ -------------------------------------------------------------------------------- /feelpp/quickstart/adr/feelpp2d: -------------------------------------------------------------------------------- 1 | ../laplacian/cases/feelpp2d -------------------------------------------------------------------------------- /feelpp/quickstart/adr/feelpp3d: -------------------------------------------------------------------------------- 1 | ../laplacian/cases/feelpp3d -------------------------------------------------------------------------------- /feelpp/quickstart/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/quickstart/configure -------------------------------------------------------------------------------- /feelpp/quickstart/prec-lu.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/quickstart/prec-lu.cfg -------------------------------------------------------------------------------- /feelpp/quickstart/qs_adr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/quickstart/qs_adr.cpp -------------------------------------------------------------------------------- /feelpp/tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/tools/CMakeLists.txt -------------------------------------------------------------------------------- /feelpp/tools/check/.gitignore: -------------------------------------------------------------------------------- 1 | /feelpp_doc_check_ot.xml 2 | -------------------------------------------------------------------------------- /feelpp/tools/check/check.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/tools/check/check.cfg -------------------------------------------------------------------------------- /feelpp/tools/check/check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/tools/check/check.cpp -------------------------------------------------------------------------------- /feelpp/tools/check/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/tools/check/check.py -------------------------------------------------------------------------------- /feelpp/tools/fmi/fmu.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/tools/fmi/fmu.adoc -------------------------------------------------------------------------------- /feelpp/tools/fmi/fmu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/tools/fmi/fmu.cpp -------------------------------------------------------------------------------- /feelpp/tools/info/info.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/tools/info/info.adoc -------------------------------------------------------------------------------- /feelpp/tools/info/info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/tools/info/info.cpp -------------------------------------------------------------------------------- /feelpp/tools/mesh/dump.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/tools/mesh/dump.hpp -------------------------------------------------------------------------------- /feelpp/tools/mesh/mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/tools/mesh/mesh.cpp -------------------------------------------------------------------------------- /feelpp/tools/mesh/submesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/tools/mesh/submesh.cpp -------------------------------------------------------------------------------- /feelpp/tools/plot/plot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/tools/plot/plot.cpp -------------------------------------------------------------------------------- /feelpp/tools/polyvis/geom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/feelpp/tools/polyvis/geom.cpp -------------------------------------------------------------------------------- /feelpp/tools/scripts/astyle/.gitignore: -------------------------------------------------------------------------------- 1 | /feelpp.astyle.sh 2 | -------------------------------------------------------------------------------- /mor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/.gitignore -------------------------------------------------------------------------------- /mor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/CMakeLists.txt -------------------------------------------------------------------------------- /mor/CONTRIBUTING.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/CONTRIBUTING.adoc -------------------------------------------------------------------------------- /mor/COPYING.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/COPYING.adoc -------------------------------------------------------------------------------- /mor/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/README.adoc -------------------------------------------------------------------------------- /mor/apps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/apps/CMakeLists.txt -------------------------------------------------------------------------------- /mor/apps/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/apps/README.adoc -------------------------------------------------------------------------------- /mor/apps/crbonlinerun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/apps/crbonlinerun.cpp -------------------------------------------------------------------------------- /mor/apps/onlinerun.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/apps/onlinerun.adoc -------------------------------------------------------------------------------- /mor/apps/thermalfin/fin2d.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/apps/thermalfin/fin2d.geo -------------------------------------------------------------------------------- /mor/apps/thermalfin/fin3d.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/apps/thermalfin/fin3d.geo -------------------------------------------------------------------------------- /mor/apps/toolboxmor_heat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/apps/toolboxmor_heat.cpp -------------------------------------------------------------------------------- /mor/apps/toolboxmor_heat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/apps/toolboxmor_heat.hpp -------------------------------------------------------------------------------- /mor/cases/nirb/lid-driven-cavity/lid-driven-cavity: -------------------------------------------------------------------------------- 1 | ../../../../toolboxes/fluid/cases/lid-driven-cavity -------------------------------------------------------------------------------- /mor/cases/nirb/thermal-fin-3d: -------------------------------------------------------------------------------- 1 | ../../../mor/cases/thermal-fin/3d -------------------------------------------------------------------------------- /mor/cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /mor/cmake/UseCRB.cmake: -------------------------------------------------------------------------------- 1 | message(WARNING "include of UseCRB is deprecated") -------------------------------------------------------------------------------- /mor/cmake/feelpp.mor.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/cmake/feelpp.mor.cmake -------------------------------------------------------------------------------- /mor/contrib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/contrib/CMakeLists.txt -------------------------------------------------------------------------------- /mor/examples/BenchmarkGrepl/benchmarkgrepl-nonlinear-parabolic3.xml.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mor/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/examples/CMakeLists.txt -------------------------------------------------------------------------------- /mor/examples/Cabineheat/.gitignore: -------------------------------------------------------------------------------- 1 | /Cabineheatapp.cpp 2 | -------------------------------------------------------------------------------- /mor/examples/Finalcabineheat/.gitignore: -------------------------------------------------------------------------------- 1 | /Finalcabineheatapp.cpp 2 | -------------------------------------------------------------------------------- /mor/examples/Rbheat/.gitignore: -------------------------------------------------------------------------------- 1 | /Rbheatapp.cpp 2 | -------------------------------------------------------------------------------- /mor/examples/Rbheat/Rbheat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/examples/Rbheat/Rbheat.m -------------------------------------------------------------------------------- /mor/examples/advection-diffusion-2d-1/.gitignore: -------------------------------------------------------------------------------- 1 | /adapp.cpp 2 | -------------------------------------------------------------------------------- /mor/examples/eads/.gitignore: -------------------------------------------------------------------------------- 1 | /TAGS 2 | -------------------------------------------------------------------------------- /mor/examples/eads/eads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/examples/eads/eads.cpp -------------------------------------------------------------------------------- /mor/examples/eads/eads.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/examples/eads/eads.hpp -------------------------------------------------------------------------------- /mor/examples/eads/eadscrb.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/examples/eads/eadscrb.cfg -------------------------------------------------------------------------------- /mor/examples/eads/eadsscm.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/examples/eads/eadsscm.cfg -------------------------------------------------------------------------------- /mor/examples/eeg/diraniso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/examples/eeg/diraniso -------------------------------------------------------------------------------- /mor/examples/eeg/eeg.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/examples/eeg/eeg.cfg -------------------------------------------------------------------------------- /mor/examples/eeg/eeg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/examples/eeg/eeg.hpp -------------------------------------------------------------------------------- /mor/examples/eeg/eeg.xml.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mor/examples/eeg/eegpfem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/examples/eeg/eegpfem.cpp -------------------------------------------------------------------------------- /mor/examples/eeg/eegscm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/examples/eeg/eegscm.cpp -------------------------------------------------------------------------------- /mor/examples/eeg/real.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/examples/eeg/real.msh -------------------------------------------------------------------------------- /mor/examples/heat1d/.gitignore: -------------------------------------------------------------------------------- 1 | /TAGS 2 | /heat1dapp.cpp 3 | -------------------------------------------------------------------------------- /mor/examples/heat1d/heat1d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/examples/heat1d/heat1d.m -------------------------------------------------------------------------------- /mor/examples/heat2d/.gitignore: -------------------------------------------------------------------------------- 1 | /TAGS 2 | /heat2dapp.cpp 3 | -------------------------------------------------------------------------------- /mor/examples/heatshield/heatshield.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mor/examples/heatsink-2d/.gitignore: -------------------------------------------------------------------------------- 1 | /heatSink2dapp.cpp 2 | -------------------------------------------------------------------------------- /mor/examples/stokesdeim/README.adoc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mor/examples/thermalblock/.gitignore: -------------------------------------------------------------------------------- 1 | /thermalblockapp.cpp 2 | -------------------------------------------------------------------------------- /mor/examples/thermalblock/thermalblock.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mor/examples/thermalblock/thermalblock.xml.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mor/examples/thermalblock/thermalblockfree.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mor/examples/thermalblock/thermalblockfree.xml.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mor/examples/thermalblock/thermalblockminimalversion.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mor/examples/thermalblock/thermalblockminimalversion.xml.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mor/examples/unsteady_heat1d/.gitignore: -------------------------------------------------------------------------------- 1 | /unsteadyHeat1dapp.cpp 2 | -------------------------------------------------------------------------------- /mor/mor/feel/feelmor/.gitignore: -------------------------------------------------------------------------------- 1 | /Makefile.in 2 | /TAGS 3 | -------------------------------------------------------------------------------- /mor/mor/feel/feelmor/crb.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/mor/feel/feelmor/crb.cl -------------------------------------------------------------------------------- /mor/mor/feel/feelmor/crb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/mor/feel/feelmor/crb.cpp -------------------------------------------------------------------------------- /mor/mor/feel/feelmor/crb.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/mor/feel/feelmor/crb.dox -------------------------------------------------------------------------------- /mor/mor/feel/feelmor/crb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/mor/feel/feelmor/crb.hpp -------------------------------------------------------------------------------- /mor/mor/feel/feelmor/deim.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/mor/feel/feelmor/deim.hpp -------------------------------------------------------------------------------- /mor/mor/feel/feelmor/eim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/mor/feel/feelmor/eim.cpp -------------------------------------------------------------------------------- /mor/mor/feel/feelmor/eim.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/mor/feel/feelmor/eim.hpp -------------------------------------------------------------------------------- /mor/mor/feel/feelmor/geim.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/mor/feel/feelmor/geim.hpp -------------------------------------------------------------------------------- /mor/mor/feel/feelmor/pbdw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/mor/feel/feelmor/pbdw.hpp -------------------------------------------------------------------------------- /mor/mor/feel/feelmor/pod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/mor/feel/feelmor/pod.cpp -------------------------------------------------------------------------------- /mor/mor/feel/feelmor/pod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/mor/feel/feelmor/pod.hpp -------------------------------------------------------------------------------- /mor/mor/feel/feelmor/ser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/mor/feel/feelmor/ser.hpp -------------------------------------------------------------------------------- /mor/research/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/research/CMakeLists.txt -------------------------------------------------------------------------------- /mor/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/tests/CMakeLists.txt -------------------------------------------------------------------------------- /mor/tests/feelmor/feelpp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/tests/feelmor/feelpp.json -------------------------------------------------------------------------------- /mor/tests/feelmor/test_db.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/tests/feelmor/test_db.cfg -------------------------------------------------------------------------------- /mor/tests/feelmor/test_db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/tests/feelmor/test_db.cpp -------------------------------------------------------------------------------- /mor/tests/feelmor/test_db.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/mor/tests/feelmor/test_db.geo -------------------------------------------------------------------------------- /mor/tests/feelmor/test_eim_composite.cfg: -------------------------------------------------------------------------------- 1 | [eim] 2 | dimension-max=5 3 | -------------------------------------------------------------------------------- /ports/Centos65/boost.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/Centos65/boost.sh -------------------------------------------------------------------------------- /ports/Centos65/coreInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/Centos65/coreInstall.sh -------------------------------------------------------------------------------- /ports/Centos65/feelpp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/Centos65/feelpp.sh -------------------------------------------------------------------------------- /ports/Centos65/gmsh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/Centos65/gmsh.sh -------------------------------------------------------------------------------- /ports/Centos65/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/Centos65/install.sh -------------------------------------------------------------------------------- /ports/Centos65/petsc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/Centos65/petsc.sh -------------------------------------------------------------------------------- /ports/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/README.md -------------------------------------------------------------------------------- /ports/ccma/boost.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/ccma/boost.sh -------------------------------------------------------------------------------- /ports/ccma/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/ccma/env.sh -------------------------------------------------------------------------------- /ports/ccma/gmsh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/ccma/gmsh.sh -------------------------------------------------------------------------------- /ports/ccma/petsc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/ccma/petsc.sh -------------------------------------------------------------------------------- /ports/cesga/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/cesga/README.adoc -------------------------------------------------------------------------------- /ports/cesga/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/cesga/environment -------------------------------------------------------------------------------- /ports/cesga/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/cesga/install.sh -------------------------------------------------------------------------------- /ports/cesga/install_boost.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/cesga/install_boost.sh -------------------------------------------------------------------------------- /ports/cesga/install_cln.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/cesga/install_cln.sh -------------------------------------------------------------------------------- /ports/cesga/install_cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/cesga/install_cmake.sh -------------------------------------------------------------------------------- /ports/cesga/install_feelpp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/cesga/install_feelpp.sh -------------------------------------------------------------------------------- /ports/cesga/install_gmsh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/cesga/install_gmsh.sh -------------------------------------------------------------------------------- /ports/cesga/install_petsc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/cesga/install_petsc.sh -------------------------------------------------------------------------------- /ports/cesga/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/cesga/modules -------------------------------------------------------------------------------- /ports/curie/ATTIC/README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/curie/ATTIC/README.org -------------------------------------------------------------------------------- /ports/curie/ATTIC/boost.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/curie/ATTIC/boost.sh -------------------------------------------------------------------------------- /ports/curie/ATTIC/gmsh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/curie/ATTIC/gmsh.sh -------------------------------------------------------------------------------- /ports/curie/ATTIC/lapack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/curie/ATTIC/lapack.sh -------------------------------------------------------------------------------- /ports/curie/ATTIC/petsc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/curie/ATTIC/petsc.sh -------------------------------------------------------------------------------- /ports/curie/ATTIC/slepc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/curie/ATTIC/slepc.sh -------------------------------------------------------------------------------- /ports/curie/llvm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/curie/llvm.sh -------------------------------------------------------------------------------- /ports/curie/petsc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/curie/petsc.sh -------------------------------------------------------------------------------- /ports/curie/slepc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/curie/slepc.sh -------------------------------------------------------------------------------- /ports/fermi/boost.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/fermi/boost.sh -------------------------------------------------------------------------------- /ports/fermi/gmsh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/fermi/gmsh.sh -------------------------------------------------------------------------------- /ports/fermi/mpich.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/fermi/mpich.sh -------------------------------------------------------------------------------- /ports/fermi/ompi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/fermi/ompi.sh -------------------------------------------------------------------------------- /ports/fermi/petsc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/fermi/petsc.sh -------------------------------------------------------------------------------- /ports/fermi/slepc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/fermi/slepc.sh -------------------------------------------------------------------------------- /ports/froggy/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/froggy/Readme.md -------------------------------------------------------------------------------- /ports/froggy/ann.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/froggy/ann.sh -------------------------------------------------------------------------------- /ports/froggy/autoconf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/froggy/autoconf.sh -------------------------------------------------------------------------------- /ports/froggy/automake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/froggy/automake.sh -------------------------------------------------------------------------------- /ports/froggy/cloog-parma.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/froggy/cloog-parma.sh -------------------------------------------------------------------------------- /ports/froggy/feelpprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/froggy/feelpprc -------------------------------------------------------------------------------- /ports/froggy/freeride/oce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/froggy/freeride/oce.sh -------------------------------------------------------------------------------- /ports/froggy/freeride/scripts/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo $PATH 4 | 5 | -------------------------------------------------------------------------------- /ports/froggy/gcc47.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/froggy/gcc47.sh -------------------------------------------------------------------------------- /ports/froggy/glpk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/froggy/glpk.sh -------------------------------------------------------------------------------- /ports/froggy/gmp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/froggy/gmp.sh -------------------------------------------------------------------------------- /ports/froggy/libedit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/froggy/libedit.sh -------------------------------------------------------------------------------- /ports/froggy/libtool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/froggy/libtool.sh -------------------------------------------------------------------------------- /ports/froggy/mpc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/froggy/mpc.sh -------------------------------------------------------------------------------- /ports/froggy/mpfr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/froggy/mpfr.sh -------------------------------------------------------------------------------- /ports/froggy/petsc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/froggy/petsc.sh -------------------------------------------------------------------------------- /ports/froggy/ppl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/froggy/ppl.sh -------------------------------------------------------------------------------- /ports/libc++/boost.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/libc++/boost.sh -------------------------------------------------------------------------------- /ports/linux/CMake/Deps.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/linux/CMake/Deps.cmake -------------------------------------------------------------------------------- /ports/linux/ParaView.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/linux/ParaView.sh -------------------------------------------------------------------------------- /ports/linux/gcc-4.9.0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/linux/gcc-4.9.0.sh -------------------------------------------------------------------------------- /ports/linux/gmsh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/linux/gmsh.sh -------------------------------------------------------------------------------- /ports/linux/mkl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/linux/mkl.sh -------------------------------------------------------------------------------- /ports/linux/openmpi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/linux/openmpi.sh -------------------------------------------------------------------------------- /ports/linux/petsc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/linux/petsc.sh -------------------------------------------------------------------------------- /ports/linux/scorep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/linux/scorep.sh -------------------------------------------------------------------------------- /ports/macosx/attic/macports-xc5/science/feelpp/.gitignore: -------------------------------------------------------------------------------- 1 | /work 2 | -------------------------------------------------------------------------------- /ports/macosx/attic/macports-xc5/science/openturns/.gitignore: -------------------------------------------------------------------------------- 1 | /work 2 | -------------------------------------------------------------------------------- /ports/macosx/attic/macports/science/feelpp/.gitignore: -------------------------------------------------------------------------------- 1 | /work 2 | -------------------------------------------------------------------------------- /ports/macosx/attic/macports/science/openturns/.gitignore: -------------------------------------------------------------------------------- 1 | /work 2 | -------------------------------------------------------------------------------- /ports/macosx/attic/macports/science/petsc/.gitignore: -------------------------------------------------------------------------------- 1 | /work 2 | -------------------------------------------------------------------------------- /ports/macosx/attic/macports/science/scotch/.gitignore: -------------------------------------------------------------------------------- 1 | /work 2 | -------------------------------------------------------------------------------- /ports/macosx/macports: -------------------------------------------------------------------------------- 1 | macports-sonoma -------------------------------------------------------------------------------- /ports/openSuse12.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/openSuse12.2/README.md -------------------------------------------------------------------------------- /ports/openSuse12.2/boost.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/openSuse12.2/boost.sh -------------------------------------------------------------------------------- /ports/openSuse12.2/feelpp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/openSuse12.2/feelpp.sh -------------------------------------------------------------------------------- /ports/openSuse12.2/gcc47.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/openSuse12.2/gcc47.sh -------------------------------------------------------------------------------- /ports/openSuse12.2/gmsh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/openSuse12.2/gmsh.sh -------------------------------------------------------------------------------- /ports/openSuse12.2/hdf5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/openSuse12.2/hdf5.sh -------------------------------------------------------------------------------- /ports/openSuse12.2/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/openSuse12.2/install.sh -------------------------------------------------------------------------------- /ports/openSuse12.2/openmpi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/openSuse12.2/openmpi.sh -------------------------------------------------------------------------------- /ports/openSuse12.2/petsc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/openSuse12.2/petsc.sh -------------------------------------------------------------------------------- /ports/openSuse12.2/slepc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/openSuse12.2/slepc.sh -------------------------------------------------------------------------------- /ports/sl6x_64/ParaView.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/sl6x_64/ParaView.sh -------------------------------------------------------------------------------- /ports/sl6x_64/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/sl6x_64/README.md -------------------------------------------------------------------------------- /ports/sl6x_64/boost.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/sl6x_64/boost.sh -------------------------------------------------------------------------------- /ports/sl6x_64/feelpp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/sl6x_64/feelpp.sh -------------------------------------------------------------------------------- /ports/sl6x_64/gcc47.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/sl6x_64/gcc47.sh -------------------------------------------------------------------------------- /ports/sl6x_64/gmsh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/sl6x_64/gmsh.sh -------------------------------------------------------------------------------- /ports/sl6x_64/hdf5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/sl6x_64/hdf5.sh -------------------------------------------------------------------------------- /ports/sl6x_64/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/sl6x_64/install.sh -------------------------------------------------------------------------------- /ports/sl6x_64/openmpi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/sl6x_64/openmpi.sh -------------------------------------------------------------------------------- /ports/sl6x_64/petsc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/sl6x_64/petsc.sh -------------------------------------------------------------------------------- /ports/sl6x_64/slepc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/sl6x_64/slepc.sh -------------------------------------------------------------------------------- /ports/supermuc/petsc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/supermuc/petsc.sh -------------------------------------------------------------------------------- /ports/titane/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/titane/README -------------------------------------------------------------------------------- /ports/titane/boost.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/titane/boost.sh -------------------------------------------------------------------------------- /ports/titane/gmsh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/titane/gmsh.sh -------------------------------------------------------------------------------- /ports/titane/lapack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/titane/lapack.sh -------------------------------------------------------------------------------- /ports/titane/petsc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/titane/petsc.sh -------------------------------------------------------------------------------- /ports/travis/boost.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/travis/boost.sh -------------------------------------------------------------------------------- /ports/travis/cln.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/travis/cln.sh -------------------------------------------------------------------------------- /ports/travis/gmsh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/travis/gmsh.sh -------------------------------------------------------------------------------- /ports/travis/petsc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/travis/petsc.sh -------------------------------------------------------------------------------- /ports/turing/boost-static.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/turing/boost-static.sh -------------------------------------------------------------------------------- /ports/turing/boost.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/turing/boost.sh -------------------------------------------------------------------------------- /ports/turing/gmsh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/turing/gmsh.sh -------------------------------------------------------------------------------- /ports/turing/petsc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/ports/turing/petsc.sh -------------------------------------------------------------------------------- /python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/python/CMakeLists.txt -------------------------------------------------------------------------------- /python/cmake/FindMPI4PY.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/python/cmake/FindMPI4PY.cmake -------------------------------------------------------------------------------- /python/notebooks/heat: -------------------------------------------------------------------------------- 1 | ../../toolboxes/heat/cases -------------------------------------------------------------------------------- /python/pyfeelpp-mor/feelpp/mor/nirb/model: -------------------------------------------------------------------------------- 1 | ../../../../../mor/cases/nirb -------------------------------------------------------------------------------- /python/pyfeelpp-mor/feelpp/mor/opusheat: -------------------------------------------------------------------------------- 1 | ../../../toolbox-mor/opusheat/ -------------------------------------------------------------------------------- /python/pyfeelpp-mor/feelpp/mor/pbdw.py: -------------------------------------------------------------------------------- 1 | from ._pbdw import * 2 | -------------------------------------------------------------------------------- /python/pyfeelpp-mor/feelpp/mor/reducedbasis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/pyfeelpp-mor/tests/testcase/nirb: -------------------------------------------------------------------------------- 1 | ../../feelpp/mor/nirb/model -------------------------------------------------------------------------------- /python/pyfeelpp-mor/tests/testcase/thermal-fin: -------------------------------------------------------------------------------- 1 | ../../../../mor/cases/thermal-fin/ -------------------------------------------------------------------------------- /python/pyfeelpp-mor/tests/thermal-fin: -------------------------------------------------------------------------------- 1 | ../../../mor/cases/thermal-fin/ -------------------------------------------------------------------------------- /python/pyfeelpp-toolboxes/feelpp/toolboxes/__init__.py: -------------------------------------------------------------------------------- 1 | print("Welcome to the Feel++ Toolboxes") 2 | 3 | -------------------------------------------------------------------------------- /python/pyfeelpp-toolboxes/feelpp/toolboxes/fluid/cases: -------------------------------------------------------------------------------- 1 | ../../../../../toolboxes/fluid/cases 2 | -------------------------------------------------------------------------------- /python/pyfeelpp-toolboxes/tests/cfpdes: -------------------------------------------------------------------------------- 1 | ../../../toolboxes/coefficientformpdes/cases -------------------------------------------------------------------------------- /python/pyfeelpp-toolboxes/tests/electric: -------------------------------------------------------------------------------- 1 | ../../../toolboxes/electric/cases -------------------------------------------------------------------------------- /python/pyfeelpp-toolboxes/tests/fluid: -------------------------------------------------------------------------------- 1 | ../../../toolboxes/fluid/cases -------------------------------------------------------------------------------- /python/pyfeelpp-toolboxes/tests/hdg: -------------------------------------------------------------------------------- 1 | ../../../toolboxes/hdg/cases -------------------------------------------------------------------------------- /python/pyfeelpp-toolboxes/tests/heat: -------------------------------------------------------------------------------- 1 | ../../../toolboxes/heat/cases -------------------------------------------------------------------------------- /python/pyfeelpp-toolboxes/tests/heatfluid: -------------------------------------------------------------------------------- 1 | ../../../toolboxes/heatfluid/cases -------------------------------------------------------------------------------- /python/pyfeelpp-toolboxes/tests/nirb: -------------------------------------------------------------------------------- 1 | ..//../../mor/cases/nirb -------------------------------------------------------------------------------- /python/pyfeelpp-toolboxes/tests/thermoelectric: -------------------------------------------------------------------------------- 1 | ../../../toolboxes/thermoelectric/cases -------------------------------------------------------------------------------- /python/pyfeelpp/feelpp/core/forms.py: -------------------------------------------------------------------------------- 1 | from ._forms import * 2 | 3 | -------------------------------------------------------------------------------- /python/pyfeelpp/feelpp/core/integrate.py: -------------------------------------------------------------------------------- 1 | from ._integrate import * -------------------------------------------------------------------------------- /python/pyfeelpp/feelpp/core/interpolation.py: -------------------------------------------------------------------------------- 1 | from ._interpolation import * 2 | -------------------------------------------------------------------------------- /python/pyfeelpp/feelpp/core/measure.py: -------------------------------------------------------------------------------- 1 | from ._measure import * -------------------------------------------------------------------------------- /python/pyfeelpp/feelpp/core/meshmover.py: -------------------------------------------------------------------------------- 1 | from ._meshmover import * -------------------------------------------------------------------------------- /python/pyfeelpp/feelpp/core/metric.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/pyfeelpp/feelpp/core/operators.py: -------------------------------------------------------------------------------- 1 | from ._operators import * 2 | 3 | 4 | -------------------------------------------------------------------------------- /python/pyfeelpp/feelpp/core/quality.py: -------------------------------------------------------------------------------- 1 | from ._quality import * 2 | -------------------------------------------------------------------------------- /python/pyfeelpp/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/python/pyfeelpp/setup.py -------------------------------------------------------------------------------- /python/pyfeelpp/tests/cases/feelpp2d: -------------------------------------------------------------------------------- 1 | ../../../../feelpp/quickstart/laplacian/cases/feelpp2d -------------------------------------------------------------------------------- /python/pyfeelpp/tests/cases/feelpp3d: -------------------------------------------------------------------------------- 1 | ../../../../feelpp/quickstart/laplacian/cases/feelpp3d -------------------------------------------------------------------------------- /python/pyfeelpp/tests/cases/nirb: -------------------------------------------------------------------------------- 1 | ../../../../mor/cases/nirb -------------------------------------------------------------------------------- /python/pyfeelpp/tests/fin.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/python/pyfeelpp/tests/fin.geo -------------------------------------------------------------------------------- /python/pyfeelpp/tests/fin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/python/pyfeelpp/tests/fin.py -------------------------------------------------------------------------------- /python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/python/requirements.txt -------------------------------------------------------------------------------- /research/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/research/.gitignore -------------------------------------------------------------------------------- /research/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/research/CMakeLists.txt -------------------------------------------------------------------------------- /research/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/research/INSTALL -------------------------------------------------------------------------------- /research/bloodflow/.gitignore: -------------------------------------------------------------------------------- 1 | /Makefile.in 2 | -------------------------------------------------------------------------------- /research/bloodflow/oned.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/research/bloodflow/oned.cpp -------------------------------------------------------------------------------- /research/fluid/.gitignore: -------------------------------------------------------------------------------- 1 | /Makefile.in 2 | -------------------------------------------------------------------------------- /research/fluid/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/research/fluid/CMakeLists.txt -------------------------------------------------------------------------------- /research/fluid/advreact.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/research/fluid/advreact.hpp -------------------------------------------------------------------------------- /research/fluid/cavity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/research/fluid/cavity.hpp -------------------------------------------------------------------------------- /research/fluid/cavity2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/research/fluid/cavity2d.cpp -------------------------------------------------------------------------------- /research/fluid/cavity3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/research/fluid/cavity3d.cpp -------------------------------------------------------------------------------- /research/fluid/oseen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/research/fluid/oseen.hpp -------------------------------------------------------------------------------- /research/fluid/rclux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/research/fluid/rclux.cpp -------------------------------------------------------------------------------- /research/fluid/rclux.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/research/fluid/rclux.geo -------------------------------------------------------------------------------- /research/fluid/rcluxmesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/research/fluid/rcluxmesh.cpp -------------------------------------------------------------------------------- /research/fluid/splitting.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/research/fluid/splitting.hpp -------------------------------------------------------------------------------- /research/fluid/twofluid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/research/fluid/twofluid.hpp -------------------------------------------------------------------------------- /research/fluid/twofluid2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/research/fluid/twofluid2d.cpp -------------------------------------------------------------------------------- /research/levelset/.gitignore: -------------------------------------------------------------------------------- 1 | /Makefile.in 2 | -------------------------------------------------------------------------------- /research/levelset/fmsheap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/research/levelset/fmsheap.hpp -------------------------------------------------------------------------------- /research/pbeq/.gitignore: -------------------------------------------------------------------------------- 1 | /Makefile.in 2 | -------------------------------------------------------------------------------- /research/pbeq/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/research/pbeq/CMakeLists.txt -------------------------------------------------------------------------------- /research/pbeq/atom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/research/pbeq/atom.cpp -------------------------------------------------------------------------------- /research/pbeq/atom.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/research/pbeq/atom.hpp -------------------------------------------------------------------------------- /research/pbeq/atom.pqr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/research/pbeq/atom.pqr -------------------------------------------------------------------------------- /research/pbeq/ligand.pqr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/research/pbeq/ligand.pqr -------------------------------------------------------------------------------- /research/pbeq/molecule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/research/pbeq/molecule.cpp -------------------------------------------------------------------------------- /research/pbeq/molecule.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/research/pbeq/molecule.hpp -------------------------------------------------------------------------------- /research/pbeq/molecule.pqr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/research/pbeq/molecule.pqr -------------------------------------------------------------------------------- /research/pbeq/mymesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/research/pbeq/mymesh.cpp -------------------------------------------------------------------------------- /research/pbeq/mymesh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/research/pbeq/mymesh.hpp -------------------------------------------------------------------------------- /research/pbeq/pbeq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/research/pbeq/pbeq.cpp -------------------------------------------------------------------------------- /research/pbeq/pbeq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/research/pbeq/pbeq.hpp -------------------------------------------------------------------------------- /research/pbeq/pbeqspace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/research/pbeq/pbeqspace.cpp -------------------------------------------------------------------------------- /research/pbeq/pbeqspace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/research/pbeq/pbeqspace.hpp -------------------------------------------------------------------------------- /research/pbeq/receptor.pqr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/research/pbeq/receptor.pqr -------------------------------------------------------------------------------- /research/pbeq/solvepbeq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/research/pbeq/solvepbeq.cpp -------------------------------------------------------------------------------- /research/pbeq/test_atom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/research/pbeq/test_atom.cpp -------------------------------------------------------------------------------- /testsuite/.gitignore: -------------------------------------------------------------------------------- 1 | /Makefile.in 2 | /package.m4 3 | /testsuite 4 | -------------------------------------------------------------------------------- /testsuite/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/testsuite/CMakeLists.txt -------------------------------------------------------------------------------- /testsuite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/testsuite/README.md -------------------------------------------------------------------------------- /testsuite/contrib/mpi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/testsuite/contrib/mpi.cpp -------------------------------------------------------------------------------- /testsuite/contrib/po.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/testsuite/contrib/po.cpp -------------------------------------------------------------------------------- /testsuite/feelalg/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/testsuite/feelalg/.gitignore -------------------------------------------------------------------------------- /testsuite/feelalg/test_eigenmode.cfg: -------------------------------------------------------------------------------- 1 | [gmsh] 2 | hsize=0.2 3 | 4 | [solvereigen] 5 | eps-target=20 6 | -------------------------------------------------------------------------------- /testsuite/feelalg/test_prepost_solve.cfg: -------------------------------------------------------------------------------- 1 | [gmsh] 2 | hsize=0.1 3 | 4 | [functions] 5 | f=x+y:x:y 6 | 7 | -------------------------------------------------------------------------------- /testsuite/feelcore/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/testsuite/feelcore/.gitignore -------------------------------------------------------------------------------- /testsuite/feeldiscr/geoconv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/testsuite/feeldiscr/geoconv.m -------------------------------------------------------------------------------- /testsuite/feeldiscr/mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/testsuite/feeldiscr/mesh.cpp -------------------------------------------------------------------------------- /testsuite/feeldiscr/sensors.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/feeldiscr/test_elementminmax.cfg: -------------------------------------------------------------------------------- 1 | gmsh.hsize=0.1 -------------------------------------------------------------------------------- /testsuite/feeldiscr/test_on_dofs.cfg: -------------------------------------------------------------------------------- 1 | [gmsh] 2 | filename=$cfgdir/square_mmarked.geo 3 | hsize=0.3 -------------------------------------------------------------------------------- /testsuite/feelfilters/data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/testsuite/feelfilters/data -------------------------------------------------------------------------------- /testsuite/feelfilters/test_med.cfg: -------------------------------------------------------------------------------- 1 | [gmsh] 2 | filename=test_med.med 3 | -------------------------------------------------------------------------------- /testsuite/feelfit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/testsuite/feelfit/README.md -------------------------------------------------------------------------------- /testsuite/feelfmi/test_fmi.cfg: -------------------------------------------------------------------------------- 1 | [fmu.solver] 2 | time-step=0.0005 3 | rtol=1e-6 4 | -------------------------------------------------------------------------------- /testsuite/feelinterpolation/test_operatorinterpolation_basisexpr.cfg: -------------------------------------------------------------------------------- 1 | gmsh.hsize=0.05 2 | -------------------------------------------------------------------------------- /testsuite/feelmesh/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/testsuite/feelmesh/.gitignore -------------------------------------------------------------------------------- /testsuite/feelmesh/test_meshmarker.cfg: -------------------------------------------------------------------------------- 1 | 2 | # empty, just for get $cfgdir -------------------------------------------------------------------------------- /testsuite/feelmesh/test_submesh1d.cfg: -------------------------------------------------------------------------------- 1 | [gmsh] 2 | filename=test_submesh1d.geo 3 | -------------------------------------------------------------------------------- /testsuite/feelmodels/modelproperties.cfg: -------------------------------------------------------------------------------- 1 | json.filename=$cfgdir/feelpp.json 2 | -------------------------------------------------------------------------------- /testsuite/feelpde/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/testsuite/feelpde/README.md -------------------------------------------------------------------------------- /testsuite/feelpde/cube.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/testsuite/feelpde/cube.cfg -------------------------------------------------------------------------------- /testsuite/feelpde/cube.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/testsuite/feelpde/cube.geo -------------------------------------------------------------------------------- /testsuite/feelpoly/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/testsuite/feelpoly/.gitignore -------------------------------------------------------------------------------- /testsuite/feelpoly/test_immultiscale.cfg: -------------------------------------------------------------------------------- 1 | [msi] 2 | 3 | level=8 4 | pixelsize=8.9e-3 5 | -------------------------------------------------------------------------------- /testsuite/feelts/test_bdf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/testsuite/feelts/test_bdf.cpp -------------------------------------------------------------------------------- /testsuite/feelvf/test_convolve.cfg: -------------------------------------------------------------------------------- 1 | 2 | [functions] 3 | f=1:x:y 4 | -------------------------------------------------------------------------------- /testsuite/feelvf/test_expr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/testsuite/feelvf/test_expr.py -------------------------------------------------------------------------------- /testsuite/feelvf/test_msi.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/testsuite/feelvf/test_msi.cfg -------------------------------------------------------------------------------- /testsuite/feelvf/test_msi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/testsuite/feelvf/test_msi.cpp -------------------------------------------------------------------------------- /testsuite/feelvf/test_pow.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/testsuite/feelvf/test_pow.cfg -------------------------------------------------------------------------------- /testsuite/feelvf/test_pow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/testsuite/feelvf/test_pow.cpp -------------------------------------------------------------------------------- /testsuite/referencestates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/testsuite/referencestates.md -------------------------------------------------------------------------------- /testsuite/testsuite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/testsuite/testsuite.cpp -------------------------------------------------------------------------------- /toolboxes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/toolboxes/CMakeLists.txt -------------------------------------------------------------------------------- /toolboxes/CONTRIBUTING.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/toolboxes/CONTRIBUTING.adoc -------------------------------------------------------------------------------- /toolboxes/COPYING.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/toolboxes/COPYING.adoc -------------------------------------------------------------------------------- /toolboxes/README.adoc: -------------------------------------------------------------------------------- 1 | pp: ++ 2 | = Feel{pp} Toolboxes 3 | 4 | 5 | -------------------------------------------------------------------------------- /toolboxes/alemesh/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/toolboxes/alemesh/main.cpp -------------------------------------------------------------------------------- /toolboxes/fluid/.tests.fluid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/toolboxes/fluid/.tests.fluid -------------------------------------------------------------------------------- /toolboxes/fluid/cases/TurekHron/TurekHron.cfg: -------------------------------------------------------------------------------- 1 | cfd2.cfg -------------------------------------------------------------------------------- /toolboxes/fluid/fluid.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/toolboxes/fluid/fluid.adoc -------------------------------------------------------------------------------- /toolboxes/fluid/main_fm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/toolboxes/fluid/main_fm.cpp -------------------------------------------------------------------------------- /toolboxes/fsi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/toolboxes/fsi/CMakeLists.txt -------------------------------------------------------------------------------- /toolboxes/fsi/fsi.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/toolboxes/fsi/fsi.adoc -------------------------------------------------------------------------------- /toolboxes/fsi/main_fsi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/toolboxes/fsi/main_fsi.cpp -------------------------------------------------------------------------------- /toolboxes/hdg/.tests.hdg_coupledpoisson: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolboxes/hdg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/toolboxes/hdg/CMakeLists.txt -------------------------------------------------------------------------------- /toolboxes/hdg/cases/thermoelectric/quarterturn/omega.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /toolboxes/heat/.tests.heat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/toolboxes/heat/.tests.heat -------------------------------------------------------------------------------- /toolboxes/heat/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/toolboxes/heat/CMakeLists.txt -------------------------------------------------------------------------------- /toolboxes/heat/heat.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/toolboxes/heat/heat.adoc -------------------------------------------------------------------------------- /toolboxes/heat/main_ht.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/toolboxes/heat/main_ht.cpp -------------------------------------------------------------------------------- /toolboxes/maxwell/cases/test/test2d.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolboxes/solid/.tests.solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/toolboxes/solid/.tests.solid -------------------------------------------------------------------------------- /toolboxes/solid/main_sm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/toolboxes/solid/main_sm.cpp -------------------------------------------------------------------------------- /toolboxes/solid/solid.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/toolboxes/solid/solid.adoc -------------------------------------------------------------------------------- /toolboxes/solid/stress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/toolboxes/solid/stress.cpp -------------------------------------------------------------------------------- /toolboxes/tests/heat/cases: -------------------------------------------------------------------------------- 1 | ../../heat/cases -------------------------------------------------------------------------------- /toolboxes/tests/heat/rht.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/toolboxes/tests/heat/rht.hpp -------------------------------------------------------------------------------- /toolboxes/tools/man/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'liquid', '~> 5.4' -------------------------------------------------------------------------------- /toolboxes/tools/man/doc.rb.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feelpp/feelpp/HEAD/toolboxes/tools/man/doc.rb.in --------------------------------------------------------------------------------