Custom Query (454 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (1 - 3 of 454)

1 2 3 4 5 6 7 8 9 10 11
Ticket Resolution Summary Owner Reporter
#370 fixed make ObsEqkRupList extend ArrayList<ObsEqkRupture> Kevin Milner
Description

The current ObsEqkRupList? implementation wraps an ArrayList? with custom methods that don't seem to be needed. We can clean up this class substantially by making it extend ArrayList?<ObsEqkRupList?>.

Other methods should also be renamed for clarity.

#373 fixed EnumParameter cone() method doesn't set name or value Kevin Milner
Description

The clone method of the new EnumParameter? doesn't set the name or value in the returned parameter.

#375 fixed Bug in HazardCurveLocal Kevin Milner
Description

Steps to reproduce: run Hazard Curve Application, select Mean UCERF2, set Location to "34.10688, -118.22060", hit compute. Interesting this problem isn't present with the default site.

Other info: The problem is with UCERF2 source 3337, rup 77, which is a Point2Vert_SS_FaultPoisSource source with 99 points. Can also be reproduced with the following code:

CB_2008_AttenRel imr = new CB_2008_AttenRel(null);
imr.setParamDefaults();
MeanUCERF2 ucerf = new MeanUCERF2();
ucerf.updateForecast();
ProbEqkSource src = ucerf.getSource(3337);
ProbEqkRupture theRup = src.getRupture(77);
imr.setEqkRupture(theRup);
imr.setIntensityMeasure(PGA_Param.NAME);
Site site = new Site(new Location(34.10688, -118.22060));
site.addParameterList(imr.getSiteParams());
imr.setAll(theRup, site, imr.getIntensityMeasure());

Application: HazardCurveLocal? Version: 1.2.3 Bulid Type: Development Java Version: 1.6.0_29 (Sun Microsystems Inc.) Operating System: Linux (arch: amd64, version: 3.0.0-14-generic)

Exception:

java.lang.IllegalArgumentException: Internally computed Area is empty
	at com.google.common.base.Preconditions.checkArgument(Preconditions.java:88)
	at org.opensha.commons.geo.Region.createArea(Region.java:616)
	at org.opensha.commons.geo.Region.initBorderedRegion(Region.java:662)
	at org.opensha.commons.geo.Region.<init>(Region.java:185)
	at org.opensha.sha.faultSurface.utils.GriddedSurfaceUtils.getPropagationDistances(GriddedSurfaceUtils.java:116)
	at org.opensha.sha.faultSurface.AbstractEvenlyGriddedSurface.setPropagationDistances(AbstractEvenlyGriddedSurface.java:198)
	at org.opensha.sha.faultSurface.AbstractEvenlyGriddedSurface.getDistanceRup(AbstractEvenlyGriddedSurface.java:214)
	at org.opensha.sha.imr.param.PropagationEffectParams.DistanceRupParameter.calcValueFromSiteAndEqkRup(DistanceRupParameter.java:130)
	at org.opensha.sha.imr.param.PropagationEffectParams.PropagationEffectParameter.setValue(PropagationEffectParameter.java:103)
	at org.opensha.sha.imr.attenRelImpl.CB_2008_AttenRel.propEffectUpdate(CB_2008_AttenRel.java:230)
	at org.opensha.sha.imr.attenRelImpl.CB_2008_AttenRel.setPropagationEffectParams(CB_2008_AttenRel.java:222)
	at org.opensha.sha.imr.attenRelImpl.CB_2008_AttenRel.setEqkRupture(CB_2008_AttenRel.java:206)
	at org.opensha.sha.calc.HazardCurveCalculator.getHazardCurve(HazardCurveCalculator.java:363)
	at org.opensha.sha.gui.HazardCurveApplication.computeHazardCurve(HazardCurveApplication.java:1337)
	at org.opensha.sha.gui.HazardCurveApplication.run(HazardCurveApplication.java:928)
	at java.lang.Thread.run(Thread.java:662)

Metadata:

Cacluation Type = Probabilistic

IMR Param List:


IMR = Campbell & Bozorgnia (2008); Gaussian Truncation = None; Tectonic Region = Active Shallow Crust; Component = Average Horizontal (GMRotI50); Std Dev Type = Total

Site Param List:


Longitude = -118.2206; Latitude = 34.10688; Vs30 = 760.0; Depth 2.5 km/sec = 1.0

IMT Param List:


IMT = SA; SA Period = 1.0; SA Damping = 5.0

Forecast Param List:


Eqk Rup Forecast = WGCEP (2007) UCERF2 - Single Branch; Rupture Offset = 5.0; Floater Type = Along strike & centered down dip; Background Seismicity = Include; Treat Background Seismicity As = Two perpendicular faults; Apply CyberShake? DDW Corr = false; Probability Model = WGCEP Preferred Blend

TimeSpan? Param List:


Duration = 30.0; Start Year = 2012

Calculation Settings:


Maximum Distance = 200.0; Num Event Sets = 1; Use Mag-Distance Filter? = false; null; Set TRT From Source? = false; If source TRT not supported by IMR = Use TRT value already set in IMR; Pt Src Dist Corr = None

1 2 3 4 5 6 7 8 9 10 11
Note: See TracQuery for help on using queries.