Changes between Version 2 and Version 3 of FaultSystemSolution


Ignore:
Timestamp:
Aug 1, 2013, 2:17:02 PM (11 years ago)
Author:
Kevin Milner
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FaultSystemSolution

    v2 v3  
    7272</OpenSHA>
    7373}}}
     74
     75=== Grid Sources XML file ===
     76
     77Some solutions will contain gridded seismicity magnitude frequency distributions. Here is an example XML file:
     78
     79NOTE: UCERF3 uses the RELM region evenly discretized at 0.1 degrees for gridded seismicity. Due to the complexities involved in reproducing our gridding exactly, a file is posted here with grid node indexes and locations for this region: http://opensha.usc.edu/ftp/kmilner/ucerf3/relm_gridded_region.csv
     80
     81{{{
     82<?xml version="1.0" encoding="UTF-8"?>
     83
     84<OpenSHA>
     85  <!-- this explains the evenly gridded region for on which gridded seismicity is distributed. See
     86class javadocs here for more information: http://opensha.usc.edu/JavaDocs/org/opensha/commons/geo/GriddedRegion.html -->
     87  <evenlyGriddedGeographicRegion spacing="0.1" numPoints="7636">
     88    <anchor>
     89      <Location Latitude="31.5" Longitude="-125.4" Depth="0.0"/>
     90    </anchor>
     91    <Region name="RELM_TESTING Region">
     92      <LocationList>
     93        <Location Latitude="43.0" Longitude="-125.2" Depth="0.0"/>
     94        <Location Latitude="43.0" Longitude="-119.0" Depth="0.0"/>
     95        <Location Latitude="39.4" Longitude="-119.0" Depth="0.0"/>
     96        <Location Latitude="35.7" Longitude="-114.00000000000001" Depth="0.0"/>
     97        <Location Latitude="34.3" Longitude="-113.1" Depth="0.0"/>
     98        <Location Latitude="32.9" Longitude="-113.5" Depth="0.0"/>
     99        <Location Latitude="32.2" Longitude="-113.6" Depth="0.0"/>
     100        <Location Latitude="31.7" Longitude="-114.5" Depth="0.0"/>
     101        <Location Latitude="31.5" Longitude="-117.1" Depth="0.0"/>
     102        <Location Latitude="31.900000000000002" Longitude="-117.90000000000002" Depth="0.0"/>
     103        <Location Latitude="32.8" Longitude="-118.40000000000002" Depth="0.0"/>
     104        <Location Latitude="33.7" Longitude="-121.0" Depth="0.0"/>
     105        <Location Latitude="34.2" Longitude="-121.6" Depth="0.0"/>
     106        <Location Latitude="37.7" Longitude="-123.80000000000001" Depth="0.0"/>
     107        <Location Latitude="40.2" Longitude="-125.4" Depth="0.0"/>
     108        <Location Latitude="40.5" Longitude="-125.4" Depth="0.0"/>
     109      </LocationList>
     110    </Region>
     111  </evenlyGriddedGeographicRegion>
     112  <!-- this gives magnitude frequency distributions for each grid node. Each node can have an Unassociated MFD (seismicity at
     113that node that is not associated with a mapped fault), and a sub seismogenic MFD if a fault crosses the node. Num is the total
     114number of grid nodes.-->
     115  <MFDNodeList num="7636">
     116    <MFDNode index="0">
     117      <!-- this describes the discretization of the MFD function -->
     118      <UnassociatedFD name="Incremental Mag Freq Dist" tolerance="1.0000000000000001E-7" num="90" minX="0.05" maxX="8.950000000000001" delta="0.1">
     119        <Points>
     120          <!-- points on the MFD function -->
     121          <Point x="0.05" y="9.218866335939037"/>
     122          <Point x="0.15000000000000002" y="7.322805822785568"/>
     123          <Point x="0.25" y="5.816711422441951"/>
     124          <Point x="0.35000000000000003" y="4.620378116088878"/>
     125          <Point x="0.45" y="3.6700967927115817"/>
     126          ...
     127        </Points>
     128      </UnassociatedFD>
     129    </MFDNode>
     130    <MFDNode index="1">
     131      <!-- only some nodes have sub seismogenic MFDs -->
     132      <SubSeisMFD name="Incremental Mag Freq Dist" tolerance="1.0000000000000001E-7" num="90" minX="0.05" maxX="8.950000000000001" delta="0.1">
     133        <Points>
     134          <Point x="0.05" y="7.173882325337919"/>
     135          <Point x="0.15000000000000002" y="5.69841728360539"/>
     136          ...
     137        </Points>
     138      </SubSeisMFD>
     139      <UnassociatedFD name="Incremental Mag Freq Dist" tolerance="1.0000000000000001E-7" num="90" minX="0.05" maxX="8.950000000000001" delta="0.1">
     140        <Points>
     141          <Point x="0.05" y="9.51974524882418"/>
     142          <Point x="0.15000000000000002" y="7.561802438523384"/>
     143          <Point x="0.25" y="6.006553182326047"/>
     144          ...
     145        </Points>
     146      </UnassociatedFD>
     147    </MFDNode>
     148    ...
     149  </MFDNodeList>
     150</OpenSHA>
     151}}}
     152
     153== Zip File Contents ==