├── .github └── workflows │ └── linux.yml ├── .gitignore ├── .zenodo.json ├── AUTHORS ├── CMakeLists.txt ├── COPYING ├── Doxyfile ├── INSTALL ├── PyVQ ├── pyvq │ ├── README_PYVQ.md │ ├── __init__.py │ ├── __init__.py~ │ ├── betas │ │ ├── __init__.py │ │ ├── __init__.py~ │ │ ├── event_plots.py │ │ ├── greens.py │ │ ├── quick_look.py │ │ └── readme.txt │ └── pyvq.py ├── readme.txt └── setup.py ├── README ├── astyle.rc ├── config.h.in ├── doc ├── graphics │ ├── 4406_cover.jpg │ ├── CFF_1.pdf │ ├── CFF_2.pdf │ ├── Davis_2_Fault.jpg │ ├── Event_0_plot.jpg │ ├── Event_4406_crop_logo.png │ ├── FaultTrace3elem.pdf │ ├── FaultTrace4elem.pdf │ ├── Golden_Gate_Multi_Element.jpg │ ├── Heien_Sachs_12_elements_vs_memory.pdf │ ├── Heien_Sachs_12_number_of_operations.pdf │ ├── Heien_Sachs_12_parallel_comm_time_breakdown.pdf │ ├── Heien_Sachs_12_parallel_sim_time_breakdown.pdf │ ├── Okada_Fault_Convention.pdf │ ├── One_Fault_Golden_Gate.jpg │ ├── UCERF2_faults_GoogleEarth.png │ ├── VQFlow.odg │ ├── VQFlow.pdf │ ├── VQ_Logo_fancy.png │ ├── cond_prob_vs_t_example.png │ ├── dg_54358.png │ ├── dg_normal5_dip60_L10k_W10k_c10k_docs_trim.png │ ├── dg_strikeslip5_dip90_L10k_W10k_c11k_docs_trim.png │ ├── dg_thrust5_dip30_L10k_W10k_c6k_docs_trim.png │ ├── dx_dy_dz_field_109382.png │ ├── dynamic_trigger_tuning.png │ ├── dz_54358.png │ ├── dz_normal5_dip60_L10k_W10k_c10k_docs_trim.png │ ├── dz_strikeslip5_dip90_L10k_W10k_c11k_docs_trim.png │ ├── dz_thrust5_dip30_L10k_W10k_c6k_docs_trim.png │ ├── event_gravity_example.png │ ├── event_insar_example.png │ ├── example_normal_dip60_with_trace_fault_10000_gravity_uniform_slip1m.png │ ├── example_vert_strikeslip_with_trace_fault_10000_gravity_uniform_slip5m.png │ ├── freq_mag_example.png │ ├── greens_fitting.png │ ├── mag_mean_slip_example.png │ ├── mag_mean_slip_minMag_5-0_events_ALLCAL2_VQmeshed_3km_25kyr_dyn1-3_GreensLimits_VQstressDrops0-3_AllowNegSlips.png │ ├── mag_rupt_area_example.png │ ├── mag_rupt_area_minMag_5-0_events_ALLCAL2_VQmeshed_3km_25kyr_dyn1-3_GreensLimits_VQstressDrops0-3_AllowNegSlips.png │ ├── memory_reqs.pdf │ ├── min_magnitude.pdf │ ├── overlay_fields_109382.png │ ├── sigma_s_front.png │ ├── sigma_s_top.png │ ├── single_fault_4k.jpg │ ├── single_fault_6k.jpg │ ├── slip_time_series_diagnostic_yearMin0_yearMax100_SAF-Mendo_Offs_events_ALLCAL2_VQmeshed_3km_dyn1-3_newStressDrops_GreenLimits_stressDropFactor0-3.png │ ├── slip_time_series_diagnostic_yearMin0_yearMax200_events_ALLCAL2_VQmeshed_3km_dyn1-3_newStressDrops_GreenLimits_stressDropFactor0-3.png │ ├── spacetime_yearMin21000_yearMax23000_triggeredByFault_-153_minMag_None_event_East.png │ ├── stress_drop_tuning.png │ ├── tuning_parameters_1.png │ ├── tuning_parameters_2.png │ ├── tuning_parameters_3.png │ ├── tuning_parameters_4.png │ ├── vc_visualization.png │ ├── velocity_tapering.png │ ├── vq_flow.dot │ └── waiting_times_example.png ├── vq.bib └── vq.tex ├── docker ├── virtualquake-buildenv-bionic │ ├── Dockerfile │ └── README.md ├── virtualquake-buildenv-xenial │ ├── Dockerfile │ └── README.md └── virtualquake │ ├── Dockerfile │ ├── README.md │ └── entrypoint.sh ├── examples ├── CMakeLists.txt ├── ca_model │ └── gen_ca_model.sh ├── check_results.py ├── example_params.prm ├── fault_traces │ ├── ca_traces │ │ ├── trace_Anacapa-Dume.txt │ │ ├── trace_Antelope_Vlly.txt │ │ ├── trace_Anza.txt │ │ ├── trace_Arroyo-MRidge.txt │ │ ├── trace_B_Chan_Isle_Th.txt │ │ ├── trace_B_Elpark.txt │ │ ├── trace_B_Lagoon-Bld_M.txt │ │ ├── trace_B_Northridge.txt │ │ ├── trace_Bartlett_Spring.txt │ │ ├── trace_Battle_Creek.txt │ │ ├── trace_Berryessa.txt │ │ ├── trace_Bigpine.txt │ │ ├── trace_Birch_Ck.txt │ │ ├── trace_Blackwater.txt │ │ ├── trace_Borrego.txt │ │ ├── trace_Brawley.txt │ │ ├── trace_Bullion-Mesq.txt │ │ ├── trace_Burnt_Mtn.txt │ │ ├── trace_C_Maacama.txt │ │ ├── trace_Calaveras.txt │ │ ├── trace_Casmalia.txt │ │ ├── trace_Cedar_Mtn-Ma_M.txt │ │ ├── trace_Cerro_Prieto-N.txt │ │ ├── trace_Cerro_Prieto-S.txt │ │ ├── trace_Cerro_Prieto-W.txt │ │ ├── trace_Chino_Central.txt │ │ ├── trace_Clamshell.txt │ │ ├── trace_Cleghorn.txt │ │ ├── trace_Collayomi.txt │ │ ├── trace_Concord.txt │ │ ├── trace_Coyote_Cr.txt │ │ ├── trace_Coyote_Mt..txt │ │ ├── trace_Cucamonga.txt │ │ ├── trace_Death_Vlly-Grb.txt │ │ ├── trace_Death_Vlly-N.txt │ │ ├── trace_Death_Vlly-NCu.txt │ │ ├── trace_Death_Vlly-S.txt │ │ ├── trace_Deep_Spr.txt │ │ ├── trace_Earthqk_Valley.txt │ │ ├── trace_Elmore_Ranch.txt │ │ ├── trace_Emerson-CopMt.txt │ │ ├── trace_Eureka_Peak.txt │ │ ├── trace_Fickle_Hill.txt │ │ ├── trace_Garlock_E.txt │ │ ├── trace_Garlock_W.txt │ │ ├── trace_Genoa.txt │ │ ├── trace_Gillem-Big_Cra.txt │ │ ├── trace_Glen_Ivy.txt │ │ ├── trace_Great_Val_1.txt │ │ ├── trace_Great_Val_10.txt │ │ ├── trace_Great_Val_11.txt │ │ ├── trace_Great_Val_12.txt │ │ ├── trace_Great_Val_13.txt │ │ ├── trace_Great_Val_14.txt │ │ ├── trace_Great_Val_2.txt │ │ ├── trace_Great_Val_3.txt │ │ ├── trace_Great_Val_4a.txt │ │ ├── trace_Great_Val_4b.txt │ │ ├── trace_Great_Val_5.txt │ │ ├── trace_Great_Val_7.txt │ │ ├── trace_Great_Val_8.txt │ │ ├── trace_Great_Val_9.txt │ │ ├── trace_Greenvalley.txt │ │ ├── trace_Greenville.txt │ │ ├── trace_Harper_Lk.txt │ │ ├── trace_Hartley_Spr.txt │ │ ├── trace_Hat_Creek.txt │ │ ├── trace_Hayward.txt │ │ ├── trace_Helendale.txt │ │ ├── trace_Hidalgo-Wc.txt │ │ ├── trace_Hilton_Crk.txt │ │ ├── trace_Hollywood.txt │ │ ├── trace_Holser.txt │ │ ├── trace_Honey_Lake.txt │ │ ├── trace_Hosgri.txt │ │ ├── trace_Hunter_Mtn.txt │ │ ├── trace_Imperial-C.txt │ │ ├── trace_Imperial-N.txt │ │ ├── trace_Imperial-S.txt │ │ ├── trace_Independence.txt │ │ ├── trace_Johnson_Vly-N.txt │ │ ├── trace_Julian.txt │ │ ├── trace_Laguna_Salada.txt │ │ ├── trace_Landers.txt │ │ ├── trace_Likely.txt │ │ ├── trace_Little_Lake.txt │ │ ├── trace_Little_Salmon.txt │ │ ├── trace_Lockhart.txt │ │ ├── trace_Los_Alamos.txt │ │ ├── trace_Los_Osos.txt │ │ ├── trace_Lt_Salmon_Off.txt │ │ ├── trace_Mad_River.txt │ │ ├── trace_Malibu_Coast.txt │ │ ├── trace_McKinleyville.txt │ │ ├── trace_Mon_Vis-Shannon.txt │ │ ├── trace_Mono.txt │ │ ├── trace_MontBay-Tul.txt │ │ ├── trace_Mt._Diablo.txt │ │ ├── trace_N_Frontal-E.txt │ │ ├── trace_N_Frontal-W.txt │ │ ├── trace_N_Maacama.txt │ │ ├── trace_N_San_Gregorio.txt │ │ ├── trace_Newport_Ing.txt │ │ ├── trace_North_Tahoe.txt │ │ ├── trace_Nwprt_Ing-off.txt │ │ ├── trace_Oakridge-onsho.txt │ │ ├── trace_Ortigalita.txt │ │ ├── trace_Owens_Vlly.txt │ │ ├── trace_Owl_Lk.txt │ │ ├── trace_Palos_Verdes.txt │ │ ├── trace_Pals_V-Corbank.txt │ │ ├── trace_Panamint.txt │ │ ├── trace_Pinto_Mtn.txt │ │ ├── trace_Pitas_Pt_East.txt │ │ ├── trace_Pitas_Pt_West.txt │ │ ├── trace_Pleito.txt │ │ ├── trace_Pt._Reyes.txt │ │ ├── trace_Puente_Hills.txt │ │ ├── trace_Quien_Sabe.txt │ │ ├── trace_Raymond.txt │ │ ├── trace_Red_Mtn.txt │ │ ├── trace_Rinconada.txt │ │ ├── trace_Robinson_Crk.txt │ │ ├── trace_Rodgers_Creek.txt │ │ ├── trace_Rose_Cny-off.txt │ │ ├── trace_Round_Valley.txt │ │ ├── trace_SAF-Carrizo.txt │ │ ├── trace_SAF-Cholame.txt │ │ ├── trace_SAF-Coachella.txt │ │ ├── trace_SAF-Creeping.txt │ │ ├── trace_SAF-Mendo_Offs.txt │ │ ├── trace_SAF-Mojave.txt │ │ ├── trace_SAF-N_Coast_Of.txt │ │ ├── trace_SAF-N_Coast_On.txt │ │ ├── trace_SAF-N_Creeping.txt │ │ ├── trace_SAF-N_Mendocin.txt │ │ ├── trace_SAF-N_Mid_Peni.txt │ │ ├── trace_SAF-Parkfield.txt │ │ ├── trace_SAF-S_Cruz_Mts.txt │ │ ├── trace_SAF-S_Mid_Peni.txt │ │ ├── trace_SAF-San_Bernar.txt │ │ ├── trace_S_Maacama.txt │ │ ├── trace_S_San_Gregorio.txt │ │ ├── trace_San_Bernardino.txt │ │ ├── trace_San_Cayetano.txt │ │ ├── trace_San_Gabriel.txt │ │ ├── trace_San_Jacinto.txt │ │ ├── trace_San_Jose.txt │ │ ├── trace_San_Juan.txt │ │ ├── trace_San_Miguel.txt │ │ ├── trace_Santa_Cruz_Isl.txt │ │ ├── trace_Santa_Monica.txt │ │ ├── trace_Santa_Rosa_Isl.txt │ │ ├── trace_Santa_Susana.txt │ │ ├── trace_Sierra_Mad-SFd.txt │ │ ├── trace_Sierra_Mad-cn.txt │ │ ├── trace_Simi.txt │ │ ├── trace_Sn_Joaquin_Hil.txt │ │ ├── trace_Snta_Ynez-E.txt │ │ ├── trace_Snta_Ynez-W.txt │ │ ├── trace_Superstion_Hll.txt │ │ ├── trace_Superstion_Mt..txt │ │ ├── trace_Surprise_Valley.txt │ │ ├── trace_Table_Bluff.txt │ │ ├── trace_Tank_Cyn.txt │ │ ├── trace_Temecula.txt │ │ ├── trace_Trinidad.txt │ │ ├── trace_Ventura.txt │ │ ├── trace_Verdugo.txt │ │ ├── trace_West_Napa.txt │ │ ├── trace_West_Tahoe.txt │ │ ├── trace_White_Mtn.txt │ │ ├── trace_White_Wolf.txt │ │ ├── trace_Whittier.txt │ │ └── trace_Zayante-Verg.txt │ ├── golden_gate.txt │ ├── multiple_fault_trace.txt │ ├── single_fault_trace.txt │ ├── two_fault_1.txt │ └── two_fault_2.txt ├── greens_generate.prm ├── greens_input.prm ├── setup_params.sh └── sum_greens.py ├── helper_scripts ├── example_params.d └── param_generation.py ├── quakelib ├── AUTHORS ├── CMakeLists.txt ├── COPYING ├── README ├── cmake │ ├── FindGeographicLib.cmake │ ├── FindPythonModule.cmake │ ├── GetGitRevisionDescription.cmake │ └── GetGitRevisionDescription.cmake.in ├── doc │ └── Doxyfile ├── python │ ├── CMakeLists.txt │ ├── __init__.py │ └── quakelib.i ├── quakelib_config.h.in ├── src │ ├── QuakeLib.h │ ├── QuakeLibEQSim.cpp │ ├── QuakeLibEQSim.h │ ├── QuakeLibElement.cpp │ ├── QuakeLibIO.cpp │ ├── QuakeLibIO.h │ ├── QuakeLibOkada.cpp │ ├── QuakeLibOkada.h │ ├── QuakeLibUtil.cpp │ └── QuakeLibUtil.h └── test │ ├── CondUnitTest.py │ ├── EventUnitTest.py │ ├── FricUnitTest.py │ ├── GeomUnitTest.py │ ├── GreenUnitTest.py │ ├── MetadataUnitTest.py │ ├── OctreeTest.py │ ├── RectBoundTest.py │ └── UtilUnitTest.py ├── sim_output └── tester.py ├── src ├── CMakeLists.txt ├── core │ ├── Block.cpp │ ├── Block.h │ ├── Comm.cpp │ ├── Comm.h │ ├── CommPartition.cpp │ ├── CommPartition.h │ ├── Event.cpp │ ├── Event.h │ ├── InitBlocks.cpp │ ├── InitBlocks.h │ ├── Params.cpp │ ├── Params.h │ ├── SimData.cpp │ ├── SimData.h │ ├── SimDataBlocks.cpp │ ├── SimDataBlocks.h │ ├── SimDataEvents.cpp │ ├── SimDataEvents.h │ ├── SimFramework.cpp │ ├── SimFramework.h │ ├── SimTimer.cpp │ ├── SimTimer.h │ ├── Simulation.cpp │ └── Simulation.h ├── io │ ├── CheckpointFileOutput.cpp │ ├── CheckpointFileOutput.h │ ├── CheckpointFileParse.cpp │ ├── CheckpointFileParse.h │ ├── EventOutput.cpp │ ├── EventOutput.h │ ├── GreensFileOutput.cpp │ ├── GreensFileOutput.h │ ├── HDF5Data.cpp │ ├── HDF5Data.h │ ├── ReadModelFile.cpp │ └── ReadModelFile.h ├── main.cpp ├── mesher.cpp ├── misc │ ├── ConfigFile.cpp │ ├── ConfigFile.h │ ├── GreensFunctions.cpp │ ├── GreensFunctions.h │ ├── MPIDebugOutputStream.cpp │ └── MPIDebugOutputStream.h └── simulation │ ├── BASSAftershocks.cpp │ ├── BASSAftershocks.h │ ├── GracefulQuit.cpp │ ├── GracefulQuit.h │ ├── GreensInit.cpp │ ├── GreensInit.h │ ├── GreensKillInteraction.cpp │ ├── GreensKillInteraction.h │ ├── ProgressMonitor.cpp │ ├── ProgressMonitor.h │ ├── RunEvent.cpp │ ├── RunEvent.h │ ├── SanityCheck.cpp │ ├── SanityCheck.h │ ├── UpdateBlockStress.cpp │ └── UpdateBlockStress.h └── vq_installer.bs /.github/workflows/linux.yml: -------------------------------------------------------------------------------- 1 | name: linux 2 | 3 | on: [push, pull_request] 4 | 5 | # always only run a single (the newest) instance per PR 6 | concurrency: 7 | group: ${{ github.actor }}-${{ github.ref }} 8 | cancel-in-progress: true 9 | 10 | env: 11 | # Avoid a warning 12 | OMPI_MCA_btl_base_warn_component_unused: 0 13 | # Prevent slowdown when oversubscribing (e.g. 4 ranks of 2 cores) 14 | OMPI_MCA_mpi_yield_when_idle: 1 15 | OMPI_MCA_rmaps_base_oversubscribe: 1 16 | # Allow run as root 17 | OMPI_ALLOW_RUN_AS_ROOT: 1 18 | OMPI_ALLOW_RUN_AS_ROOT_CONFIRM: 1 19 | # Fix OpenMPI issue in Docker : https://github.com/open-mpi/ompi/issues/4948 20 | OMPI_MCA_btl_vader_single_copy_mechanism: none 21 | 22 | jobs: 23 | job: 24 | name: build 25 | runs-on: [ubuntu-latest] 26 | container: 27 | image: geodynamics/virtualquake-buildenv-bionic:latest 28 | steps: 29 | - uses: actions/checkout@v2 30 | - name: build 31 | run: | 32 | mkdir build 33 | cd build 34 | cmake \ 35 | -G "Ninja" \ 36 | -D GeographicLib_INCLUDE_DIRS="/usr/include/GeographicLib" \ 37 | -D GeographicLib_LIBRARY_DIRS="/usr/lib/x86_64-linux-gnu/" \ 38 | .. 39 | ninja 40 | - name: test 41 | run: | 42 | cd build 43 | ctest --no-compress-output --output-on-failure -T Test -------------------------------------------------------------------------------- /.zenodo.json: -------------------------------------------------------------------------------- 1 | { 2 | "creators": [ 3 | { 4 | "name": "Wilson, John Max", 5 | "affiliation": "University of California Davis, California, USA" 6 | },{ 7 | "name": "Schultz, Kasey W.", 8 | "affiliation": "University of California Davis, California, USA" 9 | },{ 10 | "name": "Heien, Eric", 11 | "affiliation": "University of California Davis, California, USA" 12 | },{ 13 | "name": "Sachs, Michael", 14 | "affiliation": "University of California Davis, California, USA" 15 | },{ 16 | "name": "Rundle, John B.", 17 | "affiliation": "University of California Davis, California, USA" 18 | } 19 | ] -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | John M. Wilson 2 | Kasey W. Schultz 3 | Eric M. Heien 4 | Michael K. Sachs 5 | John B. Rundle 6 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- 1 | Copyright (c) 2012-2014 Eric M. Heien 2 | Michael K. Sachs 3 | John B. Rundle 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a 6 | copy of this software and associated documentation files (the "Software"), 7 | to deal in the Software without restriction, including without limitation 8 | the rights to use, copy, modify, merge, publish, distribute, sublicense, 9 | and/or sell copies of the Software, and to permit persons to whom the 10 | Software is furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 20 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 21 | DEALINGS IN THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- 1 | == DEPENDENCIES == 2 | 3 | MPI HDF5 SWIG CMake 4 | All dependencies except CMake are optional. 5 | 6 | == INSTALL == 1.) Windows 2.) Mac OS X 3.) Linux 7 | 8 | == Windows == 9 | 10 | Virtual Quake currently does not support Windows. 11 | 12 | == Mac OS X == 13 | 14 | With the OS X default Python. 15 | 16 | mkdir build 17 | cd build 18 | cmake .. 19 | make 20 | 21 | If you have a third party installation of python (ie. from Homebrew or 22 | MacPorts) Virtual Quake will build and install, but the Python QuakeLib 23 | module may not work. This is because CMake builds against the system Python. 24 | You can explicitly specify the Python installation to use with the following 25 | flags and example paths: 26 | 27 | cmake -DPYTHON_EXECUTABLE=/opt/local/bin/python \ 28 | -DPYTHON_LIBRARY=/opt/local/lib/libpython2.7.dylib \ 29 | -DPYTHON_INCLUDE_DIR=/opt/local/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7/ .. 30 | 31 | Then run make as usual. 32 | 33 | == Linux == 34 | 35 | mkdir build 36 | cd build 37 | cmake .. 38 | make 39 | 40 | == CLEAN RE-BUILD == 41 | 42 | Just delete the build directory and re-install based on the instructions above. 43 | 44 | -------------------------------------------------------------------------------- /PyVQ/pyvq/__init__.py: -------------------------------------------------------------------------------- 1 | import matplotlib as mpl 2 | #mpl.use('agg') 3 | 4 | from pyvq import * 5 | import betas 6 | 7 | __all__=['pyvq', 'pyvq.betas'] 8 | -------------------------------------------------------------------------------- /PyVQ/pyvq/__init__.py~: -------------------------------------------------------------------------------- 1 | import matplotlib as mpl 2 | #mpl.use('agg') 3 | 4 | from pyvq import * 5 | import betas 6 | 7 | __all__=['pyvq', 'betas'] 8 | -------------------------------------------------------------------------------- /PyVQ/pyvq/betas/__init__.py: -------------------------------------------------------------------------------- 1 | import matplotlib as mpl 2 | #mpl.use('agg') 3 | 4 | from quick_look import * 5 | from greens import * 6 | 7 | __all__=['quick_look', 'greens'] 8 | -------------------------------------------------------------------------------- /PyVQ/pyvq/betas/__init__.py~: -------------------------------------------------------------------------------- 1 | import matplotlib as mpl 2 | #mpl.use('agg') 3 | 4 | from quick_look import * 5 | 6 | __all__=['betas'] 7 | -------------------------------------------------------------------------------- /PyVQ/pyvq/betas/readme.txt: -------------------------------------------------------------------------------- 1 | Use this folder for not-ready for prime-time python VQ scripts, most pointedly scripts that are useful for debugging. 2 | 3 | 4 | -------------------------------------------------------------------------------- /PyVQ/readme.txt: -------------------------------------------------------------------------------- 1 | Use this folder for not-ready for prime-time python VQ scripts, most pointedly scripts that are useful for debugging. 2 | 3 | 4 | -------------------------------------------------------------------------------- /PyVQ/setup.py: -------------------------------------------------------------------------------- 1 | from distutils.core import setup 2 | 3 | setup(name='pyvq', 4 | version='0.1', 5 | description='Python tools for Virtual Quake/California analysis. Includes Beta versions (not ready for prime-time).', 6 | author=['mark yoder', 'kasey schultz'], 7 | author_email=['mryoder@ucdavis.edu', 'kwschultz@ucdavis.edu'], 8 | license = "Open Source", 9 | packages=['pyvq', 'pyvq.betas'], 10 | classifiers=["Development Status :: alpha and pre-alpha"] 11 | ) 12 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | Virtual Quake (formerly Virtual California) is a computer simulation which 2 | models the earthquake fault system in California. It uses field observations 3 | to define fault topology, long-term slip rates and frictional parameters. 4 | The faults are meshed into fault-segments and quasi-static elastic interactions 5 | are calculated between these segments. Slip is then applied to each segment at 6 | geologically-observed rates until stress values exceed the frictional parameters. 7 | At this point the segment will break and transfer stress to the rest of the 8 | system via the quasi-static interactions described above. Under the correct 9 | conditions, transferred stress results in propagating ruptures throughout the 10 | system, i.e. a simulated earthquake. The design of Virtual Quake allows 11 | for fast execution so many thousands of events can be generated over very 12 | long simulated time periods. The result is a rich dataset from which to study 13 | the statistical properties of the rupturing fault system. 14 | 15 | == INSTALLATION == 16 | 17 | See the INSTALL file. 18 | 19 | == TESTING == 20 | 21 | After following the instructions in INSTALL, before you move any files around. 22 | From within the 'build' directory run: 23 | 24 | make test 25 | 26 | -------------------------------------------------------------------------------- /astyle.rc: -------------------------------------------------------------------------------- 1 | # astyle 2.02 indentation style 2 | # Run astyle in a command like 3 | # astyle --options=astyle.rc --recursive "*.cpp" --recursive "*.h" 4 | 5 | --style=java 6 | 7 | --indent=spaces=4 8 | --indent-classes 9 | --indent-switches 10 | --indent-cases 11 | --indent-namespaces 12 | --indent-labels 13 | --indent-preprocessor 14 | --indent-col1-comments 15 | --min-conditional-indent=0 16 | --max-instatement-indent=80 17 | --break-blocks 18 | --pad-header 19 | --convert-tabs 20 | --align-pointer=name 21 | --align-reference=name 22 | 23 | --suffix=none 24 | --quiet 25 | #--verbose 26 | -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- 1 | 2 | #ifndef _VQ_CONFIG_H_ 3 | #define _VQ_CONFIG_H_ 4 | #cmakedefine VQ_HAVE_SYS_TIME_H 5 | #cmakedefine VQ_HAVE_MATH_H 6 | #cmakedefine VQ_HAVE_STDLIB_H 7 | #cmakedefine VQ_HAVE_UNISTD_H 8 | #cmakedefine VQ_HAVE_STRING_H 9 | #cmakedefine VQ_HAVE_SIGNAL_H 10 | #cmakedefine VQ_HAVE_SLEEP_FUNC 11 | #cmakedefine VQ_HAVE_USLEEP_FUNC 12 | #cmakedefine HDF5_FOUND 13 | #cmakedefine HDF5_IS_PARALLEL 14 | #cmakedefine MPI_C_FOUND 15 | #cmakedefine VQ_VERSION_STR "@VQ_VERSION_STR@" 16 | #cmakedefine VQ_GIT_SHA1 "@VQ_GIT_SHA1@" 17 | #endif 18 | 19 | 20 | -------------------------------------------------------------------------------- /doc/graphics/4406_cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/4406_cover.jpg -------------------------------------------------------------------------------- /doc/graphics/CFF_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/CFF_1.pdf -------------------------------------------------------------------------------- /doc/graphics/CFF_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/CFF_2.pdf -------------------------------------------------------------------------------- /doc/graphics/Davis_2_Fault.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/Davis_2_Fault.jpg -------------------------------------------------------------------------------- /doc/graphics/Event_0_plot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/Event_0_plot.jpg -------------------------------------------------------------------------------- /doc/graphics/Event_4406_crop_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/Event_4406_crop_logo.png -------------------------------------------------------------------------------- /doc/graphics/FaultTrace3elem.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/FaultTrace3elem.pdf -------------------------------------------------------------------------------- /doc/graphics/FaultTrace4elem.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/FaultTrace4elem.pdf -------------------------------------------------------------------------------- /doc/graphics/Golden_Gate_Multi_Element.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/Golden_Gate_Multi_Element.jpg -------------------------------------------------------------------------------- /doc/graphics/Heien_Sachs_12_elements_vs_memory.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/Heien_Sachs_12_elements_vs_memory.pdf -------------------------------------------------------------------------------- /doc/graphics/Heien_Sachs_12_number_of_operations.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/Heien_Sachs_12_number_of_operations.pdf -------------------------------------------------------------------------------- /doc/graphics/Heien_Sachs_12_parallel_comm_time_breakdown.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/Heien_Sachs_12_parallel_comm_time_breakdown.pdf -------------------------------------------------------------------------------- /doc/graphics/Heien_Sachs_12_parallel_sim_time_breakdown.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/Heien_Sachs_12_parallel_sim_time_breakdown.pdf -------------------------------------------------------------------------------- /doc/graphics/Okada_Fault_Convention.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/Okada_Fault_Convention.pdf -------------------------------------------------------------------------------- /doc/graphics/One_Fault_Golden_Gate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/One_Fault_Golden_Gate.jpg -------------------------------------------------------------------------------- /doc/graphics/UCERF2_faults_GoogleEarth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/UCERF2_faults_GoogleEarth.png -------------------------------------------------------------------------------- /doc/graphics/VQFlow.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/VQFlow.odg -------------------------------------------------------------------------------- /doc/graphics/VQFlow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/VQFlow.pdf -------------------------------------------------------------------------------- /doc/graphics/VQ_Logo_fancy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/VQ_Logo_fancy.png -------------------------------------------------------------------------------- /doc/graphics/cond_prob_vs_t_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/cond_prob_vs_t_example.png -------------------------------------------------------------------------------- /doc/graphics/dg_54358.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/dg_54358.png -------------------------------------------------------------------------------- /doc/graphics/dg_normal5_dip60_L10k_W10k_c10k_docs_trim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/dg_normal5_dip60_L10k_W10k_c10k_docs_trim.png -------------------------------------------------------------------------------- /doc/graphics/dg_strikeslip5_dip90_L10k_W10k_c11k_docs_trim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/dg_strikeslip5_dip90_L10k_W10k_c11k_docs_trim.png -------------------------------------------------------------------------------- /doc/graphics/dg_thrust5_dip30_L10k_W10k_c6k_docs_trim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/dg_thrust5_dip30_L10k_W10k_c6k_docs_trim.png -------------------------------------------------------------------------------- /doc/graphics/dx_dy_dz_field_109382.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/dx_dy_dz_field_109382.png -------------------------------------------------------------------------------- /doc/graphics/dynamic_trigger_tuning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/dynamic_trigger_tuning.png -------------------------------------------------------------------------------- /doc/graphics/dz_54358.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/dz_54358.png -------------------------------------------------------------------------------- /doc/graphics/dz_normal5_dip60_L10k_W10k_c10k_docs_trim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/dz_normal5_dip60_L10k_W10k_c10k_docs_trim.png -------------------------------------------------------------------------------- /doc/graphics/dz_strikeslip5_dip90_L10k_W10k_c11k_docs_trim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/dz_strikeslip5_dip90_L10k_W10k_c11k_docs_trim.png -------------------------------------------------------------------------------- /doc/graphics/dz_thrust5_dip30_L10k_W10k_c6k_docs_trim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/dz_thrust5_dip30_L10k_W10k_c6k_docs_trim.png -------------------------------------------------------------------------------- /doc/graphics/event_gravity_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/event_gravity_example.png -------------------------------------------------------------------------------- /doc/graphics/event_insar_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/event_insar_example.png -------------------------------------------------------------------------------- /doc/graphics/example_normal_dip60_with_trace_fault_10000_gravity_uniform_slip1m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/example_normal_dip60_with_trace_fault_10000_gravity_uniform_slip1m.png -------------------------------------------------------------------------------- /doc/graphics/example_vert_strikeslip_with_trace_fault_10000_gravity_uniform_slip5m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/example_vert_strikeslip_with_trace_fault_10000_gravity_uniform_slip5m.png -------------------------------------------------------------------------------- /doc/graphics/freq_mag_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/freq_mag_example.png -------------------------------------------------------------------------------- /doc/graphics/greens_fitting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/greens_fitting.png -------------------------------------------------------------------------------- /doc/graphics/mag_mean_slip_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/mag_mean_slip_example.png -------------------------------------------------------------------------------- /doc/graphics/mag_mean_slip_minMag_5-0_events_ALLCAL2_VQmeshed_3km_25kyr_dyn1-3_GreensLimits_VQstressDrops0-3_AllowNegSlips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/mag_mean_slip_minMag_5-0_events_ALLCAL2_VQmeshed_3km_25kyr_dyn1-3_GreensLimits_VQstressDrops0-3_AllowNegSlips.png -------------------------------------------------------------------------------- /doc/graphics/mag_rupt_area_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/mag_rupt_area_example.png -------------------------------------------------------------------------------- /doc/graphics/mag_rupt_area_minMag_5-0_events_ALLCAL2_VQmeshed_3km_25kyr_dyn1-3_GreensLimits_VQstressDrops0-3_AllowNegSlips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/mag_rupt_area_minMag_5-0_events_ALLCAL2_VQmeshed_3km_25kyr_dyn1-3_GreensLimits_VQstressDrops0-3_AllowNegSlips.png -------------------------------------------------------------------------------- /doc/graphics/memory_reqs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/memory_reqs.pdf -------------------------------------------------------------------------------- /doc/graphics/min_magnitude.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/min_magnitude.pdf -------------------------------------------------------------------------------- /doc/graphics/overlay_fields_109382.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/overlay_fields_109382.png -------------------------------------------------------------------------------- /doc/graphics/sigma_s_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/sigma_s_front.png -------------------------------------------------------------------------------- /doc/graphics/sigma_s_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/sigma_s_top.png -------------------------------------------------------------------------------- /doc/graphics/single_fault_4k.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/single_fault_4k.jpg -------------------------------------------------------------------------------- /doc/graphics/single_fault_6k.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/single_fault_6k.jpg -------------------------------------------------------------------------------- /doc/graphics/slip_time_series_diagnostic_yearMin0_yearMax100_SAF-Mendo_Offs_events_ALLCAL2_VQmeshed_3km_dyn1-3_newStressDrops_GreenLimits_stressDropFactor0-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/slip_time_series_diagnostic_yearMin0_yearMax100_SAF-Mendo_Offs_events_ALLCAL2_VQmeshed_3km_dyn1-3_newStressDrops_GreenLimits_stressDropFactor0-3.png -------------------------------------------------------------------------------- /doc/graphics/slip_time_series_diagnostic_yearMin0_yearMax200_events_ALLCAL2_VQmeshed_3km_dyn1-3_newStressDrops_GreenLimits_stressDropFactor0-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/slip_time_series_diagnostic_yearMin0_yearMax200_events_ALLCAL2_VQmeshed_3km_dyn1-3_newStressDrops_GreenLimits_stressDropFactor0-3.png -------------------------------------------------------------------------------- /doc/graphics/spacetime_yearMin21000_yearMax23000_triggeredByFault_-153_minMag_None_event_East.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/spacetime_yearMin21000_yearMax23000_triggeredByFault_-153_minMag_None_event_East.png -------------------------------------------------------------------------------- /doc/graphics/stress_drop_tuning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/stress_drop_tuning.png -------------------------------------------------------------------------------- /doc/graphics/tuning_parameters_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/tuning_parameters_1.png -------------------------------------------------------------------------------- /doc/graphics/tuning_parameters_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/tuning_parameters_2.png -------------------------------------------------------------------------------- /doc/graphics/tuning_parameters_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/tuning_parameters_3.png -------------------------------------------------------------------------------- /doc/graphics/tuning_parameters_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/tuning_parameters_4.png -------------------------------------------------------------------------------- /doc/graphics/vc_visualization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/vc_visualization.png -------------------------------------------------------------------------------- /doc/graphics/velocity_tapering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/velocity_tapering.png -------------------------------------------------------------------------------- /doc/graphics/waiting_times_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/graphics/waiting_times_example.png -------------------------------------------------------------------------------- /doc/vq.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodynamics/vq/d67f4dfc3b40a35c0815fa075ef0ee956bfaedfe/doc/vq.tex -------------------------------------------------------------------------------- /docker/virtualquake-buildenv-bionic/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ubuntu:bionic 2 | 3 | RUN apt update && \ 4 | DEBIAN_FRONTEND='noninteractive' \ 5 | DEBCONF_NONINTERACTIVE_SEEN='true' \ 6 | apt install --yes \ 7 | build-essential \ 8 | cmake \ 9 | doxygen \ 10 | git \ 11 | libgeographic-dev \ 12 | libgomp1 \ 13 | libopenmpi-dev \ 14 | openmpi-bin \ 15 | openmpi-common \ 16 | libhdf5-openmpi-dev \ 17 | libpython2.7-dev \ 18 | ninja-build \ 19 | python2.7 \ 20 | python-h5py \ 21 | python-matplotlib \ 22 | python-mpltoolkits.basemap \ 23 | swig 24 | -------------------------------------------------------------------------------- /docker/virtualquake-buildenv-bionic/README.md: -------------------------------------------------------------------------------- 1 | Build environment for VirtualQuake using the Ubuntu Bionic Docker container. 2 | -------------------------------------------------------------------------------- /docker/virtualquake-buildenv-xenial/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ubuntu:xenial 2 | 3 | RUN apt update && \ 4 | DEBIAN_FRONTEND='noninteractive' \ 5 | DEBCONF_NONINTERACTIVE_SEEN='true' \ 6 | apt install --yes \ 7 | build-essential \ 8 | cmake \ 9 | doxygen \ 10 | git \ 11 | libgeographic-dev \ 12 | libgomp1 \ 13 | libhdf5-mpich-dev \ 14 | libmpich-dev \ 15 | libpython2.7-dev \ 16 | ninja-build \ 17 | python2.7 \ 18 | python-h5py \ 19 | python-matplotlib \ 20 | python-mpltoolkits.basemap \ 21 | swig 22 | -------------------------------------------------------------------------------- /docker/virtualquake-buildenv-xenial/README.md: -------------------------------------------------------------------------------- 1 | Build environment for VirtualQuake using the Ubuntu Xenial Docker container. 2 | -------------------------------------------------------------------------------- /docker/virtualquake/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ubuntu:16.04 2 | 3 | RUN apt-get update && apt-get install -y \ 4 | build-essential \ 5 | cmake \ 6 | doxygen \ 7 | git \ 8 | libgeographic-dev \ 9 | libgomp1 \ 10 | libopenmpi-dev \ 11 | openmpi-bin \ 12 | openmpi-common \ 13 | libhdf5-openmpi-10 \ 14 | libhdf5-openmpi-dev \ 15 | libpython2.7-dev \ 16 | libpython2.7 \ 17 | python2.7 \ 18 | python-h5py \ 19 | python-matplotlib \ 20 | python-mpltoolkits.basemap \ 21 | swig \ 22 | vim \ 23 | nano 24 | 25 | RUN groupadd \ 26 | --system \ 27 | virtualquake \ 28 | && useradd \ 29 | --create-home \ 30 | --gid virtualquake \ 31 | --no-log-init \ 32 | --system \ 33 | virtualquake 34 | 35 | WORKDIR /home/virtualquake 36 | 37 | ADD vq-3.1.1.tar.gz /home/virtualquake/ 38 | 39 | RUN cd vq-3.1.1 \ 40 | && mkdir -p build \ 41 | && cd build \ 42 | && cmake \ 43 | -DGeographicLib_INCLUDE_DIRS="/usr/include/GeographicLib" \ 44 | -DGeographicLib_LIBRARY_DIRS="/usr/lib/x86_64-linux-gnu/" \ 45 | .. \ 46 | && cmake --build . -- all \ 47 | && cmake --build . -- install \ 48 | && mkdir /home/virtualquake/external_volume 49 | 50 | COPY entrypoint.sh /etc 51 | 52 | ENTRYPOINT ["/bin/bash", "/etc/entrypoint.sh"] 53 | -------------------------------------------------------------------------------- /docker/virtualquake/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | if [ -n "${HOST_UID}" ] 4 | then 5 | groupmod --gid=$HOST_GID virtualquake 6 | usermod --uid=$HOST_UID virtualquake 7 | fi 8 | chown -R virtualquake:virtualquake /home/virtualquake/ 9 | cd /home/virtualquake/external_volume 10 | su virtualquake 11 | -------------------------------------------------------------------------------- /examples/ca_model/gen_ca_model.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | if [ $# -ne 1 ] 4 | then 5 | echo "$0 " 6 | exit -1 7 | fi 8 | 9 | ELEM_SIZE=$1 10 | 11 | # Create the command line argument based on the list of trace files in the directory 12 | #FILE_LIST=`ls ../fault_traces/ca_traces/trace_SAF-Parkfield.txt ../fault_traces/ca_traces/trace_Hayward.txt` 13 | 14 | # The list below grabs all California fault sections into 15 | # one large fault model. 16 | FILE_LIST=`ls ../fault_traces/ca_traces/trace_*.txt` 17 | 18 | EDITOR_ARGS= 19 | for FILE in $FILE_LIST 20 | do 21 | EDITOR_ARGS="$EDITOR_ARGS--import_file=$FILE --import_file_type=trace --import_trace_element_size=$ELEM_SIZE " 22 | done 23 | 24 | ../../build/src/mesher $EDITOR_ARGS \ 25 | --stress_drop_factor=0.4 \ 26 | --taper_fault_method=none \ 27 | --export_file=all_cal_fault_${ELEM_SIZE}.txt \ 28 | --export_file_type=text \ 29 | --export_file=all_cal_fault_${ELEM_SIZE}.kml \ 30 | --export_file_type=kml \ 31 | --export_file=all_cal_fault_${ELEM_SIZE}.h5 \ 32 | --export_file_type=hdf5 \ 33 | --export_eqsim_geometry=all_cal_${ELEM_SIZE}.dat \ 34 | --merge_duplicate_verts 35 | 36 | -------------------------------------------------------------------------------- /examples/example_params.prm: -------------------------------------------------------------------------------- 1 | sim.version = 2.0 2 | sim.time.end_year = 10000 3 | sim.greens.method = standard 4 | sim.greens.use_normal = true 5 | sim.greens.offdiag_multiplier = 0.7 6 | sim.friction.dynamic = DYNAMIC 7 | sim.file.input = INPUTFILE.txt 8 | sim.file.input_type = text 9 | sim.file.output_event = events_ELEM_SIZE.txt 10 | sim.file.output_sweep = sweeps_ELEM_SIZE.txt 11 | sim.file.output_event_type = text 12 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Antelope_Vlly.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 106 106 11 Antelope_Vlly# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 38.7612 -119.575 0 12000 0.025 0 -90 119.983 3e+10 3.2e+10 16 | 38.7376 -119.558 0 12000 0.101 0 -90 120.008 3e+10 3.2e+10 17 | 38.7117 -119.55 0 12000 0.101 0 -90 120.097 3e+10 3.2e+10 18 | 38.6854 -119.543 0 12000 0.101 0 -90 120.054 3e+10 3.2e+10 19 | 38.6619 -119.523 0 12000 0.101 0 -90 120.097 3e+10 3.2e+10 20 | 38.635 -119.521 0 12000 0.101 0 -90 120.177 3e+10 3.2e+10 21 | 38.6079 -119.521 0 12000 0.101 0 -90 120.038 3e+10 3.2e+10 22 | 38.5815 -119.515 0 12000 0.101 0 -90 120.185 3e+10 3.2e+10 23 | 38.5554 -119.506 0 12000 0.101 0 -90 120.096 3e+10 3.2e+10 24 | 38.5299 -119.494 0 12000 0.025 0 -90 120.123 3e+10 3.2e+10 25 | 38.5051 -119.481 0 12000 0.025 0 -90 120.123 3e+10 3.2e+10 26 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_B_Elpark.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 24 24 7 B_Elpark# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 34.1015 -118.287 -10000 12000 0.041 0 90 130.113 3e+10 3.2e+10 16 | 34.0822 -118.264 -10000 12000 0.165 0 90 129.995 3e+10 3.2e+10 17 | 34.0674 -118.237 -10000 12000 0.165 0 90 130.038 3e+10 3.2e+10 18 | 34.0593 -118.206 -10000 12000 0.165 0 90 129.875 3e+10 3.2e+10 19 | 34.057 -118.173 -10000 12000 0.165 0 90 129.845 3e+10 3.2e+10 20 | 34.0593 -118.141 -10000 12000 0.041 0 90 129.961 3e+10 3.2e+10 21 | 34.0651 -118.109 -10000 12000 0.041 0 90 129.961 3e+10 3.2e+10 22 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_B_Northridge.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 19 19 11 B_Northridge# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 34.4089 -118.688 -5000 12000 0.048 0 90 42.0284 3e+10 3.2e+10 16 | 34.3951 -118.66 -5000 12000 0.19 0 90 42.0313 3e+10 3.2e+10 17 | 34.3812 -118.632 -5000 12000 0.19 0 90 42.0298 3e+10 3.2e+10 18 | 34.3675 -118.604 -5000 12000 0.19 0 90 41.9092 3e+10 3.2e+10 19 | 34.3536 -118.576 -5000 12000 0.19 0 90 42.0269 3e+10 3.2e+10 20 | 34.3397 -118.548 -5000 12000 0.19 0 90 42.0254 3e+10 3.2e+10 21 | 34.326 -118.52 -5000 12000 0.19 0 90 41.9047 3e+10 3.2e+10 22 | 34.312 -118.492 -5000 12000 0.19 0 90 42.0224 3e+10 3.2e+10 23 | 34.2982 -118.464 -5000 12000 0.19 0 90 42.0209 3e+10 3.2e+10 24 | 34.2844 -118.436 -5000 12000 0.048 0 90 41.9002 3e+10 3.2e+10 25 | 34.2703 -118.408 -5000 12000 0.048 0 90 41.9002 3e+10 3.2e+10 26 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Battle_Creek.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 129 129 10 Battle_Creek# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 40.4663 -121.868 0 12000 0.016 0 -90 105.017 3e+10 3.2e+10 16 | 40.4595 -121.903 0 12000 0.063 0 -90 104.983 3e+10 3.2e+10 17 | 40.4527 -121.937 0 12000 0.063 0 -90 105.014 3e+10 3.2e+10 18 | 40.4459 -121.971 0 12000 0.063 0 -90 105.017 3e+10 3.2e+10 19 | 40.4391 -122.006 0 12000 0.063 0 -90 105.016 3e+10 3.2e+10 20 | 40.4323 -122.04 0 12000 0.063 0 -90 105.016 3e+10 3.2e+10 21 | 40.4254 -122.074 0 12000 0.063 0 -90 105.016 3e+10 3.2e+10 22 | 40.4186 -122.108 0 12000 0.063 0 -90 105.008 3e+10 3.2e+10 23 | 40.4117 -122.142 0 12000 0.016 0 -90 105.016 3e+10 3.2e+10 24 | 40.4061 -122.177 0 12000 0.016 0 -90 105.016 3e+10 3.2e+10 25 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Bigpine.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 64 64 14 Bigpine# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 34.8115 -119.018 0 12000 0 0 0 90 3e+10 3.2e+10 16 | 34.7938 -119.043 0 12000 0.058 0 0 90 3e+10 3.2e+10 17 | 34.7787 -119.07 0 12000 0.074 0 0 90 3e+10 3.2e+10 18 | 34.7661 -119.099 0 12000 0.082 0 0 90 3e+10 3.2e+10 19 | 34.7555 -119.129 0 12000 0.096 0 0 90 3e+10 3.2e+10 20 | 34.7463 -119.16 0 12000 0.099 0 0 90 3e+10 3.2e+10 21 | 34.7374 -119.191 0 12000 0.099 0 0 90 3e+10 3.2e+10 22 | 34.7273 -119.221 0 12000 0.099 0 0 90 3e+10 3.2e+10 23 | 34.7143 -119.25 0 12000 0.096 0 0 90 3e+10 3.2e+10 24 | 34.6983 -119.277 0 12000 0.082 0 0 90 3e+10 3.2e+10 25 | 34.6825 -119.304 0 12000 0.074 0 0 90 3e+10 3.2e+10 26 | 34.6715 -119.334 0 12000 0.058 0 0 90 3e+10 3.2e+10 27 | 34.6659 -119.366 0 12000 0 0 0 90 3e+10 3.2e+10 28 | 34.6645 -119.399 0 12000 0 0 0 90 3e+10 3.2e+10 29 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Birch_Ck.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 86 86 6 Birch_Ck# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 37.0849 -118.41 0 12000 0.089 0 -90 120.125 3e+10 3.2e+10 16 | 37.0595 -118.398 0 12000 0.089 0 -90 120.049 3e+10 3.2e+10 17 | 37.0422 -118.371 0 12000 0.089 0 -90 120.175 3e+10 3.2e+10 18 | 37.0196 -118.352 0 12000 0.089 0 -90 120.036 3e+10 3.2e+10 19 | 36.9942 -118.34 0 12000 0.089 0 -90 120.048 3e+10 3.2e+10 20 | 36.9676 -118.335 0 12000 0.089 0 -90 120.048 3e+10 3.2e+10 21 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Borrego.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 5 5 13 Borrego# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 33.2036 -116.199 0 12000 0.505 0 180 90 3e+10 3.2e+10 16 | 33.1847 -116.176 0 12000 0.505 0 180 90 3e+10 3.2e+10 17 | 33.1658 -116.153 0 12000 0.505 0 180 90 3e+10 3.2e+10 18 | 33.1467 -116.13 0 12000 0.505 0 180 90 3e+10 3.2e+10 19 | 33.1278 -116.107 0 12000 0.505 0 180 90 3e+10 3.2e+10 20 | 33.109 -116.084 0 12000 0.505 0 180 90 3e+10 3.2e+10 21 | 33.0903 -116.061 0 12000 0.508 0 180 90 3e+10 3.2e+10 22 | 33.072 -116.037 0 12000 0.513 0 180 90 3e+10 3.2e+10 23 | 33.054 -116.013 0 12000 0.521 0 180 90 3e+10 3.2e+10 24 | 33.0364 -115.989 0 12000 0.531 0 180 90 3e+10 3.2e+10 25 | 33.0192 -115.964 0 12000 0.544 0 180 90 3e+10 3.2e+10 26 | 33.0027 -115.938 0 12000 0.559 0 180 90 3e+10 3.2e+10 27 | 32.9871 -115.912 0 12000 0.559 0 180 90 3e+10 3.2e+10 28 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Brawley.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 2 2 16 Brawley# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 33.3343 -115.701 0 12000 0 0 180 90 3e+10 3.2e+10 16 | 33.3096 -115.688 0 12000 0 0 180 90 3e+10 3.2e+10 17 | 33.2848 -115.675 0 12000 0 0 180 90 3e+10 3.2e+10 18 | 33.26 -115.662 0 12000 0 0 180 90 3e+10 3.2e+10 19 | 33.2352 -115.65 0 12000 0 0 180 90 3e+10 3.2e+10 20 | 33.2105 -115.637 0 12000 0 0 180 90 3e+10 3.2e+10 21 | 33.1857 -115.624 0 12000 0 0 180 90 3e+10 3.2e+10 22 | 33.1609 -115.611 0 12000 0 0 180 90 3e+10 3.2e+10 23 | 33.1361 -115.599 0 12000 0 0 180 90 3e+10 3.2e+10 24 | 33.1113 -115.586 0 12000 0 0 180 90 3e+10 3.2e+10 25 | 33.0865 -115.573 0 12000 0 0 180 90 3e+10 3.2e+10 26 | 33.0618 -115.56 0 12000 0 0 180 90 3e+10 3.2e+10 27 | 33.037 -115.548 0 12000 0 0 180 90 3e+10 3.2e+10 28 | 33.0122 -115.535 0 12000 0 0 180 90 3e+10 3.2e+10 29 | 32.9874 -115.522 0 12000 0 0 180 90 3e+10 3.2e+10 30 | 32.9628 -115.509 0 12000 0 0 180 90 3e+10 3.2e+10 31 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Burnt_Mtn.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 79 79 7 Burnt_Mtn# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 34.1082 -116.407 0 12000 0.019 0 180 90 3e+10 3.2e+10 16 | 34.081 -116.408 0 12000 0.076 0 180 90 3e+10 3.2e+10 17 | 34.0546 -116.401 0 12000 0.076 0 180 90 3e+10 3.2e+10 18 | 34.0293 -116.389 0 12000 0.076 0 180 90 3e+10 3.2e+10 19 | 34.0032 -116.381 0 12000 0.076 0 180 90 3e+10 3.2e+10 20 | 33.9764 -116.377 0 12000 0.019 0 180 90 3e+10 3.2e+10 21 | 33.9494 -116.376 0 12000 0.019 0 180 90 3e+10 3.2e+10 22 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Calaveras.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 16 16 7 Calaveras# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 36.9884 -121.466 0 12000 1.848 0 180 90 3e+10 3.2e+10 16 | 36.9633 -121.454 0 12000 1.803 0 180 90 3e+10 3.2e+10 17 | 36.9381 -121.442 0 12000 1.533 0 180 90 3e+10 3.2e+10 18 | 36.9126 -121.431 0 12000 1.388 0 180 90 3e+10 3.2e+10 19 | 36.8871 -121.42 0 12000 1.095 0 180 90 3e+10 3.2e+10 20 | 36.8615 -121.41 0 12000 0 0 180 90 3e+10 3.2e+10 21 | 36.8353 -121.401 0 12000 0 0 180 90 3e+10 3.2e+10 22 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Casmalia.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 81 81 10 Casmalia# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 34.9321 -120.632 0 12000 0.009 0 90 74.9528 3e+10 3.2e+10 16 | 34.9254 -120.599 0 12000 0.038 0 90 75.1316 3e+10 3.2e+10 17 | 34.9134 -120.57 0 12000 0.038 0 90 74.9597 3e+10 3.2e+10 18 | 34.8963 -120.544 0 12000 0.038 0 90 75.0775 3e+10 3.2e+10 19 | 34.8777 -120.52 0 12000 0.038 0 90 74.9442 3e+10 3.2e+10 20 | 34.8605 -120.495 0 12000 0.038 0 90 74.8961 3e+10 3.2e+10 21 | 34.8483 -120.465 0 12000 0.038 0 90 74.8816 3e+10 3.2e+10 22 | 34.8481 -120.432 0 12000 0.038 0 90 75.0839 3e+10 3.2e+10 23 | 34.8465 -120.397 0 12000 0.009 0 90 75.0473 3e+10 3.2e+10 24 | 34.8279 -120.373 0 12000 0.009 0 90 75.0473 3e+10 3.2e+10 25 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Cerro_Prieto-N.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 87 87 16 Cerro_Prieto-N# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 32.5034 -115.432 0 12000 0 0 180 90 3e+10 3.2e+10 16 | 32.4847 -115.409 0 12000 1.46 0 180 90 3e+10 3.2e+10 17 | 32.4659 -115.386 0 12000 1.85 0 180 90 3e+10 3.2e+10 18 | 32.447 -115.363 0 12000 2.044 0 180 90 3e+10 3.2e+10 19 | 32.4282 -115.34 0 12000 2.404 0 180 90 3e+10 3.2e+10 20 | 32.4093 -115.317 0 12000 2.465 0 180 90 3e+10 3.2e+10 21 | 32.3905 -115.294 0 12000 2.501 0 180 90 3e+10 3.2e+10 22 | 32.3716 -115.271 0 12000 2.527 0 180 90 3e+10 3.2e+10 23 | 32.3526 -115.249 0 12000 2.527 0 180 90 3e+10 3.2e+10 24 | 32.3338 -115.226 0 12000 2.514 0 180 90 3e+10 3.2e+10 25 | 32.3149 -115.203 0 12000 2.488 0 180 90 3e+10 3.2e+10 26 | 32.2959 -115.181 0 12000 2.449 0 180 90 3e+10 3.2e+10 27 | 32.2769 -115.158 0 12000 2.398 0 180 90 3e+10 3.2e+10 28 | 32.2579 -115.135 0 12000 2.333 0 180 90 3e+10 3.2e+10 29 | 32.2389 -115.113 0 12000 2.256 0 180 90 3e+10 3.2e+10 30 | 32.2203 -115.09 0 12000 2.256 0 180 90 3e+10 3.2e+10 31 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Cerro_Prieto-W.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 88 88 15 Cerro_Prieto-W# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 32.0609 -114.945 0 12000 0 0 180 90 3e+10 3.2e+10 16 | 32.039 -114.926 0 12000 0.365 0 180 90 3e+10 3.2e+10 17 | 32.0171 -114.908 0 12000 0.463 0 180 90 3e+10 3.2e+10 18 | 31.9953 -114.889 0 12000 0.511 0 180 90 3e+10 3.2e+10 19 | 31.9734 -114.87 0 12000 0.601 0 180 90 3e+10 3.2e+10 20 | 31.9515 -114.852 0 12000 0.616 0 180 90 3e+10 3.2e+10 21 | 31.9296 -114.833 0 12000 0.625 0 180 90 3e+10 3.2e+10 22 | 31.9078 -114.815 0 12000 0.625 0 180 90 3e+10 3.2e+10 23 | 31.8859 -114.796 0 12000 0.616 0 180 90 3e+10 3.2e+10 24 | 31.864 -114.777 0 12000 0.601 0 180 90 3e+10 3.2e+10 25 | 31.8421 -114.759 0 12000 0.511 0 180 90 3e+10 3.2e+10 26 | 31.8202 -114.74 0 12000 0.463 0 180 90 3e+10 3.2e+10 27 | 31.7983 -114.722 0 12000 0.365 0 180 90 3e+10 3.2e+10 28 | 31.7764 -114.703 0 12000 0 0 180 90 3e+10 3.2e+10 29 | 31.755 -114.684 0 12000 0 0 180 90 3e+10 3.2e+10 30 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Chino_Central.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 57 57 9 Chino_Central# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 34.0224 -117.736 0 12000 0.032 0 135 65.0515 3e+10 3.2e+10 16 | 34.0008 -117.716 0 12000 0.127 0 135 65.0478 3e+10 3.2e+10 17 | 33.9792 -117.697 0 12000 0.127 0 135 65.0488 3e+10 3.2e+10 18 | 33.9576 -117.677 0 12000 0.127 0 135 65.0405 3e+10 3.2e+10 19 | 33.936 -117.658 0 12000 0.127 0 135 65.0369 3e+10 3.2e+10 20 | 33.9144 -117.638 0 12000 0.127 0 135 65.0379 3e+10 3.2e+10 21 | 33.8928 -117.619 0 12000 0.127 0 135 65.0192 3e+10 3.2e+10 22 | 33.8711 -117.599 0 12000 0.032 0 135 65.0259 3e+10 3.2e+10 23 | 33.8495 -117.58 0 12000 0.032 0 135 65.0259 3e+10 3.2e+10 24 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Clamshell.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 52 52 6 Clamshell# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 34.2507 -117.858 0 12000 0.063 0 90 44.9696 3e+10 3.2e+10 16 | 34.2403 -117.889 0 12000 0.063 0 90 44.9479 3e+10 3.2e+10 17 | 34.2402 -117.922 0 12000 0.063 0 90 45.0419 3e+10 3.2e+10 18 | 34.2316 -117.953 0 12000 0.063 0 90 44.8882 3e+10 3.2e+10 19 | 34.2157 -117.979 0 12000 0.063 0 90 45.0269 3e+10 3.2e+10 20 | 34.1959 -118.002 0 12000 0.063 0 90 45.0269 3e+10 3.2e+10 21 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Cleghorn.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 38 38 9 Cleghorn# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 34.3021 -117.452 0 12000 0.095 0 0 90 3e+10 3.2e+10 16 | 34.2875 -117.424 0 12000 0.379 0 0 90 3e+10 3.2e+10 17 | 34.2843 -117.391 0 12000 0.379 0 0 90 3e+10 3.2e+10 18 | 34.2988 -117.358 0 12000 0.379 0 0 90 3e+10 3.2e+10 19 | 34.2845 -117.331 0 12000 0.379 0 0 90 3e+10 3.2e+10 20 | 34.2711 -117.302 0 12000 0.379 0 0 90 3e+10 3.2e+10 21 | 34.2731 -117.269 0 12000 0.379 0 0 90 3e+10 3.2e+10 22 | 34.2767 -117.237 0 12000 0.095 0 0 90 3e+10 3.2e+10 23 | 34.2823 -117.205 0 12000 0.095 0 0 90 3e+10 3.2e+10 24 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Collayomi.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 102 102 10 Collayomi# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 38.9822 -122.852 0 12000 0.019 0 180 90 3e+10 3.2e+10 16 | 38.9597 -122.833 0 12000 0.075 0 180 90 3e+10 3.2e+10 17 | 38.9371 -122.814 0 12000 0.075 0 180 90 3e+10 3.2e+10 18 | 38.9146 -122.795 0 12000 0.075 0 180 90 3e+10 3.2e+10 19 | 38.8921 -122.776 0 12000 0.075 0 180 90 3e+10 3.2e+10 20 | 38.8695 -122.757 0 12000 0.075 0 180 90 3e+10 3.2e+10 21 | 38.847 -122.738 0 12000 0.075 0 180 90 3e+10 3.2e+10 22 | 38.8245 -122.719 0 12000 0.075 0 180 90 3e+10 3.2e+10 23 | 38.8019 -122.7 0 12000 0.019 0 180 90 3e+10 3.2e+10 24 | 38.7785 -122.683 0 12000 0.019 0 180 90 3e+10 3.2e+10 25 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Concord.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 15 15 8 Concord# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 38.0487 -122.091 0 12000 0.127 0 180 90 3e+10 3.2e+10 16 | 38.0253 -122.074 0 12000 0.507 0 180 90 3e+10 3.2e+10 17 | 38.002 -122.056 0 12000 0.507 0 180 90 3e+10 3.2e+10 18 | 37.9786 -122.039 0 12000 0.507 0 180 90 3e+10 3.2e+10 19 | 37.9553 -122.022 0 12000 0.507 0 180 90 3e+10 3.2e+10 20 | 37.9319 -122.005 0 12000 0.507 0 180 90 3e+10 3.2e+10 21 | 37.9085 -121.988 0 12000 0.127 0 180 90 3e+10 3.2e+10 22 | 37.8845 -121.972 0 12000 0.127 0 180 90 3e+10 3.2e+10 23 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Coyote_Cr.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 5 5 12 Coyote_Cr# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 33.4075 -116.456 0 12000 0 0 180 90 3e+10 3.2e+10 16 | 33.3889 -116.433 0 12000 0.293 0 180 90 3e+10 3.2e+10 17 | 33.3703 -116.41 0 12000 0.371 0 180 90 3e+10 3.2e+10 18 | 33.3518 -116.386 0 12000 0.41 0 180 90 3e+10 3.2e+10 19 | 33.3334 -116.363 0 12000 0.482 0 180 90 3e+10 3.2e+10 20 | 33.3149 -116.339 0 12000 0.494 0 180 90 3e+10 3.2e+10 21 | 33.2965 -116.315 0 12000 0.502 0 180 90 3e+10 3.2e+10 22 | 33.278 -116.292 0 12000 0.507 0 180 90 3e+10 3.2e+10 23 | 33.2596 -116.269 0 12000 0.507 0 180 90 3e+10 3.2e+10 24 | 33.241 -116.245 0 12000 0.507 0 180 90 3e+10 3.2e+10 25 | 33.2224 -116.222 0 12000 0.507 0 180 90 3e+10 3.2e+10 26 | 33.2038 -116.198 0 12000 0.507 0 180 90 3e+10 3.2e+10 27 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Coyote_Mt..txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 7 7 14 Coyote_Mt.# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 32.9617 -116.356 0 12000 0.561 0 180 90 3e+10 3.2e+10 16 | 32.9468 -116.329 0 12000 0.546 0 180 90 3e+10 3.2e+10 17 | 32.9321 -116.303 0 12000 0.533 0 180 90 3e+10 3.2e+10 18 | 32.9174 -116.275 0 12000 0.522 0 180 90 3e+10 3.2e+10 19 | 32.9029 -116.248 0 12000 0.514 0 180 90 3e+10 3.2e+10 20 | 32.8884 -116.221 0 12000 0.509 0 180 90 3e+10 3.2e+10 21 | 32.8741 -116.194 0 12000 0.502 0 180 90 3e+10 3.2e+10 22 | 32.8599 -116.167 0 12000 0.494 0 180 90 3e+10 3.2e+10 23 | 32.8458 -116.14 0 12000 0.482 0 180 90 3e+10 3.2e+10 24 | 32.8317 -116.112 0 12000 0.41 0 180 90 3e+10 3.2e+10 25 | 32.8177 -116.085 0 12000 0.371 0 180 90 3e+10 3.2e+10 26 | 32.804 -116.057 0 12000 0.293 0 180 90 3e+10 3.2e+10 27 | 32.7903 -116.03 0 12000 0 0 180 90 3e+10 3.2e+10 28 | 32.7771 -116.002 0 12000 0 0 180 90 3e+10 3.2e+10 29 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Cucamonga.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 22 22 10 Cucamonga# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 34.1805 -117.45 0 12000 0.159 0 90 44.9898 3e+10 3.2e+10 16 | 34.175 -117.482 0 12000 0.634 0 90 44.9049 3e+10 3.2e+10 17 | 34.1736 -117.515 0 12000 0.634 0 90 44.9612 3e+10 3.2e+10 18 | 34.1752 -117.547 0 12000 0.634 0 90 44.9611 3e+10 3.2e+10 19 | 34.1702 -117.579 0 12000 0.634 0 90 44.9633 3e+10 3.2e+10 20 | 34.1664 -117.612 0 12000 0.634 0 90 44.9978 3e+10 3.2e+10 21 | 34.1624 -117.644 0 12000 0.634 0 90 44.8619 3e+10 3.2e+10 22 | 34.1535 -117.675 0 12000 0.634 0 90 44.9899 3e+10 3.2e+10 23 | 34.1406 -117.704 0 12000 0.159 0 90 44.9865 3e+10 3.2e+10 24 | 34.1248 -117.73 0 12000 0.159 0 90 44.9865 3e+10 3.2e+10 25 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Deep_Spr.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 94 94 9 Deep_Spr# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 37.4142 -117.942 0 12000 0.025 0 -90 60.0029 3e+10 3.2e+10 16 | 37.3929 -117.963 0 12000 0.101 0 -90 59.9014 3e+10 3.2e+10 17 | 37.3685 -117.978 0 12000 0.101 0 -90 59.8644 3e+10 3.2e+10 18 | 37.3428 -117.988 0 12000 0.101 0 -90 59.8172 3e+10 3.2e+10 19 | 37.3167 -117.997 0 12000 0.101 0 -90 59.8912 3e+10 3.2e+10 20 | 37.2907 -118.006 0 12000 0.101 0 -90 59.8544 3e+10 3.2e+10 21 | 37.2661 -118.021 0 12000 0.101 0 -90 59.8461 3e+10 3.2e+10 22 | 37.2444 -118.041 0 12000 0.025 0 -90 59.9472 3e+10 3.2e+10 23 | 37.2252 -118.065 0 12000 0.025 0 -90 59.9472 3e+10 3.2e+10 24 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Earthqk_Valley.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 8 8 7 Earthqk_Valley# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 33.1706 -116.572 0 12000 0.063 0 180 90 3e+10 3.2e+10 16 | 33.15 -116.551 0 12000 0.253 0 180 90 3e+10 3.2e+10 17 | 33.1311 -116.528 0 12000 0.253 0 180 90 3e+10 3.2e+10 18 | 33.1143 -116.503 0 12000 0.253 0 180 90 3e+10 3.2e+10 19 | 33.0996 -116.476 0 12000 0.253 0 180 90 3e+10 3.2e+10 20 | 33.0873 -116.447 0 12000 0.063 0 180 90 3e+10 3.2e+10 21 | 33.0777 -116.417 0 12000 0.063 0 180 90 3e+10 3.2e+10 22 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Elmore_Ranch.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 48 48 10 Elmore_Ranch# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 33.2206 -115.666 0 12000 0.032 0 0 90 3e+10 3.2e+10 16 | 33.1999 -115.687 0 12000 0.126 0 0 90 3e+10 3.2e+10 17 | 33.1791 -115.707 0 12000 0.126 0 0 90 3e+10 3.2e+10 18 | 33.1583 -115.728 0 12000 0.126 0 0 90 3e+10 3.2e+10 19 | 33.1376 -115.748 0 12000 0.126 0 0 90 3e+10 3.2e+10 20 | 33.1168 -115.769 0 12000 0.126 0 0 90 3e+10 3.2e+10 21 | 33.096 -115.789 0 12000 0.126 0 0 90 3e+10 3.2e+10 22 | 33.0752 -115.81 0 12000 0.126 0 0 90 3e+10 3.2e+10 23 | 33.0544 -115.83 0 12000 0.032 0 0 90 3e+10 3.2e+10 24 | 33.0334 -115.851 0 12000 0.032 0 0 90 3e+10 3.2e+10 25 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Emerson-CopMt.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 76 76 17 Emerson-CopMt# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 34.5115 -116.519 0 12000 0 0 180 90 3e+10 3.2e+10 16 | 34.4902 -116.499 0 12000 0.044 0 180 90 3e+10 3.2e+10 17 | 34.4714 -116.475 0 12000 0.056 0 180 90 3e+10 3.2e+10 18 | 34.4574 -116.447 0 12000 0.061 0 180 90 3e+10 3.2e+10 19 | 34.4453 -116.418 0 12000 0.072 0 180 90 3e+10 3.2e+10 20 | 34.4269 -116.394 0 12000 0.074 0 180 90 3e+10 3.2e+10 21 | 34.4048 -116.375 0 12000 0.075 0 180 90 3e+10 3.2e+10 22 | 34.3823 -116.357 0 12000 0.076 0 180 90 3e+10 3.2e+10 23 | 34.361 -116.337 0 12000 0.076 0 180 90 3e+10 3.2e+10 24 | 34.337 -116.322 0 12000 0.075 0 180 90 3e+10 3.2e+10 25 | 34.3111 -116.312 0 12000 0.074 0 180 90 3e+10 3.2e+10 26 | 34.2848 -116.305 0 12000 0.072 0 180 90 3e+10 3.2e+10 27 | 34.2589 -116.295 0 12000 0.061 0 180 90 3e+10 3.2e+10 28 | 34.2349 -116.279 0 12000 0.056 0 180 90 3e+10 3.2e+10 29 | 34.2179 -116.254 0 12000 0.044 0 180 90 3e+10 3.2e+10 30 | 34.2006 -116.228 0 12000 0 0 180 90 3e+10 3.2e+10 31 | 34.1768 -116.213 0 12000 0 0 180 90 3e+10 3.2e+10 32 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Eureka_Peak.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 80 80 7 Eureka_Peak# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 34.1146 -116.383 0 12000 0.019 0 180 90 3e+10 3.2e+10 16 | 34.093 -116.363 0 12000 0.076 0 180 90 3e+10 3.2e+10 17 | 34.0694 -116.347 0 12000 0.076 0 180 90 3e+10 3.2e+10 18 | 34.0441 -116.336 0 12000 0.076 0 180 90 3e+10 3.2e+10 19 | 34.0175 -116.329 0 12000 0.076 0 180 90 3e+10 3.2e+10 20 | 33.9905 -116.33 0 12000 0.019 0 180 90 3e+10 3.2e+10 21 | 33.9639 -116.336 0 12000 0.019 0 180 90 3e+10 3.2e+10 22 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Fickle_Hill.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 126 126 11 Fickle_Hill# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 40.97 -124.17 0 12000 0.019 0 90 34.9277 3e+10 3.2e+10 16 | 40.9509 -124.145 0 12000 0.076 0 90 34.806 3e+10 3.2e+10 17 | 40.9311 -124.12 0 12000 0.076 0 90 34.8778 3e+10 3.2e+10 18 | 40.9105 -124.097 0 12000 0.076 0 90 34.8318 3e+10 3.2e+10 19 | 40.8893 -124.075 0 12000 0.076 0 90 34.9077 3e+10 3.2e+10 20 | 40.8675 -124.054 0 12000 0.076 0 90 34.9391 3e+10 3.2e+10 21 | 40.845 -124.034 0 12000 0.076 0 90 34.8438 3e+10 3.2e+10 22 | 40.8221 -124.015 0 12000 0.076 0 90 34.798 3e+10 3.2e+10 23 | 40.7986 -123.998 0 12000 0.076 0 90 34.8575 3e+10 3.2e+10 24 | 40.7745 -123.981 0 12000 0.019 0 90 34.9056 3e+10 3.2e+10 25 | 40.7493 -123.969 0 12000 0.019 0 90 34.9056 3e+10 3.2e+10 26 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Genoa.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 107 107 17 Genoa# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 39.0891 -119.84 0 12000 0 0 -90 120.124 3e+10 3.2e+10 16 | 39.0624 -119.83 0 12000 0.146 0 -90 120.228 3e+10 3.2e+10 17 | 39.036 -119.838 0 12000 0.186 0 -90 120.152 3e+10 3.2e+10 18 | 39.0092 -119.84 0 12000 0.205 0 -90 120.048 3e+10 3.2e+10 19 | 38.9821 -119.839 0 12000 0.241 0 -90 120.225 3e+10 3.2e+10 20 | 38.9555 -119.844 0 12000 0.247 0 -90 120.054 3e+10 3.2e+10 21 | 38.9286 -119.849 0 12000 0.251 0 -90 120.101 3e+10 3.2e+10 22 | 38.9011 -119.847 0 12000 0.253 0 -90 120.073 3e+10 3.2e+10 23 | 38.8786 -119.828 0 12000 0.253 0 -90 120.164 3e+10 3.2e+10 24 | 38.8604 -119.799 0 12000 0.251 0 -90 120.057 3e+10 3.2e+10 25 | 38.8333 -119.791 0 12000 0.247 0 -90 120.117 3e+10 3.2e+10 26 | 38.8075 -119.801 0 12000 0.241 0 -90 120.058 3e+10 3.2e+10 27 | 38.7839 -119.819 0 12000 0.205 0 -90 120.13 3e+10 3.2e+10 28 | 38.7578 -119.827 0 12000 0.186 0 -90 120.146 3e+10 3.2e+10 29 | 38.7308 -119.828 0 12000 0.146 0 -90 120.063 3e+10 3.2e+10 30 | 38.7041 -119.822 0 12000 0 0 -90 120.148 3e+10 3.2e+10 31 | 38.6781 -119.813 0 12000 0 0 -90 120.148 3e+10 3.2e+10 32 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Gillem-Big_Cra.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 117 117 12 Gillem-Big_Cra# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 41.9557 -121.575 0 12000 0.032 0 -90 120.171 3e+10 3.2e+10 16 | 41.9295 -121.584 0 12000 0.126 0 -90 120.29 3e+10 3.2e+10 17 | 41.903 -121.59 0 12000 0.126 0 -90 120.235 3e+10 3.2e+10 18 | 41.8762 -121.593 0 12000 0.126 0 -90 120.268 3e+10 3.2e+10 19 | 41.8493 -121.594 0 12000 0.126 0 -90 120.141 3e+10 3.2e+10 20 | 41.8225 -121.59 0 12000 0.126 0 -90 120.136 3e+10 3.2e+10 21 | 41.7962 -121.582 0 12000 0.126 0 -90 120.11 3e+10 3.2e+10 22 | 41.7714 -121.568 0 12000 0.126 0 -90 120.164 3e+10 3.2e+10 23 | 41.7456 -121.552 0 12000 0.126 0 -90 120.173 3e+10 3.2e+10 24 | 41.7183 -121.557 0 12000 0.126 0 -90 120.155 3e+10 3.2e+10 25 | 41.6942 -121.574 0 12000 0.032 0 -90 120.105 3e+10 3.2e+10 26 | 41.6752 -121.6 0 12000 0.032 0 -90 120.105 3e+10 3.2e+10 27 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Glen_Ivy.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 7 7 13 Glen_Ivy# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 33.8581 -117.644 0 12000 0.498 0 180 90 3e+10 3.2e+10 16 | 33.8429 -117.617 0 12000 0.536 0 180 90 3e+10 3.2e+10 17 | 33.8271 -117.591 0 12000 0.569 0 180 90 3e+10 3.2e+10 18 | 33.8107 -117.565 0 12000 0.595 0 180 90 3e+10 3.2e+10 19 | 33.7937 -117.54 0 12000 0.614 0 180 90 3e+10 3.2e+10 20 | 33.7762 -117.515 0 12000 0.627 0 180 90 3e+10 3.2e+10 21 | 33.7582 -117.491 0 12000 0.633 0 180 90 3e+10 3.2e+10 22 | 33.74 -117.467 0 12000 0.633 0 180 90 3e+10 3.2e+10 23 | 33.7214 -117.444 0 12000 0.633 0 180 90 3e+10 3.2e+10 24 | 33.7027 -117.42 0 12000 0.633 0 180 90 3e+10 3.2e+10 25 | 33.6837 -117.397 0 12000 0.633 0 180 90 3e+10 3.2e+10 26 | 33.6647 -117.374 0 12000 0.633 0 180 90 3e+10 3.2e+10 27 | 33.6457 -117.351 0 12000 0.633 0 180 90 3e+10 3.2e+10 28 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Great_Val_1.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 130 130 15 Great_Val_1# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 39.6652 -122.298 -7000 12000 0 0 90 14.8846 3e+10 3.2e+10 16 | 39.6382 -122.297 -7000 12000 0.007 0 90 14.9168 3e+10 3.2e+10 17 | 39.6113 -122.296 -7000 12000 0.009 0 90 14.9117 3e+10 3.2e+10 18 | 39.5844 -122.294 -7000 12000 0.01 0 90 14.9036 3e+10 3.2e+10 19 | 39.5574 -122.293 -7000 12000 0.012 0 90 14.9012 3e+10 3.2e+10 20 | 39.5305 -122.292 -7000 12000 0.012 0 90 14.896 3e+10 3.2e+10 21 | 39.5035 -122.29 -7000 12000 0.012 0 90 14.888 3e+10 3.2e+10 22 | 39.4766 -122.289 -7000 12000 0.012 0 90 14.8857 3e+10 3.2e+10 23 | 39.4497 -122.288 -7000 12000 0.012 0 90 14.9152 3e+10 3.2e+10 24 | 39.4227 -122.286 -7000 12000 0.012 0 90 14.9129 3e+10 3.2e+10 25 | 39.3958 -122.285 -7000 12000 0.01 0 90 14.9078 3e+10 3.2e+10 26 | 39.3688 -122.284 -7000 12000 0.009 0 90 14.9026 3e+10 3.2e+10 27 | 39.3419 -122.283 -7000 12000 0.007 0 90 14.8974 3e+10 3.2e+10 28 | 39.315 -122.281 -7000 12000 0 0 90 14.8922 3e+10 3.2e+10 29 | 39.288 -122.282 -7000 12000 0 0 90 14.8922 3e+10 3.2e+10 30 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Great_Val_10.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 139 139 8 Great_Val_10# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 36.7877 -120.75 -7000 12000 0.047 0 90 14.9679 3e+10 3.2e+10 16 | 36.7639 -120.734 -7000 12000 0.188 0 90 14.9645 3e+10 3.2e+10 17 | 36.74 -120.718 -7000 12000 0.188 0 90 14.9955 3e+10 3.2e+10 18 | 36.7162 -120.703 -7000 12000 0.188 0 90 14.9921 3e+10 3.2e+10 19 | 36.6924 -120.687 -7000 12000 0.188 0 90 14.9886 3e+10 3.2e+10 20 | 36.6685 -120.671 -7000 12000 0.188 0 90 14.9888 3e+10 3.2e+10 21 | 36.6447 -120.656 -7000 12000 0.047 0 90 14.9854 3e+10 3.2e+10 22 | 36.6205 -120.641 -7000 12000 0.047 0 90 14.9854 3e+10 3.2e+10 23 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Great_Val_11.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 140 140 9 Great_Val_11# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 36.6323 -120.64 -7000 12000 0.047 0 90 15.0092 3e+10 3.2e+10 16 | 36.6144 -120.615 -7000 12000 0.188 0 90 15.0077 3e+10 3.2e+10 17 | 36.5966 -120.59 -7000 12000 0.188 0 90 15.0333 3e+10 3.2e+10 18 | 36.5787 -120.564 -7000 12000 0.188 0 90 15.0318 3e+10 3.2e+10 19 | 36.5609 -120.539 -7000 12000 0.188 0 90 15.0303 3e+10 3.2e+10 20 | 36.543 -120.514 -7000 12000 0.188 0 90 15.0288 3e+10 3.2e+10 21 | 36.5251 -120.489 -7000 12000 0.188 0 90 15.0273 3e+10 3.2e+10 22 | 36.5072 -120.464 -7000 12000 0.047 0 90 15.0258 3e+10 3.2e+10 23 | 36.4888 -120.439 -7000 12000 0.047 0 90 15.0258 3e+10 3.2e+10 24 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Great_Val_12.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 141 141 6 Great_Val_12# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 36.4676 -120.43 -7000 12000 0.188 0 90 14.9636 3e+10 3.2e+10 16 | 36.4436 -120.415 -7000 12000 0.188 0 90 14.9601 3e+10 3.2e+10 17 | 36.4196 -120.399 -7000 12000 0.188 0 90 14.9567 3e+10 3.2e+10 18 | 36.3957 -120.384 -7000 12000 0.188 0 90 14.954 3e+10 3.2e+10 19 | 36.3717 -120.369 -7000 12000 0.188 0 90 14.9498 3e+10 3.2e+10 20 | 36.3473 -120.354 -7000 12000 0.188 0 90 14.9498 3e+10 3.2e+10 21 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Great_Val_13.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 142 142 11 Great_Val_13# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 36.3452 -120.346 -9100 12000 0.048 0 90 15.0261 3e+10 3.2e+10 16 | 36.3257 -120.323 -9100 12000 0.191 0 90 14.987 3e+10 3.2e+10 17 | 36.3062 -120.3 -9100 12000 0.191 0 90 14.984 3e+10 3.2e+10 18 | 36.2867 -120.277 -9100 12000 0.191 0 90 14.9832 3e+10 3.2e+10 19 | 36.2673 -120.254 -9100 12000 0.191 0 90 14.9813 3e+10 3.2e+10 20 | 36.2478 -120.23 -9100 12000 0.191 0 90 14.9754 3e+10 3.2e+10 21 | 36.2284 -120.207 -9100 12000 0.191 0 90 15.0067 3e+10 3.2e+10 22 | 36.209 -120.184 -9100 12000 0.191 0 90 15.0048 3e+10 3.2e+10 23 | 36.1895 -120.161 -9100 12000 0.191 0 90 15.0029 3e+10 3.2e+10 24 | 36.17 -120.138 -9100 12000 0.048 0 90 15.0014 3e+10 3.2e+10 25 | 36.1502 -120.115 -9100 12000 0.048 0 90 15.0014 3e+10 3.2e+10 26 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Great_Val_14.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 143 143 9 Great_Val_14# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 36.1241 -120.125 -8100 12000 0.048 0 90 22.0093 3e+10 3.2e+10 16 | 36.1085 -120.098 -8100 12000 0.191 0 90 22.0472 3e+10 3.2e+10 17 | 36.0929 -120.071 -8100 12000 0.191 0 90 22.0483 3e+10 3.2e+10 18 | 36.0773 -120.043 -8100 12000 0.191 0 90 21.9802 3e+10 3.2e+10 19 | 36.0617 -120.016 -8100 12000 0.191 0 90 21.9782 3e+10 3.2e+10 20 | 36.0462 -119.989 -8100 12000 0.191 0 90 21.9768 3e+10 3.2e+10 21 | 36.0306 -119.962 -8100 12000 0.191 0 90 21.976 3e+10 3.2e+10 22 | 36.015 -119.935 -8100 12000 0.048 0 90 21.977 3e+10 3.2e+10 23 | 35.9988 -119.908 -8100 12000 0.048 0 90 21.977 3e+10 3.2e+10 24 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Great_Val_2.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 131 131 8 Great_Val_2# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 39.2723 -122.281 -7000 12000 0.003 0 90 14.8934 3e+10 3.2e+10 16 | 39.2453 -122.282 -7000 12000 0.013 0 90 14.9287 3e+10 3.2e+10 17 | 39.2184 -122.284 -7000 12000 0.013 0 90 14.9207 3e+10 3.2e+10 18 | 39.1915 -122.285 -7000 12000 0.013 0 90 14.9157 3e+10 3.2e+10 19 | 39.1645 -122.287 -7000 12000 0.013 0 90 14.9135 3e+10 3.2e+10 20 | 39.1376 -122.288 -7000 12000 0.013 0 90 14.9055 3e+10 3.2e+10 21 | 39.1107 -122.29 -7000 12000 0.003 0 90 14.9004 3e+10 3.2e+10 22 | 39.0839 -122.293 -7000 12000 0.003 0 90 14.9004 3e+10 3.2e+10 23 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Great_Val_4a.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 133 133 7 Great_Val_4a# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 38.6761 -122.084 -9000 12000 0.041 0 90 19.9254 3e+10 3.2e+10 16 | 38.6516 -122.069 -9000 12000 0.165 0 90 19.9162 3e+10 3.2e+10 17 | 38.6271 -122.055 -9000 12000 0.165 0 90 19.9152 3e+10 3.2e+10 18 | 38.6027 -122.04 -9000 12000 0.165 0 90 19.9595 3e+10 3.2e+10 19 | 38.5782 -122.026 -9000 12000 0.165 0 90 19.9586 3e+10 3.2e+10 20 | 38.5538 -122.011 -9000 12000 0.041 0 90 19.9536 3e+10 3.2e+10 21 | 38.5288 -121.998 -9000 12000 0.041 0 90 19.9536 3e+10 3.2e+10 22 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Great_Val_4b.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 134 134 10 Great_Val_4b# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 38.5152 -122.045 -9000 12000 0.041 0 90 19.9426 3e+10 3.2e+10 16 | 38.4884 -122.041 -9000 12000 0.165 0 90 19.9587 3e+10 3.2e+10 17 | 38.4619 -122.035 -9000 12000 0.165 0 90 19.8703 3e+10 3.2e+10 18 | 38.4356 -122.027 -9000 12000 0.165 0 90 19.97 3e+10 3.2e+10 19 | 38.4097 -122.018 -9000 12000 0.165 0 90 19.9256 3e+10 3.2e+10 20 | 38.3842 -122.007 -9000 12000 0.165 0 90 19.8981 3e+10 3.2e+10 21 | 38.3592 -121.994 -9000 12000 0.165 0 90 19.9667 3e+10 3.2e+10 22 | 38.3347 -121.979 -9000 12000 0.165 0 90 19.9368 3e+10 3.2e+10 23 | 38.3109 -121.964 -9000 12000 0.041 0 90 19.9618 3e+10 3.2e+10 24 | 38.2869 -121.948 -9000 12000 0.041 0 90 19.9618 3e+10 3.2e+10 25 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Great_Val_5.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 135 135 11 Great_Val_5# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 38.2717 -121.969 -10000 12000 0.031 0 180 90 3e+10 3.2e+10 16 | 38.2466 -121.956 -10000 12000 0.126 0 180 90 3e+10 3.2e+10 17 | 38.2214 -121.944 -10000 12000 0.126 0 180 90 3e+10 3.2e+10 18 | 38.1962 -121.932 -10000 12000 0.126 0 180 90 3e+10 3.2e+10 19 | 38.171 -121.92 -10000 12000 0.126 0 180 90 3e+10 3.2e+10 20 | 38.1459 -121.907 -10000 12000 0.126 0 180 90 3e+10 3.2e+10 21 | 38.1207 -121.895 -10000 12000 0.126 0 180 90 3e+10 3.2e+10 22 | 38.0955 -121.883 -10000 12000 0.126 0 180 90 3e+10 3.2e+10 23 | 38.0703 -121.87 -10000 12000 0.126 0 180 90 3e+10 3.2e+10 24 | 38.0452 -121.858 -10000 12000 0.031 0 180 90 3e+10 3.2e+10 25 | 38.0196 -121.847 -10000 12000 0.031 0 180 90 3e+10 3.2e+10 26 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Great_Val_7.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 136 136 15 Great_Val_7# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 37.7254 -121.511 -7000 12000 0 0 90 14.9867 3e+10 3.2e+10 16 | 37.7066 -121.487 -7000 12000 0.109 0 90 14.9858 3e+10 3.2e+10 17 | 37.6878 -121.462 -7000 12000 0.138 0 90 14.9841 3e+10 3.2e+10 18 | 37.669 -121.438 -7000 12000 0.152 0 90 14.9836 3e+10 3.2e+10 19 | 37.6502 -121.414 -7000 12000 0.179 0 90 14.9783 3e+10 3.2e+10 20 | 37.6314 -121.389 -7000 12000 0.184 0 90 14.9766 3e+10 3.2e+10 21 | 37.6126 -121.365 -7000 12000 0.186 0 90 15.0065 3e+10 3.2e+10 22 | 37.5937 -121.34 -7000 12000 0.186 0 90 15.0034 3e+10 3.2e+10 23 | 37.5749 -121.316 -7000 12000 0.184 0 90 15.0016 3e+10 3.2e+10 24 | 37.5561 -121.292 -7000 12000 0.179 0 90 15.0011 3e+10 3.2e+10 25 | 37.5372 -121.267 -7000 12000 0.152 0 90 14.9981 3e+10 3.2e+10 26 | 37.5184 -121.243 -7000 12000 0.138 0 90 14.9954 3e+10 3.2e+10 27 | 37.4995 -121.219 -7000 12000 0.109 0 90 14.9923 3e+10 3.2e+10 28 | 37.4807 -121.194 -7000 12000 0 0 90 14.9905 3e+10 3.2e+10 29 | 37.4611 -121.171 -7000 12000 0 0 90 14.9905 3e+10 3.2e+10 30 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Great_Val_8.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 137 137 14 Great_Val_8# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 37.4216 -121.151 -7000 12000 0 0 90 14.9731 3e+10 3.2e+10 16 | 37.3965 -121.139 -7000 12000 0.109 0 90 14.9691 3e+10 3.2e+10 17 | 37.3714 -121.126 -7000 12000 0.138 0 90 14.965 3e+10 3.2e+10 18 | 37.3463 -121.114 -7000 12000 0.152 0 90 14.961 3e+10 3.2e+10 19 | 37.3212 -121.102 -7000 12000 0.179 0 90 14.9563 3e+10 3.2e+10 20 | 37.2961 -121.089 -7000 12000 0.184 0 90 14.9551 3e+10 3.2e+10 21 | 37.271 -121.077 -7000 12000 0.184 0 90 14.9856 3e+10 3.2e+10 22 | 37.2459 -121.064 -7000 12000 0.184 0 90 14.9816 3e+10 3.2e+10 23 | 37.2208 -121.052 -7000 12000 0.179 0 90 14.9804 3e+10 3.2e+10 24 | 37.1957 -121.04 -7000 12000 0.152 0 90 14.9729 3e+10 3.2e+10 25 | 37.1706 -121.027 -7000 12000 0.138 0 90 14.9688 3e+10 3.2e+10 26 | 37.1454 -121.015 -7000 12000 0.109 0 90 14.9648 3e+10 3.2e+10 27 | 37.1203 -121.003 -7000 12000 0 0 90 14.9642 3e+10 3.2e+10 28 | 37.0949 -120.991 -7000 12000 0 0 90 14.9642 3e+10 3.2e+10 29 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Great_Val_9.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 138 138 14 Great_Val_9# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 37.092 -120.977 -7000 12000 0 0 90 15.0082 3e+10 3.2e+10 16 | 37.0694 -120.959 -7000 12000 0.109 0 90 14.973 3e+10 3.2e+10 17 | 37.0467 -120.94 -7000 12000 0.138 0 90 15.0039 3e+10 3.2e+10 18 | 37.0241 -120.922 -7000 12000 0.152 0 90 14.998 3e+10 3.2e+10 19 | 37.0014 -120.904 -7000 12000 0.179 0 90 14.9638 3e+10 3.2e+10 20 | 36.9787 -120.885 -7000 12000 0.184 0 90 14.9617 3e+10 3.2e+10 21 | 36.9561 -120.867 -7000 12000 0.184 0 90 14.9578 3e+10 3.2e+10 22 | 36.9334 -120.849 -7000 12000 0.184 0 90 14.9548 3e+10 3.2e+10 23 | 36.9107 -120.83 -7000 12000 0.179 0 90 14.9829 3e+10 3.2e+10 24 | 36.888 -120.812 -7000 12000 0.152 0 90 14.9825 3e+10 3.2e+10 25 | 36.8653 -120.794 -7000 12000 0.138 0 90 14.9769 3e+10 3.2e+10 26 | 36.8427 -120.776 -7000 12000 0.109 0 90 14.9765 3e+10 3.2e+10 27 | 36.82 -120.757 -7000 12000 0 0 90 14.9735 3e+10 3.2e+10 28 | 36.7968 -120.74 -7000 12000 0 0 90 14.9735 3e+10 3.2e+10 29 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Greenvalley.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 14 14 12 Greenvalley# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 38.3365 -122.161 0 12000 0.158 0 180 90 3e+10 3.2e+10 16 | 38.3097 -122.163 0 12000 0.633 0 180 90 3e+10 3.2e+10 17 | 38.2827 -122.162 0 12000 0.633 0 180 90 3e+10 3.2e+10 18 | 38.2559 -122.16 0 12000 0.633 0 180 90 3e+10 3.2e+10 19 | 38.2291 -122.156 0 12000 0.633 0 180 90 3e+10 3.2e+10 20 | 38.2025 -122.15 0 12000 0.633 0 180 90 3e+10 3.2e+10 21 | 38.1764 -122.142 0 12000 0.633 0 180 90 3e+10 3.2e+10 22 | 38.1507 -122.132 0 12000 0.633 0 180 90 3e+10 3.2e+10 23 | 38.1254 -122.12 0 12000 0.633 0 180 90 3e+10 3.2e+10 24 | 38.1006 -122.106 0 12000 0.633 0 180 90 3e+10 3.2e+10 25 | 38.0765 -122.091 0 12000 0.158 0 180 90 3e+10 3.2e+10 26 | 38.0525 -122.076 0 12000 0.158 0 180 90 3e+10 3.2e+10 27 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Hartley_Spr.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 91 91 4 Hartley_Spr# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 37.8369 -119.068 0 12000 0.063 0 -90 120.044 3e+10 3.2e+10 16 | 37.8121 -119.055 0 12000 0.063 0 -90 120.051 3e+10 3.2e+10 17 | 37.7872 -119.042 0 12000 0.063 0 -90 120.058 3e+10 3.2e+10 18 | 37.7622 -119.029 0 12000 0.063 0 -90 120.058 3e+10 3.2e+10 19 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Hayward.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 12 12 16 Hayward# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 37.8076 -122.195 0 12000 1.137 0 180 90 3e+10 3.2e+10 16 | 37.7846 -122.177 0 12000 1.137 0 180 90 3e+10 3.2e+10 17 | 37.7616 -122.16 0 12000 1.137 0 180 90 3e+10 3.2e+10 18 | 37.7388 -122.142 0 12000 1.137 0 180 90 3e+10 3.2e+10 19 | 37.7162 -122.123 0 12000 1.137 0 180 90 3e+10 3.2e+10 20 | 37.6939 -122.104 0 12000 1.137 0 180 90 3e+10 3.2e+10 21 | 37.6724 -122.084 0 12000 1.137 0 180 90 3e+10 3.2e+10 22 | 37.6512 -122.062 0 12000 1.137 0 180 90 3e+10 3.2e+10 23 | 37.6306 -122.04 0 12000 1.125 0 180 90 3e+10 3.2e+10 24 | 37.6106 -122.018 0 12000 1.109 0 180 90 3e+10 3.2e+10 25 | 37.5911 -121.994 0 12000 1.082 0 180 90 3e+10 3.2e+10 26 | 37.5721 -121.97 0 12000 0.92 0 180 90 3e+10 3.2e+10 27 | 37.5536 -121.945 0 12000 0.833 0 180 90 3e+10 3.2e+10 28 | 37.5357 -121.92 0 12000 0.657 0 180 90 3e+10 3.2e+10 29 | 37.5183 -121.894 0 12000 0 0 180 90 3e+10 3.2e+10 30 | 37.5005 -121.868 0 12000 0 0 180 90 3e+10 3.2e+10 31 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Hilton_Crk.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 92 92 10 Hilton_Crk# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 37.6766 -118.877 0 12000 0.079 0 -90 120.022 3e+10 3.2e+10 16 | 37.654 -118.858 0 12000 0.317 0 -90 119.877 3e+10 3.2e+10 17 | 37.637 -118.831 0 12000 0.317 0 -90 119.829 3e+10 3.2e+10 18 | 37.6189 -118.805 0 12000 0.317 0 -90 119.926 3e+10 3.2e+10 19 | 37.595 -118.789 0 12000 0.317 0 -90 120.157 3e+10 3.2e+10 20 | 37.569 -118.78 0 12000 0.317 0 -90 120.016 3e+10 3.2e+10 21 | 37.5424 -118.774 0 12000 0.317 0 -90 120.163 3e+10 3.2e+10 22 | 37.516 -118.767 0 12000 0.317 0 -90 120.077 3e+10 3.2e+10 23 | 37.4907 -118.755 0 12000 0.079 0 -90 120.01 3e+10 3.2e+10 24 | 37.4681 -118.736 0 12000 0.079 0 -90 120.01 3e+10 3.2e+10 25 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Hollywood.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 53 53 6 Hollywood# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 34.1181 -118.246 0 12000 0.127 0 45 70.0577 3e+10 3.2e+10 16 | 34.1136 -118.279 0 12000 0.127 0 45 70.1081 3e+10 3.2e+10 17 | 34.1103 -118.311 0 12000 0.127 0 45 70.0337 3e+10 3.2e+10 18 | 34.1114 -118.344 0 12000 0.127 0 45 69.999 3e+10 3.2e+10 19 | 34.0986 -118.373 0 12000 0.127 0 45 70.0069 3e+10 3.2e+10 20 | 34.081 -118.398 0 12000 0.127 0 45 70.0069 3e+10 3.2e+10 21 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Holser.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 63 63 4 Holser# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 34.4376 -118.737 0 12000 0.051 0 90 64.9901 3e+10 3.2e+10 16 | 34.4446 -118.705 0 12000 0.051 0 90 65.1512 3e+10 3.2e+10 17 | 34.451 -118.673 0 12000 0.051 0 90 65.0277 3e+10 3.2e+10 18 | 34.4488 -118.64 0 12000 0.051 0 90 65.0277 3e+10 3.2e+10 19 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Imperial-C.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 3 3 6 Imperial-C# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 32.71 -115.382 0 12000 2.527 0 180 90 3e+10 3.2e+10 16 | 32.6885 -115.363 0 12000 2.527 0 180 90 3e+10 3.2e+10 17 | 32.6671 -115.344 0 12000 2.527 0 180 90 3e+10 3.2e+10 18 | 32.6456 -115.324 0 12000 2.527 0 180 90 3e+10 3.2e+10 19 | 32.6241 -115.305 0 12000 2.501 0 180 90 3e+10 3.2e+10 20 | 32.6029 -115.285 0 12000 2.501 0 180 90 3e+10 3.2e+10 21 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Imperial-N.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 3 3 10 Imperial-N# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 32.9032 -115.558 0 12000 0 0 180 90 3e+10 3.2e+10 16 | 32.8817 -115.538 0 12000 1.46 0 180 90 3e+10 3.2e+10 17 | 32.8603 -115.519 0 12000 1.85 0 180 90 3e+10 3.2e+10 18 | 32.8388 -115.499 0 12000 2.044 0 180 90 3e+10 3.2e+10 19 | 32.8174 -115.48 0 12000 2.404 0 180 90 3e+10 3.2e+10 20 | 32.7959 -115.46 0 12000 2.465 0 180 90 3e+10 3.2e+10 21 | 32.7745 -115.441 0 12000 2.501 0 180 90 3e+10 3.2e+10 22 | 32.753 -115.421 0 12000 2.527 0 180 90 3e+10 3.2e+10 23 | 32.7315 -115.402 0 12000 2.527 0 180 90 3e+10 3.2e+10 24 | 32.7103 -115.382 0 12000 2.527 0 180 90 3e+10 3.2e+10 25 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Imperial-S.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 3 3 7 Imperial-S# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 32.6026 -115.286 0 12000 2.465 0 180 90 3e+10 3.2e+10 16 | 32.5811 -115.266 0 12000 2.404 0 180 90 3e+10 3.2e+10 17 | 32.5596 -115.247 0 12000 2.044 0 180 90 3e+10 3.2e+10 18 | 32.5381 -115.228 0 12000 1.85 0 180 90 3e+10 3.2e+10 19 | 32.5166 -115.208 0 12000 1.46 0 180 90 3e+10 3.2e+10 20 | 32.4951 -115.189 0 12000 0 0 180 90 3e+10 3.2e+10 21 | 32.4739 -115.169 0 12000 0 0 180 90 3e+10 3.2e+10 22 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Johnson_Vly-N.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 74 74 12 Johnson_Vly-N# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 34.5507 -116.695 0 12000 0.019 0 180 90 3e+10 3.2e+10 16 | 34.5259 -116.681 0 12000 0.076 0 180 90 3e+10 3.2e+10 17 | 34.5047 -116.661 0 12000 0.076 0 180 90 3e+10 3.2e+10 18 | 34.4836 -116.641 0 12000 0.076 0 180 90 3e+10 3.2e+10 19 | 34.463 -116.619 0 12000 0.076 0 180 90 3e+10 3.2e+10 20 | 34.4437 -116.596 0 12000 0.076 0 180 90 3e+10 3.2e+10 21 | 34.4272 -116.571 0 12000 0.076 0 180 90 3e+10 3.2e+10 22 | 34.4124 -116.543 0 12000 0.076 0 180 90 3e+10 3.2e+10 23 | 34.3956 -116.518 0 12000 0.076 0 180 90 3e+10 3.2e+10 24 | 34.3754 -116.496 0 12000 0.076 0 180 90 3e+10 3.2e+10 25 | 34.3532 -116.477 0 12000 0.019 0 180 90 3e+10 3.2e+10 26 | 34.3308 -116.459 0 12000 0.019 0 180 90 3e+10 3.2e+10 27 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Little_Lake.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 85 85 14 Little_Lake# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 35.8977 -117.875 0 12000 0 0 180 90 3e+10 3.2e+10 16 | 35.8748 -117.857 0 12000 0.051 0 180 90 3e+10 3.2e+10 17 | 35.8519 -117.84 0 12000 0.065 0 180 90 3e+10 3.2e+10 18 | 35.829 -117.822 0 12000 0.072 0 180 90 3e+10 3.2e+10 19 | 35.8061 -117.804 0 12000 0.084 0 180 90 3e+10 3.2e+10 20 | 35.7832 -117.787 0 12000 0.087 0 180 90 3e+10 3.2e+10 21 | 35.7603 -117.769 0 12000 0.087 0 180 90 3e+10 3.2e+10 22 | 35.7374 -117.752 0 12000 0.087 0 180 90 3e+10 3.2e+10 23 | 35.7145 -117.734 0 12000 0.084 0 180 90 3e+10 3.2e+10 24 | 35.6916 -117.716 0 12000 0.072 0 180 90 3e+10 3.2e+10 25 | 35.6687 -117.699 0 12000 0.065 0 180 90 3e+10 3.2e+10 26 | 35.6458 -117.682 0 12000 0.051 0 180 90 3e+10 3.2e+10 27 | 35.6229 -117.664 0 12000 0 0 180 90 3e+10 3.2e+10 28 | 35.5999 -117.647 0 12000 0 0 180 90 3e+10 3.2e+10 29 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Little_Salmon.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 114 114 12 Little_Salmon# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 40.7508 -124.228 0 12000 0.159 0 90 150.185 3e+10 3.2e+10 16 | 40.7244 -124.221 0 12000 0.636 0 90 150.151 3e+10 3.2e+10 17 | 40.6986 -124.211 0 12000 0.636 0 90 150.139 3e+10 3.2e+10 18 | 40.6737 -124.197 0 12000 0.636 0 90 150.154 3e+10 3.2e+10 19 | 40.65 -124.18 0 12000 0.636 0 90 150.111 3e+10 3.2e+10 20 | 40.628 -124.16 0 12000 0.636 0 90 150.078 3e+10 3.2e+10 21 | 40.6077 -124.137 0 12000 0.636 0 90 150.112 3e+10 3.2e+10 22 | 40.5893 -124.111 0 12000 0.636 0 90 149.991 3e+10 3.2e+10 23 | 40.5727 -124.083 0 12000 0.636 0 90 150.056 3e+10 3.2e+10 24 | 40.558 -124.053 0 12000 0.636 0 90 149.989 3e+10 3.2e+10 25 | 40.5452 -124.022 0 12000 0.159 0 90 150.017 3e+10 3.2e+10 26 | 40.5328 -123.991 0 12000 0.159 0 90 150.017 3e+10 3.2e+10 27 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Los_Alamos.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 58 58 10 Los_Alamos# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 34.7583 -120.302 0 12000 0.022 0 90 30.0977 3e+10 3.2e+10 16 | 34.7535 -120.269 0 12000 0.089 0 90 30.0748 3e+10 3.2e+10 17 | 34.7448 -120.238 0 12000 0.089 0 90 29.9669 3e+10 3.2e+10 18 | 34.7309 -120.21 0 12000 0.089 0 90 30.0215 3e+10 3.2e+10 19 | 34.7117 -120.186 0 12000 0.089 0 90 30.0113 3e+10 3.2e+10 20 | 34.6909 -120.166 0 12000 0.089 0 90 29.9425 3e+10 3.2e+10 21 | 34.6709 -120.143 0 12000 0.089 0 90 29.9649 3e+10 3.2e+10 22 | 34.6546 -120.117 0 12000 0.089 0 90 30.017 3e+10 3.2e+10 23 | 34.6413 -120.089 0 12000 0.022 0 90 29.9876 3e+10 3.2e+10 24 | 34.6291 -120.06 0 12000 0.022 0 90 29.9876 3e+10 3.2e+10 25 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Los_Osos.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 82 82 15 Los_Osos# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 35.3048 -120.85 0 12000 0 0 90 44.8876 3e+10 3.2e+10 16 | 35.3049 -120.817 0 12000 0.037 0 90 45.0991 3e+10 3.2e+10 17 | 35.301 -120.784 0 12000 0.046 0 90 45.0114 3e+10 3.2e+10 18 | 35.2929 -120.752 0 12000 0.051 0 90 44.995 3e+10 3.2e+10 19 | 35.2799 -120.723 0 12000 0.06 0 90 45.0683 3e+10 3.2e+10 20 | 35.2622 -120.697 0 12000 0.062 0 90 44.935 3e+10 3.2e+10 21 | 35.2398 -120.679 0 12000 0.063 0 90 44.9508 3e+10 3.2e+10 22 | 35.2153 -120.663 0 12000 0.063 0 90 45.019 3e+10 3.2e+10 23 | 35.199 -120.637 0 12000 0.062 0 90 45.0653 3e+10 3.2e+10 24 | 35.1918 -120.605 0 12000 0.06 0 90 45.0344 3e+10 3.2e+10 25 | 35.1867 -120.573 0 12000 0.051 0 90 45.0354 3e+10 3.2e+10 26 | 35.1774 -120.54 0 12000 0.046 0 90 44.9508 3e+10 3.2e+10 27 | 35.1576 -120.518 0 12000 0.037 0 90 44.88 3e+10 3.2e+10 28 | 35.1342 -120.5 0 12000 0 0 90 45.0524 3e+10 3.2e+10 29 | 35.1202 -120.471 0 12000 0 0 90 45.0524 3e+10 3.2e+10 30 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Lt_Salmon_Off.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 123 123 16 Lt_Salmon_Off# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 41.0016 -124.623 0 12000 0 0 90 150.054 3e+10 3.2e+10 16 | 40.9937 -124.589 0 12000 0.073 0 90 149.984 3e+10 3.2e+10 17 | 40.9841 -124.555 0 12000 0.093 0 90 149.958 3e+10 3.2e+10 18 | 40.9719 -124.523 0 12000 0.103 0 90 150.028 3e+10 3.2e+10 19 | 40.9565 -124.493 0 12000 0.121 0 90 150.044 3e+10 3.2e+10 20 | 40.9372 -124.468 0 12000 0.124 0 90 150.08 3e+10 3.2e+10 21 | 40.9147 -124.448 0 12000 0.126 0 90 150.112 3e+10 3.2e+10 22 | 40.8909 -124.431 0 12000 0.127 0 90 150.171 3e+10 3.2e+10 23 | 40.8666 -124.416 0 12000 0.126 0 90 150.144 3e+10 3.2e+10 24 | 40.8425 -124.4 0 12000 0.124 0 90 150.118 3e+10 3.2e+10 25 | 40.8196 -124.381 0 12000 0.121 0 90 150.099 3e+10 3.2e+10 26 | 40.7995 -124.357 0 12000 0.103 0 90 149.959 3e+10 3.2e+10 27 | 40.7847 -124.328 0 12000 0.093 0 90 150.009 3e+10 3.2e+10 28 | 40.7748 -124.295 0 12000 0.073 0 90 150.017 3e+10 3.2e+10 29 | 40.7683 -124.26 0 12000 0 0 90 150.06 3e+10 3.2e+10 30 | 40.7623 -124.225 0 12000 0 0 90 150.06 3e+10 3.2e+10 31 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Mad_River.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 128 128 14 Mad_River# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 41.0273 -124.216 0 12000 0 0 90 145.12 3e+10 3.2e+10 16 | 41.0133 -124.185 0 12000 0.051 0 90 145.144 3e+10 3.2e+10 17 | 40.9953 -124.158 0 12000 0.065 0 90 145.152 3e+10 3.2e+10 18 | 40.9726 -124.138 0 12000 0.072 0 90 145.167 3e+10 3.2e+10 19 | 40.9481 -124.123 0 12000 0.085 0 90 145.101 3e+10 3.2e+10 20 | 40.9259 -124.103 0 12000 0.087 0 90 145.091 3e+10 3.2e+10 21 | 40.9071 -124.077 0 12000 0.087 0 90 145.058 3e+10 3.2e+10 22 | 40.8875 -124.053 0 12000 0.087 0 90 145.055 3e+10 3.2e+10 23 | 40.8668 -124.03 0 12000 0.085 0 90 145.133 3e+10 3.2e+10 24 | 40.8463 -124.007 0 12000 0.072 0 90 145.038 3e+10 3.2e+10 25 | 40.8279 -123.981 0 12000 0.065 0 90 144.997 3e+10 3.2e+10 26 | 40.8081 -123.956 0 12000 0.051 0 90 145.107 3e+10 3.2e+10 27 | 40.7845 -123.938 0 12000 0 0 90 145.195 3e+10 3.2e+10 28 | 40.7585 -123.928 0 12000 0 0 90 145.195 3e+10 3.2e+10 29 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Malibu_Coast.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 67 67 13 Malibu_Coast# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 34.046 -118.918 0 12000 0 0 45 105.008 3e+10 3.2e+10 16 | 34.037 -118.887 0 12000 0.022 0 45 104.847 3e+10 3.2e+10 17 | 34.0298 -118.856 0 12000 0.028 0 45 104.954 3e+10 3.2e+10 18 | 34.0247 -118.824 0 12000 0.031 0 45 104.966 3e+10 3.2e+10 19 | 34.0218 -118.792 0 12000 0.036 0 45 104.869 3e+10 3.2e+10 20 | 34.0213 -118.759 0 12000 0.037 0 45 104.919 3e+10 3.2e+10 21 | 34.0238 -118.727 0 12000 0.037 0 45 105.177 3e+10 3.2e+10 22 | 34.0296 -118.695 0 12000 0.036 0 45 104.974 3e+10 3.2e+10 23 | 34.0396 -118.665 0 12000 0.031 0 45 105.105 3e+10 3.2e+10 24 | 34.0519 -118.635 0 12000 0.028 0 45 105.027 3e+10 3.2e+10 25 | 34.0578 -118.603 0 12000 0.022 0 45 105.051 3e+10 3.2e+10 26 | 34.0578 -118.571 0 12000 0 0 45 104.926 3e+10 3.2e+10 27 | 34.0528 -118.539 0 12000 0 0 45 104.926 3e+10 3.2e+10 28 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_McKinleyville.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 127 127 16 McKinleyville# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 41.0664 -124.214 0 12000 0 0 90 144.999 3e+10 3.2e+10 16 | 41.059 -124.179 0 12000 0.044 0 90 145.02 3e+10 3.2e+10 17 | 41.0422 -124.15 0 12000 0.056 0 90 145.172 3e+10 3.2e+10 18 | 41.0205 -124.128 0 12000 0.062 0 90 145.152 3e+10 3.2e+10 19 | 40.9967 -124.111 0 12000 0.073 0 90 145.148 3e+10 3.2e+10 20 | 40.9723 -124.096 0 12000 0.074 0 90 145.214 3e+10 3.2e+10 21 | 40.9481 -124.08 0 12000 0.075 0 90 145.104 3e+10 3.2e+10 22 | 40.9247 -124.063 0 12000 0.076 0 90 145.191 3e+10 3.2e+10 23 | 40.902 -124.043 0 12000 0.075 0 90 145.16 3e+10 3.2e+10 24 | 40.8804 -124.022 0 12000 0.074 0 90 145.056 3e+10 3.2e+10 25 | 40.8598 -123.999 0 12000 0.073 0 90 145.077 3e+10 3.2e+10 26 | 40.8406 -123.974 0 12000 0.062 0 90 145.07 3e+10 3.2e+10 27 | 40.8225 -123.948 0 12000 0.056 0 90 145.101 3e+10 3.2e+10 28 | 40.8053 -123.921 0 12000 0.044 0 90 145.024 3e+10 3.2e+10 29 | 40.7867 -123.894 0 12000 0 0 90 145.071 3e+10 3.2e+10 30 | 40.7651 -123.873 0 12000 0 0 90 145.071 3e+10 3.2e+10 31 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Mon_Vis-Shannon.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 104 104 16 Mon_Vis-Shannon# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 37.4284 -122.237 0 12000 0 0 90 59.9161 3e+10 3.2e+10 16 | 37.4095 -122.213 0 12000 0.029 0 90 59.8834 3e+10 3.2e+10 17 | 37.3909 -122.189 0 12000 0.037 0 90 60.0421 3e+10 3.2e+10 18 | 37.3727 -122.164 0 12000 0.041 0 90 59.9887 3e+10 3.2e+10 19 | 37.3547 -122.138 0 12000 0.048 0 90 60.0594 3e+10 3.2e+10 20 | 37.337 -122.113 0 12000 0.049 0 90 60.0898 3e+10 3.2e+10 21 | 37.3198 -122.087 0 12000 0.05 0 90 60.0203 3e+10 3.2e+10 22 | 37.3028 -122.06 0 12000 0.05 0 90 59.9446 3e+10 3.2e+10 23 | 37.2862 -122.034 0 12000 0.05 0 90 59.983 3e+10 3.2e+10 24 | 37.2698 -122.007 0 12000 0.049 0 90 59.9867 3e+10 3.2e+10 25 | 37.2534 -121.98 0 12000 0.048 0 90 59.9981 3e+10 3.2e+10 26 | 37.2381 -121.952 0 12000 0.041 0 90 60.0775 3e+10 3.2e+10 27 | 37.2256 -121.922 0 12000 0.037 0 90 60.148 3e+10 3.2e+10 28 | 37.217 -121.89 0 12000 0.029 0 90 59.9987 3e+10 3.2e+10 29 | 37.2118 -121.856 0 12000 0 0 90 59.9857 3e+10 3.2e+10 30 | 37.2084 -121.823 0 12000 0 0 90 59.9857 3e+10 3.2e+10 31 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Mono.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 90 90 9 Mono# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 38.1372 -119.185 0 12000 0.079 0 -90 120.057 3e+10 3.2e+10 16 | 38.1116 -119.174 0 12000 0.317 0 -90 120.055 3e+10 3.2e+10 17 | 38.0859 -119.163 0 12000 0.317 0 -90 120.062 3e+10 3.2e+10 18 | 38.0602 -119.153 0 12000 0.317 0 -90 120.078 3e+10 3.2e+10 19 | 38.0345 -119.142 0 12000 0.317 0 -90 120.086 3e+10 3.2e+10 20 | 38.0088 -119.132 0 12000 0.317 0 -90 120.083 3e+10 3.2e+10 21 | 37.9832 -119.121 0 12000 0.317 0 -90 120.09 3e+10 3.2e+10 22 | 37.9575 -119.111 0 12000 0.079 0 -90 120.109 3e+10 3.2e+10 23 | 37.9317 -119.101 0 12000 0.079 0 -90 120.109 3e+10 3.2e+10 24 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Mt._Diablo.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 101 101 9 Mt._Diablo# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 37.8717 -122.026 0 12000 0.063 0 90 142.013 3e+10 3.2e+10 16 | 37.8541 -122.001 0 12000 0.253 0 90 142.022 3e+10 3.2e+10 17 | 37.8365 -121.975 0 12000 0.253 0 90 142.025 3e+10 3.2e+10 18 | 37.8189 -121.949 0 12000 0.253 0 90 142.022 3e+10 3.2e+10 19 | 37.8012 -121.923 0 12000 0.253 0 90 142.03 3e+10 3.2e+10 20 | 37.7836 -121.897 0 12000 0.253 0 90 142.033 3e+10 3.2e+10 21 | 37.766 -121.871 0 12000 0.253 0 90 142.03 3e+10 3.2e+10 22 | 37.7483 -121.846 0 12000 0.063 0 90 142.033 3e+10 3.2e+10 23 | 37.7297 -121.821 0 12000 0.063 0 90 142.033 3e+10 3.2e+10 24 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_N_Frontal-E.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 78 78 9 N_Frontal-E# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 34.3315 -116.785 0 12000 0.016 0 90 45.0385 3e+10 3.2e+10 16 | 34.3296 -116.75 0 12000 0.063 0 90 44.9619 3e+10 3.2e+10 17 | 34.3491 -116.721 0 12000 0.063 0 90 45.0512 3e+10 3.2e+10 18 | 34.3358 -116.692 0 12000 0.063 0 90 44.9739 3e+10 3.2e+10 19 | 34.3373 -116.661 0 12000 0.063 0 90 44.872 3e+10 3.2e+10 20 | 34.3367 -116.629 0 12000 0.063 0 90 45.0636 3e+10 3.2e+10 21 | 34.3212 -116.601 0 12000 0.063 0 90 44.9456 3e+10 3.2e+10 22 | 34.3225 -116.568 0 12000 0.016 0 90 45.0654 3e+10 3.2e+10 23 | 34.3209 -116.535 0 12000 0.016 0 90 45.0654 3e+10 3.2e+10 24 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_N_Frontal-W.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 77 77 17 N_Frontal-W# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 34.3706 -116.864 0 12000 0 0 90 135.022 3e+10 3.2e+10 16 | 34.3665 -116.896 0 12000 0.073 0 90 135.009 3e+10 3.2e+10 17 | 34.3639 -116.929 0 12000 0.093 0 90 134.983 3e+10 3.2e+10 18 | 34.3674 -116.962 0 12000 0.103 0 90 134.943 3e+10 3.2e+10 19 | 34.3823 -116.989 0 12000 0.121 0 90 134.959 3e+10 3.2e+10 20 | 34.4034 -117.011 0 12000 0.124 0 90 135.101 3e+10 3.2e+10 21 | 34.4146 -117.04 0 12000 0.126 0 90 134.948 3e+10 3.2e+10 22 | 34.4264 -117.07 0 12000 0.127 0 90 135.077 3e+10 3.2e+10 23 | 34.4401 -117.099 0 12000 0.127 0 90 134.978 3e+10 3.2e+10 24 | 34.4464 -117.131 0 12000 0.126 0 90 134.942 3e+10 3.2e+10 25 | 34.4411 -117.164 0 12000 0.124 0 90 135.023 3e+10 3.2e+10 26 | 34.4267 -117.194 0 12000 0.121 0 90 135.037 3e+10 3.2e+10 27 | 34.3738 -117.195 0 12000 0.103 0 90 44.9412 3e+10 3.2e+10 28 | 34.377 -117.21 0 12000 0.093 0 90 135.004 3e+10 3.2e+10 29 | 34.357 -117.224 0 12000 0.073 0 90 135.071 3e+10 3.2e+10 30 | 34.3296 -117.234 0 12000 0 0 90 135.122 3e+10 3.2e+10 31 | 34.3174 -117.263 0 12000 0 0 90 135.122 3e+10 3.2e+10 32 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_North_Tahoe.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 121 121 7 North_Tahoe# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 39.2572 -119.978 0 12000 0.013 0 -90 130.198 3e+10 3.2e+10 16 | 39.2302 -119.983 0 12000 0.051 0 -90 130.118 3e+10 3.2e+10 17 | 39.206 -120 0 12000 0.051 0 -90 129.963 3e+10 3.2e+10 18 | 39.186 -120.023 0 12000 0.051 0 -90 130.123 3e+10 3.2e+10 19 | 39.1652 -120.049 0 12000 0.051 0 -90 130.178 3e+10 3.2e+10 20 | 39.1387 -120.043 0 12000 0.013 0 -90 130.133 3e+10 3.2e+10 21 | 39.1117 -120.043 0 12000 0.013 0 -90 130.133 3e+10 3.2e+10 22 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Oakridge-onsho.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 28 28 15 Oakridge-onsho# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 34.3739 -118.791 0 12000 0 0 90 115.148 3e+10 3.2e+10 16 | 34.376 -118.823 0 12000 0.293 0 90 115.03 3e+10 3.2e+10 17 | 34.3811 -118.855 0 12000 0.371 0 90 115.107 3e+10 3.2e+10 18 | 34.3811 -118.888 0 12000 0.41 0 90 114.858 3e+10 3.2e+10 19 | 34.3731 -118.92 0 12000 0.482 0 90 115.018 3e+10 3.2e+10 20 | 34.364 -118.951 0 12000 0.494 0 90 114.952 3e+10 3.2e+10 21 | 34.3598 -118.983 0 12000 0.502 0 90 114.953 3e+10 3.2e+10 22 | 34.3577 -119.015 0 12000 0.502 0 90 114.929 3e+10 3.2e+10 23 | 34.3506 -119.047 0 12000 0.494 0 90 115.04 3e+10 3.2e+10 24 | 34.3357 -119.075 0 12000 0.482 0 90 115.04 3e+10 3.2e+10 25 | 34.3164 -119.098 0 12000 0.41 0 90 115.023 3e+10 3.2e+10 26 | 34.2952 -119.118 0 12000 0.371 0 90 115.035 3e+10 3.2e+10 27 | 34.2744 -119.139 0 12000 0.293 0 90 115.026 3e+10 3.2e+10 28 | 34.2584 -119.166 0 12000 0 0 90 115.13 3e+10 3.2e+10 29 | 34.2494 -119.196 0 12000 0 0 90 115.13 3e+10 3.2e+10 30 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Owl_Lk.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 40 40 7 Owl_Lk# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 35.73 -116.715 0 12000 0.063 0 0 90 3e+10 3.2e+10 16 | 35.7144 -116.742 0 12000 0.253 0 0 90 3e+10 3.2e+10 17 | 35.6988 -116.769 0 12000 0.253 0 0 90 3e+10 3.2e+10 18 | 35.6832 -116.796 0 12000 0.253 0 0 90 3e+10 3.2e+10 19 | 35.6676 -116.823 0 12000 0.253 0 0 90 3e+10 3.2e+10 20 | 35.6519 -116.851 0 12000 0.063 0 0 90 3e+10 3.2e+10 21 | 35.6361 -116.878 0 12000 0.063 0 0 90 3e+10 3.2e+10 22 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Pitas_Pt_East.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 33 33 11 Pitas_Pt_East# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 34.1675 -119.493 -400 12000 0.08 0 90 16.0243 3e+10 3.2e+10 16 | 34.1612 -119.525 -400 12000 0.318 0 90 15.9842 3e+10 3.2e+10 17 | 34.1562 -119.557 -400 12000 0.318 0 90 15.9988 3e+10 3.2e+10 18 | 34.1518 -119.589 -400 12000 0.318 0 90 15.9825 3e+10 3.2e+10 19 | 34.1492 -119.622 -400 12000 0.318 0 90 16.0387 3e+10 3.2e+10 20 | 34.151 -119.654 -400 12000 0.318 0 90 15.9868 3e+10 3.2e+10 21 | 34.1557 -119.686 -400 12000 0.318 0 90 15.9899 3e+10 3.2e+10 22 | 34.1597 -119.719 -400 12000 0.318 0 90 16.0421 3e+10 3.2e+10 23 | 34.1629 -119.751 -400 12000 0.318 0 90 16.0109 3e+10 3.2e+10 24 | 34.1658 -119.783 -400 12000 0.08 0 90 16.0623 3e+10 3.2e+10 25 | 34.1694 -119.816 -400 12000 0.08 0 90 16.0623 3e+10 3.2e+10 26 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Pitas_Pt_West.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 61 61 12 Pitas_Pt_West# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 34.2558 -120.105 -1500 12000 0.079 0 90 167.039 3e+10 3.2e+10 16 | 34.2682 -120.076 -1500 12000 0.318 0 90 167.033 3e+10 3.2e+10 17 | 34.2819 -120.048 -1500 12000 0.318 0 90 166.986 3e+10 3.2e+10 18 | 34.2959 -120.02 -1500 12000 0.318 0 90 167.02 3e+10 3.2e+10 19 | 34.3058 -119.989 -1500 12000 0.318 0 90 166.972 3e+10 3.2e+10 20 | 34.3024 -119.956 -1500 12000 0.318 0 90 167.007 3e+10 3.2e+10 21 | 34.2923 -119.926 -1500 12000 0.318 0 90 166.959 3e+10 3.2e+10 22 | 34.2832 -119.895 -1500 12000 0.318 0 90 167.008 3e+10 3.2e+10 23 | 34.2758 -119.863 -1500 12000 0.318 0 90 166.978 3e+10 3.2e+10 24 | 34.2666 -119.833 -1500 12000 0.318 0 90 166.985 3e+10 3.2e+10 25 | 34.253 -119.804 -1500 12000 0.079 0 90 166.985 3e+10 3.2e+10 26 | 34.236 -119.779 -1500 12000 0.079 0 90 166.985 3e+10 3.2e+10 27 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Pleito.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 31 31 15 Pleito# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 34.9407 -118.885 0 12000 0 0 90 135.023 3e+10 3.2e+10 16 | 34.9339 -118.917 0 12000 0.146 0 90 134.853 3e+10 3.2e+10 17 | 34.9334 -118.951 0 12000 0.186 0 90 135.078 3e+10 3.2e+10 18 | 34.9471 -118.98 0 12000 0.205 0 90 135.033 3e+10 3.2e+10 19 | 34.9685 -119 0 12000 0.241 0 90 135.049 3e+10 3.2e+10 20 | 34.9905 -119.02 0 12000 0.247 0 90 134.967 3e+10 3.2e+10 21 | 35.0075 -119.047 0 12000 0.251 0 90 135.059 3e+10 3.2e+10 22 | 35.0091 -119.08 0 12000 0.251 0 90 135.058 3e+10 3.2e+10 23 | 34.9968 -119.11 0 12000 0.247 0 90 135.098 3e+10 3.2e+10 24 | 34.9805 -119.136 0 12000 0.241 0 90 134.958 3e+10 3.2e+10 25 | 34.964 -119.162 0 12000 0.205 0 90 135.054 3e+10 3.2e+10 26 | 34.9531 -119.194 0 12000 0.186 0 90 135.023 3e+10 3.2e+10 27 | 34.9576 -119.227 0 12000 0.146 0 90 135.043 3e+10 3.2e+10 28 | 34.9552 -119.259 0 12000 0 0 90 135.01 3e+10 3.2e+10 29 | 34.9446 -119.29 0 12000 0 0 90 135.01 3e+10 3.2e+10 30 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Pt._Reyes.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 103 103 17 Pt._Reyes# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 38.1717 -123.235 0 12000 0 0 90 130.104 3e+10 3.2e+10 16 | 38.1467 -123.222 0 12000 0.022 0 90 130.041 3e+10 3.2e+10 17 | 38.1222 -123.208 0 12000 0.028 0 90 130.088 3e+10 3.2e+10 18 | 38.0985 -123.192 0 12000 0.031 0 90 130.1 3e+10 3.2e+10 19 | 38.0757 -123.174 0 12000 0.036 0 90 130.033 3e+10 3.2e+10 20 | 38.0541 -123.153 0 12000 0.037 0 90 130.02 3e+10 3.2e+10 21 | 38.0337 -123.131 0 12000 0.038 0 90 130.093 3e+10 3.2e+10 22 | 38.015 -123.106 0 12000 0.038 0 90 130.008 3e+10 3.2e+10 23 | 37.9983 -123.079 0 12000 0.038 0 90 129.994 3e+10 3.2e+10 24 | 37.9839 -123.051 0 12000 0.038 0 90 129.892 3e+10 3.2e+10 25 | 37.9719 -123.02 0 12000 0.037 0 90 129.932 3e+10 3.2e+10 26 | 37.9624 -122.988 0 12000 0.036 0 90 129.873 3e+10 3.2e+10 27 | 37.955 -122.955 0 12000 0.031 0 90 129.841 3e+10 3.2e+10 28 | 37.9495 -122.922 0 12000 0.028 0 90 130.048 3e+10 3.2e+10 29 | 37.946 -122.888 0 12000 0.022 0 90 129.936 3e+10 3.2e+10 30 | 37.9441 -122.854 0 12000 0 0 90 129.94 3e+10 3.2e+10 31 | 37.9425 -122.82 0 12000 0 0 90 129.94 3e+10 3.2e+10 32 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Puente_Hills.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 111 111 15 Puente_Hills# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 34.0478 -118.288 -5000 12000 0 0 90 154.992 3e+10 3.2e+10 16 | 34.0274 -118.267 -5000 12000 0.051 0 90 155.02 3e+10 3.2e+10 17 | 34.0084 -118.243 -5000 12000 0.065 0 90 155.024 3e+10 3.2e+10 18 | 33.9909 -118.219 -5000 12000 0.072 0 90 154.971 3e+10 3.2e+10 19 | 33.9753 -118.192 -5000 12000 0.085 0 90 155.043 3e+10 3.2e+10 20 | 33.9617 -118.164 -5000 12000 0.087 0 90 155.032 3e+10 3.2e+10 21 | 33.9507 -118.134 -5000 12000 0.088 0 90 154.985 3e+10 3.2e+10 22 | 33.9422 -118.103 -5000 12000 0.088 0 90 154.99 3e+10 3.2e+10 23 | 33.9358 -118.072 -5000 12000 0.087 0 90 154.952 3e+10 3.2e+10 24 | 33.931 -118.04 -5000 12000 0.085 0 90 154.963 3e+10 3.2e+10 25 | 33.9274 -118.007 -5000 12000 0.072 0 90 154.932 3e+10 3.2e+10 26 | 33.925 -117.975 -5000 12000 0.065 0 90 154.941 3e+10 3.2e+10 27 | 33.9239 -117.943 -5000 12000 0.051 0 90 155.009 3e+10 3.2e+10 28 | 33.9242 -117.91 -5000 12000 0 0 90 154.967 3e+10 3.2e+10 29 | 33.9258 -117.878 -5000 12000 0 0 90 154.967 3e+10 3.2e+10 30 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Quien_Sabe.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 99 99 8 Quien_Sabe# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 36.9193 -121.35 0 12000 0.031 0 180 90 3e+10 3.2e+10 16 | 36.8972 -121.33 0 12000 0.126 0 180 90 3e+10 3.2e+10 17 | 36.8752 -121.311 0 12000 0.126 0 180 90 3e+10 3.2e+10 18 | 36.8532 -121.291 0 12000 0.126 0 180 90 3e+10 3.2e+10 19 | 36.8311 -121.272 0 12000 0.126 0 180 90 3e+10 3.2e+10 20 | 36.8091 -121.253 0 12000 0.126 0 180 90 3e+10 3.2e+10 21 | 36.7871 -121.233 0 12000 0.031 0 180 90 3e+10 3.2e+10 22 | 36.7645 -121.215 0 12000 0.031 0 180 90 3e+10 3.2e+10 23 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Raymond.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 54 54 7 Raymond# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 34.1596 -118.019 0 12000 0.047 0 45 75.0188 3e+10 3.2e+10 16 | 34.1473 -118.048 0 12000 0.189 0 45 75.0793 3e+10 3.2e+10 17 | 34.138 -118.079 0 12000 0.189 0 45 75.1136 3e+10 3.2e+10 18 | 34.1315 -118.11 0 12000 0.189 0 45 74.9088 3e+10 3.2e+10 19 | 34.1267 -118.142 0 12000 0.189 0 45 75.0254 3e+10 3.2e+10 20 | 34.1234 -118.175 0 12000 0.047 0 45 75.1017 3e+10 3.2e+10 21 | 34.1218 -118.207 0 12000 0.047 0 45 75.1017 3e+10 3.2e+10 22 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Robinson_Crk.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 109 109 6 Robinson_Crk# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 38.3281 -119.247 0 12000 0.063 0 -90 120.01 3e+10 3.2e+10 16 | 38.3114 -119.274 0 12000 0.063 0 -90 120.053 3e+10 3.2e+10 17 | 38.2902 -119.296 0 12000 0.063 0 -90 120.144 3e+10 3.2e+10 18 | 38.2639 -119.305 0 12000 0.063 0 -90 120.054 3e+10 3.2e+10 19 | 38.2363 -119.301 0 12000 0.063 0 -90 120.134 3e+10 3.2e+10 20 | 38.2109 -119.313 0 12000 0.063 0 -90 120.134 3e+10 3.2e+10 21 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Round_Valley.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 93 93 15 Round_Valley# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 37.5509 -118.731 0 12000 0 0 -90 119.911 3e+10 3.2e+10 16 | 37.537 -118.702 0 12000 0.073 0 -90 120.004 3e+10 3.2e+10 17 | 37.5263 -118.671 0 12000 0.093 0 -90 119.92 3e+10 3.2e+10 18 | 37.512 -118.641 0 12000 0.102 0 -90 119.934 3e+10 3.2e+10 19 | 37.4891 -118.621 0 12000 0.121 0 -90 120.123 3e+10 3.2e+10 20 | 37.4615 -118.619 0 12000 0.124 0 -90 120.206 3e+10 3.2e+10 21 | 37.4366 -118.632 0 12000 0.125 0 -90 120.077 3e+10 3.2e+10 22 | 37.4098 -118.645 0 12000 0.125 0 -90 120.008 3e+10 3.2e+10 23 | 37.3849 -118.632 0 12000 0.124 0 -90 120.086 3e+10 3.2e+10 24 | 37.3599 -118.614 0 12000 0.121 0 -90 120.13 3e+10 3.2e+10 25 | 37.3332 -118.621 0 12000 0.102 0 -90 120.133 3e+10 3.2e+10 26 | 37.3088 -118.636 0 12000 0.093 0 -90 120.05 3e+10 3.2e+10 27 | 37.2806 -118.641 0 12000 0.073 0 -90 119.98 3e+10 3.2e+10 28 | 37.2582 -118.622 0 12000 0 0 -90 120.042 3e+10 3.2e+10 29 | 37.2408 -118.596 0 12000 0 0 -90 120.042 3e+10 3.2e+10 30 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_SAF-Mendo_Offs.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 1 1 17 SAF-Mendo_Offs# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 40.3593 -124.932 0 12000 0 0 180 90 3e+10 3.2e+10 16 | 40.3555 -124.897 0 12000 2.555 0 180 90 3e+10 3.2e+10 17 | 40.351 -124.862 0 12000 3.238 0 180 90 3e+10 3.2e+10 18 | 40.346 -124.827 0 12000 3.576 0 180 90 3e+10 3.2e+10 19 | 40.3406 -124.793 0 12000 4.208 0 180 90 3e+10 3.2e+10 20 | 40.3347 -124.758 0 12000 4.313 0 180 90 3e+10 3.2e+10 21 | 40.3283 -124.724 0 12000 4.376 0 180 90 3e+10 3.2e+10 22 | 40.3214 -124.689 0 12000 4.421 0 180 90 3e+10 3.2e+10 23 | 40.3142 -124.656 0 12000 4.421 0 180 90 3e+10 3.2e+10 24 | 40.3064 -124.622 0 12000 4.421 0 180 90 3e+10 3.2e+10 25 | 40.2981 -124.588 0 12000 4.421 0 180 90 3e+10 3.2e+10 26 | 40.2894 -124.554 0 12000 4.421 0 180 90 3e+10 3.2e+10 27 | 40.2802 -124.521 0 12000 4.421 0 180 90 3e+10 3.2e+10 28 | 40.2705 -124.488 0 12000 4.421 0 180 90 3e+10 3.2e+10 29 | 40.2602 -124.455 0 12000 4.421 0 180 90 3e+10 3.2e+10 30 | 40.2493 -124.423 0 12000 4.421 0 180 90 3e+10 3.2e+10 31 | 40.2361 -124.392 0 12000 4.421 0 180 90 3e+10 3.2e+10 32 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_SAF-N_Coast_Of.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 1 1 18 SAF-N_Coast_Of# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 39.4039 -123.93 0 12000 3.627 0 180 90 3e+10 3.2e+10 16 | 39.3776 -123.922 0 12000 3.457 0 180 90 3e+10 3.2e+10 17 | 39.3514 -123.914 0 12000 3.315 0 180 90 3e+10 3.2e+10 18 | 39.3252 -123.906 0 12000 3.202 0 180 90 3e+10 3.2e+10 19 | 39.299 -123.898 0 12000 3.117 0 180 90 3e+10 3.2e+10 20 | 39.2731 -123.889 0 12000 3.06 0 180 90 3e+10 3.2e+10 21 | 39.2472 -123.879 0 12000 3.032 0 180 90 3e+10 3.2e+10 22 | 39.2217 -123.868 0 12000 3.032 0 180 90 3e+10 3.2e+10 23 | 39.1966 -123.855 0 12000 3.032 0 180 90 3e+10 3.2e+10 24 | 39.1719 -123.841 0 12000 3.032 0 180 90 3e+10 3.2e+10 25 | 39.1478 -123.826 0 12000 3.032 0 180 90 3e+10 3.2e+10 26 | 39.1243 -123.809 0 12000 3.032 0 180 90 3e+10 3.2e+10 27 | 39.1013 -123.791 0 12000 3.032 0 180 90 3e+10 3.2e+10 28 | 39.0788 -123.772 0 12000 3.032 0 180 90 3e+10 3.2e+10 29 | 39.0565 -123.752 0 12000 3.032 0 180 90 3e+10 3.2e+10 30 | 39.0348 -123.732 0 12000 3.032 0 180 90 3e+10 3.2e+10 31 | 39.013 -123.711 0 12000 3.032 0 180 90 3e+10 3.2e+10 32 | 38.9904 -123.692 0 12000 3.032 0 180 90 3e+10 3.2e+10 33 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_SAF-N_Creeping.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 1 1 13 SAF-N_Creeping# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 36.8124 -121.49 0 12000 0.92 0 180 90 3e+10 3.2e+10 16 | 36.7952 -121.464 0 12000 0.657 0 180 90 3e+10 3.2e+10 17 | 36.7778 -121.438 0 12000 0.438 0 180 90 3e+10 3.2e+10 18 | 36.7602 -121.413 0 12000 0.263 0 180 90 3e+10 3.2e+10 19 | 36.7425 -121.387 0 12000 0.131 0 180 90 3e+10 3.2e+10 20 | 36.7245 -121.362 0 12000 0.044 0 180 90 3e+10 3.2e+10 21 | 36.7064 -121.337 0 12000 0 0 180 90 3e+10 3.2e+10 22 | 36.6882 -121.313 0 12000 0 0 180 90 3e+10 3.2e+10 23 | 36.6698 -121.288 0 12000 0 0 180 90 3e+10 3.2e+10 24 | 36.6512 -121.264 0 12000 0 0 180 90 3e+10 3.2e+10 25 | 36.6323 -121.24 0 12000 0 0 180 90 3e+10 3.2e+10 26 | 36.6134 -121.216 0 12000 0 0 180 90 3e+10 3.2e+10 27 | 36.5936 -121.193 0 12000 0 0 180 90 3e+10 3.2e+10 28 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_SAF-N_Mid_Peni.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 1 1 11 SAF-N_Mid_Peni# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 37.7898 -122.584 0 12000 2.527 0 180 90 3e+10 3.2e+10 16 | 37.7648 -122.571 0 12000 2.418 0 180 90 3e+10 3.2e+10 17 | 37.7406 -122.556 0 12000 2.328 0 180 90 3e+10 3.2e+10 18 | 37.7179 -122.538 0 12000 2.256 0 180 90 3e+10 3.2e+10 19 | 37.6969 -122.517 0 12000 2.202 0 180 90 3e+10 3.2e+10 20 | 37.6762 -122.495 0 12000 2.166 0 180 90 3e+10 3.2e+10 21 | 37.6548 -122.474 0 12000 2.148 0 180 90 3e+10 3.2e+10 22 | 37.6327 -122.454 0 12000 2.148 0 180 90 3e+10 3.2e+10 23 | 37.6104 -122.435 0 12000 2.148 0 180 90 3e+10 3.2e+10 24 | 37.5878 -122.416 0 12000 2.148 0 180 90 3e+10 3.2e+10 25 | 37.5645 -122.399 0 12000 2.148 0 180 90 3e+10 3.2e+10 26 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_SAF-Parkfield.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 1 1 13 SAF-Parkfield# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 36.0013 -120.559 0 12000 2.454 0 180 90 3e+10 3.2e+10 16 | 35.9808 -120.538 0 12000 2.98 0 180 90 3e+10 3.2e+10 17 | 35.9604 -120.516 0 12000 3.419 0 180 90 3e+10 3.2e+10 18 | 35.94 -120.494 0 12000 3.769 0 180 90 3e+10 3.2e+10 19 | 35.9195 -120.472 0 12000 4.032 0 180 90 3e+10 3.2e+10 20 | 35.8993 -120.45 0 12000 4.207 0 180 90 3e+10 3.2e+10 21 | 35.8789 -120.428 0 12000 4.295 0 180 90 3e+10 3.2e+10 22 | 35.8585 -120.407 0 12000 4.295 0 180 90 3e+10 3.2e+10 23 | 35.838 -120.385 0 12000 4.295 0 180 90 3e+10 3.2e+10 24 | 35.8175 -120.363 0 12000 4.295 0 180 90 3e+10 3.2e+10 25 | 35.797 -120.342 0 12000 4.295 0 180 90 3e+10 3.2e+10 26 | 35.7764 -120.32 0 12000 4.295 0 180 90 3e+10 3.2e+10 27 | 35.7552 -120.3 0 12000 4.295 0 180 90 3e+10 3.2e+10 28 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_SAF-S_Cruz_Mts.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 1 1 9 SAF-S_Cruz_Mts# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 36.9573 -121.689 0 12000 2.154 0 180 90 3e+10 3.2e+10 16 | 36.9373 -121.667 0 12000 2.154 0 180 90 3e+10 3.2e+10 17 | 36.9181 -121.643 0 12000 2.11 0 180 90 3e+10 3.2e+10 18 | 36.8995 -121.619 0 12000 2.022 0 180 90 3e+10 3.2e+10 19 | 36.8815 -121.594 0 12000 1.89 0 180 90 3e+10 3.2e+10 20 | 36.864 -121.568 0 12000 1.714 0 180 90 3e+10 3.2e+10 21 | 36.8467 -121.542 0 12000 1.494 0 180 90 3e+10 3.2e+10 22 | 36.8296 -121.516 0 12000 1.231 0 180 90 3e+10 3.2e+10 23 | 36.8116 -121.491 0 12000 1.231 0 180 90 3e+10 3.2e+10 24 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_SAF-S_Mid_Peni.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 1 1 9 SAF-S_Mid_Peni# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 37.327 -122.176 0 12000 2.148 0 180 90 3e+10 3.2e+10 16 | 37.3066 -122.154 0 12000 2.148 0 180 90 3e+10 3.2e+10 17 | 37.2864 -122.131 0 12000 2.148 0 180 90 3e+10 3.2e+10 18 | 37.2664 -122.108 0 12000 2.148 0 180 90 3e+10 3.2e+10 19 | 37.2465 -122.086 0 12000 2.148 0 180 90 3e+10 3.2e+10 20 | 37.2267 -122.062 0 12000 2.148 0 180 90 3e+10 3.2e+10 21 | 37.2071 -122.039 0 12000 2.148 0 180 90 3e+10 3.2e+10 22 | 37.1873 -122.016 0 12000 2.148 0 180 90 3e+10 3.2e+10 23 | 37.1669 -121.994 0 12000 2.148 0 180 90 3e+10 3.2e+10 24 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_S_Maacama.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 10 10 14 S_Maacama# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 38.8494 -122.992 0 12000 1.137 0 180 90 3e+10 3.2e+10 16 | 38.8262 -122.974 0 12000 1.137 0 180 90 3e+10 3.2e+10 17 | 38.8034 -122.956 0 12000 1.137 0 180 90 3e+10 3.2e+10 18 | 38.7811 -122.936 0 12000 1.137 0 180 90 3e+10 3.2e+10 19 | 38.7592 -122.916 0 12000 1.137 0 180 90 3e+10 3.2e+10 20 | 38.7378 -122.895 0 12000 1.137 0 180 90 3e+10 3.2e+10 21 | 38.7169 -122.873 0 12000 1.125 0 180 90 3e+10 3.2e+10 22 | 38.6966 -122.851 0 12000 1.109 0 180 90 3e+10 3.2e+10 23 | 38.6766 -122.827 0 12000 1.082 0 180 90 3e+10 3.2e+10 24 | 38.6571 -122.803 0 12000 0.92 0 180 90 3e+10 3.2e+10 25 | 38.6382 -122.779 0 12000 0.833 0 180 90 3e+10 3.2e+10 26 | 38.6197 -122.754 0 12000 0.657 0 180 90 3e+10 3.2e+10 27 | 38.6016 -122.728 0 12000 0 0 180 90 3e+10 3.2e+10 28 | 38.583 -122.703 0 12000 0 0 180 90 3e+10 3.2e+10 29 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_San_Bernardino.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 4 4 12 San_Bernardino# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 34.2356 -117.496 0 12000 0 0 180 90 3e+10 3.2e+10 16 | 34.2167 -117.473 0 12000 1.098 0 180 90 3e+10 3.2e+10 17 | 34.1978 -117.45 0 12000 1.392 0 180 90 3e+10 3.2e+10 18 | 34.1788 -117.427 0 12000 1.537 0 180 90 3e+10 3.2e+10 19 | 34.1598 -117.403 0 12000 1.809 0 180 90 3e+10 3.2e+10 20 | 34.1408 -117.38 0 12000 1.854 0 180 90 3e+10 3.2e+10 21 | 34.1217 -117.357 0 12000 1.881 0 180 90 3e+10 3.2e+10 22 | 34.1027 -117.334 0 12000 1.9 0 180 90 3e+10 3.2e+10 23 | 34.0834 -117.311 0 12000 1.9 0 180 90 3e+10 3.2e+10 24 | 34.0642 -117.289 0 12000 1.9 0 180 90 3e+10 3.2e+10 25 | 34.0448 -117.266 0 12000 1.9 0 180 90 3e+10 3.2e+10 26 | 34.0254 -117.243 0 12000 1.9 0 180 90 3e+10 3.2e+10 27 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_San_Cayetano.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 27 27 15 San_Cayetano# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 34.4545 -119.158 0 12000 0 0 90 119.996 3e+10 3.2e+10 16 | 34.4424 -119.128 0 12000 0.439 0 90 120.04 3e+10 3.2e+10 17 | 34.4378 -119.096 0 12000 0.557 0 90 119.867 3e+10 3.2e+10 18 | 34.4359 -119.063 0 12000 0.615 0 90 119.887 3e+10 3.2e+10 19 | 34.4304 -119.031 0 12000 0.723 0 90 120.013 3e+10 3.2e+10 20 | 34.4282 -118.997 0 12000 0.741 0 90 119.975 3e+10 3.2e+10 21 | 34.4451 -118.971 0 12000 0.752 0 90 120.166 3e+10 3.2e+10 22 | 34.4295 -118.929 0 12000 0.752 0 90 60.0246 3e+10 3.2e+10 23 | 34.4275 -118.927 0 12000 0.742 0 90 119.953 3e+10 3.2e+10 24 | 34.4098 -118.902 0 12000 0.723 0 90 120.037 3e+10 3.2e+10 25 | 34.4016 -118.87 0 12000 0.615 0 90 120.006 3e+10 3.2e+10 26 | 34.403 -118.838 0 12000 0.557 0 90 119.958 3e+10 3.2e+10 27 | 34.4112 -118.806 0 12000 0.439 0 90 119.994 3e+10 3.2e+10 28 | 34.4246 -118.778 0 12000 0 0 90 120.124 3e+10 3.2e+10 29 | 34.4424 -118.753 0 12000 0 0 90 120.124 3e+10 3.2e+10 30 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_San_Jacinto.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 4 4 16 San_Jacinto# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 34.0254 -117.243 0 12000 1.903 0 180 90 3e+10 3.2e+10 16 | 34.0058 -117.221 0 12000 1.903 0 180 90 3e+10 3.2e+10 17 | 33.9861 -117.199 0 12000 1.903 0 180 90 3e+10 3.2e+10 18 | 33.9665 -117.176 0 12000 1.903 0 180 90 3e+10 3.2e+10 19 | 33.9467 -117.154 0 12000 1.903 0 180 90 3e+10 3.2e+10 20 | 33.9269 -117.132 0 12000 1.903 0 180 90 3e+10 3.2e+10 21 | 33.9071 -117.11 0 12000 1.903 0 180 90 3e+10 3.2e+10 22 | 33.8872 -117.088 0 12000 1.903 0 180 90 3e+10 3.2e+10 23 | 33.8674 -117.066 0 12000 1.903 0 180 90 3e+10 3.2e+10 24 | 33.8478 -117.044 0 12000 1.903 0 180 90 3e+10 3.2e+10 25 | 33.8281 -117.021 0 12000 1.903 0 180 90 3e+10 3.2e+10 26 | 33.8086 -116.999 0 12000 1.903 0 180 90 3e+10 3.2e+10 27 | 33.7893 -116.976 0 12000 1.903 0 180 90 3e+10 3.2e+10 28 | 33.7701 -116.954 0 12000 1.903 0 180 90 3e+10 3.2e+10 29 | 33.751 -116.931 0 12000 1.903 0 180 90 3e+10 3.2e+10 30 | 33.7322 -116.907 0 12000 1.903 0 180 90 3e+10 3.2e+10 31 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_San_Jose.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 55 55 7 San_Jose# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 34.1036 -117.701 0 12000 0.016 0 45 74.944 3e+10 3.2e+10 16 | 34.0857 -117.726 0 12000 0.063 0 45 74.976 3e+10 3.2e+10 17 | 34.0758 -117.756 0 12000 0.063 0 45 75.039 3e+10 3.2e+10 18 | 34.0709 -117.788 0 12000 0.063 0 45 75.0644 3e+10 3.2e+10 19 | 34.0661 -117.82 0 12000 0.063 0 45 75.0886 3e+10 3.2e+10 20 | 34.0557 -117.85 0 12000 0.016 0 45 74.9465 3e+10 3.2e+10 21 | 34.0407 -117.877 0 12000 0.016 0 45 74.9465 3e+10 3.2e+10 22 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_San_Miguel.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 89 89 9 San_Miguel# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 31.7194 -115.935 0 12000 0.006 0 180 90 3e+10 3.2e+10 16 | 31.7004 -115.912 0 12000 0.025 0 180 90 3e+10 3.2e+10 17 | 31.6814 -115.89 0 12000 0.025 0 180 90 3e+10 3.2e+10 18 | 31.6624 -115.867 0 12000 0.025 0 180 90 3e+10 3.2e+10 19 | 31.6434 -115.845 0 12000 0.025 0 180 90 3e+10 3.2e+10 20 | 31.6243 -115.823 0 12000 0.025 0 180 90 3e+10 3.2e+10 21 | 31.6052 -115.8 0 12000 0.025 0 180 90 3e+10 3.2e+10 22 | 31.5863 -115.778 0 12000 0.006 0 180 90 3e+10 3.2e+10 23 | 31.5676 -115.755 0 12000 0.006 0 180 90 3e+10 3.2e+10 24 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Santa_Cruz_Isl.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 66 66 17 Santa_Cruz_Isl# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 34.0894 -120.025 0 12000 0 0 0 90 3e+10 3.2e+10 16 | 34.0754 -119.997 0 12000 0.073 0 0 90 3e+10 3.2e+10 17 | 34.0624 -119.968 0 12000 0.093 0 0 90 3e+10 3.2e+10 18 | 34.0504 -119.939 0 12000 0.102 0 0 90 3e+10 3.2e+10 19 | 34.0397 -119.909 0 12000 0.12 0 0 90 3e+10 3.2e+10 20 | 34.0299 -119.879 0 12000 0.123 0 0 90 3e+10 3.2e+10 21 | 34.0212 -119.848 0 12000 0.125 0 0 90 3e+10 3.2e+10 22 | 34.0137 -119.817 0 12000 0.126 0 0 90 3e+10 3.2e+10 23 | 34.0071 -119.785 0 12000 0.126 0 0 90 3e+10 3.2e+10 24 | 34.0015 -119.754 0 12000 0.125 0 0 90 3e+10 3.2e+10 25 | 33.9969 -119.722 0 12000 0.123 0 0 90 3e+10 3.2e+10 26 | 33.9932 -119.689 0 12000 0.12 0 0 90 3e+10 3.2e+10 27 | 33.9906 -119.657 0 12000 0.102 0 0 90 3e+10 3.2e+10 28 | 33.9888 -119.624 0 12000 0.093 0 0 90 3e+10 3.2e+10 29 | 33.988 -119.592 0 12000 0.073 0 0 90 3e+10 3.2e+10 30 | 33.9881 -119.56 0 12000 0 0 0 90 3e+10 3.2e+10 31 | 33.9887 -119.527 0 12000 0 0 0 90 3e+10 3.2e+10 32 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Santa_Monica.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 49 49 10 Santa_Monica# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 34.0734 -118.422 0 12000 0.032 0 45 75.1227 3e+10 3.2e+10 16 | 34.0585 -118.449 0 12000 0.126 0 45 74.9582 3e+10 3.2e+10 17 | 34.0451 -118.477 0 12000 0.126 0 45 74.9277 3e+10 3.2e+10 18 | 34.0328 -118.506 0 12000 0.126 0 45 74.9194 3e+10 3.2e+10 19 | 34.0219 -118.536 0 12000 0.126 0 45 75.0278 3e+10 3.2e+10 20 | 34.0125 -118.566 0 12000 0.126 0 45 75.0553 3e+10 3.2e+10 21 | 34.0044 -118.598 0 12000 0.126 0 45 75.1194 3e+10 3.2e+10 22 | 33.9977 -118.629 0 12000 0.126 0 45 75.0682 3e+10 3.2e+10 23 | 33.9924 -118.661 0 12000 0.032 0 45 75.0106 3e+10 3.2e+10 24 | 33.9888 -118.693 0 12000 0.032 0 45 75.0106 3e+10 3.2e+10 25 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Santa_Susana.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 29 29 9 Santa_Susana# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 34.3575 -118.751 0 12000 0.158 0 90 124.883 3e+10 3.2e+10 16 | 34.3521 -118.719 0 12000 0.633 0 90 124.822 3e+10 3.2e+10 17 | 34.3486 -118.687 0 12000 0.633 0 90 124.971 3e+10 3.2e+10 18 | 34.3433 -118.654 0 12000 0.633 0 90 124.984 3e+10 3.2e+10 19 | 34.3249 -118.628 0 12000 0.633 0 90 124.993 3e+10 3.2e+10 20 | 34.3239 -118.595 0 12000 0.633 0 90 124.939 3e+10 3.2e+10 21 | 34.3139 -118.565 0 12000 0.633 0 90 125.005 3e+10 3.2e+10 22 | 34.2961 -118.54 0 12000 0.158 0 90 124.924 3e+10 3.2e+10 23 | 34.2857 -118.51 0 12000 0.158 0 90 124.924 3e+10 3.2e+10 24 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Sierra_Mad-SFd.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 21 21 7 Sierra_Mad-SFd# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 34.3335 -118.465 0 12000 0.063 0 90 135.057 3e+10 3.2e+10 16 | 34.324 -118.434 0 12000 0.254 0 90 134.927 3e+10 3.2e+10 17 | 34.3068 -118.409 0 12000 0.254 0 90 135.045 3e+10 3.2e+10 18 | 34.2933 -118.38 0 12000 0.254 0 90 135.004 3e+10 3.2e+10 19 | 34.2852 -118.349 0 12000 0.254 0 90 134.906 3e+10 3.2e+10 20 | 34.284 -118.316 0 12000 0.063 0 90 135.038 3e+10 3.2e+10 21 | 34.2902 -118.284 0 12000 0.063 0 90 135.038 3e+10 3.2e+10 22 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Simi.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 62 62 11 Simi# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 34.2849 -118.813 0 12000 0.032 0 45 59.9897 3e+10 3.2e+10 16 | 34.2761 -118.844 0 12000 0.127 0 45 59.9899 3e+10 3.2e+10 17 | 34.2673 -118.875 0 12000 0.127 0 45 59.9672 3e+10 3.2e+10 18 | 34.2559 -118.907 0 12000 0.127 0 45 60.0992 3e+10 3.2e+10 19 | 34.2626 -118.939 0 12000 0.127 0 45 59.9997 3e+10 3.2e+10 20 | 34.2613 -118.971 0 12000 0.127 0 45 59.9799 3e+10 3.2e+10 21 | 34.2575 -119.004 0 12000 0.127 0 45 60.0717 3e+10 3.2e+10 22 | 34.2517 -119.035 0 12000 0.127 0 45 59.9532 3e+10 3.2e+10 23 | 34.2439 -119.067 0 12000 0.127 0 45 59.9687 3e+10 3.2e+10 24 | 34.2338 -119.097 0 12000 0.032 0 45 59.9636 3e+10 3.2e+10 25 | 34.2214 -119.126 0 12000 0.032 0 45 59.9636 3e+10 3.2e+10 26 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Sn_Joaquin_Hil.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 112 112 10 Sn_Joaquin_Hil# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 33.6969 -117.917 -2000 12000 0.016 0 90 22.9852 3e+10 3.2e+10 16 | 33.6974 -117.884 -2000 12000 0.064 0 90 23.0333 3e+10 3.2e+10 17 | 33.6945 -117.852 -2000 12000 0.064 0 90 23.0151 3e+10 3.2e+10 18 | 33.6879 -117.821 -2000 12000 0.064 0 90 22.9998 3e+10 3.2e+10 19 | 33.6773 -117.791 -2000 12000 0.064 0 90 23.0016 3e+10 3.2e+10 20 | 33.6635 -117.763 -2000 12000 0.064 0 90 23.0573 3e+10 3.2e+10 21 | 33.6477 -117.737 -2000 12000 0.064 0 90 23.023 3e+10 3.2e+10 22 | 33.6303 -117.712 -2000 12000 0.064 0 90 22.9739 3e+10 3.2e+10 23 | 33.6114 -117.689 -2000 12000 0.016 0 90 22.9502 3e+10 3.2e+10 24 | 33.5908 -117.668 -2000 12000 0.016 0 90 22.9502 3e+10 3.2e+10 25 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Superstion_Hll.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 6 6 8 Superstion_Hll# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 33.0048 -115.825 0 12000 0.126 0 180 90 3e+10 3.2e+10 16 | 32.9888 -115.799 0 12000 0.505 0 180 90 3e+10 3.2e+10 17 | 32.9727 -115.773 0 12000 0.505 0 180 90 3e+10 3.2e+10 18 | 32.9567 -115.748 0 12000 0.505 0 180 90 3e+10 3.2e+10 19 | 32.9406 -115.722 0 12000 0.505 0 180 90 3e+10 3.2e+10 20 | 32.9246 -115.696 0 12000 0.505 0 180 90 3e+10 3.2e+10 21 | 32.9085 -115.67 0 12000 0.126 0 180 90 3e+10 3.2e+10 22 | 32.8929 -115.644 0 12000 0.126 0 180 90 3e+10 3.2e+10 23 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Superstion_Mt..txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 5 5 9 Superstion_Mt.# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 32.9868 -115.912 0 12000 0.577 0 180 90 3e+10 3.2e+10 16 | 32.9716 -115.886 0 12000 0.587 0 180 90 3e+10 3.2e+10 17 | 32.9571 -115.858 0 12000 0.59 0 180 90 3e+10 3.2e+10 18 | 32.9432 -115.831 0 12000 0.586 0 180 90 3e+10 3.2e+10 19 | 32.93 -115.803 0 12000 0.503 0 180 90 3e+10 3.2e+10 20 | 32.9173 -115.775 0 12000 0.463 0 180 90 3e+10 3.2e+10 21 | 32.9051 -115.746 0 12000 0.365 0 180 90 3e+10 3.2e+10 22 | 32.8935 -115.717 0 12000 0 0 180 90 3e+10 3.2e+10 23 | 32.8827 -115.688 0 12000 0 0 180 90 3e+10 3.2e+10 24 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Table_Bluff.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 122 122 17 Table_Bluff# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 40.8171 -124.668 0 12000 0 0 90 135.131 3e+10 3.2e+10 16 | 40.7951 -124.648 0 12000 0.044 0 90 135.062 3e+10 3.2e+10 17 | 40.7741 -124.626 0 12000 0.056 0 90 135.107 3e+10 3.2e+10 18 | 40.7543 -124.602 0 12000 0.062 0 90 135.077 3e+10 3.2e+10 19 | 40.7361 -124.576 0 12000 0.072 0 90 135.122 3e+10 3.2e+10 20 | 40.7203 -124.547 0 12000 0.074 0 90 135.018 3e+10 3.2e+10 21 | 40.7076 -124.516 0 12000 0.075 0 90 134.91 3e+10 3.2e+10 22 | 40.6994 -124.482 0 12000 0.076 0 90 134.856 3e+10 3.2e+10 23 | 40.6966 -124.447 0 12000 0.076 0 90 134.987 3e+10 3.2e+10 24 | 40.6976 -124.411 0 12000 0.075 0 90 134.956 3e+10 3.2e+10 25 | 40.7 -124.376 0 12000 0.074 0 90 134.963 3e+10 3.2e+10 26 | 40.7018 -124.34 0 12000 0.072 0 90 134.981 3e+10 3.2e+10 27 | 40.701 -124.304 0 12000 0.062 0 90 134.935 3e+10 3.2e+10 28 | 40.6945 -124.269 0 12000 0.056 0 90 134.988 3e+10 3.2e+10 29 | 40.6826 -124.237 0 12000 0.044 0 90 135.154 3e+10 3.2e+10 30 | 40.6671 -124.207 0 12000 0 0 90 135.141 3e+10 3.2e+10 31 | 40.6483 -124.182 0 12000 0 0 90 135.141 3e+10 3.2e+10 32 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Tank_Cyn.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 84 84 6 Tank_Cyn# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 35.7597 -117.238 0 12000 0.127 0 -90 59.9886 3e+10 3.2e+10 16 | 35.7364 -117.22 0 12000 0.127 0 -90 59.9117 3e+10 3.2e+10 17 | 35.7099 -117.212 0 12000 0.127 0 -90 60.0047 3e+10 3.2e+10 18 | 35.6825 -117.215 0 12000 0.127 0 -90 59.8455 3e+10 3.2e+10 19 | 35.6585 -117.231 0 12000 0.127 0 -90 59.8935 3e+10 3.2e+10 20 | 35.6395 -117.254 0 12000 0.127 0 -90 59.8935 3e+10 3.2e+10 21 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Temecula.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 7 7 15 Temecula# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 33.6456 -117.351 0 12000 0.633 0 180 90 3e+10 3.2e+10 16 | 33.6266 -117.328 0 12000 0.633 0 180 90 3e+10 3.2e+10 17 | 33.6076 -117.305 0 12000 0.633 0 180 90 3e+10 3.2e+10 18 | 33.5886 -117.282 0 12000 0.633 0 180 90 3e+10 3.2e+10 19 | 33.5697 -117.259 0 12000 0.633 0 180 90 3e+10 3.2e+10 20 | 33.5508 -117.236 0 12000 0.633 0 180 90 3e+10 3.2e+10 21 | 33.532 -117.213 0 12000 0.633 0 180 90 3e+10 3.2e+10 22 | 33.5133 -117.189 0 12000 0.633 0 180 90 3e+10 3.2e+10 23 | 33.4947 -117.166 0 12000 0.633 0 180 90 3e+10 3.2e+10 24 | 33.476 -117.143 0 12000 0.633 0 180 90 3e+10 3.2e+10 25 | 33.4575 -117.119 0 12000 0.633 0 180 90 3e+10 3.2e+10 26 | 33.4392 -117.096 0 12000 0.633 0 180 90 3e+10 3.2e+10 27 | 33.4209 -117.072 0 12000 0.633 0 180 90 3e+10 3.2e+10 28 | 33.4029 -117.048 0 12000 0.633 0 180 90 3e+10 3.2e+10 29 | 33.385 -117.024 0 12000 0.633 0 180 90 3e+10 3.2e+10 30 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Ventura.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 60 60 14 Ventura# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 34.3357 -119.153 0 12000 0 0 45 74.9282 3e+10 3.2e+10 16 | 34.3186 -119.178 0 12000 0.073 0 45 75.0116 3e+10 3.2e+10 17 | 34.3017 -119.204 0 12000 0.093 0 45 74.9632 3e+10 3.2e+10 18 | 34.2887 -119.233 0 12000 0.102 0 45 75.0142 3e+10 3.2e+10 19 | 34.2849 -119.266 0 12000 0.12 0 45 75.0563 3e+10 3.2e+10 20 | 34.2875 -119.298 0 12000 0.123 0 45 75.1108 3e+10 3.2e+10 21 | 34.2949 -119.329 0 12000 0.124 0 45 74.8876 3e+10 3.2e+10 22 | 34.3046 -119.36 0 12000 0.123 0 45 74.9953 3e+10 3.2e+10 23 | 34.3139 -119.391 0 12000 0.12 0 45 74.9521 3e+10 3.2e+10 24 | 34.3197 -119.423 0 12000 0.102 0 45 75.0933 3e+10 3.2e+10 25 | 34.3213 -119.455 0 12000 0.093 0 45 74.9461 3e+10 3.2e+10 26 | 34.3197 -119.488 0 12000 0.073 0 45 75.0086 3e+10 3.2e+10 27 | 34.3156 -119.52 0 12000 0 0 45 75.0127 3e+10 3.2e+10 28 | 34.31 -119.552 0 12000 0 0 45 75.0127 3e+10 3.2e+10 29 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Verdugo.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 51 51 9 Verdugo# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 34.2539 -118.407 0 12000 0.016 0 90 134.998 3e+10 3.2e+10 16 | 34.2342 -118.384 0 12000 0.063 0 90 134.951 3e+10 3.2e+10 17 | 34.2182 -118.357 0 12000 0.063 0 90 134.895 3e+10 3.2e+10 18 | 34.2099 -118.326 0 12000 0.063 0 90 134.931 3e+10 3.2e+10 19 | 34.2008 -118.295 0 12000 0.063 0 90 134.945 3e+10 3.2e+10 20 | 34.1833 -118.27 0 12000 0.063 0 90 135.011 3e+10 3.2e+10 21 | 34.1635 -118.247 0 12000 0.063 0 90 135.01 3e+10 3.2e+10 22 | 34.1512 -118.218 0 12000 0.016 0 90 134.969 3e+10 3.2e+10 23 | 34.1488 -118.186 0 12000 0.016 0 90 134.969 3e+10 3.2e+10 24 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_West_Napa.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 17 17 8 West_Napa# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 38.3877 -122.363 0 12000 0.031 0 180 90 3e+10 3.2e+10 16 | 38.3626 -122.35 0 12000 0.126 0 180 90 3e+10 3.2e+10 17 | 38.3375 -122.338 0 12000 0.126 0 180 90 3e+10 3.2e+10 18 | 38.3124 -122.325 0 12000 0.126 0 180 90 3e+10 3.2e+10 19 | 38.2873 -122.313 0 12000 0.126 0 180 90 3e+10 3.2e+10 20 | 38.2622 -122.3 0 12000 0.126 0 180 90 3e+10 3.2e+10 21 | 38.2371 -122.287 0 12000 0.031 0 180 90 3e+10 3.2e+10 22 | 38.2115 -122.277 0 12000 0.031 0 180 90 3e+10 3.2e+10 23 | -------------------------------------------------------------------------------- /examples/fault_traces/ca_traces/trace_Whittier.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 7 7 13 Whittier# latitude: Latitude of trace point 6 | # longitude: Longitude of trace point 7 | # altitude: Altitude of trace point (meters) 8 | # depth_along_dip: Depth along dip (meters) 9 | # slip_rate: Slip rate at trace point (centimeters/year) 10 | # aseismic: Fraction of slip that is aseismic at point 11 | # rake: Fault rake at trace point (degrees) 12 | # dip: Fault dip at trace point (degrees) 13 | # lame_mu: Lame's mu parameter at trace point (Pascals) 14 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 15 | 33.9829 -118.002 0 12000 0 0 135 104.912 3e+10 3.2e+10 16 | 33.9761 -117.971 0 12000 0.183 0 135 104.953 3e+10 3.2e+10 17 | 33.9686 -117.939 0 12000 0.232 0 135 104.856 3e+10 3.2e+10 18 | 33.9606 -117.908 0 12000 0.256 0 135 105.016 3e+10 3.2e+10 19 | 33.9519 -117.878 0 12000 0.301 0 135 104.883 3e+10 3.2e+10 20 | 33.9425 -117.847 0 12000 0.309 0 135 105.005 3e+10 3.2e+10 21 | 33.9327 -117.817 0 12000 0.32 0 135 104.944 3e+10 3.2e+10 22 | 33.922 -117.787 0 12000 0.336 0 135 104.896 3e+10 3.2e+10 23 | 33.9106 -117.757 0 12000 0.355 0 135 105.048 3e+10 3.2e+10 24 | 33.8986 -117.728 0 12000 0.381 0 135 105.092 3e+10 3.2e+10 25 | 33.8859 -117.7 0 12000 0.414 0 135 104.903 3e+10 3.2e+10 26 | 33.8724 -117.672 0 12000 0.452 0 135 105 3e+10 3.2e+10 27 | 33.858 -117.644 0 12000 0.452 0 135 105 3e+10 3.2e+10 28 | -------------------------------------------------------------------------------- /examples/fault_traces/golden_gate.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 0 0 2 One_Fault_GG_Example 6 | # latitude: Latitude of trace point 7 | # longitude: Longitude of trace point 8 | # altitude: Altitude of trace point (meters) 9 | # depth_along_dip: Depth along dip (meters) 10 | # slip_rate: Slip rate at trace point (centimeters/year) 11 | # aseismic: Fraction of slip that is aseismic at point 12 | # rake: Fault rake at trace point (degrees) 13 | # dip: Fault dip at trace point (degrees) 14 | # lame_mu: Lame's mu parameter at trace point (Pascals) 15 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 16 | 37.83 -122.4797 0 3000 1 0 180 90 3e+10 3.2e+10 17 | 37.803 -122.4765 0 3000 1 0 180 90 3e+10 3.2e+10 18 | -------------------------------------------------------------------------------- /examples/fault_traces/multiple_fault_trace.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 0 0 3 Davis_2_Fault 6 | # latitude: Latitude of trace point 7 | # longitude: Longitude of trace point 8 | # altitude: Altitude of trace point (meters) 9 | # depth_along_dip: Depth along dip (meters) 10 | # slip_rate: Slip rate at trace point (centimeters/year) 11 | # aseismic: Fraction of slip that is aseismic at point 12 | # rake: Fault rake at trace point (degrees) 13 | # dip: Fault dip at trace point (degrees) 14 | # lame_mu: Lame's mu parameter at trace point (Pascals) 15 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 16 | 38.671 -121.761543 0 12000 1 0 180 90 3e+10 3.2e+10 17 | 38.535422 -121.751621 0 12000 1 0 180 90 3e+10 3.2e+10 18 | 38.436 -121.87 0 12000 1 0 180 90 3e+10 3.2e+10 19 | 20 | -------------------------------------------------------------------------------- /examples/fault_traces/single_fault_trace.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 0 0 2 One_Fault_Example 6 | # latitude: Latitude of trace point 7 | # longitude: Longitude of trace point 8 | # altitude: Altitude of trace point (meters) 9 | # depth_along_dip: Depth along dip (meters) 10 | # slip_rate: Slip rate at trace point (centimeters/year) 11 | # aseismic: Fraction of slip that is aseismic at point 12 | # rake: Fault rake at trace point (degrees) 13 | # dip: Fault dip at trace point (degrees) 14 | # lame_mu: Lame's mu parameter at trace point (Pascals) 15 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 16 | 0 0 0 12000 1 0 180 90 3e+10 3.2e+10 17 | 0 0.1078 0 12000 1 0 180 90 3e+10 3.2e+10 18 | -------------------------------------------------------------------------------- /examples/fault_traces/two_fault_1.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 0 1 2 Two_Fault_1 6 | # latitude: Latitude of trace point 7 | # longitude: Longitude of trace point 8 | # altitude: Altitude of trace point (meters) 9 | # depth_along_dip: Depth along dip (meters) 10 | # slip_rate: Slip rate at trace point (centimeters/year) 11 | # aseismic: Fraction of slip that is aseismic at point 12 | # rake: Fault rake at trace point (degrees) 13 | # dip: Fault dip at trace point (degrees) 14 | # lame_mu: Lame's mu parameter at trace point (Pascals) 15 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 16 | 40.3593 -124.9 0 12000 1 0 180 90 3e+10 3.2e+10 17 | 40.301 -124.78 0 12000 1 0 180 90 3e+10 3.2e+10 18 | 19 | 20 | -------------------------------------------------------------------------------- /examples/fault_traces/two_fault_2.txt: -------------------------------------------------------------------------------- 1 | # fault_id: ID number of the parent fault of this section 2 | # sec_id: ID number of this section 3 | # num_points: Number of trace points comprising this section 4 | # section_name: Name of the section 5 | 0 2 2 Two_Fault_2 6 | # latitude: Latitude of trace point 7 | # longitude: Longitude of trace point 8 | # altitude: Altitude of trace point (meters) 9 | # depth_along_dip: Depth along dip (meters) 10 | # slip_rate: Slip rate at trace point (centimeters/year) 11 | # aseismic: Fraction of slip that is aseismic at point 12 | # rake: Fault rake at trace point (degrees) 13 | # dip: Fault dip at trace point (degrees) 14 | # lame_mu: Lame's mu parameter at trace point (Pascals) 15 | # lame_lambda: Lame's lambda parameter at trace point (Pascals) 16 | 40.3 -125.0 0 12000 1 0 90 42.0284 3e+10 3.2e+10 17 | 40.2 -124.946 0 12000 1 0 90 42.0313 3e+10 3.2e+10 18 | 19 | -------------------------------------------------------------------------------- /examples/greens_generate.prm: -------------------------------------------------------------------------------- 1 | sim.version = 2.0 2 | sim.time.end_year = 1 3 | sim.greens.method = standard 4 | sim.greens.use_normal = false 5 | sim.greens.output = greens_ELEM_SIZE.h5 6 | sim.friction.dynamic = DYNAMIC 7 | sim.file.input = INPUTFILE.txt 8 | sim.file.input_type = text 9 | sim.file.output_event = events_ELEM_SIZE.txt 10 | sim.file.output_sweep = sweeps_ELEM_SIZE.txt 11 | sim.file.output_event_type = text 12 | -------------------------------------------------------------------------------- /examples/greens_input.prm: -------------------------------------------------------------------------------- 1 | sim.version = 2.0 2 | sim.time.end_year = 10000 3 | sim.greens.method = file 4 | sim.greens.input = greens_ELEM_SIZE.h5 5 | sim.friction.dynamic = DYNAMIC 6 | sim.file.input = INPUTFILE.txt 7 | sim.file.input_type = text 8 | sim.file.output_event = events_ELEM_SIZE.txt 9 | sim.file.output_sweep = sweeps_ELEM_SIZE.txt 10 | sim.file.output_event_type = text 11 | -------------------------------------------------------------------------------- /examples/setup_params.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ELEM_SIZE=$1 4 | DYNAMIC=$2 5 | PREFIX=$3 6 | PARAM_TEMPLATE=$4 7 | PARAM_OUTPUT=$5 8 | 9 | echo "" 10 | echo "dynamic triggering factor: ${DYNAMIC}" 11 | echo "element size [m]: ${ELEM_SIZE}" 12 | echo "parameter file written: params_${ELEM_SIZE}.d" 13 | echo "" 14 | 15 | BASE_NAME=${PREFIX}_${ELEM_SIZE} 16 | 17 | sed -e s/DYNAMIC/${DYNAMIC}/g \ 18 | -e s/ELEM_SIZE/${ELEM_SIZE}/g \ 19 | -e s/INPUTFILE/${BASE_NAME}/g < ${PARAM_TEMPLATE} > ${PARAM_OUTPUT} 20 | 21 | exit $? 22 | 23 | -------------------------------------------------------------------------------- /quakelib/AUTHORS: -------------------------------------------------------------------------------- 1 | Eric M. Heien 2 | Michael K. Sachs 3 | Kasey W. Schultz 4 | -------------------------------------------------------------------------------- /quakelib/COPYING: -------------------------------------------------------------------------------- 1 | Copyright (c) 2012-2014 Eric M. Heien 2 | Michael K. Sachs 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining a 5 | copy of this software and associated documentation files (the "Software"), 6 | to deal in the Software without restriction, including without limitation 7 | the rights to use, copy, modify, merge, publish, distribute, sublicense, 8 | and/or sell copies of the Software, and to permit persons to whom the 9 | Software is furnished to do so, subject to the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be included in 12 | all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 19 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 20 | DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /quakelib/README: -------------------------------------------------------------------------------- 1 | QuakeLib Library 2 | ------------- 3 | 4 | Provides tools and a Python interface to develop earthquake simulations, 5 | read/write EqSim format files for geometry, friction, initial conditions and 6 | events, and calculate Okada's functions for different fault configurations. 7 | 8 | NOTE FOR MAC USERS: 9 | 10 | By default the Mac system may not find the correct libpython for the default 11 | Python installation. To correct this, you can specify the correct library in cmake like: 12 | 13 | cmake -DPYTHON_LIBRARY=/opt/local/lib/libpython2.7.dylib .. 14 | 15 | -------------------------------------------------------------------------------- /quakelib/cmake/FindGeographicLib.cmake: -------------------------------------------------------------------------------- 1 | # Look for GeographicLib 2 | # 3 | # Set 4 | # GEOGRAPHICLIB_FOUND = TRUE 5 | # GeographicLib_INCLUDE_DIRS = /usr/local/include 6 | # GeographicLib_LIBRARIES = /usr/local/lib/libGeographic.so 7 | # GeographicLib_LIBRARY_DIRS = /usr/local/lib 8 | 9 | find_library (GeographicLib_LIBRARIES Geographic 10 | PATHS "${CMAKE_INSTALL_PREFIX}/../GeographicLib/lib") 11 | 12 | if (GeographicLib_LIBRARIES) 13 | get_filename_component (GeographicLib_LIBRARY_DIRS 14 | "${GeographicLib_LIBRARIES}" PATH) 15 | get_filename_component (_ROOT_DIR "${GeographicLib_LIBRARY_DIRS}" PATH) 16 | set (GeographicLib_INCLUDE_DIRS "${_ROOT_DIR}/include") 17 | set (GeographicLib_BINARY_DIRS "${_ROOT_DIR}/bin") 18 | unset (_ROOT_DIR) 19 | if (NOT EXISTS "${GeographicLib_INCLUDE_DIRS}/GeographicLib/Config.h") 20 | unset (GeographicLib_INCLUDE_DIRS) 21 | unset (GeographicLib_LIBRARIES) 22 | unset (GeographicLib_LIBRARY_DIRS) 23 | unset (GeographicLib_BINARY_DIRS) 24 | endif () 25 | endif () 26 | 27 | include (FindPackageHandleStandardArgs) 28 | find_package_handle_standard_args (GeographicLib DEFAULT_MSG 29 | GeographicLib_LIBRARY_DIRS GeographicLib_LIBRARIES GeographicLib_INCLUDE_DIRS) 30 | mark_as_advanced (GeographicLib_LIBRARY_DIRS GeographicLib_LIBRARIES 31 | GeographicLib_INCLUDE_DIRS) 32 | -------------------------------------------------------------------------------- /quakelib/cmake/FindPythonModule.cmake: -------------------------------------------------------------------------------- 1 | # Find if a Python module is installed 2 | # Found at http://www.cmake.org/pipermail/cmake/2011-January/041666.html 3 | # To use do: find_python_module(PyQt4 REQUIRED) 4 | function(find_python_module module) 5 | string(TOUPPER ${module} module_upper) 6 | if(NOT PY_${module_upper}) 7 | if(ARGC GREATER 1 AND ARGV1 STREQUAL "REQUIRED") 8 | set(${module}_FIND_REQUIRED TRUE) 9 | endif() 10 | # A module's location is usually a directory, but for binary modules 11 | # it's a .so file. 12 | execute_process(COMMAND "${PYTHON_EXECUTABLE}" "-c" 13 | "import re, ${module}; print(re.compile('/__init__.py.*').sub('',${module}.__file__))" 14 | RESULT_VARIABLE _${module}_status 15 | OUTPUT_VARIABLE _${module}_location 16 | ERROR_QUIET 17 | OUTPUT_STRIP_TRAILING_WHITESPACE) 18 | if(NOT _${module}_status) 19 | set(PY_${module_upper} ${_${module}_location} CACHE STRING 20 | "Location of Python module ${module}") 21 | endif(NOT _${module}_status) 22 | endif(NOT PY_${module_upper}) 23 | find_package_handle_standard_args(PY_${module} DEFAULT_MSG PY_${module_upper}) 24 | endfunction(find_python_module) 25 | 26 | -------------------------------------------------------------------------------- /quakelib/cmake/GetGitRevisionDescription.cmake.in: -------------------------------------------------------------------------------- 1 | # 2 | # Internal file for GetGitRevisionDescription.cmake 3 | # 4 | # Requires CMake 2.6 or newer (uses the 'function' command) 5 | # 6 | # Original Author: 7 | # 2009-2010 Ryan Pavlik 8 | # http://academic.cleardefinition.com 9 | # Iowa State University HCI Graduate Program/VRAC 10 | # 11 | # Copyright Iowa State University 2009-2010. 12 | # Distributed under the Boost Software License, Version 1.0. 13 | # (See accompanying file LICENSE_1_0.txt or copy at 14 | # http://www.boost.org/LICENSE_1_0.txt) 15 | 16 | set(HEAD_HASH) 17 | 18 | file(READ "@HEAD_FILE@" HEAD_CONTENTS LIMIT 1024) 19 | 20 | string(STRIP "${HEAD_CONTENTS}" HEAD_CONTENTS) 21 | if(HEAD_CONTENTS MATCHES "ref") 22 | # named branch 23 | string(REPLACE "ref: " "" HEAD_REF "${HEAD_CONTENTS}") 24 | if(EXISTS "@GIT_DIR@/${HEAD_REF}") 25 | configure_file("@GIT_DIR@/${HEAD_REF}" "@GIT_DATA@/head-ref" COPYONLY) 26 | elseif(EXISTS "@GIT_DIR@/logs/${HEAD_REF}") 27 | configure_file("@GIT_DIR@/logs/${HEAD_REF}" "@GIT_DATA@/head-ref" COPYONLY) 28 | set(HEAD_HASH "${HEAD_REF}") 29 | endif() 30 | else() 31 | # detached HEAD 32 | configure_file("@GIT_DIR@/HEAD" "@GIT_DATA@/head-ref" COPYONLY) 33 | endif() 34 | 35 | if(NOT HEAD_HASH) 36 | file(READ "@GIT_DATA@/head-ref" HEAD_HASH LIMIT 1024) 37 | string(STRIP "${HEAD_HASH}" HEAD_HASH) 38 | endif() 39 | -------------------------------------------------------------------------------- /quakelib/python/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | SET(CMAKE_SWIG_FLAGS "-I${QUAKELIB_SOURCE_DIR}") 2 | 3 | # If we have SWIG, run the .i files through it 4 | # NOTE: this will error out during CMake if the user has SWIG but not SWIG Python installed 5 | # NOTE: I'm not sure how to fix this 6 | if(PYTHONLIBS_FOUND AND SWIG_FOUND) 7 | SET_SOURCE_FILES_PROPERTIES(quakelib.i PROPERTIES CPLUSPLUS ON) 8 | #SET_SOURCE_FILES_PROPERTIES(quakelib.i PROPERTIES SWIG_FLAGS "-includeall") 9 | SWIG_ADD_MODULE(quakelib python quakelib.i) 10 | SWIG_LINK_LIBRARIES(quakelib ${PYTHON_LIBRARIES} quakelib) 11 | EXECUTE_PROCESS(COMMAND python -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())" OUTPUT_VARIABLE PYTHON_SITE_PACKAGES OUTPUT_STRIP_TRAILING_WHITESPACE) 12 | FILE(COPY ${QUAKELIB_PYTHON_DIR}/__init__.py DESTINATION ${CMAKE_CURRENT_BINARY_DIR}) 13 | INSTALL(TARGETS ${SWIG_MODULE_quakelib_REAL_NAME} LIBRARY DESTINATION ${PYTHON_SITE_PACKAGES}/quakelib/) 14 | INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/quakelib.py DESTINATION ${PYTHON_SITE_PACKAGES}/quakelib/) 15 | INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/__init__.py DESTINATION ${PYTHON_SITE_PACKAGES}/quakelib/) 16 | endif(PYTHONLIBS_FOUND AND SWIG_FOUND) 17 | 18 | -------------------------------------------------------------------------------- /quakelib/python/__init__.py: -------------------------------------------------------------------------------- 1 | """QuakeLib Earthquake Simulation Library 2 | """ 3 | 4 | __all__ = ['quakelib'] 5 | 6 | __version__ = '1.1.0' 7 | 8 | version_info = (1, 1, 0, 'final', 0) 9 | 10 | from quakelib import * 11 | 12 | -------------------------------------------------------------------------------- /quakelib/quakelib_config.h.in: -------------------------------------------------------------------------------- 1 | 2 | #ifndef _QUAKELIB_CONFIG_H_ 3 | #define _QUAKELIB_CONFIG_H_ 4 | #cmakedefine QUAKELIB_HAVE_FLOAT_H 5 | #cmakedefine QUAKELIB_HAVE_LIMITS_H 6 | #cmakedefine QUAKELIB_HAVE_MATH_H 7 | #cmakedefine QUAKELIB_HAVE_STDLIB_H 8 | #cmakedefine QUAKELIB_HAVE_STRING_H 9 | #cmakedefine HDF5_FOUND 10 | #cmakedefine MPI_C_FOUND 11 | #cmakedefine GEOGRAPHICLIB_FOUND 12 | #cmakedefine QUAKELIB_VERSION_STR "@QUAKELIB_VERSION_STR@" 13 | #cmakedefine QUAKELIB_GIT_SHA1 "@QUAKELIB_GIT_SHA1@" 14 | #endif 15 | 16 | -------------------------------------------------------------------------------- /sim_output/tester.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | import matplotlib 4 | import pylab as plt 5 | import pyvq 6 | 7 | if __name__ == "__main__": 8 | # for now, just use this tester script to run this one script. BUT, in the future, copy Eric/Kasey's argument parser 9 | # to run pyvq funcitons from the command line. 10 | # 11 | # 12 | my_hist = pyvq.betas.plot_greens_hist('all_cal_greens_3000.h5', shear_normal='normal') 13 | plt.show() 14 | -------------------------------------------------------------------------------- /src/core/CommPartition.cpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2012-2014 Eric M. Heien, Michael K. Sachs, John B. Rundle 2 | // 3 | // Permission is hereby granted, free of charge, to any person obtaining a 4 | // copy of this software and associated documentation files (the "Software"), 5 | // to deal in the Software without restriction, including without limitation 6 | // the rights to use, copy, modify, merge, publish, distribute, sublicense, 7 | // and/or sell copies of the Software, and to permit persons to whom the 8 | // Software is furnished to do so, subject to the following conditions: 9 | // 10 | // The above copyright notice and this permission notice shall be included in 11 | // all copies or substantial portions of the Software. 12 | // 13 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 18 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 19 | // DEALINGS IN THE SOFTWARE. 20 | 21 | #include "CommPartition.h" 22 | 23 | -------------------------------------------------------------------------------- /src/core/Event.cpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2012-2014 Eric M. Heien, Michael K. Sachs, John B. Rundle 2 | // 3 | // Permission is hereby granted, free of charge, to any person obtaining a 4 | // copy of this software and associated documentation files (the "Software"), 5 | // to deal in the Software without restriction, including without limitation 6 | // the rights to use, copy, modify, merge, publish, distribute, sublicense, 7 | // and/or sell copies of the Software, and to permit persons to whom the 8 | // Software is furnished to do so, subject to the following conditions: 9 | // 10 | // The above copyright notice and this permission notice shall be included in 11 | // all copies or substantial portions of the Software. 12 | // 13 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 18 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 19 | // DEALINGS IN THE SOFTWARE. 20 | 21 | #include "Event.h" 22 | #include 23 | #include 24 | 25 | std::ostream &operator<<(std::ostream &os, const EventAftershock &e) { 26 | os << "M" << std::setprecision(2) << e.mag; 27 | os << " T" << e.t; 28 | os << " (" << std::setprecision(1) << e.x << "," << std::setprecision(1) << e.y << ")"; 29 | return os; 30 | } 31 | -------------------------------------------------------------------------------- /src/core/InitBlocks.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2012-2014 Eric M. Heien, Michael K. Sachs, John B. Rundle 2 | // 3 | // Permission is hereby granted, free of charge, to any person obtaining a 4 | // copy of this software and associated documentation files (the "Software"), 5 | // to deal in the Software without restriction, including without limitation 6 | // the rights to use, copy, modify, merge, publish, distribute, sublicense, 7 | // and/or sell copies of the Software, and to permit persons to whom the 8 | // Software is furnished to do so, subject to the following conditions: 9 | // 10 | // The above copyright notice and this permission notice shall be included in 11 | // all copies or substantial portions of the Software. 12 | // 13 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 18 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 19 | // DEALINGS IN THE SOFTWARE. 20 | 21 | #include "Simulation.h" 22 | 23 | #ifndef __INIT_BLOCKS_H_ 24 | #define __INIT_BLOCKS_H_ 25 | 26 | /*! 27 | Allocates and initializes block related simulation data structures. 28 | */ 29 | class VCInitBlocks : public SimPlugin { 30 | public: 31 | virtual std::string name() const { 32 | return "Initialize block related data"; 33 | }; 34 | virtual void initDesc(const SimFramework *_sim) const; 35 | 36 | virtual void dryRun(SimFramework *_sim); 37 | virtual void init(SimFramework *_sim); 38 | }; 39 | 40 | #endif 41 | -------------------------------------------------------------------------------- /src/core/SimDataEvents.cpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2012-2014 Eric M. Heien, Michael K. Sachs, John B. Rundle 2 | // 3 | // Permission is hereby granted, free of charge, to any person obtaining a 4 | // copy of this software and associated documentation files (the "Software"), 5 | // to deal in the Software without restriction, including without limitation 6 | // the rights to use, copy, modify, merge, publish, distribute, sublicense, 7 | // and/or sell copies of the Software, and to permit persons to whom the 8 | // Software is furnished to do so, subject to the following conditions: 9 | // 10 | // The above copyright notice and this permission notice shall be included in 11 | // all copies or substantial portions of the Software. 12 | // 13 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 18 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 19 | // DEALINGS IN THE SOFTWARE. 20 | 21 | #include "SimDataEvents.h" 22 | 23 | -------------------------------------------------------------------------------- /src/io/CheckpointFileParse.cpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2012-2014 Eric M. Heien, Michael K. Sachs, John B. Rundle 2 | // 3 | // Permission is hereby granted, free of charge, to any person obtaining a 4 | // copy of this software and associated documentation files (the "Software"), 5 | // to deal in the Software without restriction, including without limitation 6 | // the rights to use, copy, modify, merge, publish, distribute, sublicense, 7 | // and/or sell copies of the Software, and to permit persons to whom the 8 | // Software is furnished to do so, subject to the following conditions: 9 | // 10 | // The above copyright notice and this permission notice shall be included in 11 | // all copies or substantial portions of the Software. 12 | // 13 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 18 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 19 | // DEALINGS IN THE SOFTWARE. 20 | 21 | #include "CheckpointFileParse.h" 22 | 23 | void CheckpointFileParse::initDesc(const SimFramework *_sim) const { 24 | //const Simulation *sim = static_cast(_sim); 25 | //sim->console() << "# Reading checkpoint file: " << sim->getEqSimOutputFile() << std::endl; 26 | } 27 | 28 | void CheckpointFileParse::init(SimFramework *_sim) { 29 | //Simulation *sim = static_cast(_sim); 30 | 31 | //sim->console() << "# *** Loaded checkpoint file: " << file_name << " at year " << start_year << "." << std::endl; 32 | } 33 | -------------------------------------------------------------------------------- /src/io/CheckpointFileParse.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2012-2014 Eric M. Heien, Michael K. Sachs, John B. Rundle 2 | // 3 | // Permission is hereby granted, free of charge, to any person obtaining a 4 | // copy of this software and associated documentation files (the "Software"), 5 | // to deal in the Software without restriction, including without limitation 6 | // the rights to use, copy, modify, merge, publish, distribute, sublicense, 7 | // and/or sell copies of the Software, and to permit persons to whom the 8 | // Software is furnished to do so, subject to the following conditions: 9 | // 10 | // The above copyright notice and this permission notice shall be included in 11 | // all copies or substantial portions of the Software. 12 | // 13 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 18 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 19 | // DEALINGS IN THE SOFTWARE. 20 | 21 | #include "Simulation.h" 22 | #include "HDF5Data.h" 23 | 24 | #ifndef _CHECKPOINT_FILE_PARSE_H_ 25 | #define _CHECKPOINT_FILE_PARSE_H_ 26 | 27 | /*! 28 | Load the checkpointed simulation state into internal structures. 29 | */ 30 | class CheckpointFileParse : public SimPlugin { 31 | public: 32 | virtual std::string name() const { 33 | return "Checkpoint file parsing"; 34 | }; 35 | virtual void initDesc(const SimFramework *_sim) const; 36 | 37 | virtual void init(SimFramework *_sim); 38 | }; 39 | 40 | #endif 41 | -------------------------------------------------------------------------------- /src/io/GreensFileOutput.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2012-2014 Eric M. Heien, Michael K. Sachs, John B. Rundle 2 | // 3 | // Permission is hereby granted, free of charge, to any person obtaining a 4 | // copy of this software and associated documentation files (the "Software"), 5 | // to deal in the Software without restriction, including without limitation 6 | // the rights to use, copy, modify, merge, publish, distribute, sublicense, 7 | // and/or sell copies of the Software, and to permit persons to whom the 8 | // Software is furnished to do so, subject to the following conditions: 9 | // 10 | // The above copyright notice and this permission notice shall be included in 11 | // all copies or substantial portions of the Software. 12 | // 13 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 18 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 19 | // DEALINGS IN THE SOFTWARE. 20 | 21 | #include "Simulation.h" 22 | 23 | #ifndef _GREENS_FILE_OUTPUT_H_ 24 | #define _GREENS_FILE_OUTPUT_H_ 25 | 26 | /*! 27 | Writes Greens function values to a specified file. 28 | */ 29 | class GreensFileOutput : public SimPlugin { 30 | public: 31 | virtual std::string name(void) const { 32 | return "Greens file output"; 33 | } 34 | virtual void initDesc(const SimFramework *_sim) const; 35 | 36 | virtual void init(SimFramework *_sim); 37 | }; 38 | 39 | #endif 40 | -------------------------------------------------------------------------------- /vq_installer.bs: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # installer shell script for vq. 3 | 4 | default_num_processors=$(nproc) 5 | # 6 | default_debug="debug0" 7 | 8 | num_processors=${1:-$default_num_processors} 9 | debug_mode=${2:-$default_debug} 10 | 11 | run_tests=${3:-"no_tests"} 12 | 13 | #echo "num_proc: "$num_processors 14 | #echo "debug_mode: "$debug_mode 15 | 16 | echo "building with "$num_processors" processors in debug_mode: "$debug_mode 17 | 18 | # 19 | # 20 | rm -rf build 21 | mkdir build 22 | cd build 23 | ## spp: 24 | #cmake .. 25 | ## mpp: 26 | if [ "${debug_mode}" == "debug0" ] 27 | then 28 | CC=mpicc CXX=mpicxx cmake .. 29 | elif [ debug_mode -eq "debug1" ] 30 | then 31 | CC=mpicc CXX=mpicxx cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo 32 | elif "${debug_mode}" == "debug2" || $debug_mode == "debug" ] 33 | then 34 | # most-debugging, slowest. 35 | CC=mpicc CXX=mpicxx cmake .. -DCMAKE_BUILD_TYPE=Debug 36 | else 37 | CC=mpicc CXX=mpicxx cmake .. 38 | fi 39 | 40 | make -j $num_processors 41 | cd .. 42 | 43 | #if [ "${run_tests}"=="tests" ] 44 | #then 45 | # echo "making tests..." 46 | # cd build 47 | # make test 48 | # cd .. 49 | #fi 50 | 51 | 52 | ## note on cmake options for debugging -- optimization: 53 | #CC=mpicc CXX=mpicxx cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo 54 | ## Half and half 55 | # 56 | #CC=mpicc CXX=mpicxx cmake -DCMAKE_BUILD_TYPE=Release 57 | ## Most optimized, can’t do backtraces 58 | # 59 | #CC=mpicc CXX=mpicxx cmake -DCMAKE_BUILD_TYPE=Debug 60 | ## Least optimized 61 | --------------------------------------------------------------------------------