├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── array.hpp ├── cmdline.cpp ├── cmdline.hpp ├── complex.hpp ├── config ├── .gitignore └── WhatsThis.txt ├── dataout.cpp ├── dataout.hpp ├── do-crustpinch-vids.sh ├── do-crustpinch.sh ├── do-halfspace-nearsrc25.sh ├── do-halfspace-nearsrc50.sh ├── do-halfspace.sh ├── do-lopnor-vids.sh ├── do-lopnor.sh ├── do-spherical-vids.sh ├── do-spherical.sh ├── do-toysphere-vids.sh ├── doc └── MANUAL.md ├── dot-mltw.sh ├── ecs.cpp ├── ecs.hpp ├── elastic.cpp ├── elastic.hpp ├── events.cpp ├── events.hpp ├── geom.hpp ├── geom_base.hpp ├── geom_r3.cpp ├── geom_r3.hpp ├── geom_r4.cpp ├── geom_r4.hpp ├── geom_s2.cpp ├── geom_s2.hpp ├── global.cpp ├── grid.cpp ├── grid.hpp ├── main.cpp ├── media.cpp ├── media.hpp ├── media_cellface.cpp ├── media_cellface.hpp ├── model.cpp ├── model.hpp ├── params.hpp ├── phonons.cpp ├── phonons.hpp ├── probability.cpp ├── probability.hpp ├── raypath.cpp ├── raypath.hpp ├── raytype.hpp ├── rtcoef.cpp ├── rtcoef.hpp ├── scatparams.cpp ├── scatparams.hpp ├── scatterers.cpp ├── scatterers.hpp ├── scripts ├── combineresults.sh ├── do-fundamentals.sh ├── do-parallel.sh ├── remote-inst-rad3d.sh ├── remote-start-rad3d.sh └── wikify.sh ├── sources.cpp ├── sources.hpp ├── tensors.hpp ├── typedefs.hpp ├── user.cpp ├── user_Halfspace_inc.cpp ├── user_LopNorCylMoho2_inc.cpp ├── user_LopNorCylMoho_inc.cpp ├── user_LopNorCyl_inc.cpp ├── user_NSCP_inc.cpp ├── user_SphereEarth_inc.cpp ├── user_ToySphere_inc.cpp ├── user_Upthrust_inc.cpp └── vis ├── rtcoefplot └── rtprob.m ├── scattervid ├── WhatsThis.txt ├── baseplot_gridWCGabove.m ├── baseplot_gridWCGrangeelev.m ├── do-makevids.sh ├── do-makevids_model.sh ├── ffmakevid.m ├── modelbaseplot.m ├── modelplot_WCGrangeelev.m ├── preprocess.sh ├── read_gridgeom.m ├── read_seismeta.m ├── scattervid_above.m ├── scattervid_axial.m ├── scattervid_model.m └── scattervid_p2p.m ├── seisplot ├── annotate_array.m ├── annotate_regions.m ├── array.m ├── arrayimage.m ├── arraymatrix.m ├── azimuth_deg.m ├── combine.m ├── decimate.m ├── envcompare.m ├── fehlerR1R2plot.m ├── figinit.m ├── lapsetimebaseplot.m ├── lapsetimecurve.m ├── modelplot.m ├── multiseis.m ├── normcurve_compare.m ├── normcurve_fitpowerlaw.m ├── papertext.m ├── range_km.m ├── seismap.m └── seisplot.m └── sprayplot ├── beachball.sh ├── drawgraphic.sh ├── preprocess.sh ├── sprayhisto.m └── sprayhisto.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/README.md -------------------------------------------------------------------------------- /array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/array.hpp -------------------------------------------------------------------------------- /cmdline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/cmdline.cpp -------------------------------------------------------------------------------- /cmdline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/cmdline.hpp -------------------------------------------------------------------------------- /complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/complex.hpp -------------------------------------------------------------------------------- /config/.gitignore: -------------------------------------------------------------------------------- 1 | # Compile-time config includes 2 | opt-* 3 | -------------------------------------------------------------------------------- /config/WhatsThis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/config/WhatsThis.txt -------------------------------------------------------------------------------- /dataout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/dataout.cpp -------------------------------------------------------------------------------- /dataout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/dataout.hpp -------------------------------------------------------------------------------- /do-crustpinch-vids.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/do-crustpinch-vids.sh -------------------------------------------------------------------------------- /do-crustpinch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/do-crustpinch.sh -------------------------------------------------------------------------------- /do-halfspace-nearsrc25.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/do-halfspace-nearsrc25.sh -------------------------------------------------------------------------------- /do-halfspace-nearsrc50.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/do-halfspace-nearsrc50.sh -------------------------------------------------------------------------------- /do-halfspace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/do-halfspace.sh -------------------------------------------------------------------------------- /do-lopnor-vids.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/do-lopnor-vids.sh -------------------------------------------------------------------------------- /do-lopnor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/do-lopnor.sh -------------------------------------------------------------------------------- /do-spherical-vids.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/do-spherical-vids.sh -------------------------------------------------------------------------------- /do-spherical.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/do-spherical.sh -------------------------------------------------------------------------------- /do-toysphere-vids.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/do-toysphere-vids.sh -------------------------------------------------------------------------------- /doc/MANUAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/doc/MANUAL.md -------------------------------------------------------------------------------- /dot-mltw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/dot-mltw.sh -------------------------------------------------------------------------------- /ecs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/ecs.cpp -------------------------------------------------------------------------------- /ecs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/ecs.hpp -------------------------------------------------------------------------------- /elastic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/elastic.cpp -------------------------------------------------------------------------------- /elastic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/elastic.hpp -------------------------------------------------------------------------------- /events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/events.cpp -------------------------------------------------------------------------------- /events.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/events.hpp -------------------------------------------------------------------------------- /geom.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/geom.hpp -------------------------------------------------------------------------------- /geom_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/geom_base.hpp -------------------------------------------------------------------------------- /geom_r3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/geom_r3.cpp -------------------------------------------------------------------------------- /geom_r3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/geom_r3.hpp -------------------------------------------------------------------------------- /geom_r4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/geom_r4.cpp -------------------------------------------------------------------------------- /geom_r4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/geom_r4.hpp -------------------------------------------------------------------------------- /geom_s2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/geom_s2.cpp -------------------------------------------------------------------------------- /geom_s2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/geom_s2.hpp -------------------------------------------------------------------------------- /global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/global.cpp -------------------------------------------------------------------------------- /grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/grid.cpp -------------------------------------------------------------------------------- /grid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/grid.hpp -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/main.cpp -------------------------------------------------------------------------------- /media.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/media.cpp -------------------------------------------------------------------------------- /media.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/media.hpp -------------------------------------------------------------------------------- /media_cellface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/media_cellface.cpp -------------------------------------------------------------------------------- /media_cellface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/media_cellface.hpp -------------------------------------------------------------------------------- /model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/model.cpp -------------------------------------------------------------------------------- /model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/model.hpp -------------------------------------------------------------------------------- /params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/params.hpp -------------------------------------------------------------------------------- /phonons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/phonons.cpp -------------------------------------------------------------------------------- /phonons.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/phonons.hpp -------------------------------------------------------------------------------- /probability.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/probability.cpp -------------------------------------------------------------------------------- /probability.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/probability.hpp -------------------------------------------------------------------------------- /raypath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/raypath.cpp -------------------------------------------------------------------------------- /raypath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/raypath.hpp -------------------------------------------------------------------------------- /raytype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/raytype.hpp -------------------------------------------------------------------------------- /rtcoef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/rtcoef.cpp -------------------------------------------------------------------------------- /rtcoef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/rtcoef.hpp -------------------------------------------------------------------------------- /scatparams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/scatparams.cpp -------------------------------------------------------------------------------- /scatparams.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/scatparams.hpp -------------------------------------------------------------------------------- /scatterers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/scatterers.cpp -------------------------------------------------------------------------------- /scatterers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/scatterers.hpp -------------------------------------------------------------------------------- /scripts/combineresults.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/scripts/combineresults.sh -------------------------------------------------------------------------------- /scripts/do-fundamentals.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/scripts/do-fundamentals.sh -------------------------------------------------------------------------------- /scripts/do-parallel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/scripts/do-parallel.sh -------------------------------------------------------------------------------- /scripts/remote-inst-rad3d.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/scripts/remote-inst-rad3d.sh -------------------------------------------------------------------------------- /scripts/remote-start-rad3d.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/scripts/remote-start-rad3d.sh -------------------------------------------------------------------------------- /scripts/wikify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/scripts/wikify.sh -------------------------------------------------------------------------------- /sources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/sources.cpp -------------------------------------------------------------------------------- /sources.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/sources.hpp -------------------------------------------------------------------------------- /tensors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/tensors.hpp -------------------------------------------------------------------------------- /typedefs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/typedefs.hpp -------------------------------------------------------------------------------- /user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/user.cpp -------------------------------------------------------------------------------- /user_Halfspace_inc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/user_Halfspace_inc.cpp -------------------------------------------------------------------------------- /user_LopNorCylMoho2_inc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/user_LopNorCylMoho2_inc.cpp -------------------------------------------------------------------------------- /user_LopNorCylMoho_inc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/user_LopNorCylMoho_inc.cpp -------------------------------------------------------------------------------- /user_LopNorCyl_inc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/user_LopNorCyl_inc.cpp -------------------------------------------------------------------------------- /user_NSCP_inc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/user_NSCP_inc.cpp -------------------------------------------------------------------------------- /user_SphereEarth_inc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/user_SphereEarth_inc.cpp -------------------------------------------------------------------------------- /user_ToySphere_inc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/user_ToySphere_inc.cpp -------------------------------------------------------------------------------- /user_Upthrust_inc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/user_Upthrust_inc.cpp -------------------------------------------------------------------------------- /vis/rtcoefplot/rtprob.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/rtcoefplot/rtprob.m -------------------------------------------------------------------------------- /vis/scattervid/WhatsThis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/scattervid/WhatsThis.txt -------------------------------------------------------------------------------- /vis/scattervid/baseplot_gridWCGabove.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/scattervid/baseplot_gridWCGabove.m -------------------------------------------------------------------------------- /vis/scattervid/baseplot_gridWCGrangeelev.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/scattervid/baseplot_gridWCGrangeelev.m -------------------------------------------------------------------------------- /vis/scattervid/do-makevids.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/scattervid/do-makevids.sh -------------------------------------------------------------------------------- /vis/scattervid/do-makevids_model.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/scattervid/do-makevids_model.sh -------------------------------------------------------------------------------- /vis/scattervid/ffmakevid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/scattervid/ffmakevid.m -------------------------------------------------------------------------------- /vis/scattervid/modelbaseplot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/scattervid/modelbaseplot.m -------------------------------------------------------------------------------- /vis/scattervid/modelplot_WCGrangeelev.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/scattervid/modelplot_WCGrangeelev.m -------------------------------------------------------------------------------- /vis/scattervid/preprocess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/scattervid/preprocess.sh -------------------------------------------------------------------------------- /vis/scattervid/read_gridgeom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/scattervid/read_gridgeom.m -------------------------------------------------------------------------------- /vis/scattervid/read_seismeta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/scattervid/read_seismeta.m -------------------------------------------------------------------------------- /vis/scattervid/scattervid_above.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/scattervid/scattervid_above.m -------------------------------------------------------------------------------- /vis/scattervid/scattervid_axial.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/scattervid/scattervid_axial.m -------------------------------------------------------------------------------- /vis/scattervid/scattervid_model.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/scattervid/scattervid_model.m -------------------------------------------------------------------------------- /vis/scattervid/scattervid_p2p.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/scattervid/scattervid_p2p.m -------------------------------------------------------------------------------- /vis/seisplot/annotate_array.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/seisplot/annotate_array.m -------------------------------------------------------------------------------- /vis/seisplot/annotate_regions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/seisplot/annotate_regions.m -------------------------------------------------------------------------------- /vis/seisplot/array.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/seisplot/array.m -------------------------------------------------------------------------------- /vis/seisplot/arrayimage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/seisplot/arrayimage.m -------------------------------------------------------------------------------- /vis/seisplot/arraymatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/seisplot/arraymatrix.m -------------------------------------------------------------------------------- /vis/seisplot/azimuth_deg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/seisplot/azimuth_deg.m -------------------------------------------------------------------------------- /vis/seisplot/combine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/seisplot/combine.m -------------------------------------------------------------------------------- /vis/seisplot/decimate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/seisplot/decimate.m -------------------------------------------------------------------------------- /vis/seisplot/envcompare.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/seisplot/envcompare.m -------------------------------------------------------------------------------- /vis/seisplot/fehlerR1R2plot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/seisplot/fehlerR1R2plot.m -------------------------------------------------------------------------------- /vis/seisplot/figinit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/seisplot/figinit.m -------------------------------------------------------------------------------- /vis/seisplot/lapsetimebaseplot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/seisplot/lapsetimebaseplot.m -------------------------------------------------------------------------------- /vis/seisplot/lapsetimecurve.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/seisplot/lapsetimecurve.m -------------------------------------------------------------------------------- /vis/seisplot/modelplot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/seisplot/modelplot.m -------------------------------------------------------------------------------- /vis/seisplot/multiseis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/seisplot/multiseis.m -------------------------------------------------------------------------------- /vis/seisplot/normcurve_compare.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/seisplot/normcurve_compare.m -------------------------------------------------------------------------------- /vis/seisplot/normcurve_fitpowerlaw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/seisplot/normcurve_fitpowerlaw.m -------------------------------------------------------------------------------- /vis/seisplot/papertext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/seisplot/papertext.m -------------------------------------------------------------------------------- /vis/seisplot/range_km.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/seisplot/range_km.m -------------------------------------------------------------------------------- /vis/seisplot/seismap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/seisplot/seismap.m -------------------------------------------------------------------------------- /vis/seisplot/seisplot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/seisplot/seisplot.m -------------------------------------------------------------------------------- /vis/sprayplot/beachball.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/sprayplot/beachball.sh -------------------------------------------------------------------------------- /vis/sprayplot/drawgraphic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/sprayplot/drawgraphic.sh -------------------------------------------------------------------------------- /vis/sprayplot/preprocess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/sprayplot/preprocess.sh -------------------------------------------------------------------------------- /vis/sprayplot/sprayhisto.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/sprayplot/sprayhisto.m -------------------------------------------------------------------------------- /vis/sprayplot/sprayhisto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophersanborn/Radiative3D/HEAD/vis/sprayplot/sprayhisto.sh --------------------------------------------------------------------------------