├── .cproject ├── .gitignore ├── CMakeLists.txt ├── COMMON ├── blas.F90 ├── constants.F90 ├── file_scan.c ├── file_scan.h ├── fileutils.c ├── h5helper.cpp ├── h5helper.h ├── input.lex ├── intset.F90 ├── invariants.f90 ├── invert2.F90 ├── invert_3d.F90 ├── lagrange_prop.f90 ├── leastsq.f90 ├── libmpi_fantome.f90 ├── mat_symposdef_solver.F90 ├── mpif.h ├── netlib │ ├── CMakeLists.txt │ ├── blas │ │ ├── dcopy.f │ │ ├── dgemm.f │ │ ├── dgemv.f │ │ ├── dger.f │ │ ├── dnrm2.f90 │ │ ├── drot.f │ │ ├── dscal.f │ │ ├── dswap.f │ │ ├── dtrmm.f │ │ ├── dtrmv.f │ │ ├── dtrsm.f │ │ ├── lsame.f │ │ └── xerbla.f │ └── lapack │ │ ├── dbdsqr.f │ │ ├── dcombssq.f │ │ ├── dgebd2.f │ │ ├── dgebrd.f │ │ ├── dgelq2.f │ │ ├── dgelqf.f │ │ ├── dgels.f │ │ ├── dgeqr2.f │ │ ├── dgeqrf.f │ │ ├── dgesvd.f │ │ ├── disnan.f │ │ ├── dlabad.f │ │ ├── dlabrd.f │ │ ├── dlacpy.f │ │ ├── dlaisnan.f │ │ ├── dlamch.f │ │ ├── dlange.f │ │ ├── dlapy2.f │ │ ├── dlarf.f │ │ ├── dlarfb.f │ │ ├── dlarfg.f │ │ ├── dlarft.f │ │ ├── dlartg.f90 │ │ ├── dlas2.f │ │ ├── dlascl.f │ │ ├── dlaset.f │ │ ├── dlasq1.f │ │ ├── dlasq2.f │ │ ├── dlasq3.f │ │ ├── dlasq4.f │ │ ├── dlasq5.f │ │ ├── dlasq6.f │ │ ├── dlasr.f │ │ ├── dlasrt.f │ │ ├── dlassq.f90 │ │ ├── dlasv2.f │ │ ├── dorg2r.f │ │ ├── dorgbr.f │ │ ├── dorgl2.f │ │ ├── dorglq.f │ │ ├── dorgqr.f │ │ ├── dorm2r.f │ │ ├── dormbr.f │ │ ├── dorml2.f │ │ ├── dormlq.f │ │ ├── dormqr.f │ │ ├── dtrtrs.f │ │ ├── ieeeck.f │ │ ├── iladlc.f │ │ ├── iladlr.f │ │ ├── ilaenv.f │ │ ├── iparmq.f │ │ ├── la_constants.f90 │ │ ├── la_xisnan.F90 │ │ └── xerbla.f ├── pointlist.f90 ├── pol_force.F90 ├── pow.F90 ├── protrep.f90 ├── read_input.c ├── read_input.h ├── read_mat.c ├── read_material.c ├── read_unv.cpp ├── read_unv.hpp ├── sem_c_bindings.F90 ├── sem_c_config.F90 ├── sem_hdf5.f90 ├── sem_input.c ├── sem_input.h ├── sem_materials.h ├── sem_types.h ├── semdatafiles.F90 ├── splib.F90 ├── stub_tremain.F90 ├── test_sem_path.f90 └── tremain_c.c ├── DOC ├── Makefile ├── calcul_forces.pdf ├── examples │ ├── capteurs.dat │ ├── input.spec │ └── materials.dat ├── figures │ ├── PML_fig001.png │ ├── PML_fig002.png │ ├── elem_gll_2d.png │ ├── fig_pol_lagrange.py │ ├── gabor_1.eps │ ├── gabor_2.eps │ ├── gaussian.eps │ ├── git_fig010.png │ ├── heaviside_freq.eps │ ├── heaviside_t.eps │ ├── lagrange_9.png │ ├── mass_9x9.png │ ├── neu_cylinder.png │ ├── neu_gaussian.png │ ├── neu_paraboloid.png │ ├── neu_square.png │ ├── ricker.eps │ ├── save_gmesh.png │ ├── save_msh.png │ ├── shape_fct_9x9.png │ ├── sinus.eps │ ├── spice_bench.eps │ ├── square.eps │ ├── tanh.eps │ └── unv_fig001.png ├── make.bat ├── notes-merge-evol.txt ├── other │ └── notes_integration_sem.txt ├── pdf │ └── format_input.pdf ├── rst.css ├── source │ ├── NEWS.rst │ ├── code_sem.rst │ ├── coding_style.rst │ ├── conf.py │ ├── developpement.rst │ ├── format_input.rst │ ├── format_mesh_hdf5.rst │ ├── format_mesher.rst │ ├── format_msh.rst │ ├── format_unv.rst │ ├── git.rst │ ├── index.rst │ ├── installation.rst │ ├── intro.rst │ ├── limitations_et_bugs.rst │ ├── logo-sem.png │ ├── reference.rst │ ├── topography.rst │ ├── tutoriel.rst │ └── vectorisation.rst └── tutoriel │ └── cas_1 │ ├── mat.dat │ └── material.input ├── LICENSE.md ├── MESH ├── CMakeLists.txt ├── CSRC │ ├── aabb.h │ ├── earth_mesh.cpp │ ├── earth_mesh.h │ ├── handle_ideas.cpp │ ├── main_grid.cpp │ ├── main_h5.cpp │ ├── main_mesher.cpp │ ├── material.h │ ├── mesh.cpp │ ├── mesh.h │ ├── mesh_common.cpp │ ├── mesh_common.h │ ├── mesh_grid.cpp │ ├── mesh_grid.h │ ├── mesh_h5_output.cpp │ ├── mesh_h5_output.h │ ├── meshbase.h │ ├── meshpart.cpp │ ├── meshpart.h │ ├── point3d.cpp │ ├── point3d.h │ ├── reader_abaqus.cpp │ ├── reader_abaqus.h │ ├── reader_ideas.cpp │ ├── reader_ideas.h │ ├── sem_gll.cpp │ ├── sem_gll.h │ └── vertex_elem_map.h ├── SRC │ ├── fich_cubit.f90 │ ├── fich_unv.f90 │ ├── free_surf.f90 │ ├── local_mesh_properties.f90 │ ├── mesh2spec.f90 │ ├── mesh_earthchunk.f90 │ ├── mesh_properties.f90 │ ├── mesher_mat.f90 │ ├── neumann.f90 │ ├── partition_mesh.f90 │ ├── sets.f90 │ └── solid_fluid.f90 └── metis │ ├── BUILD-Windows.txt │ ├── BUILD.txt │ ├── CMakeLists.txt │ ├── Changelog │ ├── GKlib │ ├── BUILD.txt │ ├── CMakeLists.txt │ ├── GKlib.h │ ├── GKlibSystem.cmake │ ├── Makefile │ ├── b64.c │ ├── blas.c │ ├── conf │ │ └── check_thread_storage.c │ ├── csr.c │ ├── error.c │ ├── evaluate.c │ ├── fkvkselect.c │ ├── fs.c │ ├── getopt.c │ ├── gk_arch.h │ ├── gk_defs.h │ ├── gk_externs.h │ ├── gk_getopt.h │ ├── gk_macros.h │ ├── gk_mkblas.h │ ├── gk_mkmemory.h │ ├── gk_mkpqueue.h │ ├── gk_mkpqueue2.h │ ├── gk_mkrandom.h │ ├── gk_mksort.h │ ├── gk_mkutils.h │ ├── gk_proto.h │ ├── gk_struct.h │ ├── gk_types.h │ ├── gkregex.c │ ├── gkregex.h │ ├── graph.c │ ├── htable.c │ ├── io.c │ ├── itemsets.c │ ├── mcore.c │ ├── memory.c │ ├── ms_inttypes.h │ ├── ms_stat.h │ ├── ms_stdint.h │ ├── omp.c │ ├── pdb.c │ ├── pqueue.c │ ├── random.c │ ├── rw.c │ ├── seq.c │ ├── sort.c │ ├── string.c │ ├── test │ │ ├── CMakeLists.txt │ │ ├── fis.c │ │ ├── gkgraph.c │ │ ├── gksort.c │ │ ├── rw.c │ │ └── strings.c │ ├── timers.c │ ├── tokenizer.c │ └── util.c │ ├── Install.txt │ ├── LICENSE.txt │ ├── Makefile │ ├── graphs │ ├── 4elt.graph │ ├── README │ ├── copter2.graph │ ├── mdual.graph │ ├── metis.mesh │ └── test.mgraph │ ├── include │ ├── CMakeLists.txt │ └── metis.h │ ├── libmetis │ ├── CMakeLists.txt │ ├── auxapi.c │ ├── balance.c │ ├── bucketsort.c │ ├── checkgraph.c │ ├── coarsen.c │ ├── compress.c │ ├── contig.c │ ├── debug.c │ ├── defs.h │ ├── fm.c │ ├── fortran.c │ ├── frename.c │ ├── gklib.c │ ├── gklib_defs.h │ ├── gklib_rename.h │ ├── graph.c │ ├── initpart.c │ ├── kmetis.c │ ├── kwayfm.c │ ├── kwayrefine.c │ ├── macros.h │ ├── mcutil.c │ ├── mesh.c │ ├── meshpart.c │ ├── metislib.h │ ├── minconn.c │ ├── mincover.c │ ├── mmd.c │ ├── ometis.c │ ├── options.c │ ├── parmetis.c │ ├── pmetis.c │ ├── proto.h │ ├── refine.c │ ├── rename.h │ ├── separator.c │ ├── sfm.c │ ├── srefine.c │ ├── stat.c │ ├── stdheaders.h │ ├── struct.h │ ├── timing.c │ ├── util.c │ └── wspace.c │ ├── manual │ └── manual.pdf │ ├── programs │ ├── CMakeLists.txt │ ├── cmdline_gpmetis.c │ ├── cmdline_m2gmetis.c │ ├── cmdline_mpmetis.c │ ├── cmdline_ndmetis.c │ ├── cmpfillin.c │ ├── defs.h │ ├── gpmetis.c │ ├── graphchk.c │ ├── io.c │ ├── m2gmetis.c │ ├── metisbin.h │ ├── mpmetis.c │ ├── ndmetis.c │ ├── proto.h │ ├── smbfactor.c │ ├── stat.c │ └── struct.h │ └── vsgen.bat ├── MESH2D ├── CMakeLists.txt └── SRC │ ├── create_2D.f90 │ ├── fich_cubit.f90 │ ├── gid2spec_seq.f90 │ ├── gid2spec_seq_h5.f90 │ └── main_mesh2d.cpp ├── README.md ├── SCRIPTS ├── Xdmf.dtd ├── cmake-intel.sh ├── convert_2d_mesh.py ├── cpml │ ├── output.tex │ ├── sympy_cpml.py │ └── sympy_to_fortran.py ├── dump_comms.py ├── header.py ├── mesh2d.py ├── mesh2d_to_h5.py ├── plot_comm_map.py ├── plot_traces.py ├── read_comm_map.py ├── readstat.py ├── sources.py ├── txt_to_h5_2d.py ├── valid_xmf.sh ├── xdmf_convert.py └── xdmf_temp_to_spacial.py ├── SEM2D ├── CMakeLists.txt ├── SRC │ ├── Assemblage.F90 │ ├── Compute_external_forces.F90 │ ├── Domain.F90 │ ├── Element.F90 │ ├── FPML_bak.F90 │ ├── Face.F90 │ ├── Fault.F90 │ ├── Midpoint.F90 │ ├── Mortar.F90 │ ├── Newmark.F90 │ ├── PML_def.F90 │ ├── Receivers.F90 │ ├── Runge_Kutta_4.F90 │ ├── Sources.F90 │ ├── Subdomains.F90 │ ├── TimeP.F90 │ ├── Vertex.F90 │ ├── allocate_domain.F90 │ ├── capteurs_veloc.F90 │ ├── check_inputs_and_mesh.F90 │ ├── communicating_wall.F90 │ ├── compute_GLL.F90 │ ├── compute_coeff_HDG.F90 │ ├── compute_coeff_flux.F90 │ ├── courant.F90 │ ├── define_arr.F90 │ ├── define_fault_properties.F90 │ ├── exchange_data_mpi.F90 │ ├── find_location.F90 │ ├── getDispl_fvel.F90 │ ├── getPMLpred_fv2el.F90 │ ├── getdumpmass_e2f.F90 │ ├── getif_el2f.F90 │ ├── getmass_e2f.F90 │ ├── global_energy.F90 │ ├── global_numbering.F90 │ ├── logical_input.F90 │ ├── main.F90 │ ├── mesh_deformations.F90 │ ├── mpi_list.F90 │ ├── orientation.F90 │ ├── postraitement.F90 │ ├── read_input.F90 │ ├── read_mesh.F90 │ ├── read_mesh_h5.F90 │ ├── read_restart.F90 │ ├── receiver_pos.F90 │ ├── save_checkpoint.F90 │ ├── save_deformation.F90 │ ├── save_fault_trace.F90 │ ├── save_vorticity.F90 │ ├── savefield.F90 │ ├── shape4.F90 │ ├── shape8.F90 │ ├── smoothing_exp.F90 │ ├── snapshots.F90 │ ├── source_pos.F90 │ ├── unv.F90 │ └── wall_transfer.F90 └── TESTS │ └── 2Dsquare_absorbingBC │ ├── README │ ├── capteurs.dat │ ├── input.create │ ├── input.spec │ ├── mat.dat │ ├── material.input │ ├── mesh.input │ └── mesh4spec.0000 ├── SEM3D ├── CMakeLists.txt ├── SRC │ ├── BLAS │ │ ├── dgemm.f90 │ │ ├── lsame.f90 │ │ └── xerbla.f90 │ ├── Capteur.f90 │ ├── Fluid │ │ ├── calcul_forces_fluid.F90 │ │ ├── calcul_forces_fluid.inc │ │ ├── champs_fluid.f90 │ │ └── dom_fluid.F90 │ ├── FluidCPML │ │ ├── calcul_forces_fluidpml.F90 │ │ ├── calcul_forces_fluidpml.inc │ │ ├── champs_fluidcpml.f90 │ │ └── dom_fluidcpml.F90 │ ├── FluidPML │ │ ├── champs_fluidpml.f90 │ │ └── dom_fluidpml.F90 │ ├── Modules │ │ ├── Bspline.f90 │ │ ├── Champs.f90 │ │ ├── Comm.f90 │ │ ├── Domain.f90 │ │ ├── Edge.f90 │ │ ├── Element.f90 │ │ ├── Extended_source.f90 │ │ ├── Face.f90 │ │ ├── Fault.f90 │ │ ├── Interface.f90 │ │ ├── Mirror.f90 │ │ ├── Neumann.f90 │ │ ├── Nonlinear.f90 │ │ ├── PlaneW.f90 │ │ ├── Sources.f90 │ │ ├── Subdomains.f90 │ │ ├── Surface.f90 │ │ ├── TimeP.f90 │ │ ├── Vertex.f90 │ │ ├── logical_input.f90 │ │ ├── solid_fluid.f90 │ │ └── tensor_util.f90 │ ├── Newmark.f90 │ ├── RF_fileCreator.f90 │ ├── Solid │ │ ├── attenuation_solid.F90 │ │ ├── calcul_forces.F90 │ │ ├── calcul_forces_atn.F90 │ │ ├── calcul_forces_atn_nl.F90 │ │ ├── calcul_forces_nl.f90 │ │ ├── calcul_forces_solid.inc │ │ ├── champs_solid.f90 │ │ └── dom_solid.F90 │ ├── SolidCPML │ │ ├── calcul_forces_solidpml.F90 │ │ ├── calcul_forces_solidpml.inc │ │ ├── champs_solidcpml.f90 │ │ └── dom_solidcpml.F90 │ ├── SolidDG │ │ ├── calcul_forces_solid_dg.F90 │ │ ├── calcul_forces_solid_dg.inc │ │ ├── champs_solid_dg.f90 │ │ └── dom_solid_dg.F90 │ ├── SolidPML │ │ ├── calcul_forces_int_pml.inc │ │ ├── champs_solidpml.f90 │ │ └── dom_solidpml.F90 │ ├── SourceMT │ │ ├── Dimension.f90 │ │ ├── DimensionalShape.f90 │ │ ├── ErrorWarning.f90 │ │ ├── compute_surface_BC.f90 │ │ ├── create_sem_surface_input.f90 │ │ ├── fparser.f90 │ │ ├── func1D.f90 │ │ ├── func2D.f90 │ │ ├── func3D.f90 │ │ ├── fvalue.f90 │ │ ├── mathfval.f90 │ │ ├── parameters.f90 │ │ └── selectsurfload.f90 │ ├── SourcePosition.f90 │ ├── algo_comm.f90 │ ├── allocate_domain.f90 │ ├── boundary_conditions_init.f90 │ ├── build_prop_files.F90 │ ├── charFunctions.f90 │ ├── comm_utils.f90 │ ├── compute_GLL.f90 │ ├── courant.f90 │ ├── deallocate_domain.f90 │ ├── define_Neumann_properties.f90 │ ├── define_arrays.F90 │ ├── dombase.F90 │ ├── double_couple.f90 │ ├── drive_sem.f90 │ ├── earth_models │ │ ├── earth_transform.f90 │ │ ├── material_earthchunk.F90 │ │ ├── material_prem.F90 │ │ ├── model_earthchunk.f90 │ │ └── model_prem.f90 │ ├── find_location.f90 │ ├── geometrical_prop.f90 │ ├── global_numbering.f90 │ ├── index.h │ ├── indexation.f90 │ ├── main.F90 │ ├── mesh3d.f90 │ ├── ondelette.f90 │ ├── orientation.f90 │ ├── partial_deriv.f90 │ ├── pml.F90 │ ├── read_input.f90 │ ├── read_restart.f90 │ ├── save_checkpoint.f90 │ ├── set_attenuation_param.F90 │ ├── shape27.F90 │ ├── shape8.F90 │ ├── snapdata.F90 │ ├── snapshots.F90 │ ├── solid_fluid_coupling.f90 │ ├── source_excit.F90 │ └── stat.f90 └── TESTS │ ├── NON-REGR │ ├── TEST_0001_cube_pulse_ricker │ │ ├── README │ │ ├── input.spec │ │ ├── mat.dat │ │ ├── mater.in │ │ ├── mesh.input │ │ └── stations.txt │ ├── TEST_0002_cube_pulse_gaussian │ │ ├── README │ │ ├── capteurs.dat │ │ ├── input.spec │ │ ├── mat.dat │ │ ├── mater.in │ │ └── mesh.input │ ├── TEST_0003_cube_pulse_spice │ │ ├── README │ │ ├── capteurs.dat │ │ ├── input.spec │ │ ├── mat.dat │ │ ├── mater.in │ │ └── mesh.input │ ├── TEST_0004_cube_Mxyz_ricker │ │ ├── README │ │ ├── capteurs.dat │ │ ├── input.spec │ │ ├── mat.dat │ │ ├── mater.in │ │ └── mesh.input │ ├── TEST_0005_unv_multi_domain │ │ ├── cube1.unv │ │ ├── cube2.unv │ │ ├── cubes.sh │ │ ├── input.spec │ │ ├── material.input │ │ └── mesh.input │ ├── TEST_0006_rand_cube_pulse_ricker │ │ ├── README │ │ ├── input.spec │ │ ├── mat.dat │ │ ├── mater.in │ │ ├── material.spec │ │ ├── mesh.input │ │ ├── random.spec │ │ └── stations.txt │ ├── TEST_0007_Cube_MSH │ │ ├── Cube_MSH.h5 │ │ ├── Cube_MSH.h5.xmf │ │ ├── Cube_MSH.msh │ │ ├── genMat.pbs │ │ ├── input.spec │ │ ├── material.input │ │ ├── mesh.input │ │ ├── stations.txt │ │ └── visu.pbs │ ├── TEST_0007_cube_surf │ │ ├── Cubo_surface.msh │ │ ├── Cubo_surface.txt │ │ ├── README │ │ ├── capteurs.dat │ │ ├── domains.txt │ │ ├── input.spec │ │ ├── mat.dat │ │ ├── mater.in │ │ ├── material.input │ │ ├── mesh.input │ │ └── stations.txt │ ├── TEST_0008_random_multi_domain │ │ ├── input.spec │ │ ├── mat.dat │ │ ├── mater.in │ │ ├── material.spec │ │ ├── mesh.input │ │ ├── random.spec │ │ └── stations.txt │ ├── TEST_TEMPLATE │ │ ├── README │ │ ├── capteurs.dat │ │ ├── input.spec │ │ ├── mat.dat │ │ ├── mater.in │ │ └── mesh.input │ └── gen_non_regr.py │ ├── PMLS │ ├── caseBarreFX │ │ ├── input.spec │ │ ├── mat.dat │ │ ├── mater.in │ │ └── material.input │ ├── caseBarreFY │ │ ├── input.spec │ │ ├── mat.dat │ │ ├── mater.in │ │ └── material.input │ ├── caseBarreFZ │ │ ├── input.spec │ │ ├── mat.dat │ │ ├── mater.in │ │ └── material.input │ ├── caseBarreSX │ │ ├── input.spec │ │ ├── mat.dat │ │ ├── mater.in │ │ └── material.input │ ├── caseBarreSY │ │ ├── input.spec │ │ ├── mat.dat │ │ ├── mater.in │ │ └── material.input │ └── caseBarreSZ │ │ ├── input.spec │ │ ├── mat.dat │ │ ├── mater.in │ │ └── material.input │ ├── SRC │ └── test_indexation.f90 │ └── UNITS │ └── test_pointlist.f90 ├── cmake └── FindFFTW3.cmake ├── pysem ├── __init__.py ├── compute_pml_length.py ├── coord_transform.py ├── create_stations.py ├── create_xmf_from_mesh.py ├── generate_h5_materials.py ├── mt │ ├── __init__.py │ ├── mesh_files.py │ └── xdmf.py ├── mt_import_gmsh ├── parse_h5_snapshots.py ├── parse_h5_traces.py ├── plots.py ├── rikpp │ ├── doc │ │ ├── Biblio.bib │ │ ├── Chicago.sty │ │ ├── Makefile │ │ ├── Modifications.tex │ │ ├── RIKmodel.tex │ │ ├── SEM.tex │ │ ├── chicagoa.bst │ │ ├── compile.sh │ │ ├── examples.tex │ │ ├── figures │ │ │ ├── 15000points_Napa_rocher_circles.png │ │ │ ├── 15000points_Napa_rocher_slip.png │ │ │ ├── Force_3point.png │ │ │ ├── Moment_vs_time_Napa_bedrock_model.png │ │ │ ├── RIK-input1.png │ │ │ ├── RIK-input2.png │ │ │ ├── convert-force.png │ │ │ ├── convert-moment.png │ │ │ └── input-moment.png │ │ ├── introduction.tex │ │ ├── manual.tex │ │ └── prepost.tex │ ├── rik_fault2xmf.py │ ├── rik_plot_slip.py │ ├── rik_pp_lib.py │ ├── rik_slip2moment.py │ └── xdmf_help.py └── sem_stf.py └── randomField ├── BLAS ├── dgemm.f90 ├── dger.f90 ├── lsame.f90 └── xerbla.f90 ├── CMakeLists.txt ├── INSTALL.md ├── RANDLIB ├── ranlib.f90 └── rnglib.f90 ├── README.md ├── SRC_EXE ├── main_RandomField.f90 └── main_Stat.f90 ├── SRC_LIB ├── calls_RF.f90 ├── charFunctions.f90 ├── common_variables_RF.f90 ├── constants_RF.f90 ├── displayCarvalhol.f90 ├── fftw3.f90 ├── fileManag_RF.f90 ├── hdf5_RF.f90 ├── localization_RF.f90 ├── math_RF.f90 ├── mesh_RF.f90 ├── randomFieldND.f90 ├── readFile_RF.f90 ├── readUNV_RF.f90 ├── sample_RF.f90 ├── special_functions.f90 ├── spectra_RF.f90 ├── statistics_RF.f90 ├── systemUt_RF.f90 ├── topography_RF.f90 ├── type_MESH.f90 ├── type_RF.f90 ├── type_STAT.f90 ├── type_inputRF.f90 ├── writeResultFile_RF.f90 └── write_Log_File.f90 ├── dcdflib ├── README ├── doc │ ├── dcdflib.chs │ └── dcdflib.fdoc └── src │ ├── algdiv.f │ ├── alngam.f │ ├── alnrel.f │ ├── apser.f │ ├── basym.f │ ├── bcorr.f │ ├── betaln.f │ ├── bfrac.f │ ├── bgrat.f │ ├── bpser.f │ ├── bratio.f │ ├── brcmp1.f │ ├── brcomp.f │ ├── bup.f │ ├── cdfbet.f │ ├── cdfbin.f │ ├── cdfchi.f │ ├── cdfchn.f │ ├── cdff.f │ ├── cdffnc.f │ ├── cdfgam.f │ ├── cdfnbn.f │ ├── cdfnor.f │ ├── cdfpoi.f │ ├── cdft.f │ ├── cumbet.f │ ├── cumbin.f │ ├── cumchi.f │ ├── cumchn.f │ ├── cumf.f │ ├── cumfnc.f │ ├── cumgam.f │ ├── cumnbn.f │ ├── cumnor.f │ ├── cumpoi.f │ ├── cumt.f │ ├── dbetrm.f │ ├── devlpl.f │ ├── dexpm1.f │ ├── dinvnr.f │ ├── dinvr.f │ ├── dlanor.f │ ├── dln1mx.f │ ├── dln1px.f │ ├── dlnbet.f │ ├── dlngam.f │ ├── dstrem.f │ ├── dt1.f │ ├── dzror.f │ ├── erf.f │ ├── erfc1.f │ ├── esum.f │ ├── exparg.f │ ├── fpser.f │ ├── gam1.f │ ├── gaminv.f │ ├── gamln.f │ ├── gamln1.f │ ├── gamma.f │ ├── grat1.f │ ├── gratio.f │ ├── gsumln.f │ ├── ipmpar.f │ ├── psi.f │ ├── rcomp.f │ ├── rexp.f │ ├── rlog.f │ ├── rlog1.f │ ├── spmpar.f │ └── stvaln.f └── makefile_example /.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/.cproject -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COMMON/blas.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/blas.F90 -------------------------------------------------------------------------------- /COMMON/constants.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/constants.F90 -------------------------------------------------------------------------------- /COMMON/file_scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/file_scan.c -------------------------------------------------------------------------------- /COMMON/file_scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/file_scan.h -------------------------------------------------------------------------------- /COMMON/fileutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/fileutils.c -------------------------------------------------------------------------------- /COMMON/h5helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/h5helper.cpp -------------------------------------------------------------------------------- /COMMON/h5helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/h5helper.h -------------------------------------------------------------------------------- /COMMON/input.lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/input.lex -------------------------------------------------------------------------------- /COMMON/intset.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/intset.F90 -------------------------------------------------------------------------------- /COMMON/invariants.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/invariants.f90 -------------------------------------------------------------------------------- /COMMON/invert2.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/invert2.F90 -------------------------------------------------------------------------------- /COMMON/invert_3d.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/invert_3d.F90 -------------------------------------------------------------------------------- /COMMON/lagrange_prop.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/lagrange_prop.f90 -------------------------------------------------------------------------------- /COMMON/leastsq.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/leastsq.f90 -------------------------------------------------------------------------------- /COMMON/libmpi_fantome.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/libmpi_fantome.f90 -------------------------------------------------------------------------------- /COMMON/mat_symposdef_solver.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/mat_symposdef_solver.F90 -------------------------------------------------------------------------------- /COMMON/mpif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/mpif.h -------------------------------------------------------------------------------- /COMMON/netlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/CMakeLists.txt -------------------------------------------------------------------------------- /COMMON/netlib/blas/dcopy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/blas/dcopy.f -------------------------------------------------------------------------------- /COMMON/netlib/blas/dgemm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/blas/dgemm.f -------------------------------------------------------------------------------- /COMMON/netlib/blas/dgemv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/blas/dgemv.f -------------------------------------------------------------------------------- /COMMON/netlib/blas/dger.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/blas/dger.f -------------------------------------------------------------------------------- /COMMON/netlib/blas/dnrm2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/blas/dnrm2.f90 -------------------------------------------------------------------------------- /COMMON/netlib/blas/drot.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/blas/drot.f -------------------------------------------------------------------------------- /COMMON/netlib/blas/dscal.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/blas/dscal.f -------------------------------------------------------------------------------- /COMMON/netlib/blas/dswap.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/blas/dswap.f -------------------------------------------------------------------------------- /COMMON/netlib/blas/dtrmm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/blas/dtrmm.f -------------------------------------------------------------------------------- /COMMON/netlib/blas/dtrmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/blas/dtrmv.f -------------------------------------------------------------------------------- /COMMON/netlib/blas/dtrsm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/blas/dtrsm.f -------------------------------------------------------------------------------- /COMMON/netlib/blas/lsame.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/blas/lsame.f -------------------------------------------------------------------------------- /COMMON/netlib/blas/xerbla.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/blas/xerbla.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dbdsqr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dbdsqr.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dcombssq.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dcombssq.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dgebd2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dgebd2.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dgebrd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dgebrd.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dgelq2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dgelq2.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dgelqf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dgelqf.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dgels.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dgels.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dgeqr2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dgeqr2.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dgeqrf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dgeqrf.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dgesvd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dgesvd.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/disnan.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/disnan.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dlabad.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dlabad.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dlabrd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dlabrd.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dlacpy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dlacpy.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dlaisnan.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dlaisnan.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dlamch.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dlamch.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dlange.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dlange.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dlapy2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dlapy2.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dlarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dlarf.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dlarfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dlarfb.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dlarfg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dlarfg.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dlarft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dlarft.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dlartg.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dlartg.f90 -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dlas2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dlas2.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dlascl.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dlascl.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dlaset.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dlaset.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dlasq1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dlasq1.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dlasq2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dlasq2.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dlasq3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dlasq3.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dlasq4.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dlasq4.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dlasq5.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dlasq5.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dlasq6.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dlasq6.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dlasr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dlasr.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dlasrt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dlasrt.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dlassq.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dlassq.f90 -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dlasv2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dlasv2.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dorg2r.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dorg2r.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dorgbr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dorgbr.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dorgl2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dorgl2.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dorglq.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dorglq.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dorgqr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dorgqr.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dorm2r.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dorm2r.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dormbr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dormbr.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dorml2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dorml2.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dormlq.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dormlq.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dormqr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dormqr.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/dtrtrs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/dtrtrs.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/ieeeck.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/ieeeck.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/iladlc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/iladlc.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/iladlr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/iladlr.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/ilaenv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/ilaenv.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/iparmq.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/iparmq.f -------------------------------------------------------------------------------- /COMMON/netlib/lapack/la_constants.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/la_constants.f90 -------------------------------------------------------------------------------- /COMMON/netlib/lapack/la_xisnan.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/la_xisnan.F90 -------------------------------------------------------------------------------- /COMMON/netlib/lapack/xerbla.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/netlib/lapack/xerbla.f -------------------------------------------------------------------------------- /COMMON/pointlist.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/pointlist.f90 -------------------------------------------------------------------------------- /COMMON/pol_force.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/pol_force.F90 -------------------------------------------------------------------------------- /COMMON/pow.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/pow.F90 -------------------------------------------------------------------------------- /COMMON/protrep.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/protrep.f90 -------------------------------------------------------------------------------- /COMMON/read_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/read_input.c -------------------------------------------------------------------------------- /COMMON/read_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/read_input.h -------------------------------------------------------------------------------- /COMMON/read_mat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/read_mat.c -------------------------------------------------------------------------------- /COMMON/read_material.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/read_material.c -------------------------------------------------------------------------------- /COMMON/read_unv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/read_unv.cpp -------------------------------------------------------------------------------- /COMMON/read_unv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/read_unv.hpp -------------------------------------------------------------------------------- /COMMON/sem_c_bindings.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/sem_c_bindings.F90 -------------------------------------------------------------------------------- /COMMON/sem_c_config.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/sem_c_config.F90 -------------------------------------------------------------------------------- /COMMON/sem_hdf5.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/sem_hdf5.f90 -------------------------------------------------------------------------------- /COMMON/sem_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/sem_input.c -------------------------------------------------------------------------------- /COMMON/sem_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/sem_input.h -------------------------------------------------------------------------------- /COMMON/sem_materials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/sem_materials.h -------------------------------------------------------------------------------- /COMMON/sem_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/sem_types.h -------------------------------------------------------------------------------- /COMMON/semdatafiles.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/semdatafiles.F90 -------------------------------------------------------------------------------- /COMMON/splib.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/splib.F90 -------------------------------------------------------------------------------- /COMMON/stub_tremain.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/stub_tremain.F90 -------------------------------------------------------------------------------- /COMMON/test_sem_path.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/test_sem_path.f90 -------------------------------------------------------------------------------- /COMMON/tremain_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/COMMON/tremain_c.c -------------------------------------------------------------------------------- /DOC/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/Makefile -------------------------------------------------------------------------------- /DOC/calcul_forces.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/calcul_forces.pdf -------------------------------------------------------------------------------- /DOC/examples/capteurs.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/examples/capteurs.dat -------------------------------------------------------------------------------- /DOC/examples/input.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/examples/input.spec -------------------------------------------------------------------------------- /DOC/examples/materials.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/examples/materials.dat -------------------------------------------------------------------------------- /DOC/figures/PML_fig001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/figures/PML_fig001.png -------------------------------------------------------------------------------- /DOC/figures/PML_fig002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/figures/PML_fig002.png -------------------------------------------------------------------------------- /DOC/figures/elem_gll_2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/figures/elem_gll_2d.png -------------------------------------------------------------------------------- /DOC/figures/fig_pol_lagrange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/figures/fig_pol_lagrange.py -------------------------------------------------------------------------------- /DOC/figures/gabor_1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/figures/gabor_1.eps -------------------------------------------------------------------------------- /DOC/figures/gabor_2.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/figures/gabor_2.eps -------------------------------------------------------------------------------- /DOC/figures/gaussian.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/figures/gaussian.eps -------------------------------------------------------------------------------- /DOC/figures/git_fig010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/figures/git_fig010.png -------------------------------------------------------------------------------- /DOC/figures/heaviside_freq.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/figures/heaviside_freq.eps -------------------------------------------------------------------------------- /DOC/figures/heaviside_t.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/figures/heaviside_t.eps -------------------------------------------------------------------------------- /DOC/figures/lagrange_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/figures/lagrange_9.png -------------------------------------------------------------------------------- /DOC/figures/mass_9x9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/figures/mass_9x9.png -------------------------------------------------------------------------------- /DOC/figures/neu_cylinder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/figures/neu_cylinder.png -------------------------------------------------------------------------------- /DOC/figures/neu_gaussian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/figures/neu_gaussian.png -------------------------------------------------------------------------------- /DOC/figures/neu_paraboloid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/figures/neu_paraboloid.png -------------------------------------------------------------------------------- /DOC/figures/neu_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/figures/neu_square.png -------------------------------------------------------------------------------- /DOC/figures/ricker.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/figures/ricker.eps -------------------------------------------------------------------------------- /DOC/figures/save_gmesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/figures/save_gmesh.png -------------------------------------------------------------------------------- /DOC/figures/save_msh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/figures/save_msh.png -------------------------------------------------------------------------------- /DOC/figures/shape_fct_9x9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/figures/shape_fct_9x9.png -------------------------------------------------------------------------------- /DOC/figures/sinus.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/figures/sinus.eps -------------------------------------------------------------------------------- /DOC/figures/spice_bench.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/figures/spice_bench.eps -------------------------------------------------------------------------------- /DOC/figures/square.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/figures/square.eps -------------------------------------------------------------------------------- /DOC/figures/tanh.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/figures/tanh.eps -------------------------------------------------------------------------------- /DOC/figures/unv_fig001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/figures/unv_fig001.png -------------------------------------------------------------------------------- /DOC/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/make.bat -------------------------------------------------------------------------------- /DOC/notes-merge-evol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/notes-merge-evol.txt -------------------------------------------------------------------------------- /DOC/other/notes_integration_sem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/other/notes_integration_sem.txt -------------------------------------------------------------------------------- /DOC/pdf/format_input.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/pdf/format_input.pdf -------------------------------------------------------------------------------- /DOC/rst.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/rst.css -------------------------------------------------------------------------------- /DOC/source/NEWS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/source/NEWS.rst -------------------------------------------------------------------------------- /DOC/source/code_sem.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/source/code_sem.rst -------------------------------------------------------------------------------- /DOC/source/coding_style.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/source/coding_style.rst -------------------------------------------------------------------------------- /DOC/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/source/conf.py -------------------------------------------------------------------------------- /DOC/source/developpement.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/source/developpement.rst -------------------------------------------------------------------------------- /DOC/source/format_input.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/source/format_input.rst -------------------------------------------------------------------------------- /DOC/source/format_mesh_hdf5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/source/format_mesh_hdf5.rst -------------------------------------------------------------------------------- /DOC/source/format_mesher.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/source/format_mesher.rst -------------------------------------------------------------------------------- /DOC/source/format_msh.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/source/format_msh.rst -------------------------------------------------------------------------------- /DOC/source/format_unv.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/source/format_unv.rst -------------------------------------------------------------------------------- /DOC/source/git.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/source/git.rst -------------------------------------------------------------------------------- /DOC/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/source/index.rst -------------------------------------------------------------------------------- /DOC/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/source/installation.rst -------------------------------------------------------------------------------- /DOC/source/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/source/intro.rst -------------------------------------------------------------------------------- /DOC/source/limitations_et_bugs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/source/limitations_et_bugs.rst -------------------------------------------------------------------------------- /DOC/source/logo-sem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/source/logo-sem.png -------------------------------------------------------------------------------- /DOC/source/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/source/reference.rst -------------------------------------------------------------------------------- /DOC/source/topography.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/source/topography.rst -------------------------------------------------------------------------------- /DOC/source/tutoriel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/source/tutoriel.rst -------------------------------------------------------------------------------- /DOC/source/vectorisation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/source/vectorisation.rst -------------------------------------------------------------------------------- /DOC/tutoriel/cas_1/mat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/tutoriel/cas_1/mat.dat -------------------------------------------------------------------------------- /DOC/tutoriel/cas_1/material.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/DOC/tutoriel/cas_1/material.input -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MESH/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/CMakeLists.txt -------------------------------------------------------------------------------- /MESH/CSRC/aabb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/CSRC/aabb.h -------------------------------------------------------------------------------- /MESH/CSRC/earth_mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/CSRC/earth_mesh.cpp -------------------------------------------------------------------------------- /MESH/CSRC/earth_mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/CSRC/earth_mesh.h -------------------------------------------------------------------------------- /MESH/CSRC/handle_ideas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/CSRC/handle_ideas.cpp -------------------------------------------------------------------------------- /MESH/CSRC/main_grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/CSRC/main_grid.cpp -------------------------------------------------------------------------------- /MESH/CSRC/main_h5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/CSRC/main_h5.cpp -------------------------------------------------------------------------------- /MESH/CSRC/main_mesher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/CSRC/main_mesher.cpp -------------------------------------------------------------------------------- /MESH/CSRC/material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/CSRC/material.h -------------------------------------------------------------------------------- /MESH/CSRC/mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/CSRC/mesh.cpp -------------------------------------------------------------------------------- /MESH/CSRC/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/CSRC/mesh.h -------------------------------------------------------------------------------- /MESH/CSRC/mesh_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/CSRC/mesh_common.cpp -------------------------------------------------------------------------------- /MESH/CSRC/mesh_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/CSRC/mesh_common.h -------------------------------------------------------------------------------- /MESH/CSRC/mesh_grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/CSRC/mesh_grid.cpp -------------------------------------------------------------------------------- /MESH/CSRC/mesh_grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/CSRC/mesh_grid.h -------------------------------------------------------------------------------- /MESH/CSRC/mesh_h5_output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/CSRC/mesh_h5_output.cpp -------------------------------------------------------------------------------- /MESH/CSRC/mesh_h5_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/CSRC/mesh_h5_output.h -------------------------------------------------------------------------------- /MESH/CSRC/meshbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/CSRC/meshbase.h -------------------------------------------------------------------------------- /MESH/CSRC/meshpart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/CSRC/meshpart.cpp -------------------------------------------------------------------------------- /MESH/CSRC/meshpart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/CSRC/meshpart.h -------------------------------------------------------------------------------- /MESH/CSRC/point3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/CSRC/point3d.cpp -------------------------------------------------------------------------------- /MESH/CSRC/point3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/CSRC/point3d.h -------------------------------------------------------------------------------- /MESH/CSRC/reader_abaqus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/CSRC/reader_abaqus.cpp -------------------------------------------------------------------------------- /MESH/CSRC/reader_abaqus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/CSRC/reader_abaqus.h -------------------------------------------------------------------------------- /MESH/CSRC/reader_ideas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/CSRC/reader_ideas.cpp -------------------------------------------------------------------------------- /MESH/CSRC/reader_ideas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/CSRC/reader_ideas.h -------------------------------------------------------------------------------- /MESH/CSRC/sem_gll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/CSRC/sem_gll.cpp -------------------------------------------------------------------------------- /MESH/CSRC/sem_gll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/CSRC/sem_gll.h -------------------------------------------------------------------------------- /MESH/CSRC/vertex_elem_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/CSRC/vertex_elem_map.h -------------------------------------------------------------------------------- /MESH/SRC/fich_cubit.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/SRC/fich_cubit.f90 -------------------------------------------------------------------------------- /MESH/SRC/fich_unv.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/SRC/fich_unv.f90 -------------------------------------------------------------------------------- /MESH/SRC/free_surf.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/SRC/free_surf.f90 -------------------------------------------------------------------------------- /MESH/SRC/local_mesh_properties.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/SRC/local_mesh_properties.f90 -------------------------------------------------------------------------------- /MESH/SRC/mesh2spec.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/SRC/mesh2spec.f90 -------------------------------------------------------------------------------- /MESH/SRC/mesh_earthchunk.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/SRC/mesh_earthchunk.f90 -------------------------------------------------------------------------------- /MESH/SRC/mesh_properties.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/SRC/mesh_properties.f90 -------------------------------------------------------------------------------- /MESH/SRC/mesher_mat.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/SRC/mesher_mat.f90 -------------------------------------------------------------------------------- /MESH/SRC/neumann.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/SRC/neumann.f90 -------------------------------------------------------------------------------- /MESH/SRC/partition_mesh.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/SRC/partition_mesh.f90 -------------------------------------------------------------------------------- /MESH/SRC/sets.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/SRC/sets.f90 -------------------------------------------------------------------------------- /MESH/SRC/solid_fluid.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/SRC/solid_fluid.f90 -------------------------------------------------------------------------------- /MESH/metis/BUILD-Windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/BUILD-Windows.txt -------------------------------------------------------------------------------- /MESH/metis/BUILD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/BUILD.txt -------------------------------------------------------------------------------- /MESH/metis/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/CMakeLists.txt -------------------------------------------------------------------------------- /MESH/metis/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/Changelog -------------------------------------------------------------------------------- /MESH/metis/GKlib/BUILD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/BUILD.txt -------------------------------------------------------------------------------- /MESH/metis/GKlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/CMakeLists.txt -------------------------------------------------------------------------------- /MESH/metis/GKlib/GKlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/GKlib.h -------------------------------------------------------------------------------- /MESH/metis/GKlib/GKlibSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/GKlibSystem.cmake -------------------------------------------------------------------------------- /MESH/metis/GKlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/Makefile -------------------------------------------------------------------------------- /MESH/metis/GKlib/b64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/b64.c -------------------------------------------------------------------------------- /MESH/metis/GKlib/blas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/blas.c -------------------------------------------------------------------------------- /MESH/metis/GKlib/conf/check_thread_storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/conf/check_thread_storage.c -------------------------------------------------------------------------------- /MESH/metis/GKlib/csr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/csr.c -------------------------------------------------------------------------------- /MESH/metis/GKlib/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/error.c -------------------------------------------------------------------------------- /MESH/metis/GKlib/evaluate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/evaluate.c -------------------------------------------------------------------------------- /MESH/metis/GKlib/fkvkselect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/fkvkselect.c -------------------------------------------------------------------------------- /MESH/metis/GKlib/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/fs.c -------------------------------------------------------------------------------- /MESH/metis/GKlib/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/getopt.c -------------------------------------------------------------------------------- /MESH/metis/GKlib/gk_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/gk_arch.h -------------------------------------------------------------------------------- /MESH/metis/GKlib/gk_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/gk_defs.h -------------------------------------------------------------------------------- /MESH/metis/GKlib/gk_externs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/gk_externs.h -------------------------------------------------------------------------------- /MESH/metis/GKlib/gk_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/gk_getopt.h -------------------------------------------------------------------------------- /MESH/metis/GKlib/gk_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/gk_macros.h -------------------------------------------------------------------------------- /MESH/metis/GKlib/gk_mkblas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/gk_mkblas.h -------------------------------------------------------------------------------- /MESH/metis/GKlib/gk_mkmemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/gk_mkmemory.h -------------------------------------------------------------------------------- /MESH/metis/GKlib/gk_mkpqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/gk_mkpqueue.h -------------------------------------------------------------------------------- /MESH/metis/GKlib/gk_mkpqueue2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/gk_mkpqueue2.h -------------------------------------------------------------------------------- /MESH/metis/GKlib/gk_mkrandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/gk_mkrandom.h -------------------------------------------------------------------------------- /MESH/metis/GKlib/gk_mksort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/gk_mksort.h -------------------------------------------------------------------------------- /MESH/metis/GKlib/gk_mkutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/gk_mkutils.h -------------------------------------------------------------------------------- /MESH/metis/GKlib/gk_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/gk_proto.h -------------------------------------------------------------------------------- /MESH/metis/GKlib/gk_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/gk_struct.h -------------------------------------------------------------------------------- /MESH/metis/GKlib/gk_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/gk_types.h -------------------------------------------------------------------------------- /MESH/metis/GKlib/gkregex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/gkregex.c -------------------------------------------------------------------------------- /MESH/metis/GKlib/gkregex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/gkregex.h -------------------------------------------------------------------------------- /MESH/metis/GKlib/graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/graph.c -------------------------------------------------------------------------------- /MESH/metis/GKlib/htable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/htable.c -------------------------------------------------------------------------------- /MESH/metis/GKlib/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/io.c -------------------------------------------------------------------------------- /MESH/metis/GKlib/itemsets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/itemsets.c -------------------------------------------------------------------------------- /MESH/metis/GKlib/mcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/mcore.c -------------------------------------------------------------------------------- /MESH/metis/GKlib/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/memory.c -------------------------------------------------------------------------------- /MESH/metis/GKlib/ms_inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/ms_inttypes.h -------------------------------------------------------------------------------- /MESH/metis/GKlib/ms_stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/ms_stat.h -------------------------------------------------------------------------------- /MESH/metis/GKlib/ms_stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/ms_stdint.h -------------------------------------------------------------------------------- /MESH/metis/GKlib/omp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/omp.c -------------------------------------------------------------------------------- /MESH/metis/GKlib/pdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/pdb.c -------------------------------------------------------------------------------- /MESH/metis/GKlib/pqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/pqueue.c -------------------------------------------------------------------------------- /MESH/metis/GKlib/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/random.c -------------------------------------------------------------------------------- /MESH/metis/GKlib/rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/rw.c -------------------------------------------------------------------------------- /MESH/metis/GKlib/seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/seq.c -------------------------------------------------------------------------------- /MESH/metis/GKlib/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/sort.c -------------------------------------------------------------------------------- /MESH/metis/GKlib/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/string.c -------------------------------------------------------------------------------- /MESH/metis/GKlib/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/test/CMakeLists.txt -------------------------------------------------------------------------------- /MESH/metis/GKlib/test/fis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/test/fis.c -------------------------------------------------------------------------------- /MESH/metis/GKlib/test/gkgraph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/test/gkgraph.c -------------------------------------------------------------------------------- /MESH/metis/GKlib/test/gksort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/test/gksort.c -------------------------------------------------------------------------------- /MESH/metis/GKlib/test/rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/test/rw.c -------------------------------------------------------------------------------- /MESH/metis/GKlib/test/strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/test/strings.c -------------------------------------------------------------------------------- /MESH/metis/GKlib/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/timers.c -------------------------------------------------------------------------------- /MESH/metis/GKlib/tokenizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/tokenizer.c -------------------------------------------------------------------------------- /MESH/metis/GKlib/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/GKlib/util.c -------------------------------------------------------------------------------- /MESH/metis/Install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/Install.txt -------------------------------------------------------------------------------- /MESH/metis/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/LICENSE.txt -------------------------------------------------------------------------------- /MESH/metis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/Makefile -------------------------------------------------------------------------------- /MESH/metis/graphs/4elt.graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/graphs/4elt.graph -------------------------------------------------------------------------------- /MESH/metis/graphs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/graphs/README -------------------------------------------------------------------------------- /MESH/metis/graphs/copter2.graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/graphs/copter2.graph -------------------------------------------------------------------------------- /MESH/metis/graphs/mdual.graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/graphs/mdual.graph -------------------------------------------------------------------------------- /MESH/metis/graphs/metis.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/graphs/metis.mesh -------------------------------------------------------------------------------- /MESH/metis/graphs/test.mgraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/graphs/test.mgraph -------------------------------------------------------------------------------- /MESH/metis/include/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | if(METIS_INSTALL) 2 | install(FILES metis.h DESTINATION include) 3 | endif() 4 | -------------------------------------------------------------------------------- /MESH/metis/include/metis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/include/metis.h -------------------------------------------------------------------------------- /MESH/metis/libmetis/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/CMakeLists.txt -------------------------------------------------------------------------------- /MESH/metis/libmetis/auxapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/auxapi.c -------------------------------------------------------------------------------- /MESH/metis/libmetis/balance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/balance.c -------------------------------------------------------------------------------- /MESH/metis/libmetis/bucketsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/bucketsort.c -------------------------------------------------------------------------------- /MESH/metis/libmetis/checkgraph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/checkgraph.c -------------------------------------------------------------------------------- /MESH/metis/libmetis/coarsen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/coarsen.c -------------------------------------------------------------------------------- /MESH/metis/libmetis/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/compress.c -------------------------------------------------------------------------------- /MESH/metis/libmetis/contig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/contig.c -------------------------------------------------------------------------------- /MESH/metis/libmetis/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/debug.c -------------------------------------------------------------------------------- /MESH/metis/libmetis/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/defs.h -------------------------------------------------------------------------------- /MESH/metis/libmetis/fm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/fm.c -------------------------------------------------------------------------------- /MESH/metis/libmetis/fortran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/fortran.c -------------------------------------------------------------------------------- /MESH/metis/libmetis/frename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/frename.c -------------------------------------------------------------------------------- /MESH/metis/libmetis/gklib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/gklib.c -------------------------------------------------------------------------------- /MESH/metis/libmetis/gklib_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/gklib_defs.h -------------------------------------------------------------------------------- /MESH/metis/libmetis/gklib_rename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/gklib_rename.h -------------------------------------------------------------------------------- /MESH/metis/libmetis/graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/graph.c -------------------------------------------------------------------------------- /MESH/metis/libmetis/initpart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/initpart.c -------------------------------------------------------------------------------- /MESH/metis/libmetis/kmetis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/kmetis.c -------------------------------------------------------------------------------- /MESH/metis/libmetis/kwayfm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/kwayfm.c -------------------------------------------------------------------------------- /MESH/metis/libmetis/kwayrefine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/kwayrefine.c -------------------------------------------------------------------------------- /MESH/metis/libmetis/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/macros.h -------------------------------------------------------------------------------- /MESH/metis/libmetis/mcutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/mcutil.c -------------------------------------------------------------------------------- /MESH/metis/libmetis/mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/mesh.c -------------------------------------------------------------------------------- /MESH/metis/libmetis/meshpart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/meshpart.c -------------------------------------------------------------------------------- /MESH/metis/libmetis/metislib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/metislib.h -------------------------------------------------------------------------------- /MESH/metis/libmetis/minconn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/minconn.c -------------------------------------------------------------------------------- /MESH/metis/libmetis/mincover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/mincover.c -------------------------------------------------------------------------------- /MESH/metis/libmetis/mmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/mmd.c -------------------------------------------------------------------------------- /MESH/metis/libmetis/ometis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/ometis.c -------------------------------------------------------------------------------- /MESH/metis/libmetis/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/options.c -------------------------------------------------------------------------------- /MESH/metis/libmetis/parmetis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/parmetis.c -------------------------------------------------------------------------------- /MESH/metis/libmetis/pmetis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/pmetis.c -------------------------------------------------------------------------------- /MESH/metis/libmetis/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/proto.h -------------------------------------------------------------------------------- /MESH/metis/libmetis/refine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/refine.c -------------------------------------------------------------------------------- /MESH/metis/libmetis/rename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/rename.h -------------------------------------------------------------------------------- /MESH/metis/libmetis/separator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/separator.c -------------------------------------------------------------------------------- /MESH/metis/libmetis/sfm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/sfm.c -------------------------------------------------------------------------------- /MESH/metis/libmetis/srefine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/srefine.c -------------------------------------------------------------------------------- /MESH/metis/libmetis/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/stat.c -------------------------------------------------------------------------------- /MESH/metis/libmetis/stdheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/stdheaders.h -------------------------------------------------------------------------------- /MESH/metis/libmetis/struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/struct.h -------------------------------------------------------------------------------- /MESH/metis/libmetis/timing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/timing.c -------------------------------------------------------------------------------- /MESH/metis/libmetis/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/util.c -------------------------------------------------------------------------------- /MESH/metis/libmetis/wspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/libmetis/wspace.c -------------------------------------------------------------------------------- /MESH/metis/manual/manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/manual/manual.pdf -------------------------------------------------------------------------------- /MESH/metis/programs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/programs/CMakeLists.txt -------------------------------------------------------------------------------- /MESH/metis/programs/cmdline_gpmetis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/programs/cmdline_gpmetis.c -------------------------------------------------------------------------------- /MESH/metis/programs/cmdline_m2gmetis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/programs/cmdline_m2gmetis.c -------------------------------------------------------------------------------- /MESH/metis/programs/cmdline_mpmetis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/programs/cmdline_mpmetis.c -------------------------------------------------------------------------------- /MESH/metis/programs/cmdline_ndmetis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/programs/cmdline_ndmetis.c -------------------------------------------------------------------------------- /MESH/metis/programs/cmpfillin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/programs/cmpfillin.c -------------------------------------------------------------------------------- /MESH/metis/programs/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/programs/defs.h -------------------------------------------------------------------------------- /MESH/metis/programs/gpmetis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/programs/gpmetis.c -------------------------------------------------------------------------------- /MESH/metis/programs/graphchk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/programs/graphchk.c -------------------------------------------------------------------------------- /MESH/metis/programs/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/programs/io.c -------------------------------------------------------------------------------- /MESH/metis/programs/m2gmetis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/programs/m2gmetis.c -------------------------------------------------------------------------------- /MESH/metis/programs/metisbin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/programs/metisbin.h -------------------------------------------------------------------------------- /MESH/metis/programs/mpmetis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/programs/mpmetis.c -------------------------------------------------------------------------------- /MESH/metis/programs/ndmetis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/programs/ndmetis.c -------------------------------------------------------------------------------- /MESH/metis/programs/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/programs/proto.h -------------------------------------------------------------------------------- /MESH/metis/programs/smbfactor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/programs/smbfactor.c -------------------------------------------------------------------------------- /MESH/metis/programs/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/programs/stat.c -------------------------------------------------------------------------------- /MESH/metis/programs/struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/programs/struct.h -------------------------------------------------------------------------------- /MESH/metis/vsgen.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH/metis/vsgen.bat -------------------------------------------------------------------------------- /MESH2D/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH2D/CMakeLists.txt -------------------------------------------------------------------------------- /MESH2D/SRC/create_2D.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH2D/SRC/create_2D.f90 -------------------------------------------------------------------------------- /MESH2D/SRC/fich_cubit.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH2D/SRC/fich_cubit.f90 -------------------------------------------------------------------------------- /MESH2D/SRC/gid2spec_seq.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH2D/SRC/gid2spec_seq.f90 -------------------------------------------------------------------------------- /MESH2D/SRC/gid2spec_seq_h5.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH2D/SRC/gid2spec_seq_h5.f90 -------------------------------------------------------------------------------- /MESH2D/SRC/main_mesh2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/MESH2D/SRC/main_mesh2d.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/README.md -------------------------------------------------------------------------------- /SCRIPTS/Xdmf.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SCRIPTS/Xdmf.dtd -------------------------------------------------------------------------------- /SCRIPTS/cmake-intel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SCRIPTS/cmake-intel.sh -------------------------------------------------------------------------------- /SCRIPTS/convert_2d_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SCRIPTS/convert_2d_mesh.py -------------------------------------------------------------------------------- /SCRIPTS/cpml/output.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SCRIPTS/cpml/output.tex -------------------------------------------------------------------------------- /SCRIPTS/cpml/sympy_cpml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SCRIPTS/cpml/sympy_cpml.py -------------------------------------------------------------------------------- /SCRIPTS/cpml/sympy_to_fortran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SCRIPTS/cpml/sympy_to_fortran.py -------------------------------------------------------------------------------- /SCRIPTS/dump_comms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SCRIPTS/dump_comms.py -------------------------------------------------------------------------------- /SCRIPTS/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SCRIPTS/header.py -------------------------------------------------------------------------------- /SCRIPTS/mesh2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SCRIPTS/mesh2d.py -------------------------------------------------------------------------------- /SCRIPTS/mesh2d_to_h5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SCRIPTS/mesh2d_to_h5.py -------------------------------------------------------------------------------- /SCRIPTS/plot_comm_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SCRIPTS/plot_comm_map.py -------------------------------------------------------------------------------- /SCRIPTS/plot_traces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SCRIPTS/plot_traces.py -------------------------------------------------------------------------------- /SCRIPTS/read_comm_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SCRIPTS/read_comm_map.py -------------------------------------------------------------------------------- /SCRIPTS/readstat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SCRIPTS/readstat.py -------------------------------------------------------------------------------- /SCRIPTS/sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SCRIPTS/sources.py -------------------------------------------------------------------------------- /SCRIPTS/txt_to_h5_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SCRIPTS/txt_to_h5_2d.py -------------------------------------------------------------------------------- /SCRIPTS/valid_xmf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SCRIPTS/valid_xmf.sh -------------------------------------------------------------------------------- /SCRIPTS/xdmf_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SCRIPTS/xdmf_convert.py -------------------------------------------------------------------------------- /SCRIPTS/xdmf_temp_to_spacial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SCRIPTS/xdmf_temp_to_spacial.py -------------------------------------------------------------------------------- /SEM2D/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/CMakeLists.txt -------------------------------------------------------------------------------- /SEM2D/SRC/Assemblage.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/Assemblage.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/Compute_external_forces.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/Compute_external_forces.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/Domain.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/Domain.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/Element.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/Element.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/FPML_bak.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/FPML_bak.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/Face.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/Face.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/Fault.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/Fault.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/Midpoint.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/Midpoint.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/Mortar.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/Mortar.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/Newmark.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/Newmark.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/PML_def.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/PML_def.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/Receivers.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/Receivers.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/Runge_Kutta_4.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/Runge_Kutta_4.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/Sources.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/Sources.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/Subdomains.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/Subdomains.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/TimeP.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/TimeP.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/Vertex.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/Vertex.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/allocate_domain.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/allocate_domain.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/capteurs_veloc.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/capteurs_veloc.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/check_inputs_and_mesh.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/check_inputs_and_mesh.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/communicating_wall.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/communicating_wall.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/compute_GLL.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/compute_GLL.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/compute_coeff_HDG.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/compute_coeff_HDG.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/compute_coeff_flux.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/compute_coeff_flux.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/courant.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/courant.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/define_arr.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/define_arr.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/define_fault_properties.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/define_fault_properties.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/exchange_data_mpi.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/exchange_data_mpi.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/find_location.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/find_location.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/getDispl_fvel.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/getDispl_fvel.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/getPMLpred_fv2el.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/getPMLpred_fv2el.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/getdumpmass_e2f.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/getdumpmass_e2f.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/getif_el2f.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/getif_el2f.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/getmass_e2f.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/getmass_e2f.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/global_energy.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/global_energy.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/global_numbering.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/global_numbering.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/logical_input.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/logical_input.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/main.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/main.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/mesh_deformations.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/mesh_deformations.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/mpi_list.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/mpi_list.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/orientation.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/orientation.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/postraitement.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/postraitement.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/read_input.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/read_input.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/read_mesh.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/read_mesh.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/read_mesh_h5.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/read_mesh_h5.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/read_restart.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/read_restart.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/receiver_pos.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/receiver_pos.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/save_checkpoint.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/save_checkpoint.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/save_deformation.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/save_deformation.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/save_fault_trace.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/save_fault_trace.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/save_vorticity.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/save_vorticity.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/savefield.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/savefield.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/shape4.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/shape4.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/shape8.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/shape8.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/smoothing_exp.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/smoothing_exp.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/snapshots.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/snapshots.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/source_pos.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/source_pos.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/unv.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/unv.F90 -------------------------------------------------------------------------------- /SEM2D/SRC/wall_transfer.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/SRC/wall_transfer.F90 -------------------------------------------------------------------------------- /SEM2D/TESTS/2Dsquare_absorbingBC/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/TESTS/2Dsquare_absorbingBC/README -------------------------------------------------------------------------------- /SEM2D/TESTS/2Dsquare_absorbingBC/capteurs.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/TESTS/2Dsquare_absorbingBC/capteurs.dat -------------------------------------------------------------------------------- /SEM2D/TESTS/2Dsquare_absorbingBC/input.create: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/TESTS/2Dsquare_absorbingBC/input.create -------------------------------------------------------------------------------- /SEM2D/TESTS/2Dsquare_absorbingBC/input.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/TESTS/2Dsquare_absorbingBC/input.spec -------------------------------------------------------------------------------- /SEM2D/TESTS/2Dsquare_absorbingBC/mat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/TESTS/2Dsquare_absorbingBC/mat.dat -------------------------------------------------------------------------------- /SEM2D/TESTS/2Dsquare_absorbingBC/material.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/TESTS/2Dsquare_absorbingBC/material.input -------------------------------------------------------------------------------- /SEM2D/TESTS/2Dsquare_absorbingBC/mesh.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/TESTS/2Dsquare_absorbingBC/mesh.input -------------------------------------------------------------------------------- /SEM2D/TESTS/2Dsquare_absorbingBC/mesh4spec.0000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM2D/TESTS/2Dsquare_absorbingBC/mesh4spec.0000 -------------------------------------------------------------------------------- /SEM3D/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/CMakeLists.txt -------------------------------------------------------------------------------- /SEM3D/SRC/BLAS/dgemm.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/BLAS/dgemm.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/BLAS/lsame.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/BLAS/lsame.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/BLAS/xerbla.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/BLAS/xerbla.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/Capteur.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/Capteur.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/Fluid/calcul_forces_fluid.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/Fluid/calcul_forces_fluid.F90 -------------------------------------------------------------------------------- /SEM3D/SRC/Fluid/calcul_forces_fluid.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/Fluid/calcul_forces_fluid.inc -------------------------------------------------------------------------------- /SEM3D/SRC/Fluid/champs_fluid.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/Fluid/champs_fluid.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/Fluid/dom_fluid.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/Fluid/dom_fluid.F90 -------------------------------------------------------------------------------- /SEM3D/SRC/FluidCPML/calcul_forces_fluidpml.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/FluidCPML/calcul_forces_fluidpml.F90 -------------------------------------------------------------------------------- /SEM3D/SRC/FluidCPML/calcul_forces_fluidpml.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/FluidCPML/calcul_forces_fluidpml.inc -------------------------------------------------------------------------------- /SEM3D/SRC/FluidCPML/champs_fluidcpml.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/FluidCPML/champs_fluidcpml.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/FluidCPML/dom_fluidcpml.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/FluidCPML/dom_fluidcpml.F90 -------------------------------------------------------------------------------- /SEM3D/SRC/FluidPML/champs_fluidpml.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/FluidPML/champs_fluidpml.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/FluidPML/dom_fluidpml.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/FluidPML/dom_fluidpml.F90 -------------------------------------------------------------------------------- /SEM3D/SRC/Modules/Bspline.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/Modules/Bspline.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/Modules/Champs.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/Modules/Champs.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/Modules/Comm.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/Modules/Comm.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/Modules/Domain.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/Modules/Domain.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/Modules/Edge.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/Modules/Edge.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/Modules/Element.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/Modules/Element.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/Modules/Extended_source.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/Modules/Extended_source.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/Modules/Face.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/Modules/Face.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/Modules/Fault.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/Modules/Fault.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/Modules/Interface.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/Modules/Interface.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/Modules/Mirror.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/Modules/Mirror.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/Modules/Neumann.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/Modules/Neumann.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/Modules/Nonlinear.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/Modules/Nonlinear.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/Modules/PlaneW.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/Modules/PlaneW.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/Modules/Sources.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/Modules/Sources.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/Modules/Subdomains.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/Modules/Subdomains.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/Modules/Surface.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/Modules/Surface.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/Modules/TimeP.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/Modules/TimeP.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/Modules/Vertex.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/Modules/Vertex.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/Modules/logical_input.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/Modules/logical_input.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/Modules/solid_fluid.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/Modules/solid_fluid.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/Modules/tensor_util.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/Modules/tensor_util.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/Newmark.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/Newmark.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/RF_fileCreator.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/RF_fileCreator.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/Solid/attenuation_solid.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/Solid/attenuation_solid.F90 -------------------------------------------------------------------------------- /SEM3D/SRC/Solid/calcul_forces.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/Solid/calcul_forces.F90 -------------------------------------------------------------------------------- /SEM3D/SRC/Solid/calcul_forces_atn.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/Solid/calcul_forces_atn.F90 -------------------------------------------------------------------------------- /SEM3D/SRC/Solid/calcul_forces_atn_nl.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/Solid/calcul_forces_atn_nl.F90 -------------------------------------------------------------------------------- /SEM3D/SRC/Solid/calcul_forces_nl.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/Solid/calcul_forces_nl.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/Solid/calcul_forces_solid.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/Solid/calcul_forces_solid.inc -------------------------------------------------------------------------------- /SEM3D/SRC/Solid/champs_solid.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/Solid/champs_solid.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/Solid/dom_solid.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/Solid/dom_solid.F90 -------------------------------------------------------------------------------- /SEM3D/SRC/SolidCPML/calcul_forces_solidpml.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/SolidCPML/calcul_forces_solidpml.F90 -------------------------------------------------------------------------------- /SEM3D/SRC/SolidCPML/calcul_forces_solidpml.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/SolidCPML/calcul_forces_solidpml.inc -------------------------------------------------------------------------------- /SEM3D/SRC/SolidCPML/champs_solidcpml.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/SolidCPML/champs_solidcpml.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/SolidCPML/dom_solidcpml.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/SolidCPML/dom_solidcpml.F90 -------------------------------------------------------------------------------- /SEM3D/SRC/SolidDG/calcul_forces_solid_dg.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/SolidDG/calcul_forces_solid_dg.F90 -------------------------------------------------------------------------------- /SEM3D/SRC/SolidDG/calcul_forces_solid_dg.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/SolidDG/calcul_forces_solid_dg.inc -------------------------------------------------------------------------------- /SEM3D/SRC/SolidDG/champs_solid_dg.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/SolidDG/champs_solid_dg.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/SolidDG/dom_solid_dg.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/SolidDG/dom_solid_dg.F90 -------------------------------------------------------------------------------- /SEM3D/SRC/SolidPML/calcul_forces_int_pml.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/SolidPML/calcul_forces_int_pml.inc -------------------------------------------------------------------------------- /SEM3D/SRC/SolidPML/champs_solidpml.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/SolidPML/champs_solidpml.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/SolidPML/dom_solidpml.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/SolidPML/dom_solidpml.F90 -------------------------------------------------------------------------------- /SEM3D/SRC/SourceMT/Dimension.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/SourceMT/Dimension.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/SourceMT/DimensionalShape.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/SourceMT/DimensionalShape.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/SourceMT/ErrorWarning.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/SourceMT/ErrorWarning.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/SourceMT/compute_surface_BC.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/SourceMT/compute_surface_BC.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/SourceMT/create_sem_surface_input.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/SourceMT/create_sem_surface_input.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/SourceMT/fparser.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/SourceMT/fparser.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/SourceMT/func1D.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/SourceMT/func1D.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/SourceMT/func2D.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/SourceMT/func2D.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/SourceMT/func3D.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/SourceMT/func3D.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/SourceMT/fvalue.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/SourceMT/fvalue.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/SourceMT/mathfval.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/SourceMT/mathfval.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/SourceMT/parameters.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/SourceMT/parameters.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/SourceMT/selectsurfload.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/SourceMT/selectsurfload.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/SourcePosition.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/SourcePosition.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/algo_comm.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/algo_comm.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/allocate_domain.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/allocate_domain.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/boundary_conditions_init.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/boundary_conditions_init.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/build_prop_files.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/build_prop_files.F90 -------------------------------------------------------------------------------- /SEM3D/SRC/charFunctions.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/charFunctions.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/comm_utils.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/comm_utils.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/compute_GLL.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/compute_GLL.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/courant.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/courant.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/deallocate_domain.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/deallocate_domain.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/define_Neumann_properties.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/define_Neumann_properties.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/define_arrays.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/define_arrays.F90 -------------------------------------------------------------------------------- /SEM3D/SRC/dombase.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/dombase.F90 -------------------------------------------------------------------------------- /SEM3D/SRC/double_couple.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/double_couple.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/drive_sem.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/drive_sem.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/earth_models/earth_transform.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/earth_models/earth_transform.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/earth_models/material_earthchunk.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/earth_models/material_earthchunk.F90 -------------------------------------------------------------------------------- /SEM3D/SRC/earth_models/material_prem.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/earth_models/material_prem.F90 -------------------------------------------------------------------------------- /SEM3D/SRC/earth_models/model_earthchunk.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/earth_models/model_earthchunk.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/earth_models/model_prem.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/earth_models/model_prem.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/find_location.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/find_location.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/geometrical_prop.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/geometrical_prop.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/global_numbering.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/global_numbering.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/index.h -------------------------------------------------------------------------------- /SEM3D/SRC/indexation.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/indexation.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/main.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/main.F90 -------------------------------------------------------------------------------- /SEM3D/SRC/mesh3d.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/mesh3d.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/ondelette.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/ondelette.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/orientation.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/orientation.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/partial_deriv.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/partial_deriv.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/pml.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/pml.F90 -------------------------------------------------------------------------------- /SEM3D/SRC/read_input.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/read_input.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/read_restart.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/read_restart.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/save_checkpoint.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/save_checkpoint.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/set_attenuation_param.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/set_attenuation_param.F90 -------------------------------------------------------------------------------- /SEM3D/SRC/shape27.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/shape27.F90 -------------------------------------------------------------------------------- /SEM3D/SRC/shape8.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/shape8.F90 -------------------------------------------------------------------------------- /SEM3D/SRC/snapdata.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/snapdata.F90 -------------------------------------------------------------------------------- /SEM3D/SRC/snapshots.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/snapshots.F90 -------------------------------------------------------------------------------- /SEM3D/SRC/solid_fluid_coupling.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/solid_fluid_coupling.f90 -------------------------------------------------------------------------------- /SEM3D/SRC/source_excit.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/source_excit.F90 -------------------------------------------------------------------------------- /SEM3D/SRC/stat.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/SRC/stat.f90 -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0001_cube_pulse_ricker/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0001_cube_pulse_ricker/README -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0001_cube_pulse_ricker/input.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0001_cube_pulse_ricker/input.spec -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0001_cube_pulse_ricker/mat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0001_cube_pulse_ricker/mat.dat -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0001_cube_pulse_ricker/mater.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0001_cube_pulse_ricker/mater.in -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0001_cube_pulse_ricker/mesh.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0001_cube_pulse_ricker/mesh.input -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0001_cube_pulse_ricker/stations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0001_cube_pulse_ricker/stations.txt -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0002_cube_pulse_gaussian/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0002_cube_pulse_gaussian/README -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0002_cube_pulse_gaussian/capteurs.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0002_cube_pulse_gaussian/capteurs.dat -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0002_cube_pulse_gaussian/input.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0002_cube_pulse_gaussian/input.spec -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0002_cube_pulse_gaussian/mat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0002_cube_pulse_gaussian/mat.dat -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0002_cube_pulse_gaussian/mater.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0002_cube_pulse_gaussian/mater.in -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0002_cube_pulse_gaussian/mesh.input: -------------------------------------------------------------------------------- 1 | 4 2 | 1 3 | 4 | -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0003_cube_pulse_spice/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0003_cube_pulse_spice/README -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0003_cube_pulse_spice/capteurs.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0003_cube_pulse_spice/capteurs.dat -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0003_cube_pulse_spice/input.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0003_cube_pulse_spice/input.spec -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0003_cube_pulse_spice/mat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0003_cube_pulse_spice/mat.dat -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0003_cube_pulse_spice/mater.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0003_cube_pulse_spice/mater.in -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0003_cube_pulse_spice/mesh.input: -------------------------------------------------------------------------------- 1 | 4 2 | 1 3 | 4 | -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0004_cube_Mxyz_ricker/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0004_cube_Mxyz_ricker/README -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0004_cube_Mxyz_ricker/capteurs.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0004_cube_Mxyz_ricker/capteurs.dat -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0004_cube_Mxyz_ricker/input.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0004_cube_Mxyz_ricker/input.spec -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0004_cube_Mxyz_ricker/mat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0004_cube_Mxyz_ricker/mat.dat -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0004_cube_Mxyz_ricker/mater.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0004_cube_Mxyz_ricker/mater.in -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0004_cube_Mxyz_ricker/mesh.input: -------------------------------------------------------------------------------- 1 | 4 2 | 1 3 | 4 | -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0005_unv_multi_domain/cube1.unv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0005_unv_multi_domain/cube1.unv -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0005_unv_multi_domain/cube2.unv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0005_unv_multi_domain/cube2.unv -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0005_unv_multi_domain/cubes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0005_unv_multi_domain/cubes.sh -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0005_unv_multi_domain/input.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0005_unv_multi_domain/input.spec -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0005_unv_multi_domain/material.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0005_unv_multi_domain/material.input -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0005_unv_multi_domain/mesh.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0005_unv_multi_domain/mesh.input -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0006_rand_cube_pulse_ricker/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0006_rand_cube_pulse_ricker/README -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0006_rand_cube_pulse_ricker/input.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0006_rand_cube_pulse_ricker/input.spec -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0006_rand_cube_pulse_ricker/mat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0006_rand_cube_pulse_ricker/mat.dat -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0006_rand_cube_pulse_ricker/mater.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0006_rand_cube_pulse_ricker/mater.in -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0006_rand_cube_pulse_ricker/material.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0006_rand_cube_pulse_ricker/material.spec -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0006_rand_cube_pulse_ricker/mesh.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0006_rand_cube_pulse_ricker/mesh.input -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0006_rand_cube_pulse_ricker/random.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0006_rand_cube_pulse_ricker/random.spec -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0006_rand_cube_pulse_ricker/stations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0006_rand_cube_pulse_ricker/stations.txt -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0007_Cube_MSH/Cube_MSH.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0007_Cube_MSH/Cube_MSH.h5 -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0007_Cube_MSH/Cube_MSH.h5.xmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0007_Cube_MSH/Cube_MSH.h5.xmf -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0007_Cube_MSH/Cube_MSH.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0007_Cube_MSH/Cube_MSH.msh -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0007_Cube_MSH/genMat.pbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0007_Cube_MSH/genMat.pbs -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0007_Cube_MSH/input.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0007_Cube_MSH/input.spec -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0007_Cube_MSH/material.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0007_Cube_MSH/material.input -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0007_Cube_MSH/mesh.input: -------------------------------------------------------------------------------- 1 | 4 2 | 4 3 | 1 4 | Cube_MSH.h5 5 | -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0007_Cube_MSH/stations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0007_Cube_MSH/stations.txt -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0007_Cube_MSH/visu.pbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0007_Cube_MSH/visu.pbs -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0007_cube_surf/Cubo_surface.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0007_cube_surf/Cubo_surface.msh -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0007_cube_surf/Cubo_surface.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0007_cube_surf/Cubo_surface.txt -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0007_cube_surf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0007_cube_surf/README -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0007_cube_surf/capteurs.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0007_cube_surf/capteurs.dat -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0007_cube_surf/domains.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0007_cube_surf/domains.txt -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0007_cube_surf/input.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0007_cube_surf/input.spec -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0007_cube_surf/mat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0007_cube_surf/mat.dat -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0007_cube_surf/mater.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0007_cube_surf/mater.in -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0007_cube_surf/material.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0007_cube_surf/material.input -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0007_cube_surf/mesh.input: -------------------------------------------------------------------------------- 1 | 1 #--> How many procs for the run ? 2 | 4 3 | 1 4 | PythonHDF5.h5 5 | -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0007_cube_surf/stations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0007_cube_surf/stations.txt -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0008_random_multi_domain/input.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0008_random_multi_domain/input.spec -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0008_random_multi_domain/mat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0008_random_multi_domain/mat.dat -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0008_random_multi_domain/mater.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0008_random_multi_domain/mater.in -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0008_random_multi_domain/material.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0008_random_multi_domain/material.spec -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0008_random_multi_domain/mesh.input: -------------------------------------------------------------------------------- 1 | 12 2 | 1 3 | 4 | -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0008_random_multi_domain/random.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0008_random_multi_domain/random.spec -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_0008_random_multi_domain/stations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_0008_random_multi_domain/stations.txt -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_TEMPLATE/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_TEMPLATE/README -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_TEMPLATE/capteurs.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_TEMPLATE/capteurs.dat -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_TEMPLATE/input.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_TEMPLATE/input.spec -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_TEMPLATE/mat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_TEMPLATE/mat.dat -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_TEMPLATE/mater.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/TEST_TEMPLATE/mater.in -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/TEST_TEMPLATE/mesh.input: -------------------------------------------------------------------------------- 1 | %(nprocs)s 2 | 1 3 | 4 | -------------------------------------------------------------------------------- /SEM3D/TESTS/NON-REGR/gen_non_regr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/NON-REGR/gen_non_regr.py -------------------------------------------------------------------------------- /SEM3D/TESTS/PMLS/caseBarreFX/input.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/PMLS/caseBarreFX/input.spec -------------------------------------------------------------------------------- /SEM3D/TESTS/PMLS/caseBarreFX/mat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/PMLS/caseBarreFX/mat.dat -------------------------------------------------------------------------------- /SEM3D/TESTS/PMLS/caseBarreFX/mater.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/PMLS/caseBarreFX/mater.in -------------------------------------------------------------------------------- /SEM3D/TESTS/PMLS/caseBarreFX/material.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/PMLS/caseBarreFX/material.input -------------------------------------------------------------------------------- /SEM3D/TESTS/PMLS/caseBarreFY/input.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/PMLS/caseBarreFY/input.spec -------------------------------------------------------------------------------- /SEM3D/TESTS/PMLS/caseBarreFY/mat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/PMLS/caseBarreFY/mat.dat -------------------------------------------------------------------------------- /SEM3D/TESTS/PMLS/caseBarreFY/mater.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/PMLS/caseBarreFY/mater.in -------------------------------------------------------------------------------- /SEM3D/TESTS/PMLS/caseBarreFY/material.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/PMLS/caseBarreFY/material.input -------------------------------------------------------------------------------- /SEM3D/TESTS/PMLS/caseBarreFZ/input.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/PMLS/caseBarreFZ/input.spec -------------------------------------------------------------------------------- /SEM3D/TESTS/PMLS/caseBarreFZ/mat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/PMLS/caseBarreFZ/mat.dat -------------------------------------------------------------------------------- /SEM3D/TESTS/PMLS/caseBarreFZ/mater.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/PMLS/caseBarreFZ/mater.in -------------------------------------------------------------------------------- /SEM3D/TESTS/PMLS/caseBarreFZ/material.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/PMLS/caseBarreFZ/material.input -------------------------------------------------------------------------------- /SEM3D/TESTS/PMLS/caseBarreSX/input.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/PMLS/caseBarreSX/input.spec -------------------------------------------------------------------------------- /SEM3D/TESTS/PMLS/caseBarreSX/mat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/PMLS/caseBarreSX/mat.dat -------------------------------------------------------------------------------- /SEM3D/TESTS/PMLS/caseBarreSX/mater.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/PMLS/caseBarreSX/mater.in -------------------------------------------------------------------------------- /SEM3D/TESTS/PMLS/caseBarreSX/material.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/PMLS/caseBarreSX/material.input -------------------------------------------------------------------------------- /SEM3D/TESTS/PMLS/caseBarreSY/input.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/PMLS/caseBarreSY/input.spec -------------------------------------------------------------------------------- /SEM3D/TESTS/PMLS/caseBarreSY/mat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/PMLS/caseBarreSY/mat.dat -------------------------------------------------------------------------------- /SEM3D/TESTS/PMLS/caseBarreSY/mater.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/PMLS/caseBarreSY/mater.in -------------------------------------------------------------------------------- /SEM3D/TESTS/PMLS/caseBarreSY/material.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/PMLS/caseBarreSY/material.input -------------------------------------------------------------------------------- /SEM3D/TESTS/PMLS/caseBarreSZ/input.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/PMLS/caseBarreSZ/input.spec -------------------------------------------------------------------------------- /SEM3D/TESTS/PMLS/caseBarreSZ/mat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/PMLS/caseBarreSZ/mat.dat -------------------------------------------------------------------------------- /SEM3D/TESTS/PMLS/caseBarreSZ/mater.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/PMLS/caseBarreSZ/mater.in -------------------------------------------------------------------------------- /SEM3D/TESTS/PMLS/caseBarreSZ/material.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/PMLS/caseBarreSZ/material.input -------------------------------------------------------------------------------- /SEM3D/TESTS/SRC/test_indexation.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/SRC/test_indexation.f90 -------------------------------------------------------------------------------- /SEM3D/TESTS/UNITS/test_pointlist.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/SEM3D/TESTS/UNITS/test_pointlist.f90 -------------------------------------------------------------------------------- /cmake/FindFFTW3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/cmake/FindFFTW3.cmake -------------------------------------------------------------------------------- /pysem/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /pysem/compute_pml_length.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/pysem/compute_pml_length.py -------------------------------------------------------------------------------- /pysem/coord_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/pysem/coord_transform.py -------------------------------------------------------------------------------- /pysem/create_stations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/pysem/create_stations.py -------------------------------------------------------------------------------- /pysem/create_xmf_from_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/pysem/create_xmf_from_mesh.py -------------------------------------------------------------------------------- /pysem/generate_h5_materials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/pysem/generate_h5_materials.py -------------------------------------------------------------------------------- /pysem/mt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pysem/mt/mesh_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/pysem/mt/mesh_files.py -------------------------------------------------------------------------------- /pysem/mt/xdmf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/pysem/mt/xdmf.py -------------------------------------------------------------------------------- /pysem/mt_import_gmsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/pysem/mt_import_gmsh -------------------------------------------------------------------------------- /pysem/parse_h5_snapshots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/pysem/parse_h5_snapshots.py -------------------------------------------------------------------------------- /pysem/parse_h5_traces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/pysem/parse_h5_traces.py -------------------------------------------------------------------------------- /pysem/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/pysem/plots.py -------------------------------------------------------------------------------- /pysem/rikpp/doc/Biblio.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/pysem/rikpp/doc/Biblio.bib -------------------------------------------------------------------------------- /pysem/rikpp/doc/Chicago.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/pysem/rikpp/doc/Chicago.sty -------------------------------------------------------------------------------- /pysem/rikpp/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/pysem/rikpp/doc/Makefile -------------------------------------------------------------------------------- /pysem/rikpp/doc/Modifications.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/pysem/rikpp/doc/Modifications.tex -------------------------------------------------------------------------------- /pysem/rikpp/doc/RIKmodel.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/pysem/rikpp/doc/RIKmodel.tex -------------------------------------------------------------------------------- /pysem/rikpp/doc/SEM.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/pysem/rikpp/doc/SEM.tex -------------------------------------------------------------------------------- /pysem/rikpp/doc/chicagoa.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/pysem/rikpp/doc/chicagoa.bst -------------------------------------------------------------------------------- /pysem/rikpp/doc/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/pysem/rikpp/doc/compile.sh -------------------------------------------------------------------------------- /pysem/rikpp/doc/examples.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/pysem/rikpp/doc/examples.tex -------------------------------------------------------------------------------- /pysem/rikpp/doc/figures/15000points_Napa_rocher_circles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/pysem/rikpp/doc/figures/15000points_Napa_rocher_circles.png -------------------------------------------------------------------------------- /pysem/rikpp/doc/figures/15000points_Napa_rocher_slip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/pysem/rikpp/doc/figures/15000points_Napa_rocher_slip.png -------------------------------------------------------------------------------- /pysem/rikpp/doc/figures/Force_3point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/pysem/rikpp/doc/figures/Force_3point.png -------------------------------------------------------------------------------- /pysem/rikpp/doc/figures/Moment_vs_time_Napa_bedrock_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/pysem/rikpp/doc/figures/Moment_vs_time_Napa_bedrock_model.png -------------------------------------------------------------------------------- /pysem/rikpp/doc/figures/RIK-input1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/pysem/rikpp/doc/figures/RIK-input1.png -------------------------------------------------------------------------------- /pysem/rikpp/doc/figures/RIK-input2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/pysem/rikpp/doc/figures/RIK-input2.png -------------------------------------------------------------------------------- /pysem/rikpp/doc/figures/convert-force.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/pysem/rikpp/doc/figures/convert-force.png -------------------------------------------------------------------------------- /pysem/rikpp/doc/figures/convert-moment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/pysem/rikpp/doc/figures/convert-moment.png -------------------------------------------------------------------------------- /pysem/rikpp/doc/figures/input-moment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/pysem/rikpp/doc/figures/input-moment.png -------------------------------------------------------------------------------- /pysem/rikpp/doc/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/pysem/rikpp/doc/introduction.tex -------------------------------------------------------------------------------- /pysem/rikpp/doc/manual.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/pysem/rikpp/doc/manual.tex -------------------------------------------------------------------------------- /pysem/rikpp/doc/prepost.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/pysem/rikpp/doc/prepost.tex -------------------------------------------------------------------------------- /pysem/rikpp/rik_fault2xmf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/pysem/rikpp/rik_fault2xmf.py -------------------------------------------------------------------------------- /pysem/rikpp/rik_plot_slip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/pysem/rikpp/rik_plot_slip.py -------------------------------------------------------------------------------- /pysem/rikpp/rik_pp_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/pysem/rikpp/rik_pp_lib.py -------------------------------------------------------------------------------- /pysem/rikpp/rik_slip2moment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/pysem/rikpp/rik_slip2moment.py -------------------------------------------------------------------------------- /pysem/rikpp/xdmf_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/pysem/rikpp/xdmf_help.py -------------------------------------------------------------------------------- /pysem/sem_stf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/pysem/sem_stf.py -------------------------------------------------------------------------------- /randomField/BLAS/dgemm.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/BLAS/dgemm.f90 -------------------------------------------------------------------------------- /randomField/BLAS/dger.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/BLAS/dger.f90 -------------------------------------------------------------------------------- /randomField/BLAS/lsame.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/BLAS/lsame.f90 -------------------------------------------------------------------------------- /randomField/BLAS/xerbla.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/BLAS/xerbla.f90 -------------------------------------------------------------------------------- /randomField/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/CMakeLists.txt -------------------------------------------------------------------------------- /randomField/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/INSTALL.md -------------------------------------------------------------------------------- /randomField/RANDLIB/ranlib.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/RANDLIB/ranlib.f90 -------------------------------------------------------------------------------- /randomField/RANDLIB/rnglib.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/RANDLIB/rnglib.f90 -------------------------------------------------------------------------------- /randomField/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/README.md -------------------------------------------------------------------------------- /randomField/SRC_EXE/main_RandomField.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/SRC_EXE/main_RandomField.f90 -------------------------------------------------------------------------------- /randomField/SRC_EXE/main_Stat.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/SRC_EXE/main_Stat.f90 -------------------------------------------------------------------------------- /randomField/SRC_LIB/calls_RF.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/SRC_LIB/calls_RF.f90 -------------------------------------------------------------------------------- /randomField/SRC_LIB/charFunctions.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/SRC_LIB/charFunctions.f90 -------------------------------------------------------------------------------- /randomField/SRC_LIB/common_variables_RF.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/SRC_LIB/common_variables_RF.f90 -------------------------------------------------------------------------------- /randomField/SRC_LIB/constants_RF.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/SRC_LIB/constants_RF.f90 -------------------------------------------------------------------------------- /randomField/SRC_LIB/displayCarvalhol.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/SRC_LIB/displayCarvalhol.f90 -------------------------------------------------------------------------------- /randomField/SRC_LIB/fftw3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/SRC_LIB/fftw3.f90 -------------------------------------------------------------------------------- /randomField/SRC_LIB/fileManag_RF.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/SRC_LIB/fileManag_RF.f90 -------------------------------------------------------------------------------- /randomField/SRC_LIB/hdf5_RF.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/SRC_LIB/hdf5_RF.f90 -------------------------------------------------------------------------------- /randomField/SRC_LIB/localization_RF.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/SRC_LIB/localization_RF.f90 -------------------------------------------------------------------------------- /randomField/SRC_LIB/math_RF.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/SRC_LIB/math_RF.f90 -------------------------------------------------------------------------------- /randomField/SRC_LIB/mesh_RF.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/SRC_LIB/mesh_RF.f90 -------------------------------------------------------------------------------- /randomField/SRC_LIB/randomFieldND.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/SRC_LIB/randomFieldND.f90 -------------------------------------------------------------------------------- /randomField/SRC_LIB/readFile_RF.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/SRC_LIB/readFile_RF.f90 -------------------------------------------------------------------------------- /randomField/SRC_LIB/readUNV_RF.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/SRC_LIB/readUNV_RF.f90 -------------------------------------------------------------------------------- /randomField/SRC_LIB/sample_RF.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/SRC_LIB/sample_RF.f90 -------------------------------------------------------------------------------- /randomField/SRC_LIB/special_functions.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/SRC_LIB/special_functions.f90 -------------------------------------------------------------------------------- /randomField/SRC_LIB/spectra_RF.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/SRC_LIB/spectra_RF.f90 -------------------------------------------------------------------------------- /randomField/SRC_LIB/statistics_RF.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/SRC_LIB/statistics_RF.f90 -------------------------------------------------------------------------------- /randomField/SRC_LIB/systemUt_RF.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/SRC_LIB/systemUt_RF.f90 -------------------------------------------------------------------------------- /randomField/SRC_LIB/topography_RF.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/SRC_LIB/topography_RF.f90 -------------------------------------------------------------------------------- /randomField/SRC_LIB/type_MESH.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/SRC_LIB/type_MESH.f90 -------------------------------------------------------------------------------- /randomField/SRC_LIB/type_RF.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/SRC_LIB/type_RF.f90 -------------------------------------------------------------------------------- /randomField/SRC_LIB/type_STAT.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/SRC_LIB/type_STAT.f90 -------------------------------------------------------------------------------- /randomField/SRC_LIB/type_inputRF.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/SRC_LIB/type_inputRF.f90 -------------------------------------------------------------------------------- /randomField/SRC_LIB/writeResultFile_RF.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/SRC_LIB/writeResultFile_RF.f90 -------------------------------------------------------------------------------- /randomField/SRC_LIB/write_Log_File.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/SRC_LIB/write_Log_File.f90 -------------------------------------------------------------------------------- /randomField/dcdflib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/README -------------------------------------------------------------------------------- /randomField/dcdflib/doc/dcdflib.chs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/doc/dcdflib.chs -------------------------------------------------------------------------------- /randomField/dcdflib/doc/dcdflib.fdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/doc/dcdflib.fdoc -------------------------------------------------------------------------------- /randomField/dcdflib/src/algdiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/algdiv.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/alngam.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/alngam.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/alnrel.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/alnrel.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/apser.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/apser.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/basym.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/basym.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/bcorr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/bcorr.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/betaln.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/betaln.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/bfrac.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/bfrac.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/bgrat.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/bgrat.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/bpser.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/bpser.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/bratio.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/bratio.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/brcmp1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/brcmp1.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/brcomp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/brcomp.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/bup.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/bup.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/cdfbet.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/cdfbet.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/cdfbin.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/cdfbin.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/cdfchi.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/cdfchi.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/cdfchn.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/cdfchn.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/cdff.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/cdff.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/cdffnc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/cdffnc.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/cdfgam.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/cdfgam.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/cdfnbn.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/cdfnbn.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/cdfnor.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/cdfnor.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/cdfpoi.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/cdfpoi.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/cdft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/cdft.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/cumbet.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/cumbet.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/cumbin.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/cumbin.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/cumchi.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/cumchi.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/cumchn.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/cumchn.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/cumf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/cumf.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/cumfnc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/cumfnc.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/cumgam.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/cumgam.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/cumnbn.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/cumnbn.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/cumnor.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/cumnor.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/cumpoi.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/cumpoi.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/cumt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/cumt.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/dbetrm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/dbetrm.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/devlpl.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/devlpl.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/dexpm1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/dexpm1.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/dinvnr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/dinvnr.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/dinvr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/dinvr.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/dlanor.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/dlanor.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/dln1mx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/dln1mx.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/dln1px.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/dln1px.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/dlnbet.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/dlnbet.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/dlngam.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/dlngam.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/dstrem.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/dstrem.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/dt1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/dt1.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/dzror.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/dzror.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/erf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/erf.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/erfc1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/erfc1.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/esum.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/esum.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/exparg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/exparg.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/fpser.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/fpser.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/gam1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/gam1.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/gaminv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/gaminv.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/gamln.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/gamln.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/gamln1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/gamln1.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/gamma.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/gamma.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/grat1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/grat1.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/gratio.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/gratio.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/gsumln.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/gsumln.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/ipmpar.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/ipmpar.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/psi.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/psi.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/rcomp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/rcomp.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/rexp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/rexp.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/rlog.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/rlog.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/rlog1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/rlog1.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/spmpar.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/spmpar.f -------------------------------------------------------------------------------- /randomField/dcdflib/src/stvaln.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/dcdflib/src/stvaln.f -------------------------------------------------------------------------------- /randomField/makefile_example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sem3d/SEM/HEAD/randomField/makefile_example --------------------------------------------------------------------------------