Skip to content
Snippets Groups Projects
MagAreaRelDepthDep.java 391 B
Newer Older
  • Learn to ignore specific revisions
  • package org.opensha2.eq.fault.scaling;
    
    
    /**
     * @author Edward H. Field
     * @version 1.0
     */
    
    public interface MagAreaRelDepthDep {
    
        /**
         * Computes the median magnitude from rupture area and down-dip width
         * @param area in km-squared
         * @param width in km-squared
         * @return median magnitude
         */
        public  double getWidthDepMedianMag(double area, double width);
    
    }