├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── feature-request.yml │ └── question.yml └── workflows │ └── main.yml ├── .gitignore ├── .pylintrc ├── .workflow.sh ├── AUTHORS.md ├── CHANGELOG.md ├── CITATION.cff ├── CITATION.md ├── CMakeLists.txt ├── CONTRIBUTING.md ├── INSTALLATION.md ├── LICENSE.md ├── MANIFEST.in ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── apps ├── convertMesh ├── dataMerge ├── ipynbToGalleryExample.py ├── meshMerge ├── pytripatch └── render_example ├── core ├── CMakeLists.txt ├── cmake │ ├── FindCHOLMOD.cmake │ ├── FindCppUnit.cmake │ ├── FindSphinx.cmake │ ├── FindTriangle.cmake │ ├── FindUMFPACK.cmake │ ├── Findcastxml.cmake │ ├── Findgccxml.cmake │ ├── Findpygccxml.cmake │ ├── Findpyplusplus.cmake │ ├── Findreadproc.cmake │ └── GIMLImacros.cmake ├── config.cmake.h.in ├── pgcore │ ├── CMakeLists.txt │ ├── __init__.py │ ├── getwheelname.py.in │ ├── readme.md │ └── setup.py.in ├── python │ ├── .gitattributes │ ├── CMakeLists.txt │ ├── apps │ │ ├── createParameterMesh │ │ ├── gimli │ │ ├── pyCreateSurface │ │ ├── recountPara │ │ ├── script_template.py │ │ └── showSens │ ├── custom_rvalue.cpp │ ├── doxygen.py │ ├── environment_for_pygimli_build.py │ ├── explicit_instances.cpp │ ├── generate_pygimli_code.py │ ├── generators.h │ ├── hand_made_wrappers.py │ ├── patch_pygccxml.py │ ├── pygimli.h │ ├── tests.txt │ └── tuples.hpp ├── scripts │ ├── Dockerfile_DebianBookworm │ ├── buildThirdParty.sh │ ├── install │ │ ├── install_gimli.sh │ │ ├── install_linux_prereqs.sh │ │ ├── install_mac_prereqs.sh │ │ ├── install_win64_prereqs.sh │ │ └── install_win64_winpython.sh │ ├── matlab │ │ ├── README.TXT │ │ ├── addpaths.m │ │ ├── base │ │ │ ├── Contents.m │ │ │ ├── arms.m │ │ │ ├── b2r.m │ │ │ ├── cbar.m │ │ │ ├── chi2.m │ │ │ ├── destrip.m │ │ │ ├── epsprint.m │ │ │ ├── fcmcluster.m │ │ │ ├── gaulag.m │ │ │ ├── gauleg.m │ │ │ ├── getcindex.m │ │ │ ├── getgrfile.m │ │ │ ├── gps2xyz.m │ │ │ ├── harmfit.m │ │ │ ├── int2hum.m │ │ │ ├── inter2dpoint.m │ │ │ ├── interperc.m │ │ │ ├── kronecker.m │ │ │ ├── loadbmat.m │ │ │ ├── loadsparsematrix.m │ │ │ ├── minmax.m │ │ │ ├── num2strcell.m │ │ │ ├── readunifile.m │ │ │ ├── rndig.m │ │ │ ├── rrms.m │ │ │ ├── savematbin.m │ │ │ ├── saveunifile.m │ │ │ ├── snaptoline.m │ │ │ ├── turnmatrix.m │ │ │ ├── writeconfigfile.m │ │ │ ├── writepng.m │ │ │ └── writesurfergrid.m │ │ ├── eqsolve │ │ │ ├── Contents.m │ │ │ ├── cglscdp.m │ │ │ ├── cglscdpt.m │ │ │ ├── cglscdwwp.m │ │ │ ├── cglspar.m │ │ │ ├── cglsparcdp.m │ │ │ ├── cholpcg.m │ │ │ ├── regcgls.m │ │ │ ├── regcglsp.m │ │ │ ├── regcglsw.m │ │ │ └── tlscg.m │ │ ├── fop │ │ │ ├── dc1d │ │ │ │ ├── fwd3d1d.m │ │ │ │ ├── fwdschlum.m │ │ │ │ ├── fwdschlumC.m │ │ │ │ ├── invfile1d.m │ │ │ │ ├── invfile1drho.m │ │ │ │ ├── senssch1d.m │ │ │ │ └── senssch1drho.m │ │ │ ├── em1d │ │ │ │ ├── invmaxmindata.m │ │ │ │ ├── maxminfwd.m │ │ │ │ ├── mt1dfwd.m │ │ │ │ ├── readmaxmindata.m │ │ │ │ ├── readtemfile.m │ │ │ │ ├── readusffile.m │ │ │ │ ├── showmaxmindata.m │ │ │ │ ├── tem1drhoa.m │ │ │ │ ├── tem1dsens.m │ │ │ │ ├── vmd_f.m │ │ │ │ ├── vmd_t.m │ │ │ │ └── vmd_tvec.m │ │ │ ├── mrs1d │ │ │ │ ├── AmplitudeJacobian.m │ │ │ │ ├── mrsblockfor.m │ │ │ │ ├── mrsfwd1dblock.m │ │ │ │ ├── plotmrsdatafit.m │ │ │ │ └── printoutmodel.m │ │ │ └── mrs2d │ │ │ │ ├── show2dmrsdata.m │ │ │ │ └── show2dmrsimage.m │ │ ├── mesh │ │ │ ├── grid2mesh.m │ │ │ ├── grid4mesh.m │ │ │ ├── hex2tet.m │ │ │ ├── loadmesh.m │ │ │ ├── loadvtkmesh.m │ │ │ ├── mesh2vtk.m │ │ │ ├── mesharea.m │ │ │ ├── meshcellmid.m │ │ │ ├── meshextractcells.m │ │ │ ├── readeasymesh.m │ │ │ ├── savemesh.m │ │ │ ├── savepointvtk.m │ │ │ ├── savevtkmesh.m │ │ │ └── writetsurf.m │ │ ├── plot │ │ │ ├── clusterplot.m │ │ │ ├── draw1dmodel.m │ │ │ ├── draw2dmodel.m │ │ │ ├── errorbarxy.m │ │ │ ├── getcols.m │ │ │ ├── loghist.m │ │ │ ├── patch2dmodel.m │ │ │ ├── plotmymatrix.m │ │ │ ├── putonxaxis.m │ │ │ ├── senscov2alpha.m │ │ │ ├── showxyz.m │ │ │ ├── spy2.m │ │ │ └── tripatchmod.m │ │ ├── poly │ │ │ ├── create2dpoly.m │ │ │ ├── createcylpoly.m │ │ │ ├── createparamesh2d.m │ │ │ ├── pos2poly.m │ │ │ ├── readpoly2d.m │ │ │ ├── readpoly3d.m │ │ │ ├── showpoly2d.m │ │ │ ├── showpoly3d.m │ │ │ ├── writeeapoly.m │ │ │ ├── writepoly2d.m │ │ │ ├── writepoly3d.m │ │ │ └── writeroundpoly.m │ │ ├── reg │ │ │ ├── smooth2d1st.m │ │ │ └── smooth2d2nd.m │ │ ├── stats │ │ │ ├── clustermodel.m │ │ │ └── fcmcluster.m │ │ └── trans │ │ │ ├── logdroptrans.m │ │ │ ├── logtrans.m │ │ │ ├── logtransdiff.m │ │ │ ├── logtransinv.m │ │ │ ├── tantrans.m │ │ │ ├── tantransdiff.m │ │ │ └── tantransinv.m │ └── patches │ │ ├── SuiteSparse-4.4.1.patch │ │ └── triangle-mingw-win64.patch ├── src │ ├── CMakeLists.txt │ ├── baseentity.h │ ├── bert │ │ ├── bert.cpp │ │ ├── bert.h │ │ ├── bertDataContainer.cpp │ │ ├── bertDataContainer.h │ │ ├── bertJacobian.cpp │ │ ├── bertJacobian.h │ │ ├── bertMisc.cpp │ │ ├── bertMisc.h │ │ ├── datamap.cpp │ │ ├── datamap.h │ │ ├── dcfemmodelling.cpp │ │ ├── dcfemmodelling.h │ │ ├── electrode.cpp │ │ └── electrode.h │ ├── blockmatrix.cpp │ ├── blockmatrix.h │ ├── calculateMultiThread.h │ ├── cholmodWrapper.cpp │ ├── cholmodWrapper.h │ ├── curvefitting.cpp │ ├── curvefitting.h │ ├── datacontainer.cpp │ ├── datacontainer.h │ ├── dc1dmodelling.cpp │ ├── dc1dmodelling.h │ ├── elementmatrix.cpp │ ├── elementmatrix.h │ ├── em1dmodelling.cpp │ ├── em1dmodelling.h │ ├── exitcodes.h │ ├── expressions.h │ ├── gimli.cpp │ ├── gimli.h │ ├── gravimetry.cpp │ ├── gravimetry.h │ ├── integration.cpp │ ├── integration.h │ ├── interpolate.cpp │ ├── interpolate.h │ ├── inversion.cpp │ ├── inversion.h │ ├── inversionBase.h │ ├── kdtree++ │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── NEWS │ │ ├── README │ │ ├── VERSION │ │ ├── allocator.hpp │ │ ├── function.hpp │ │ ├── iterator.hpp │ │ ├── kdtree.hpp │ │ ├── node.hpp │ │ └── region.hpp │ ├── kdtreeWrapper.cpp │ ├── kdtreeWrapper.h │ ├── ldlWrapper.cpp │ ├── ldlWrapper.h │ ├── linSolver.cpp │ ├── linSolver.h │ ├── line.cpp │ ├── line.h │ ├── matrix.cpp │ ├── matrix.h │ ├── memwatch.cpp │ ├── memwatch.h │ ├── mesh.cpp │ ├── mesh.h │ ├── mesh_io.cpp │ ├── meshentities.cpp │ ├── meshentities.h │ ├── meshgenerators.cpp │ ├── meshgenerators.h │ ├── modellingbase.cpp │ ├── modellingbase.h │ ├── node.cpp │ ├── node.h │ ├── numericbase.cpp │ ├── numericbase.h │ ├── optionmap.cpp │ ├── optionmap.h │ ├── plane.cpp │ ├── plane.h │ ├── platform.cpp │ ├── platform.h │ ├── polynomial.h │ ├── pos.cpp │ ├── pos.h │ ├── quaternion.cpp │ ├── quaternion.h │ ├── refCountPtr.h │ ├── regionManager.cpp │ ├── regionManager.h │ ├── shape.cpp │ ├── shape.h │ ├── solver.cpp │ ├── solver.h │ ├── solverWrapper.cpp │ ├── solverWrapper.h │ ├── sparsematrix.cpp │ ├── sparsematrix.h │ ├── spline.cpp │ ├── spline.h │ ├── stopwatch.cpp │ ├── stopwatch.h │ ├── trans.cpp │ ├── trans.h │ ├── triangleWrapper.cpp │ ├── triangleWrapper.h │ ├── ttdijkstramodelling.cpp │ ├── ttdijkstramodelling.h │ ├── vector.cpp │ ├── vector.h │ ├── vectortemplates.h │ ├── wingetopt.cpp │ └── wingetopt.h └── tests │ ├── CMakeLists.txt │ └── unittest │ ├── CMakeLists.txt │ ├── GIMLiUnitTest.cbp │ ├── testDataContainer.h │ ├── testExternals.h │ ├── testFEM.h │ ├── testGIMLiMisc.h │ ├── testGeometry.h │ ├── testMesh.h │ ├── testShape.h │ ├── testVector.h │ ├── unitTest.cpp │ └── unittest.sh ├── doc ├── BUILD_LINUX.md ├── BUILD_MAC.md ├── BUILD_WIN.md ├── CMakeLists.txt ├── Makefile ├── _sphinx-ext │ └── srclinks.py ├── _static │ ├── bg_dark.png │ ├── bg_light.png │ ├── cad_tutorial │ │ ├── freecad_fig.png │ │ └── gmsh_fig.png │ ├── css │ │ └── custom.css │ ├── favicon.ico │ ├── gimli_logo.pdf │ ├── gimli_logo.svg │ ├── gimli_logo_simple.svg │ ├── gmsh │ │ ├── bbox_coordinate.png │ │ ├── create_point.png │ │ ├── examples.png │ │ ├── line.png │ │ ├── mod_inv.png │ │ └── surf1.png │ ├── js │ │ ├── custom-icons.js │ │ └── jquery-3.7.1.min.js │ ├── mylatex-commands.sty │ ├── pg_design.png │ └── usecases │ │ ├── arboleda-zapata2022.jpg │ │ ├── bergmann2014.png │ │ ├── costabel2016.png │ │ ├── costall2020.jpg │ │ ├── enemark2020.jpg │ │ ├── flinchum2022.jpg │ │ ├── gruenenbaum2023.png │ │ ├── guenther2012.png │ │ ├── guenther2016.png │ │ ├── hellman2017.png │ │ ├── huebner2017.png │ │ ├── jordi2018.png │ │ ├── jordi2020.jpg │ │ ├── laloy2020.jpg │ │ ├── loewer2017.png │ │ ├── martin2013.png │ │ ├── mollaret2020.jpg │ │ ├── nazari2023.png │ │ ├── palacios2020.jpg │ │ ├── pasquale2019.png │ │ ├── peruzzo2020.jpg │ │ ├── rochlitz2018.png │ │ ├── rochlitz2023.png │ │ ├── rochlitz2025.png │ │ ├── ronczka2015a.png │ │ ├── ronczka2015b.png │ │ ├── ronczka2017.png │ │ ├── skibbe2018.png │ │ ├── skibbe2020.jpg │ │ ├── skibbe2021.png │ │ ├── skibbe2024.jpg │ │ ├── steiner2019.png │ │ ├── uecker2022.png │ │ ├── wadas2022.png │ │ ├── wagner2015.png │ │ ├── wagner2019.jpg │ │ ├── wellmann2022.jpg │ │ └── wunderlich2018.png ├── _templates │ ├── footer_end.html │ ├── footer_start.html │ ├── improve-this-page.html │ ├── index.html │ ├── layout.html │ ├── module.rst │ ├── publications.html │ ├── pybtex_plugins │ │ ├── pybtexPGstylePlugin.py │ │ └── setup.py │ └── sidebar.html ├── about │ ├── authors.md │ ├── citation.md │ ├── index.md │ ├── introduction.md │ ├── libgimli.bib │ └── license.md ├── bib2html.py ├── community │ ├── contribute.md │ ├── development │ │ ├── cheatsheet.md │ │ ├── dependencies.md │ │ ├── guidelines.md │ │ └── index.md │ ├── index.md │ └── publications.md ├── compilation.md ├── conf.py ├── conf_environment.py.in ├── design.rst ├── doxyfile.in ├── doxygen │ └── doxyfile.in ├── examples │ ├── 1_meshing │ │ ├── README.txt │ │ ├── plot_bert-logo.py │ │ ├── plot_cad_tutorial.py │ │ ├── plot_extrude_2D_to_3D.py │ │ ├── plot_gmsh-example.py │ │ └── plot_hybrid-mesh-2d.py │ ├── 2_seismics │ │ ├── README.txt │ │ ├── plot_01_refraction_manager.py │ │ ├── plot_02_crosshole_tomography.py │ │ ├── plot_03_rays_layered_and_gradient_models.py │ │ ├── plot_04_koenigsee.py │ │ └── plot_05_refraction_3D.py │ ├── 3_ert │ │ ├── .gitignore │ │ ├── README.txt │ │ ├── plot_01_ert_2d_mod_inv.py │ │ ├── plot_02_ert_field_data.py │ │ ├── plot_03_ert_2_layer_mod.py │ │ ├── plot_04_ert_2_5d_potential.py │ │ ├── plot_05_ert_4_point_sensitivities.py │ │ ├── plot_06_ert_crosshole2d.py │ │ ├── plot_06_ert_tree.py │ │ ├── plot_07_ert_3dsurface.py │ │ ├── plot_08_ert_crosshole3d.py │ │ ├── plot_09_ert_timelapse.py │ │ ├── plot_10_reciprocal_analysis.py │ │ └── plot_modTank3d.py │ ├── 3_induced_polarization │ │ ├── README.txt │ │ ├── plot_02_generating_sip_signatures.py │ │ ├── plot_03_fitting_sip_signatures.py │ │ ├── plot_06_complex_modeling.py │ │ ├── plot_08_TDIPinversion.py │ │ └── tmp │ │ │ └── _plot_07_simple_complex_inversion.py │ ├── 4_gravimetry_magnetics │ │ ├── README.txt │ │ ├── plot_01_mod-gravimetry-integration-2d.py │ │ ├── plot_02_mod-gravimetry-2d.py │ │ ├── plot_03_inv-gravity-2d.py │ │ ├── plot_05_inv-gravity-3d.py │ │ └── plot_08_inv-magnetics-3d.py │ ├── 5_flow_transport │ │ ├── README.txt │ │ ├── plot_3D_Darcy_flow.py │ │ └── plot_hydrogeophysical_modeling.py │ ├── 6_inversion │ │ ├── README.txt │ │ ├── plot_1_dcem.py │ │ ├── plot_2_additionalConstraintsVES.py │ │ ├── plot_3_petro_joint_inv.py │ │ ├── plot_4_structural_constraints.py │ │ ├── plot_5_ert_with_priors.py │ │ └── plot_6_tem_with_resolution.py │ └── README.txt ├── gimliuses.bib ├── glossary.md ├── index.md ├── mplstyle.py ├── paper │ └── cg17 │ │ ├── example-1.py │ │ ├── example-2.py │ │ ├── example-2_modelling.py │ │ ├── example-2_visualization.py │ │ └── index.rst ├── paper_carousel.py ├── pygimliapi │ ├── index.rst │ ├── physics_overwrite │ └── viewer_overwrite ├── references.bib ├── references.md ├── sidebar_gallery.py ├── tutorials │ ├── 0_basics │ │ ├── README.txt │ │ ├── plot_1-gimli_basics.py │ │ ├── plot_3-data_container.py │ │ └── plot_6-matrices.py │ ├── 1_mesh │ │ ├── README.txt │ │ ├── plot_2-anatomy_of_a_mesh.py │ │ ├── plot_3-mesh.py │ │ ├── plot_5-mesh_interpolation.py │ │ ├── plot_6-mesh-quality-inspection.py │ │ └── tmp_deactivated_plot_7-markers.py │ ├── 2_modelling │ │ ├── README.txt │ │ ├── plot_2-mod-fem.py │ │ ├── plot_3-mod-fem-BC.py │ │ └── plot_5-mod-fem-heat-2d.py │ ├── 3_inversion │ │ ├── README.txt │ │ ├── plot_0-expfit.py │ │ ├── plot_1-polyfit.py │ │ ├── plot_2-dc1dblock.py │ │ ├── plot_4-dc1dsmooth.py │ │ ├── plot_5_Regularization.py │ │ ├── plot_6-geostatConstraints.py │ │ └── plot_8-regionWise.py │ └── README.txt └── user-guide │ ├── advanced │ ├── caching.md │ ├── custom-fop.md │ ├── hpc-parallel.md │ ├── index.md │ └── matrices.md │ ├── data.md │ ├── fundamentals.md │ ├── getting-started │ ├── basics.md │ ├── first-inversion.md │ ├── first-modelling.md │ ├── how-to-continue.md │ ├── index.md │ └── installation.md │ ├── index.md │ ├── inversion.md │ ├── jupytext.toml │ ├── meshes.md │ ├── modelling.md │ └── visualization.md ├── environment.yml ├── pygimli ├── __init__.py ├── _version.py ├── core │ ├── __init__.py │ ├── base.py │ ├── chdll.sh │ ├── chwhich.sh │ ├── config.py │ ├── core.py │ ├── datacontainer.py │ ├── decorators.py │ ├── libs │ │ └── __init__.py │ ├── load.py │ ├── logger.py │ ├── math.py │ ├── matrix.py │ ├── mesh.py │ └── trans.py ├── frameworks │ ├── __init__.py │ ├── harmfit.py │ ├── inversion.py │ ├── linesearch.py │ ├── lsqrinversion.py │ ├── methodManager.py │ ├── modelling.py │ ├── resolution.py │ └── timelapse.py ├── math │ ├── __init__.py │ ├── bfgsmatrix.py │ ├── matrix.py │ └── trans.py ├── meshtools │ ├── __init__.py │ ├── example.xml │ ├── grid.py │ ├── mapping.py │ ├── mesh.py │ ├── polytools.py │ └── quality.py ├── physics │ ├── SIP │ │ ├── __init__.py │ │ ├── importData.py │ │ ├── models.py │ │ ├── plotting.py │ │ ├── sipspectrum.py │ │ ├── siptools.py │ │ └── tools.py │ ├── __init__.py │ ├── complexSpectrum.py │ ├── constants.py │ ├── em │ │ ├── README.md │ │ ├── __init__.py │ │ ├── fdem.py │ │ ├── fdemmodelling.py │ │ ├── hemmodelling.py │ │ ├── io.py │ │ ├── mt1dmodelling.py │ │ ├── tdem.py │ │ ├── tools.py │ │ └── vmd.py │ ├── ert │ │ ├── __init__.py │ │ ├── crosshole.py │ │ ├── ert.py │ │ ├── ertIPManager.py │ │ ├── ertManager.py │ │ ├── ertModelling.py │ │ ├── ertScheme.py │ │ ├── importData.py │ │ ├── ipModelling.py │ │ ├── processing.py │ │ ├── timelapse.py │ │ └── visualization.py │ ├── gravimetry │ │ ├── GravityModelling.py │ │ ├── MagneticsModelling.py │ │ ├── __init__.py │ │ ├── blakely.py │ │ ├── gravMagModelling.py │ │ ├── kernel.py │ │ ├── magneticsManager.py │ │ └── tools.py │ ├── petro │ │ ├── __init__.py │ │ ├── hydro.py │ │ ├── modelling.py │ │ ├── resistivity.py │ │ └── velocity.py │ ├── sNMR │ │ ├── __init__.py │ │ ├── modelling.py │ │ ├── mrs.py │ │ ├── mrsprofile.py │ │ ├── mrstools.py │ │ └── plotting.py │ ├── seismics │ │ ├── __init__.py │ │ └── seismics.py │ ├── traveltime │ │ ├── TravelTimeManager.py │ │ ├── __init__.py │ │ ├── importData.py │ │ ├── modelling.py │ │ ├── plotting.py │ │ ├── refraction1d.py │ │ ├── tt.py │ │ └── utils.py │ └── ves │ │ ├── __init__.py │ │ ├── ves.py │ │ ├── vesManager.py │ │ └── vesModelling.py ├── pypi.readme.md ├── solver │ ├── __init__.py │ ├── green.py │ ├── leastsquares.py │ ├── solver.py │ ├── solverFiniteVolume.py │ └── utils.py ├── testing │ ├── __init__.py │ ├── test_ERTManager_simulate.py │ ├── test_FEM.py │ ├── test_FOP.py │ ├── test_Frameworks.py │ ├── test_IO_PLC.py │ ├── test_Interpolate.py │ ├── test_IterBug.py │ ├── test_Logger.py │ ├── test_MeshGenerator.py │ ├── test_OSMGetter.py │ ├── test_OwnMatrix.py │ ├── test_Perf.py │ ├── test_PhysicsManagers.py │ ├── test_RValueConverter.py │ ├── test_RegionManager.py │ ├── test_SparseMatrix.py │ ├── test_Traveltime.py │ ├── test_XVector.py │ ├── test_geometricFactors.py │ ├── test_misc.py │ ├── test_polytools.py │ └── test_show.py ├── utils │ ├── __init__.py │ ├── base.py │ ├── cache.py │ ├── complex.py │ ├── dem.py │ ├── geostatistics.py │ ├── gps.py │ ├── hankel.py │ ├── ipcserver.py │ ├── positioning.py │ ├── postinversion.py │ ├── sparseMat2Numpy.py │ ├── streams.py │ ├── units.py │ └── utils.py └── viewer │ ├── __init__.py │ ├── mpl │ ├── __init__.py │ ├── boreholes.py │ ├── colorbar.py │ ├── dataview.py │ ├── matrixview.py │ ├── meshview.py │ ├── modelview.py │ ├── overlayimage.py │ └── utils.py │ ├── pv │ ├── __init__.py │ ├── draw.py │ ├── pyqt │ │ ├── 3dlogo.png │ │ ├── favicon.ico │ │ ├── gwidgets │ │ │ ├── __init__.py │ │ │ └── utils.py │ │ └── show3d.py │ ├── utils.py │ └── vistaview.py │ ├── showdata.py │ ├── showmatrix.py │ └── showmesh.py ├── pyproject.toml └── versioneer.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/.github/ISSUE_TEMPLATE/question.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/.pylintrc -------------------------------------------------------------------------------- /.workflow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/.workflow.sh -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CITATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/CITATION.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /INSTALLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/INSTALLATION.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/README.md -------------------------------------------------------------------------------- /apps/convertMesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/apps/convertMesh -------------------------------------------------------------------------------- /apps/dataMerge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/apps/dataMerge -------------------------------------------------------------------------------- /apps/ipynbToGalleryExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/apps/ipynbToGalleryExample.py -------------------------------------------------------------------------------- /apps/meshMerge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/apps/meshMerge -------------------------------------------------------------------------------- /apps/pytripatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/apps/pytripatch -------------------------------------------------------------------------------- /apps/render_example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/apps/render_example -------------------------------------------------------------------------------- /core/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/cmake/FindCHOLMOD.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/cmake/FindCHOLMOD.cmake -------------------------------------------------------------------------------- /core/cmake/FindCppUnit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/cmake/FindCppUnit.cmake -------------------------------------------------------------------------------- /core/cmake/FindSphinx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/cmake/FindSphinx.cmake -------------------------------------------------------------------------------- /core/cmake/FindTriangle.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/cmake/FindTriangle.cmake -------------------------------------------------------------------------------- /core/cmake/FindUMFPACK.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/cmake/FindUMFPACK.cmake -------------------------------------------------------------------------------- /core/cmake/Findcastxml.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/cmake/Findcastxml.cmake -------------------------------------------------------------------------------- /core/cmake/Findgccxml.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/cmake/Findgccxml.cmake -------------------------------------------------------------------------------- /core/cmake/Findpygccxml.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/cmake/Findpygccxml.cmake -------------------------------------------------------------------------------- /core/cmake/Findpyplusplus.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/cmake/Findpyplusplus.cmake -------------------------------------------------------------------------------- /core/cmake/Findreadproc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/cmake/Findreadproc.cmake -------------------------------------------------------------------------------- /core/cmake/GIMLImacros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/cmake/GIMLImacros.cmake -------------------------------------------------------------------------------- /core/config.cmake.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/config.cmake.h.in -------------------------------------------------------------------------------- /core/pgcore/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/pgcore/CMakeLists.txt -------------------------------------------------------------------------------- /core/pgcore/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/pgcore/__init__.py -------------------------------------------------------------------------------- /core/pgcore/getwheelname.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/pgcore/getwheelname.py.in -------------------------------------------------------------------------------- /core/pgcore/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/pgcore/readme.md -------------------------------------------------------------------------------- /core/pgcore/setup.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/pgcore/setup.py.in -------------------------------------------------------------------------------- /core/python/.gitattributes: -------------------------------------------------------------------------------- 1 | pygimli/_version.py export-subst 2 | -------------------------------------------------------------------------------- /core/python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/python/CMakeLists.txt -------------------------------------------------------------------------------- /core/python/apps/createParameterMesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/python/apps/createParameterMesh -------------------------------------------------------------------------------- /core/python/apps/gimli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/python/apps/gimli -------------------------------------------------------------------------------- /core/python/apps/pyCreateSurface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/python/apps/pyCreateSurface -------------------------------------------------------------------------------- /core/python/apps/recountPara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/python/apps/recountPara -------------------------------------------------------------------------------- /core/python/apps/script_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/python/apps/script_template.py -------------------------------------------------------------------------------- /core/python/apps/showSens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/python/apps/showSens -------------------------------------------------------------------------------- /core/python/custom_rvalue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/python/custom_rvalue.cpp -------------------------------------------------------------------------------- /core/python/doxygen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/python/doxygen.py -------------------------------------------------------------------------------- /core/python/environment_for_pygimli_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/python/environment_for_pygimli_build.py -------------------------------------------------------------------------------- /core/python/explicit_instances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/python/explicit_instances.cpp -------------------------------------------------------------------------------- /core/python/generate_pygimli_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/python/generate_pygimli_code.py -------------------------------------------------------------------------------- /core/python/generators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/python/generators.h -------------------------------------------------------------------------------- /core/python/hand_made_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/python/hand_made_wrappers.py -------------------------------------------------------------------------------- /core/python/patch_pygccxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/python/patch_pygccxml.py -------------------------------------------------------------------------------- /core/python/pygimli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/python/pygimli.h -------------------------------------------------------------------------------- /core/python/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/python/tests.txt -------------------------------------------------------------------------------- /core/python/tuples.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/python/tuples.hpp -------------------------------------------------------------------------------- /core/scripts/Dockerfile_DebianBookworm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/Dockerfile_DebianBookworm -------------------------------------------------------------------------------- /core/scripts/buildThirdParty.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/buildThirdParty.sh -------------------------------------------------------------------------------- /core/scripts/install/install_gimli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/install/install_gimli.sh -------------------------------------------------------------------------------- /core/scripts/install/install_linux_prereqs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/install/install_linux_prereqs.sh -------------------------------------------------------------------------------- /core/scripts/install/install_mac_prereqs.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/scripts/install/install_win64_prereqs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/install/install_win64_prereqs.sh -------------------------------------------------------------------------------- /core/scripts/install/install_win64_winpython.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/install/install_win64_winpython.sh -------------------------------------------------------------------------------- /core/scripts/matlab/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/README.TXT -------------------------------------------------------------------------------- /core/scripts/matlab/addpaths.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/addpaths.m -------------------------------------------------------------------------------- /core/scripts/matlab/base/Contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/base/Contents.m -------------------------------------------------------------------------------- /core/scripts/matlab/base/arms.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/base/arms.m -------------------------------------------------------------------------------- /core/scripts/matlab/base/b2r.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/base/b2r.m -------------------------------------------------------------------------------- /core/scripts/matlab/base/cbar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/base/cbar.m -------------------------------------------------------------------------------- /core/scripts/matlab/base/chi2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/base/chi2.m -------------------------------------------------------------------------------- /core/scripts/matlab/base/destrip.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/base/destrip.m -------------------------------------------------------------------------------- /core/scripts/matlab/base/epsprint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/base/epsprint.m -------------------------------------------------------------------------------- /core/scripts/matlab/base/fcmcluster.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/base/fcmcluster.m -------------------------------------------------------------------------------- /core/scripts/matlab/base/gaulag.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/base/gaulag.m -------------------------------------------------------------------------------- /core/scripts/matlab/base/gauleg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/base/gauleg.m -------------------------------------------------------------------------------- /core/scripts/matlab/base/getcindex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/base/getcindex.m -------------------------------------------------------------------------------- /core/scripts/matlab/base/getgrfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/base/getgrfile.m -------------------------------------------------------------------------------- /core/scripts/matlab/base/gps2xyz.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/base/gps2xyz.m -------------------------------------------------------------------------------- /core/scripts/matlab/base/harmfit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/base/harmfit.m -------------------------------------------------------------------------------- /core/scripts/matlab/base/int2hum.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/base/int2hum.m -------------------------------------------------------------------------------- /core/scripts/matlab/base/inter2dpoint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/base/inter2dpoint.m -------------------------------------------------------------------------------- /core/scripts/matlab/base/interperc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/base/interperc.m -------------------------------------------------------------------------------- /core/scripts/matlab/base/kronecker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/base/kronecker.m -------------------------------------------------------------------------------- /core/scripts/matlab/base/loadbmat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/base/loadbmat.m -------------------------------------------------------------------------------- /core/scripts/matlab/base/loadsparsematrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/base/loadsparsematrix.m -------------------------------------------------------------------------------- /core/scripts/matlab/base/minmax.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/base/minmax.m -------------------------------------------------------------------------------- /core/scripts/matlab/base/num2strcell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/base/num2strcell.m -------------------------------------------------------------------------------- /core/scripts/matlab/base/readunifile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/base/readunifile.m -------------------------------------------------------------------------------- /core/scripts/matlab/base/rndig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/base/rndig.m -------------------------------------------------------------------------------- /core/scripts/matlab/base/rrms.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/base/rrms.m -------------------------------------------------------------------------------- /core/scripts/matlab/base/savematbin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/base/savematbin.m -------------------------------------------------------------------------------- /core/scripts/matlab/base/saveunifile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/base/saveunifile.m -------------------------------------------------------------------------------- /core/scripts/matlab/base/snaptoline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/base/snaptoline.m -------------------------------------------------------------------------------- /core/scripts/matlab/base/turnmatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/base/turnmatrix.m -------------------------------------------------------------------------------- /core/scripts/matlab/base/writeconfigfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/base/writeconfigfile.m -------------------------------------------------------------------------------- /core/scripts/matlab/base/writepng.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/base/writepng.m -------------------------------------------------------------------------------- /core/scripts/matlab/base/writesurfergrid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/base/writesurfergrid.m -------------------------------------------------------------------------------- /core/scripts/matlab/eqsolve/Contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/eqsolve/Contents.m -------------------------------------------------------------------------------- /core/scripts/matlab/eqsolve/cglscdp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/eqsolve/cglscdp.m -------------------------------------------------------------------------------- /core/scripts/matlab/eqsolve/cglscdpt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/eqsolve/cglscdpt.m -------------------------------------------------------------------------------- /core/scripts/matlab/eqsolve/cglscdwwp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/eqsolve/cglscdwwp.m -------------------------------------------------------------------------------- /core/scripts/matlab/eqsolve/cglspar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/eqsolve/cglspar.m -------------------------------------------------------------------------------- /core/scripts/matlab/eqsolve/cglsparcdp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/eqsolve/cglsparcdp.m -------------------------------------------------------------------------------- /core/scripts/matlab/eqsolve/cholpcg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/eqsolve/cholpcg.m -------------------------------------------------------------------------------- /core/scripts/matlab/eqsolve/regcgls.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/eqsolve/regcgls.m -------------------------------------------------------------------------------- /core/scripts/matlab/eqsolve/regcglsp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/eqsolve/regcglsp.m -------------------------------------------------------------------------------- /core/scripts/matlab/eqsolve/regcglsw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/eqsolve/regcglsw.m -------------------------------------------------------------------------------- /core/scripts/matlab/eqsolve/tlscg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/eqsolve/tlscg.m -------------------------------------------------------------------------------- /core/scripts/matlab/fop/dc1d/fwd3d1d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/fop/dc1d/fwd3d1d.m -------------------------------------------------------------------------------- /core/scripts/matlab/fop/dc1d/fwdschlum.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/fop/dc1d/fwdschlum.m -------------------------------------------------------------------------------- /core/scripts/matlab/fop/dc1d/fwdschlumC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/fop/dc1d/fwdschlumC.m -------------------------------------------------------------------------------- /core/scripts/matlab/fop/dc1d/invfile1d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/fop/dc1d/invfile1d.m -------------------------------------------------------------------------------- /core/scripts/matlab/fop/dc1d/invfile1drho.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/fop/dc1d/invfile1drho.m -------------------------------------------------------------------------------- /core/scripts/matlab/fop/dc1d/senssch1d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/fop/dc1d/senssch1d.m -------------------------------------------------------------------------------- /core/scripts/matlab/fop/dc1d/senssch1drho.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/fop/dc1d/senssch1drho.m -------------------------------------------------------------------------------- /core/scripts/matlab/fop/em1d/invmaxmindata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/fop/em1d/invmaxmindata.m -------------------------------------------------------------------------------- /core/scripts/matlab/fop/em1d/maxminfwd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/fop/em1d/maxminfwd.m -------------------------------------------------------------------------------- /core/scripts/matlab/fop/em1d/mt1dfwd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/fop/em1d/mt1dfwd.m -------------------------------------------------------------------------------- /core/scripts/matlab/fop/em1d/readmaxmindata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/fop/em1d/readmaxmindata.m -------------------------------------------------------------------------------- /core/scripts/matlab/fop/em1d/readtemfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/fop/em1d/readtemfile.m -------------------------------------------------------------------------------- /core/scripts/matlab/fop/em1d/readusffile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/fop/em1d/readusffile.m -------------------------------------------------------------------------------- /core/scripts/matlab/fop/em1d/showmaxmindata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/fop/em1d/showmaxmindata.m -------------------------------------------------------------------------------- /core/scripts/matlab/fop/em1d/tem1drhoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/fop/em1d/tem1drhoa.m -------------------------------------------------------------------------------- /core/scripts/matlab/fop/em1d/tem1dsens.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/fop/em1d/tem1dsens.m -------------------------------------------------------------------------------- /core/scripts/matlab/fop/em1d/vmd_f.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/fop/em1d/vmd_f.m -------------------------------------------------------------------------------- /core/scripts/matlab/fop/em1d/vmd_t.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/fop/em1d/vmd_t.m -------------------------------------------------------------------------------- /core/scripts/matlab/fop/em1d/vmd_tvec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/fop/em1d/vmd_tvec.m -------------------------------------------------------------------------------- /core/scripts/matlab/fop/mrs1d/AmplitudeJacobian.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/fop/mrs1d/AmplitudeJacobian.m -------------------------------------------------------------------------------- /core/scripts/matlab/fop/mrs1d/mrsblockfor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/fop/mrs1d/mrsblockfor.m -------------------------------------------------------------------------------- /core/scripts/matlab/fop/mrs1d/mrsfwd1dblock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/fop/mrs1d/mrsfwd1dblock.m -------------------------------------------------------------------------------- /core/scripts/matlab/fop/mrs1d/plotmrsdatafit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/fop/mrs1d/plotmrsdatafit.m -------------------------------------------------------------------------------- /core/scripts/matlab/fop/mrs1d/printoutmodel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/fop/mrs1d/printoutmodel.m -------------------------------------------------------------------------------- /core/scripts/matlab/fop/mrs2d/show2dmrsdata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/fop/mrs2d/show2dmrsdata.m -------------------------------------------------------------------------------- /core/scripts/matlab/fop/mrs2d/show2dmrsimage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/fop/mrs2d/show2dmrsimage.m -------------------------------------------------------------------------------- /core/scripts/matlab/mesh/grid2mesh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/mesh/grid2mesh.m -------------------------------------------------------------------------------- /core/scripts/matlab/mesh/grid4mesh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/mesh/grid4mesh.m -------------------------------------------------------------------------------- /core/scripts/matlab/mesh/hex2tet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/mesh/hex2tet.m -------------------------------------------------------------------------------- /core/scripts/matlab/mesh/loadmesh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/mesh/loadmesh.m -------------------------------------------------------------------------------- /core/scripts/matlab/mesh/loadvtkmesh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/mesh/loadvtkmesh.m -------------------------------------------------------------------------------- /core/scripts/matlab/mesh/mesh2vtk.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/mesh/mesh2vtk.m -------------------------------------------------------------------------------- /core/scripts/matlab/mesh/mesharea.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/mesh/mesharea.m -------------------------------------------------------------------------------- /core/scripts/matlab/mesh/meshcellmid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/mesh/meshcellmid.m -------------------------------------------------------------------------------- /core/scripts/matlab/mesh/meshextractcells.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/mesh/meshextractcells.m -------------------------------------------------------------------------------- /core/scripts/matlab/mesh/readeasymesh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/mesh/readeasymesh.m -------------------------------------------------------------------------------- /core/scripts/matlab/mesh/savemesh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/mesh/savemesh.m -------------------------------------------------------------------------------- /core/scripts/matlab/mesh/savepointvtk.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/mesh/savepointvtk.m -------------------------------------------------------------------------------- /core/scripts/matlab/mesh/savevtkmesh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/mesh/savevtkmesh.m -------------------------------------------------------------------------------- /core/scripts/matlab/mesh/writetsurf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/mesh/writetsurf.m -------------------------------------------------------------------------------- /core/scripts/matlab/plot/clusterplot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/plot/clusterplot.m -------------------------------------------------------------------------------- /core/scripts/matlab/plot/draw1dmodel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/plot/draw1dmodel.m -------------------------------------------------------------------------------- /core/scripts/matlab/plot/draw2dmodel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/plot/draw2dmodel.m -------------------------------------------------------------------------------- /core/scripts/matlab/plot/errorbarxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/plot/errorbarxy.m -------------------------------------------------------------------------------- /core/scripts/matlab/plot/getcols.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/plot/getcols.m -------------------------------------------------------------------------------- /core/scripts/matlab/plot/loghist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/plot/loghist.m -------------------------------------------------------------------------------- /core/scripts/matlab/plot/patch2dmodel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/plot/patch2dmodel.m -------------------------------------------------------------------------------- /core/scripts/matlab/plot/plotmymatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/plot/plotmymatrix.m -------------------------------------------------------------------------------- /core/scripts/matlab/plot/putonxaxis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/plot/putonxaxis.m -------------------------------------------------------------------------------- /core/scripts/matlab/plot/senscov2alpha.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/plot/senscov2alpha.m -------------------------------------------------------------------------------- /core/scripts/matlab/plot/showxyz.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/plot/showxyz.m -------------------------------------------------------------------------------- /core/scripts/matlab/plot/spy2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/plot/spy2.m -------------------------------------------------------------------------------- /core/scripts/matlab/plot/tripatchmod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/plot/tripatchmod.m -------------------------------------------------------------------------------- /core/scripts/matlab/poly/create2dpoly.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/poly/create2dpoly.m -------------------------------------------------------------------------------- /core/scripts/matlab/poly/createcylpoly.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/poly/createcylpoly.m -------------------------------------------------------------------------------- /core/scripts/matlab/poly/createparamesh2d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/poly/createparamesh2d.m -------------------------------------------------------------------------------- /core/scripts/matlab/poly/pos2poly.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/poly/pos2poly.m -------------------------------------------------------------------------------- /core/scripts/matlab/poly/readpoly2d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/poly/readpoly2d.m -------------------------------------------------------------------------------- /core/scripts/matlab/poly/readpoly3d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/poly/readpoly3d.m -------------------------------------------------------------------------------- /core/scripts/matlab/poly/showpoly2d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/poly/showpoly2d.m -------------------------------------------------------------------------------- /core/scripts/matlab/poly/showpoly3d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/poly/showpoly3d.m -------------------------------------------------------------------------------- /core/scripts/matlab/poly/writeeapoly.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/poly/writeeapoly.m -------------------------------------------------------------------------------- /core/scripts/matlab/poly/writepoly2d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/poly/writepoly2d.m -------------------------------------------------------------------------------- /core/scripts/matlab/poly/writepoly3d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/poly/writepoly3d.m -------------------------------------------------------------------------------- /core/scripts/matlab/poly/writeroundpoly.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/poly/writeroundpoly.m -------------------------------------------------------------------------------- /core/scripts/matlab/reg/smooth2d1st.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/reg/smooth2d1st.m -------------------------------------------------------------------------------- /core/scripts/matlab/reg/smooth2d2nd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/reg/smooth2d2nd.m -------------------------------------------------------------------------------- /core/scripts/matlab/stats/clustermodel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/stats/clustermodel.m -------------------------------------------------------------------------------- /core/scripts/matlab/stats/fcmcluster.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/stats/fcmcluster.m -------------------------------------------------------------------------------- /core/scripts/matlab/trans/logdroptrans.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/trans/logdroptrans.m -------------------------------------------------------------------------------- /core/scripts/matlab/trans/logtrans.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/trans/logtrans.m -------------------------------------------------------------------------------- /core/scripts/matlab/trans/logtransdiff.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/trans/logtransdiff.m -------------------------------------------------------------------------------- /core/scripts/matlab/trans/logtransinv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/trans/logtransinv.m -------------------------------------------------------------------------------- /core/scripts/matlab/trans/tantrans.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/trans/tantrans.m -------------------------------------------------------------------------------- /core/scripts/matlab/trans/tantransdiff.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/trans/tantransdiff.m -------------------------------------------------------------------------------- /core/scripts/matlab/trans/tantransinv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/matlab/trans/tantransinv.m -------------------------------------------------------------------------------- /core/scripts/patches/SuiteSparse-4.4.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/patches/SuiteSparse-4.4.1.patch -------------------------------------------------------------------------------- /core/scripts/patches/triangle-mingw-win64.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/scripts/patches/triangle-mingw-win64.patch -------------------------------------------------------------------------------- /core/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/CMakeLists.txt -------------------------------------------------------------------------------- /core/src/baseentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/baseentity.h -------------------------------------------------------------------------------- /core/src/bert/bert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/bert/bert.cpp -------------------------------------------------------------------------------- /core/src/bert/bert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/bert/bert.h -------------------------------------------------------------------------------- /core/src/bert/bertDataContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/bert/bertDataContainer.cpp -------------------------------------------------------------------------------- /core/src/bert/bertDataContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/bert/bertDataContainer.h -------------------------------------------------------------------------------- /core/src/bert/bertJacobian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/bert/bertJacobian.cpp -------------------------------------------------------------------------------- /core/src/bert/bertJacobian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/bert/bertJacobian.h -------------------------------------------------------------------------------- /core/src/bert/bertMisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/bert/bertMisc.cpp -------------------------------------------------------------------------------- /core/src/bert/bertMisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/bert/bertMisc.h -------------------------------------------------------------------------------- /core/src/bert/datamap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/bert/datamap.cpp -------------------------------------------------------------------------------- /core/src/bert/datamap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/bert/datamap.h -------------------------------------------------------------------------------- /core/src/bert/dcfemmodelling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/bert/dcfemmodelling.cpp -------------------------------------------------------------------------------- /core/src/bert/dcfemmodelling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/bert/dcfemmodelling.h -------------------------------------------------------------------------------- /core/src/bert/electrode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/bert/electrode.cpp -------------------------------------------------------------------------------- /core/src/bert/electrode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/bert/electrode.h -------------------------------------------------------------------------------- /core/src/blockmatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/blockmatrix.cpp -------------------------------------------------------------------------------- /core/src/blockmatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/blockmatrix.h -------------------------------------------------------------------------------- /core/src/calculateMultiThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/calculateMultiThread.h -------------------------------------------------------------------------------- /core/src/cholmodWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/cholmodWrapper.cpp -------------------------------------------------------------------------------- /core/src/cholmodWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/cholmodWrapper.h -------------------------------------------------------------------------------- /core/src/curvefitting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/curvefitting.cpp -------------------------------------------------------------------------------- /core/src/curvefitting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/curvefitting.h -------------------------------------------------------------------------------- /core/src/datacontainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/datacontainer.cpp -------------------------------------------------------------------------------- /core/src/datacontainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/datacontainer.h -------------------------------------------------------------------------------- /core/src/dc1dmodelling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/dc1dmodelling.cpp -------------------------------------------------------------------------------- /core/src/dc1dmodelling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/dc1dmodelling.h -------------------------------------------------------------------------------- /core/src/elementmatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/elementmatrix.cpp -------------------------------------------------------------------------------- /core/src/elementmatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/elementmatrix.h -------------------------------------------------------------------------------- /core/src/em1dmodelling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/em1dmodelling.cpp -------------------------------------------------------------------------------- /core/src/em1dmodelling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/em1dmodelling.h -------------------------------------------------------------------------------- /core/src/exitcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/exitcodes.h -------------------------------------------------------------------------------- /core/src/expressions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/expressions.h -------------------------------------------------------------------------------- /core/src/gimli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/gimli.cpp -------------------------------------------------------------------------------- /core/src/gimli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/gimli.h -------------------------------------------------------------------------------- /core/src/gravimetry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/gravimetry.cpp -------------------------------------------------------------------------------- /core/src/gravimetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/gravimetry.h -------------------------------------------------------------------------------- /core/src/integration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/integration.cpp -------------------------------------------------------------------------------- /core/src/integration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/integration.h -------------------------------------------------------------------------------- /core/src/interpolate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/interpolate.cpp -------------------------------------------------------------------------------- /core/src/interpolate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/interpolate.h -------------------------------------------------------------------------------- /core/src/inversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/inversion.cpp -------------------------------------------------------------------------------- /core/src/inversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/inversion.h -------------------------------------------------------------------------------- /core/src/inversionBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/inversionBase.h -------------------------------------------------------------------------------- /core/src/kdtree++/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/kdtree++/AUTHORS -------------------------------------------------------------------------------- /core/src/kdtree++/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/kdtree++/COPYING -------------------------------------------------------------------------------- /core/src/kdtree++/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/kdtree++/NEWS -------------------------------------------------------------------------------- /core/src/kdtree++/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/kdtree++/README -------------------------------------------------------------------------------- /core/src/kdtree++/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/kdtree++/VERSION -------------------------------------------------------------------------------- /core/src/kdtree++/allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/kdtree++/allocator.hpp -------------------------------------------------------------------------------- /core/src/kdtree++/function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/kdtree++/function.hpp -------------------------------------------------------------------------------- /core/src/kdtree++/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/kdtree++/iterator.hpp -------------------------------------------------------------------------------- /core/src/kdtree++/kdtree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/kdtree++/kdtree.hpp -------------------------------------------------------------------------------- /core/src/kdtree++/node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/kdtree++/node.hpp -------------------------------------------------------------------------------- /core/src/kdtree++/region.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/kdtree++/region.hpp -------------------------------------------------------------------------------- /core/src/kdtreeWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/kdtreeWrapper.cpp -------------------------------------------------------------------------------- /core/src/kdtreeWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/kdtreeWrapper.h -------------------------------------------------------------------------------- /core/src/ldlWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/ldlWrapper.cpp -------------------------------------------------------------------------------- /core/src/ldlWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/ldlWrapper.h -------------------------------------------------------------------------------- /core/src/linSolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/linSolver.cpp -------------------------------------------------------------------------------- /core/src/linSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/linSolver.h -------------------------------------------------------------------------------- /core/src/line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/line.cpp -------------------------------------------------------------------------------- /core/src/line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/line.h -------------------------------------------------------------------------------- /core/src/matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/matrix.cpp -------------------------------------------------------------------------------- /core/src/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/matrix.h -------------------------------------------------------------------------------- /core/src/memwatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/memwatch.cpp -------------------------------------------------------------------------------- /core/src/memwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/memwatch.h -------------------------------------------------------------------------------- /core/src/mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/mesh.cpp -------------------------------------------------------------------------------- /core/src/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/mesh.h -------------------------------------------------------------------------------- /core/src/mesh_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/mesh_io.cpp -------------------------------------------------------------------------------- /core/src/meshentities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/meshentities.cpp -------------------------------------------------------------------------------- /core/src/meshentities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/meshentities.h -------------------------------------------------------------------------------- /core/src/meshgenerators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/meshgenerators.cpp -------------------------------------------------------------------------------- /core/src/meshgenerators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/meshgenerators.h -------------------------------------------------------------------------------- /core/src/modellingbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/modellingbase.cpp -------------------------------------------------------------------------------- /core/src/modellingbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/modellingbase.h -------------------------------------------------------------------------------- /core/src/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/node.cpp -------------------------------------------------------------------------------- /core/src/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/node.h -------------------------------------------------------------------------------- /core/src/numericbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/numericbase.cpp -------------------------------------------------------------------------------- /core/src/numericbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/numericbase.h -------------------------------------------------------------------------------- /core/src/optionmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/optionmap.cpp -------------------------------------------------------------------------------- /core/src/optionmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/optionmap.h -------------------------------------------------------------------------------- /core/src/plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/plane.cpp -------------------------------------------------------------------------------- /core/src/plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/plane.h -------------------------------------------------------------------------------- /core/src/platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/platform.cpp -------------------------------------------------------------------------------- /core/src/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/platform.h -------------------------------------------------------------------------------- /core/src/polynomial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/polynomial.h -------------------------------------------------------------------------------- /core/src/pos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/pos.cpp -------------------------------------------------------------------------------- /core/src/pos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/pos.h -------------------------------------------------------------------------------- /core/src/quaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/quaternion.cpp -------------------------------------------------------------------------------- /core/src/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/quaternion.h -------------------------------------------------------------------------------- /core/src/refCountPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/refCountPtr.h -------------------------------------------------------------------------------- /core/src/regionManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/regionManager.cpp -------------------------------------------------------------------------------- /core/src/regionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/regionManager.h -------------------------------------------------------------------------------- /core/src/shape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/shape.cpp -------------------------------------------------------------------------------- /core/src/shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/shape.h -------------------------------------------------------------------------------- /core/src/solver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/solver.cpp -------------------------------------------------------------------------------- /core/src/solver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/solver.h -------------------------------------------------------------------------------- /core/src/solverWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/solverWrapper.cpp -------------------------------------------------------------------------------- /core/src/solverWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/solverWrapper.h -------------------------------------------------------------------------------- /core/src/sparsematrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/sparsematrix.cpp -------------------------------------------------------------------------------- /core/src/sparsematrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/sparsematrix.h -------------------------------------------------------------------------------- /core/src/spline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/spline.cpp -------------------------------------------------------------------------------- /core/src/spline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/spline.h -------------------------------------------------------------------------------- /core/src/stopwatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/stopwatch.cpp -------------------------------------------------------------------------------- /core/src/stopwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/stopwatch.h -------------------------------------------------------------------------------- /core/src/trans.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/trans.cpp -------------------------------------------------------------------------------- /core/src/trans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/trans.h -------------------------------------------------------------------------------- /core/src/triangleWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/triangleWrapper.cpp -------------------------------------------------------------------------------- /core/src/triangleWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/triangleWrapper.h -------------------------------------------------------------------------------- /core/src/ttdijkstramodelling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/ttdijkstramodelling.cpp -------------------------------------------------------------------------------- /core/src/ttdijkstramodelling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/ttdijkstramodelling.h -------------------------------------------------------------------------------- /core/src/vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/vector.cpp -------------------------------------------------------------------------------- /core/src/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/vector.h -------------------------------------------------------------------------------- /core/src/vectortemplates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/vectortemplates.h -------------------------------------------------------------------------------- /core/src/wingetopt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/wingetopt.cpp -------------------------------------------------------------------------------- /core/src/wingetopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/src/wingetopt.h -------------------------------------------------------------------------------- /core/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(unittest) 2 | 3 | -------------------------------------------------------------------------------- /core/tests/unittest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/tests/unittest/CMakeLists.txt -------------------------------------------------------------------------------- /core/tests/unittest/GIMLiUnitTest.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/tests/unittest/GIMLiUnitTest.cbp -------------------------------------------------------------------------------- /core/tests/unittest/testDataContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/tests/unittest/testDataContainer.h -------------------------------------------------------------------------------- /core/tests/unittest/testExternals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/tests/unittest/testExternals.h -------------------------------------------------------------------------------- /core/tests/unittest/testFEM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/tests/unittest/testFEM.h -------------------------------------------------------------------------------- /core/tests/unittest/testGIMLiMisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/tests/unittest/testGIMLiMisc.h -------------------------------------------------------------------------------- /core/tests/unittest/testGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/tests/unittest/testGeometry.h -------------------------------------------------------------------------------- /core/tests/unittest/testMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/tests/unittest/testMesh.h -------------------------------------------------------------------------------- /core/tests/unittest/testShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/tests/unittest/testShape.h -------------------------------------------------------------------------------- /core/tests/unittest/testVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/tests/unittest/testVector.h -------------------------------------------------------------------------------- /core/tests/unittest/unitTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/tests/unittest/unitTest.cpp -------------------------------------------------------------------------------- /core/tests/unittest/unittest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/core/tests/unittest/unittest.sh -------------------------------------------------------------------------------- /doc/BUILD_LINUX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/BUILD_LINUX.md -------------------------------------------------------------------------------- /doc/BUILD_MAC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/BUILD_MAC.md -------------------------------------------------------------------------------- /doc/BUILD_WIN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/BUILD_WIN.md -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/_sphinx-ext/srclinks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_sphinx-ext/srclinks.py -------------------------------------------------------------------------------- /doc/_static/bg_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/bg_dark.png -------------------------------------------------------------------------------- /doc/_static/bg_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/bg_light.png -------------------------------------------------------------------------------- /doc/_static/cad_tutorial/freecad_fig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/cad_tutorial/freecad_fig.png -------------------------------------------------------------------------------- /doc/_static/cad_tutorial/gmsh_fig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/cad_tutorial/gmsh_fig.png -------------------------------------------------------------------------------- /doc/_static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/css/custom.css -------------------------------------------------------------------------------- /doc/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/favicon.ico -------------------------------------------------------------------------------- /doc/_static/gimli_logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/gimli_logo.pdf -------------------------------------------------------------------------------- /doc/_static/gimli_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/gimli_logo.svg -------------------------------------------------------------------------------- /doc/_static/gimli_logo_simple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/gimli_logo_simple.svg -------------------------------------------------------------------------------- /doc/_static/gmsh/bbox_coordinate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/gmsh/bbox_coordinate.png -------------------------------------------------------------------------------- /doc/_static/gmsh/create_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/gmsh/create_point.png -------------------------------------------------------------------------------- /doc/_static/gmsh/examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/gmsh/examples.png -------------------------------------------------------------------------------- /doc/_static/gmsh/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/gmsh/line.png -------------------------------------------------------------------------------- /doc/_static/gmsh/mod_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/gmsh/mod_inv.png -------------------------------------------------------------------------------- /doc/_static/gmsh/surf1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/gmsh/surf1.png -------------------------------------------------------------------------------- /doc/_static/js/custom-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/js/custom-icons.js -------------------------------------------------------------------------------- /doc/_static/js/jquery-3.7.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/js/jquery-3.7.1.min.js -------------------------------------------------------------------------------- /doc/_static/mylatex-commands.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/mylatex-commands.sty -------------------------------------------------------------------------------- /doc/_static/pg_design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/pg_design.png -------------------------------------------------------------------------------- /doc/_static/usecases/arboleda-zapata2022.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/usecases/arboleda-zapata2022.jpg -------------------------------------------------------------------------------- /doc/_static/usecases/bergmann2014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/usecases/bergmann2014.png -------------------------------------------------------------------------------- /doc/_static/usecases/costabel2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/usecases/costabel2016.png -------------------------------------------------------------------------------- /doc/_static/usecases/costall2020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/usecases/costall2020.jpg -------------------------------------------------------------------------------- /doc/_static/usecases/enemark2020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/usecases/enemark2020.jpg -------------------------------------------------------------------------------- /doc/_static/usecases/flinchum2022.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/usecases/flinchum2022.jpg -------------------------------------------------------------------------------- /doc/_static/usecases/gruenenbaum2023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/usecases/gruenenbaum2023.png -------------------------------------------------------------------------------- /doc/_static/usecases/guenther2012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/usecases/guenther2012.png -------------------------------------------------------------------------------- /doc/_static/usecases/guenther2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/usecases/guenther2016.png -------------------------------------------------------------------------------- /doc/_static/usecases/hellman2017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/usecases/hellman2017.png -------------------------------------------------------------------------------- /doc/_static/usecases/huebner2017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/usecases/huebner2017.png -------------------------------------------------------------------------------- /doc/_static/usecases/jordi2018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/usecases/jordi2018.png -------------------------------------------------------------------------------- /doc/_static/usecases/jordi2020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/usecases/jordi2020.jpg -------------------------------------------------------------------------------- /doc/_static/usecases/laloy2020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/usecases/laloy2020.jpg -------------------------------------------------------------------------------- /doc/_static/usecases/loewer2017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/usecases/loewer2017.png -------------------------------------------------------------------------------- /doc/_static/usecases/martin2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/usecases/martin2013.png -------------------------------------------------------------------------------- /doc/_static/usecases/mollaret2020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/usecases/mollaret2020.jpg -------------------------------------------------------------------------------- /doc/_static/usecases/nazari2023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/usecases/nazari2023.png -------------------------------------------------------------------------------- /doc/_static/usecases/palacios2020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/usecases/palacios2020.jpg -------------------------------------------------------------------------------- /doc/_static/usecases/pasquale2019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/usecases/pasquale2019.png -------------------------------------------------------------------------------- /doc/_static/usecases/peruzzo2020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/usecases/peruzzo2020.jpg -------------------------------------------------------------------------------- /doc/_static/usecases/rochlitz2018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/usecases/rochlitz2018.png -------------------------------------------------------------------------------- /doc/_static/usecases/rochlitz2023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/usecases/rochlitz2023.png -------------------------------------------------------------------------------- /doc/_static/usecases/rochlitz2025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/usecases/rochlitz2025.png -------------------------------------------------------------------------------- /doc/_static/usecases/ronczka2015a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/usecases/ronczka2015a.png -------------------------------------------------------------------------------- /doc/_static/usecases/ronczka2015b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/usecases/ronczka2015b.png -------------------------------------------------------------------------------- /doc/_static/usecases/ronczka2017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/usecases/ronczka2017.png -------------------------------------------------------------------------------- /doc/_static/usecases/skibbe2018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/usecases/skibbe2018.png -------------------------------------------------------------------------------- /doc/_static/usecases/skibbe2020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/usecases/skibbe2020.jpg -------------------------------------------------------------------------------- /doc/_static/usecases/skibbe2021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/usecases/skibbe2021.png -------------------------------------------------------------------------------- /doc/_static/usecases/skibbe2024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/usecases/skibbe2024.jpg -------------------------------------------------------------------------------- /doc/_static/usecases/steiner2019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/usecases/steiner2019.png -------------------------------------------------------------------------------- /doc/_static/usecases/uecker2022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/usecases/uecker2022.png -------------------------------------------------------------------------------- /doc/_static/usecases/wadas2022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/usecases/wadas2022.png -------------------------------------------------------------------------------- /doc/_static/usecases/wagner2015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/usecases/wagner2015.png -------------------------------------------------------------------------------- /doc/_static/usecases/wagner2019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/usecases/wagner2019.jpg -------------------------------------------------------------------------------- /doc/_static/usecases/wellmann2022.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/usecases/wellmann2022.jpg -------------------------------------------------------------------------------- /doc/_static/usecases/wunderlich2018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_static/usecases/wunderlich2018.png -------------------------------------------------------------------------------- /doc/_templates/footer_end.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_templates/footer_end.html -------------------------------------------------------------------------------- /doc/_templates/footer_start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_templates/footer_start.html -------------------------------------------------------------------------------- /doc/_templates/improve-this-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_templates/improve-this-page.html -------------------------------------------------------------------------------- /doc/_templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_templates/index.html -------------------------------------------------------------------------------- /doc/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_templates/layout.html -------------------------------------------------------------------------------- /doc/_templates/module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_templates/module.rst -------------------------------------------------------------------------------- /doc/_templates/publications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_templates/publications.html -------------------------------------------------------------------------------- /doc/_templates/pybtex_plugins/pybtexPGstylePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_templates/pybtex_plugins/pybtexPGstylePlugin.py -------------------------------------------------------------------------------- /doc/_templates/pybtex_plugins/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_templates/pybtex_plugins/setup.py -------------------------------------------------------------------------------- /doc/_templates/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/_templates/sidebar.html -------------------------------------------------------------------------------- /doc/about/authors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/about/authors.md -------------------------------------------------------------------------------- /doc/about/citation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/about/citation.md -------------------------------------------------------------------------------- /doc/about/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/about/index.md -------------------------------------------------------------------------------- /doc/about/introduction.md: -------------------------------------------------------------------------------- 1 | # Introduction 2 | -------------------------------------------------------------------------------- /doc/about/libgimli.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/about/libgimli.bib -------------------------------------------------------------------------------- /doc/about/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/about/license.md -------------------------------------------------------------------------------- /doc/bib2html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/bib2html.py -------------------------------------------------------------------------------- /doc/community/contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/community/contribute.md -------------------------------------------------------------------------------- /doc/community/development/cheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/community/development/cheatsheet.md -------------------------------------------------------------------------------- /doc/community/development/dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/community/development/dependencies.md -------------------------------------------------------------------------------- /doc/community/development/guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/community/development/guidelines.md -------------------------------------------------------------------------------- /doc/community/development/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/community/development/index.md -------------------------------------------------------------------------------- /doc/community/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/community/index.md -------------------------------------------------------------------------------- /doc/community/publications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/community/publications.md -------------------------------------------------------------------------------- /doc/compilation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/compilation.md -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/conf_environment.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/conf_environment.py.in -------------------------------------------------------------------------------- /doc/design.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/design.rst -------------------------------------------------------------------------------- /doc/doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/doxyfile.in -------------------------------------------------------------------------------- /doc/doxygen/doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/doxygen/doxyfile.in -------------------------------------------------------------------------------- /doc/examples/1_meshing/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/1_meshing/README.txt -------------------------------------------------------------------------------- /doc/examples/1_meshing/plot_bert-logo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/1_meshing/plot_bert-logo.py -------------------------------------------------------------------------------- /doc/examples/1_meshing/plot_cad_tutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/1_meshing/plot_cad_tutorial.py -------------------------------------------------------------------------------- /doc/examples/1_meshing/plot_extrude_2D_to_3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/1_meshing/plot_extrude_2D_to_3D.py -------------------------------------------------------------------------------- /doc/examples/1_meshing/plot_gmsh-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/1_meshing/plot_gmsh-example.py -------------------------------------------------------------------------------- /doc/examples/1_meshing/plot_hybrid-mesh-2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/1_meshing/plot_hybrid-mesh-2d.py -------------------------------------------------------------------------------- /doc/examples/2_seismics/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/2_seismics/README.txt -------------------------------------------------------------------------------- /doc/examples/2_seismics/plot_01_refraction_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/2_seismics/plot_01_refraction_manager.py -------------------------------------------------------------------------------- /doc/examples/2_seismics/plot_02_crosshole_tomography.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/2_seismics/plot_02_crosshole_tomography.py -------------------------------------------------------------------------------- /doc/examples/2_seismics/plot_03_rays_layered_and_gradient_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/2_seismics/plot_03_rays_layered_and_gradient_models.py -------------------------------------------------------------------------------- /doc/examples/2_seismics/plot_04_koenigsee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/2_seismics/plot_04_koenigsee.py -------------------------------------------------------------------------------- /doc/examples/2_seismics/plot_05_refraction_3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/2_seismics/plot_05_refraction_3D.py -------------------------------------------------------------------------------- /doc/examples/3_ert/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/3_ert/.gitignore -------------------------------------------------------------------------------- /doc/examples/3_ert/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/3_ert/README.txt -------------------------------------------------------------------------------- /doc/examples/3_ert/plot_01_ert_2d_mod_inv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/3_ert/plot_01_ert_2d_mod_inv.py -------------------------------------------------------------------------------- /doc/examples/3_ert/plot_02_ert_field_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/3_ert/plot_02_ert_field_data.py -------------------------------------------------------------------------------- /doc/examples/3_ert/plot_03_ert_2_layer_mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/3_ert/plot_03_ert_2_layer_mod.py -------------------------------------------------------------------------------- /doc/examples/3_ert/plot_04_ert_2_5d_potential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/3_ert/plot_04_ert_2_5d_potential.py -------------------------------------------------------------------------------- /doc/examples/3_ert/plot_05_ert_4_point_sensitivities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/3_ert/plot_05_ert_4_point_sensitivities.py -------------------------------------------------------------------------------- /doc/examples/3_ert/plot_06_ert_crosshole2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/3_ert/plot_06_ert_crosshole2d.py -------------------------------------------------------------------------------- /doc/examples/3_ert/plot_06_ert_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/3_ert/plot_06_ert_tree.py -------------------------------------------------------------------------------- /doc/examples/3_ert/plot_07_ert_3dsurface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/3_ert/plot_07_ert_3dsurface.py -------------------------------------------------------------------------------- /doc/examples/3_ert/plot_08_ert_crosshole3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/3_ert/plot_08_ert_crosshole3d.py -------------------------------------------------------------------------------- /doc/examples/3_ert/plot_09_ert_timelapse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/3_ert/plot_09_ert_timelapse.py -------------------------------------------------------------------------------- /doc/examples/3_ert/plot_10_reciprocal_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/3_ert/plot_10_reciprocal_analysis.py -------------------------------------------------------------------------------- /doc/examples/3_ert/plot_modTank3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/3_ert/plot_modTank3d.py -------------------------------------------------------------------------------- /doc/examples/3_induced_polarization/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/3_induced_polarization/README.txt -------------------------------------------------------------------------------- /doc/examples/3_induced_polarization/plot_02_generating_sip_signatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/3_induced_polarization/plot_02_generating_sip_signatures.py -------------------------------------------------------------------------------- /doc/examples/3_induced_polarization/plot_03_fitting_sip_signatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/3_induced_polarization/plot_03_fitting_sip_signatures.py -------------------------------------------------------------------------------- /doc/examples/3_induced_polarization/plot_06_complex_modeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/3_induced_polarization/plot_06_complex_modeling.py -------------------------------------------------------------------------------- /doc/examples/3_induced_polarization/plot_08_TDIPinversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/3_induced_polarization/plot_08_TDIPinversion.py -------------------------------------------------------------------------------- /doc/examples/3_induced_polarization/tmp/_plot_07_simple_complex_inversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/3_induced_polarization/tmp/_plot_07_simple_complex_inversion.py -------------------------------------------------------------------------------- /doc/examples/4_gravimetry_magnetics/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/4_gravimetry_magnetics/README.txt -------------------------------------------------------------------------------- /doc/examples/4_gravimetry_magnetics/plot_01_mod-gravimetry-integration-2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/4_gravimetry_magnetics/plot_01_mod-gravimetry-integration-2d.py -------------------------------------------------------------------------------- /doc/examples/4_gravimetry_magnetics/plot_02_mod-gravimetry-2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/4_gravimetry_magnetics/plot_02_mod-gravimetry-2d.py -------------------------------------------------------------------------------- /doc/examples/4_gravimetry_magnetics/plot_03_inv-gravity-2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/4_gravimetry_magnetics/plot_03_inv-gravity-2d.py -------------------------------------------------------------------------------- /doc/examples/4_gravimetry_magnetics/plot_05_inv-gravity-3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/4_gravimetry_magnetics/plot_05_inv-gravity-3d.py -------------------------------------------------------------------------------- /doc/examples/4_gravimetry_magnetics/plot_08_inv-magnetics-3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/4_gravimetry_magnetics/plot_08_inv-magnetics-3d.py -------------------------------------------------------------------------------- /doc/examples/5_flow_transport/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/5_flow_transport/README.txt -------------------------------------------------------------------------------- /doc/examples/5_flow_transport/plot_3D_Darcy_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/5_flow_transport/plot_3D_Darcy_flow.py -------------------------------------------------------------------------------- /doc/examples/5_flow_transport/plot_hydrogeophysical_modeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/5_flow_transport/plot_hydrogeophysical_modeling.py -------------------------------------------------------------------------------- /doc/examples/6_inversion/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/6_inversion/README.txt -------------------------------------------------------------------------------- /doc/examples/6_inversion/plot_1_dcem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/6_inversion/plot_1_dcem.py -------------------------------------------------------------------------------- /doc/examples/6_inversion/plot_2_additionalConstraintsVES.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/6_inversion/plot_2_additionalConstraintsVES.py -------------------------------------------------------------------------------- /doc/examples/6_inversion/plot_3_petro_joint_inv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/6_inversion/plot_3_petro_joint_inv.py -------------------------------------------------------------------------------- /doc/examples/6_inversion/plot_4_structural_constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/6_inversion/plot_4_structural_constraints.py -------------------------------------------------------------------------------- /doc/examples/6_inversion/plot_5_ert_with_priors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/6_inversion/plot_5_ert_with_priors.py -------------------------------------------------------------------------------- /doc/examples/6_inversion/plot_6_tem_with_resolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/6_inversion/plot_6_tem_with_resolution.py -------------------------------------------------------------------------------- /doc/examples/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/examples/README.txt -------------------------------------------------------------------------------- /doc/gimliuses.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/gimliuses.bib -------------------------------------------------------------------------------- /doc/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/glossary.md -------------------------------------------------------------------------------- /doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/index.md -------------------------------------------------------------------------------- /doc/mplstyle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/mplstyle.py -------------------------------------------------------------------------------- /doc/paper/cg17/example-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/paper/cg17/example-1.py -------------------------------------------------------------------------------- /doc/paper/cg17/example-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/paper/cg17/example-2.py -------------------------------------------------------------------------------- /doc/paper/cg17/example-2_modelling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/paper/cg17/example-2_modelling.py -------------------------------------------------------------------------------- /doc/paper/cg17/example-2_visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/paper/cg17/example-2_visualization.py -------------------------------------------------------------------------------- /doc/paper/cg17/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/paper/cg17/index.rst -------------------------------------------------------------------------------- /doc/paper_carousel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/paper_carousel.py -------------------------------------------------------------------------------- /doc/pygimliapi/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/pygimliapi/index.rst -------------------------------------------------------------------------------- /doc/pygimliapi/physics_overwrite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/pygimliapi/physics_overwrite -------------------------------------------------------------------------------- /doc/pygimliapi/viewer_overwrite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/pygimliapi/viewer_overwrite -------------------------------------------------------------------------------- /doc/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/references.bib -------------------------------------------------------------------------------- /doc/references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/references.md -------------------------------------------------------------------------------- /doc/sidebar_gallery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/sidebar_gallery.py -------------------------------------------------------------------------------- /doc/tutorials/0_basics/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/tutorials/0_basics/README.txt -------------------------------------------------------------------------------- /doc/tutorials/0_basics/plot_1-gimli_basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/tutorials/0_basics/plot_1-gimli_basics.py -------------------------------------------------------------------------------- /doc/tutorials/0_basics/plot_3-data_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/tutorials/0_basics/plot_3-data_container.py -------------------------------------------------------------------------------- /doc/tutorials/0_basics/plot_6-matrices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/tutorials/0_basics/plot_6-matrices.py -------------------------------------------------------------------------------- /doc/tutorials/1_mesh/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/tutorials/1_mesh/README.txt -------------------------------------------------------------------------------- /doc/tutorials/1_mesh/plot_2-anatomy_of_a_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/tutorials/1_mesh/plot_2-anatomy_of_a_mesh.py -------------------------------------------------------------------------------- /doc/tutorials/1_mesh/plot_3-mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/tutorials/1_mesh/plot_3-mesh.py -------------------------------------------------------------------------------- /doc/tutorials/1_mesh/plot_5-mesh_interpolation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/tutorials/1_mesh/plot_5-mesh_interpolation.py -------------------------------------------------------------------------------- /doc/tutorials/1_mesh/plot_6-mesh-quality-inspection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/tutorials/1_mesh/plot_6-mesh-quality-inspection.py -------------------------------------------------------------------------------- /doc/tutorials/1_mesh/tmp_deactivated_plot_7-markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/tutorials/1_mesh/tmp_deactivated_plot_7-markers.py -------------------------------------------------------------------------------- /doc/tutorials/2_modelling/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/tutorials/2_modelling/README.txt -------------------------------------------------------------------------------- /doc/tutorials/2_modelling/plot_2-mod-fem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/tutorials/2_modelling/plot_2-mod-fem.py -------------------------------------------------------------------------------- /doc/tutorials/2_modelling/plot_3-mod-fem-BC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/tutorials/2_modelling/plot_3-mod-fem-BC.py -------------------------------------------------------------------------------- /doc/tutorials/2_modelling/plot_5-mod-fem-heat-2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/tutorials/2_modelling/plot_5-mod-fem-heat-2d.py -------------------------------------------------------------------------------- /doc/tutorials/3_inversion/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/tutorials/3_inversion/README.txt -------------------------------------------------------------------------------- /doc/tutorials/3_inversion/plot_0-expfit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/tutorials/3_inversion/plot_0-expfit.py -------------------------------------------------------------------------------- /doc/tutorials/3_inversion/plot_1-polyfit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/tutorials/3_inversion/plot_1-polyfit.py -------------------------------------------------------------------------------- /doc/tutorials/3_inversion/plot_2-dc1dblock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/tutorials/3_inversion/plot_2-dc1dblock.py -------------------------------------------------------------------------------- /doc/tutorials/3_inversion/plot_4-dc1dsmooth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/tutorials/3_inversion/plot_4-dc1dsmooth.py -------------------------------------------------------------------------------- /doc/tutorials/3_inversion/plot_5_Regularization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/tutorials/3_inversion/plot_5_Regularization.py -------------------------------------------------------------------------------- /doc/tutorials/3_inversion/plot_6-geostatConstraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/tutorials/3_inversion/plot_6-geostatConstraints.py -------------------------------------------------------------------------------- /doc/tutorials/3_inversion/plot_8-regionWise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/tutorials/3_inversion/plot_8-regionWise.py -------------------------------------------------------------------------------- /doc/tutorials/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/tutorials/README.txt -------------------------------------------------------------------------------- /doc/user-guide/advanced/caching.md: -------------------------------------------------------------------------------- 1 | # Caching 2 | -------------------------------------------------------------------------------- /doc/user-guide/advanced/custom-fop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/user-guide/advanced/custom-fop.md -------------------------------------------------------------------------------- /doc/user-guide/advanced/hpc-parallel.md: -------------------------------------------------------------------------------- 1 | # HPC & Parallel computing 2 | -------------------------------------------------------------------------------- /doc/user-guide/advanced/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/user-guide/advanced/index.md -------------------------------------------------------------------------------- /doc/user-guide/advanced/matrices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/user-guide/advanced/matrices.md -------------------------------------------------------------------------------- /doc/user-guide/data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/user-guide/data.md -------------------------------------------------------------------------------- /doc/user-guide/fundamentals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/user-guide/fundamentals.md -------------------------------------------------------------------------------- /doc/user-guide/getting-started/basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/user-guide/getting-started/basics.md -------------------------------------------------------------------------------- /doc/user-guide/getting-started/first-inversion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/user-guide/getting-started/first-inversion.md -------------------------------------------------------------------------------- /doc/user-guide/getting-started/first-modelling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/user-guide/getting-started/first-modelling.md -------------------------------------------------------------------------------- /doc/user-guide/getting-started/how-to-continue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/user-guide/getting-started/how-to-continue.md -------------------------------------------------------------------------------- /doc/user-guide/getting-started/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/user-guide/getting-started/index.md -------------------------------------------------------------------------------- /doc/user-guide/getting-started/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/user-guide/getting-started/installation.md -------------------------------------------------------------------------------- /doc/user-guide/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/user-guide/index.md -------------------------------------------------------------------------------- /doc/user-guide/inversion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/user-guide/inversion.md -------------------------------------------------------------------------------- /doc/user-guide/jupytext.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/user-guide/jupytext.toml -------------------------------------------------------------------------------- /doc/user-guide/meshes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/user-guide/meshes.md -------------------------------------------------------------------------------- /doc/user-guide/modelling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/user-guide/modelling.md -------------------------------------------------------------------------------- /doc/user-guide/visualization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/doc/user-guide/visualization.md -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/environment.yml -------------------------------------------------------------------------------- /pygimli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/__init__.py -------------------------------------------------------------------------------- /pygimli/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/_version.py -------------------------------------------------------------------------------- /pygimli/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/core/__init__.py -------------------------------------------------------------------------------- /pygimli/core/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/core/base.py -------------------------------------------------------------------------------- /pygimli/core/chdll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/core/chdll.sh -------------------------------------------------------------------------------- /pygimli/core/chwhich.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/core/chwhich.sh -------------------------------------------------------------------------------- /pygimli/core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/core/config.py -------------------------------------------------------------------------------- /pygimli/core/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/core/core.py -------------------------------------------------------------------------------- /pygimli/core/datacontainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/core/datacontainer.py -------------------------------------------------------------------------------- /pygimli/core/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/core/decorators.py -------------------------------------------------------------------------------- /pygimli/core/libs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pygimli/core/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/core/load.py -------------------------------------------------------------------------------- /pygimli/core/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/core/logger.py -------------------------------------------------------------------------------- /pygimli/core/math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/core/math.py -------------------------------------------------------------------------------- /pygimli/core/matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/core/matrix.py -------------------------------------------------------------------------------- /pygimli/core/mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/core/mesh.py -------------------------------------------------------------------------------- /pygimli/core/trans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/core/trans.py -------------------------------------------------------------------------------- /pygimli/frameworks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/frameworks/__init__.py -------------------------------------------------------------------------------- /pygimli/frameworks/harmfit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/frameworks/harmfit.py -------------------------------------------------------------------------------- /pygimli/frameworks/inversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/frameworks/inversion.py -------------------------------------------------------------------------------- /pygimli/frameworks/linesearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/frameworks/linesearch.py -------------------------------------------------------------------------------- /pygimli/frameworks/lsqrinversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/frameworks/lsqrinversion.py -------------------------------------------------------------------------------- /pygimli/frameworks/methodManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/frameworks/methodManager.py -------------------------------------------------------------------------------- /pygimli/frameworks/modelling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/frameworks/modelling.py -------------------------------------------------------------------------------- /pygimli/frameworks/resolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/frameworks/resolution.py -------------------------------------------------------------------------------- /pygimli/frameworks/timelapse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/frameworks/timelapse.py -------------------------------------------------------------------------------- /pygimli/math/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/math/__init__.py -------------------------------------------------------------------------------- /pygimli/math/bfgsmatrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/math/bfgsmatrix.py -------------------------------------------------------------------------------- /pygimli/math/matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/math/matrix.py -------------------------------------------------------------------------------- /pygimli/math/trans.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pygimli/meshtools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/meshtools/__init__.py -------------------------------------------------------------------------------- /pygimli/meshtools/example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/meshtools/example.xml -------------------------------------------------------------------------------- /pygimli/meshtools/grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/meshtools/grid.py -------------------------------------------------------------------------------- /pygimli/meshtools/mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/meshtools/mapping.py -------------------------------------------------------------------------------- /pygimli/meshtools/mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/meshtools/mesh.py -------------------------------------------------------------------------------- /pygimli/meshtools/polytools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/meshtools/polytools.py -------------------------------------------------------------------------------- /pygimli/meshtools/quality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/meshtools/quality.py -------------------------------------------------------------------------------- /pygimli/physics/SIP/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/SIP/__init__.py -------------------------------------------------------------------------------- /pygimli/physics/SIP/importData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/SIP/importData.py -------------------------------------------------------------------------------- /pygimli/physics/SIP/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/SIP/models.py -------------------------------------------------------------------------------- /pygimli/physics/SIP/plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/SIP/plotting.py -------------------------------------------------------------------------------- /pygimli/physics/SIP/sipspectrum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/SIP/sipspectrum.py -------------------------------------------------------------------------------- /pygimli/physics/SIP/siptools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/SIP/siptools.py -------------------------------------------------------------------------------- /pygimli/physics/SIP/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/SIP/tools.py -------------------------------------------------------------------------------- /pygimli/physics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/__init__.py -------------------------------------------------------------------------------- /pygimli/physics/complexSpectrum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/complexSpectrum.py -------------------------------------------------------------------------------- /pygimli/physics/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/constants.py -------------------------------------------------------------------------------- /pygimli/physics/em/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/em/README.md -------------------------------------------------------------------------------- /pygimli/physics/em/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/em/__init__.py -------------------------------------------------------------------------------- /pygimli/physics/em/fdem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/em/fdem.py -------------------------------------------------------------------------------- /pygimli/physics/em/fdemmodelling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/em/fdemmodelling.py -------------------------------------------------------------------------------- /pygimli/physics/em/hemmodelling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/em/hemmodelling.py -------------------------------------------------------------------------------- /pygimli/physics/em/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/em/io.py -------------------------------------------------------------------------------- /pygimli/physics/em/mt1dmodelling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/em/mt1dmodelling.py -------------------------------------------------------------------------------- /pygimli/physics/em/tdem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/em/tdem.py -------------------------------------------------------------------------------- /pygimli/physics/em/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/em/tools.py -------------------------------------------------------------------------------- /pygimli/physics/em/vmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/em/vmd.py -------------------------------------------------------------------------------- /pygimli/physics/ert/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/ert/__init__.py -------------------------------------------------------------------------------- /pygimli/physics/ert/crosshole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/ert/crosshole.py -------------------------------------------------------------------------------- /pygimli/physics/ert/ert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/ert/ert.py -------------------------------------------------------------------------------- /pygimli/physics/ert/ertIPManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/ert/ertIPManager.py -------------------------------------------------------------------------------- /pygimli/physics/ert/ertManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/ert/ertManager.py -------------------------------------------------------------------------------- /pygimli/physics/ert/ertModelling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/ert/ertModelling.py -------------------------------------------------------------------------------- /pygimli/physics/ert/ertScheme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/ert/ertScheme.py -------------------------------------------------------------------------------- /pygimli/physics/ert/importData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/ert/importData.py -------------------------------------------------------------------------------- /pygimli/physics/ert/ipModelling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/ert/ipModelling.py -------------------------------------------------------------------------------- /pygimli/physics/ert/processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/ert/processing.py -------------------------------------------------------------------------------- /pygimli/physics/ert/timelapse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/ert/timelapse.py -------------------------------------------------------------------------------- /pygimli/physics/ert/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/ert/visualization.py -------------------------------------------------------------------------------- /pygimli/physics/gravimetry/GravityModelling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/gravimetry/GravityModelling.py -------------------------------------------------------------------------------- /pygimli/physics/gravimetry/MagneticsModelling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/gravimetry/MagneticsModelling.py -------------------------------------------------------------------------------- /pygimli/physics/gravimetry/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/gravimetry/__init__.py -------------------------------------------------------------------------------- /pygimli/physics/gravimetry/blakely.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/gravimetry/blakely.py -------------------------------------------------------------------------------- /pygimli/physics/gravimetry/gravMagModelling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/gravimetry/gravMagModelling.py -------------------------------------------------------------------------------- /pygimli/physics/gravimetry/kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/gravimetry/kernel.py -------------------------------------------------------------------------------- /pygimli/physics/gravimetry/magneticsManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/gravimetry/magneticsManager.py -------------------------------------------------------------------------------- /pygimli/physics/gravimetry/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/gravimetry/tools.py -------------------------------------------------------------------------------- /pygimli/physics/petro/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/petro/__init__.py -------------------------------------------------------------------------------- /pygimli/physics/petro/hydro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/petro/hydro.py -------------------------------------------------------------------------------- /pygimli/physics/petro/modelling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/petro/modelling.py -------------------------------------------------------------------------------- /pygimli/physics/petro/resistivity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/petro/resistivity.py -------------------------------------------------------------------------------- /pygimli/physics/petro/velocity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/petro/velocity.py -------------------------------------------------------------------------------- /pygimli/physics/sNMR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/sNMR/__init__.py -------------------------------------------------------------------------------- /pygimli/physics/sNMR/modelling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/sNMR/modelling.py -------------------------------------------------------------------------------- /pygimli/physics/sNMR/mrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/sNMR/mrs.py -------------------------------------------------------------------------------- /pygimli/physics/sNMR/mrsprofile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/sNMR/mrsprofile.py -------------------------------------------------------------------------------- /pygimli/physics/sNMR/mrstools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/sNMR/mrstools.py -------------------------------------------------------------------------------- /pygimli/physics/sNMR/plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/sNMR/plotting.py -------------------------------------------------------------------------------- /pygimli/physics/seismics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/seismics/__init__.py -------------------------------------------------------------------------------- /pygimli/physics/seismics/seismics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/seismics/seismics.py -------------------------------------------------------------------------------- /pygimli/physics/traveltime/TravelTimeManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/traveltime/TravelTimeManager.py -------------------------------------------------------------------------------- /pygimli/physics/traveltime/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/traveltime/__init__.py -------------------------------------------------------------------------------- /pygimli/physics/traveltime/importData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/traveltime/importData.py -------------------------------------------------------------------------------- /pygimli/physics/traveltime/modelling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/traveltime/modelling.py -------------------------------------------------------------------------------- /pygimli/physics/traveltime/plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/traveltime/plotting.py -------------------------------------------------------------------------------- /pygimli/physics/traveltime/refraction1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/traveltime/refraction1d.py -------------------------------------------------------------------------------- /pygimli/physics/traveltime/tt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/traveltime/tt.py -------------------------------------------------------------------------------- /pygimli/physics/traveltime/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/traveltime/utils.py -------------------------------------------------------------------------------- /pygimli/physics/ves/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/ves/__init__.py -------------------------------------------------------------------------------- /pygimli/physics/ves/ves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/ves/ves.py -------------------------------------------------------------------------------- /pygimli/physics/ves/vesManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/ves/vesManager.py -------------------------------------------------------------------------------- /pygimli/physics/ves/vesModelling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/physics/ves/vesModelling.py -------------------------------------------------------------------------------- /pygimli/pypi.readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/pypi.readme.md -------------------------------------------------------------------------------- /pygimli/solver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/solver/__init__.py -------------------------------------------------------------------------------- /pygimli/solver/green.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/solver/green.py -------------------------------------------------------------------------------- /pygimli/solver/leastsquares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/solver/leastsquares.py -------------------------------------------------------------------------------- /pygimli/solver/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/solver/solver.py -------------------------------------------------------------------------------- /pygimli/solver/solverFiniteVolume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/solver/solverFiniteVolume.py -------------------------------------------------------------------------------- /pygimli/solver/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/solver/utils.py -------------------------------------------------------------------------------- /pygimli/testing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/testing/__init__.py -------------------------------------------------------------------------------- /pygimli/testing/test_ERTManager_simulate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/testing/test_ERTManager_simulate.py -------------------------------------------------------------------------------- /pygimli/testing/test_FEM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/testing/test_FEM.py -------------------------------------------------------------------------------- /pygimli/testing/test_FOP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/testing/test_FOP.py -------------------------------------------------------------------------------- /pygimli/testing/test_Frameworks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/testing/test_Frameworks.py -------------------------------------------------------------------------------- /pygimli/testing/test_IO_PLC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/testing/test_IO_PLC.py -------------------------------------------------------------------------------- /pygimli/testing/test_Interpolate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/testing/test_Interpolate.py -------------------------------------------------------------------------------- /pygimli/testing/test_IterBug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/testing/test_IterBug.py -------------------------------------------------------------------------------- /pygimli/testing/test_Logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/testing/test_Logger.py -------------------------------------------------------------------------------- /pygimli/testing/test_MeshGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/testing/test_MeshGenerator.py -------------------------------------------------------------------------------- /pygimli/testing/test_OSMGetter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/testing/test_OSMGetter.py -------------------------------------------------------------------------------- /pygimli/testing/test_OwnMatrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/testing/test_OwnMatrix.py -------------------------------------------------------------------------------- /pygimli/testing/test_Perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/testing/test_Perf.py -------------------------------------------------------------------------------- /pygimli/testing/test_PhysicsManagers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/testing/test_PhysicsManagers.py -------------------------------------------------------------------------------- /pygimli/testing/test_RValueConverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/testing/test_RValueConverter.py -------------------------------------------------------------------------------- /pygimli/testing/test_RegionManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/testing/test_RegionManager.py -------------------------------------------------------------------------------- /pygimli/testing/test_SparseMatrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/testing/test_SparseMatrix.py -------------------------------------------------------------------------------- /pygimli/testing/test_Traveltime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/testing/test_Traveltime.py -------------------------------------------------------------------------------- /pygimli/testing/test_XVector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/testing/test_XVector.py -------------------------------------------------------------------------------- /pygimli/testing/test_geometricFactors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/testing/test_geometricFactors.py -------------------------------------------------------------------------------- /pygimli/testing/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/testing/test_misc.py -------------------------------------------------------------------------------- /pygimli/testing/test_polytools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/testing/test_polytools.py -------------------------------------------------------------------------------- /pygimli/testing/test_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/testing/test_show.py -------------------------------------------------------------------------------- /pygimli/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/utils/__init__.py -------------------------------------------------------------------------------- /pygimli/utils/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/utils/base.py -------------------------------------------------------------------------------- /pygimli/utils/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/utils/cache.py -------------------------------------------------------------------------------- /pygimli/utils/complex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/utils/complex.py -------------------------------------------------------------------------------- /pygimli/utils/dem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/utils/dem.py -------------------------------------------------------------------------------- /pygimli/utils/geostatistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/utils/geostatistics.py -------------------------------------------------------------------------------- /pygimli/utils/gps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/utils/gps.py -------------------------------------------------------------------------------- /pygimli/utils/hankel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/utils/hankel.py -------------------------------------------------------------------------------- /pygimli/utils/ipcserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/utils/ipcserver.py -------------------------------------------------------------------------------- /pygimli/utils/positioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/utils/positioning.py -------------------------------------------------------------------------------- /pygimli/utils/postinversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/utils/postinversion.py -------------------------------------------------------------------------------- /pygimli/utils/sparseMat2Numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/utils/sparseMat2Numpy.py -------------------------------------------------------------------------------- /pygimli/utils/streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/utils/streams.py -------------------------------------------------------------------------------- /pygimli/utils/units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/utils/units.py -------------------------------------------------------------------------------- /pygimli/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/utils/utils.py -------------------------------------------------------------------------------- /pygimli/viewer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/viewer/__init__.py -------------------------------------------------------------------------------- /pygimli/viewer/mpl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/viewer/mpl/__init__.py -------------------------------------------------------------------------------- /pygimli/viewer/mpl/boreholes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/viewer/mpl/boreholes.py -------------------------------------------------------------------------------- /pygimli/viewer/mpl/colorbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/viewer/mpl/colorbar.py -------------------------------------------------------------------------------- /pygimli/viewer/mpl/dataview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/viewer/mpl/dataview.py -------------------------------------------------------------------------------- /pygimli/viewer/mpl/matrixview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/viewer/mpl/matrixview.py -------------------------------------------------------------------------------- /pygimli/viewer/mpl/meshview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/viewer/mpl/meshview.py -------------------------------------------------------------------------------- /pygimli/viewer/mpl/modelview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/viewer/mpl/modelview.py -------------------------------------------------------------------------------- /pygimli/viewer/mpl/overlayimage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/viewer/mpl/overlayimage.py -------------------------------------------------------------------------------- /pygimli/viewer/mpl/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/viewer/mpl/utils.py -------------------------------------------------------------------------------- /pygimli/viewer/pv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/viewer/pv/__init__.py -------------------------------------------------------------------------------- /pygimli/viewer/pv/draw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/viewer/pv/draw.py -------------------------------------------------------------------------------- /pygimli/viewer/pv/pyqt/3dlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/viewer/pv/pyqt/3dlogo.png -------------------------------------------------------------------------------- /pygimli/viewer/pv/pyqt/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/viewer/pv/pyqt/favicon.ico -------------------------------------------------------------------------------- /pygimli/viewer/pv/pyqt/gwidgets/__init__.py: -------------------------------------------------------------------------------- 1 | from .utils import * -------------------------------------------------------------------------------- /pygimli/viewer/pv/pyqt/gwidgets/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/viewer/pv/pyqt/gwidgets/utils.py -------------------------------------------------------------------------------- /pygimli/viewer/pv/pyqt/show3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/viewer/pv/pyqt/show3d.py -------------------------------------------------------------------------------- /pygimli/viewer/pv/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/viewer/pv/utils.py -------------------------------------------------------------------------------- /pygimli/viewer/pv/vistaview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/viewer/pv/vistaview.py -------------------------------------------------------------------------------- /pygimli/viewer/showdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/viewer/showdata.py -------------------------------------------------------------------------------- /pygimli/viewer/showmatrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/viewer/showmatrix.py -------------------------------------------------------------------------------- /pygimli/viewer/showmesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pygimli/viewer/showmesh.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/pyproject.toml -------------------------------------------------------------------------------- /versioneer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimli-org/pyGIMLi/HEAD/versioneer.py --------------------------------------------------------------------------------