-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththesis.aux
2022 lines (2022 loc) · 90.3 KB
/
thesis.aux
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
\relax
\providecommand\hyper@newdestlabel[2]{}
\providecommand*\new@tpo@label[2]{}
\@writefile{toc}{\boolfalse {citerequest}\boolfalse {citetracker}\boolfalse {pagetracker}\boolfalse {backtracker}\relax }
\@writefile{lof}{\boolfalse {citerequest}\boolfalse {citetracker}\boolfalse {pagetracker}\boolfalse {backtracker}\relax }
\@writefile{lot}{\boolfalse {citerequest}\boolfalse {citetracker}\boolfalse {pagetracker}\boolfalse {backtracker}\relax }
\abx@aux@refcontext{nyt/global//global/global}
\providecommand\HyperFirstAtBeginDocument{\AtBeginDocument}
\HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined
\global\let\oldcontentsline\contentsline
\gdef\contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}}
\global\let\oldnewlabel\newlabel
\gdef\newlabel#1#2{\newlabelxx{#1}#2}
\gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}}
\AtEndDocument{\ifx\hyper@anchor\@undefined
\let\contentsline\oldcontentsline
\let\newlabel\oldnewlabel
\fi}
\fi}
\global\let\hyper@last\relax
\gdef\HyperFirstAtBeginDocument#1{#1}
\providecommand\HyField@AuxAddToFields[1]{}
\providecommand\HyField@AuxAddToCoFields[2]{}
\@input{thesis_frontmatter.aux}
\providecommand \oddpage@label [2]{}
\@input{chapter1.aux}
\abx@aux@cite{abrahamsonSummaryASK14Ground2014}
\abx@aux@segm{0}{1}{abrahamsonSummaryASK14Ground2014}
\abx@aux@cite{booreNGAWest2EquationsPredicting2014}
\abx@aux@segm{0}{1}{booreNGAWest2EquationsPredicting2014}
\abx@aux@cite{campbellNGAWest2GroundMotion2014}
\abx@aux@segm{0}{1}{campbellNGAWest2GroundMotion2014}
\abx@aux@cite{chiouUpdateChiouYoungs2014}
\abx@aux@segm{0}{1}{chiouUpdateChiouYoungs2014}
\abx@aux@cite{idrissNGAWest2EmpiricalModel2014}
\abx@aux@segm{0}{1}{idrissNGAWest2EmpiricalModel2014}
\abx@aux@cite{sanchez1982boundary}
\abx@aux@segm{0}{1}{sanchez1982boundary}
\abx@aux@cite{frankelThreedimensionalSimulationSeismic1992}
\abx@aux@segm{0}{1}{frankelThreedimensionalSimulationSeismic1992}
\abx@aux@cite{olsenThreeDimensionalSimulationMagnitude1995}
\abx@aux@segm{0}{1}{olsenThreeDimensionalSimulationMagnitude1995}
\abx@aux@cite{gravesSimulatingSeismicWave1996}
\abx@aux@segm{0}{1}{gravesSimulatingSeismicWave1996}
\abx@aux@cite{baoLargescaleSimulationElastic1998}
\abx@aux@segm{0}{1}{baoLargescaleSimulationElastic1998}
\abx@aux@cite{seriani3DLargescaleWave1998}
\abx@aux@segm{0}{1}{seriani3DLargescaleWave1998}
\abx@aux@cite{kaserArbitraryHighorderDiscontinuous2006}
\abx@aux@segm{0}{1}{kaserArbitraryHighorderDiscontinuous2006}
\abx@aux@cite{chaljub2006spectral}
\abx@aux@segm{0}{1}{chaljub2006spectral}
\abx@aux@cite{cuiPetascaleEarthquakeSimulations2009}
\abx@aux@segm{0}{1}{cuiPetascaleEarthquakeSimulations2009}
\abx@aux@cite{cuiTeraShakeComputationalPlatform2009}
\abx@aux@segm{0}{1}{cuiTeraShakeComputationalPlatform2009}
\abx@aux@cite{olsen2009shakeout}
\abx@aux@segm{0}{1}{olsen2009shakeout}
\abx@aux@cite{marafiImpactsSimulatedM92019}
\abx@aux@segm{0}{1}{marafiImpactsSimulatedM92019}
\abx@aux@cite{rotenQuantificationFaultZonePlasticity2017}
\abx@aux@segm{0}{1}{rotenQuantificationFaultZonePlasticity2017}
\abx@aux@cite{nieFourthOrderStaggered2017}
\abx@aux@segm{0}{1}{nieFourthOrderStaggered2017}
\abx@aux@cite{zhangThreedimensionalElasticWave2012}
\abx@aux@segm{0}{1}{zhangThreedimensionalElasticWave2012}
\abx@aux@cite{oreillyHighorderFiniteDifference2021}
\abx@aux@segm{0}{1}{oreillyHighorderFiniteDifference2021}
\abx@aux@page{10}{2}
\abx@aux@page{11}{2}
\abx@aux@page{12}{2}
\abx@aux@page{13}{2}
\abx@aux@page{14}{2}
\abx@aux@page{15}{2}
\abx@aux@page{16}{2}
\abx@aux@page{17}{2}
\abx@aux@page{18}{2}
\abx@aux@page{19}{2}
\abx@aux@page{20}{2}
\abx@aux@page{21}{2}
\abx@aux@page{22}{2}
\abx@aux@page{23}{2}
\abx@aux@page{24}{2}
\abx@aux@page{25}{2}
\abx@aux@page{26}{2}
\abx@aux@page{27}{2}
\abx@aux@page{28}{2}
\abx@aux@page{29}{2}
\abx@aux@cite{gravesBroadbandSimulationsSouthern2008}
\abx@aux@segm{0}{1}{gravesBroadbandSimulationsSouthern2008}
\abx@aux@cite{olsen2009shakeout}
\abx@aux@segm{0}{1}{olsen2009shakeout}
\abx@aux@cite{bielakShakeOutEarthquakeScenario2010}
\abx@aux@segm{0}{1}{bielakShakeOutEarthquakeScenario2010}
\abx@aux@cite{roten3DSimulationsEarthquakes2012}
\abx@aux@segm{0}{1}{roten3DSimulationsEarthquakes2012}
\abx@aux@cite{savranGroundMotionSimulation2019}
\abx@aux@segm{0}{1}{savranGroundMotionSimulation2019}
\abx@aux@cite{withersGroundMotionIntraevent2019}
\abx@aux@segm{0}{1}{withersGroundMotionIntraevent2019}
\abx@aux@cite{laiShallowBasinStructure2020}
\abx@aux@segm{0}{1}{laiShallowBasinStructure2020}
\abx@aux@page{30}{3}
\abx@aux@page{31}{3}
\abx@aux@page{32}{3}
\abx@aux@page{33}{3}
\abx@aux@page{34}{3}
\abx@aux@page{35}{3}
\abx@aux@page{36}{3}
\abx@aux@cite{dodge1997source}
\abx@aux@segm{0}{1}{dodge1997source}
\abx@aux@cite{vernon1998near}
\abx@aux@segm{0}{1}{vernon1998near}
\abx@aux@cite{imperatoriBroadbandNearfieldGround2013}
\abx@aux@segm{0}{1}{imperatoriBroadbandNearfieldGround2013}
\abx@aux@cite{imperatoriRoleTopographyLateral2015}
\abx@aux@segm{0}{1}{imperatoriRoleTopographyLateral2015}
\abx@aux@cite{booreSiteAmplificationsGeneric1997}
\abx@aux@segm{0}{1}{booreSiteAmplificationsGeneric1997}
\abx@aux@cite{poggiDerivationReferenceShearWave2011}
\abx@aux@segm{0}{1}{poggiDerivationReferenceShearWave2011}
\abx@aux@cite{imperatoriBroadbandNearfieldGround2013}
\abx@aux@segm{0}{1}{imperatoriBroadbandNearfieldGround2013}
\abx@aux@cite{leeTestingWaveformPredictions2014}
\abx@aux@segm{0}{1}{leeTestingWaveformPredictions2014}
\abx@aux@cite{shawUnifiedStructuralRepresentation2015}
\abx@aux@segm{0}{1}{shawUnifiedStructuralRepresentation2015}
\abx@aux@cite{waldTopographicSlopeProxy2007}
\abx@aux@segm{0}{1}{waldTopographicSlopeProxy2007}
\abx@aux@cite{thompsonVS30MapCalifornia2014}
\abx@aux@segm{0}{1}{thompsonVS30MapCalifornia2014}
\abx@aux@cite{dayRMSResponseOnedimensional1996}
\abx@aux@segm{0}{1}{dayRMSResponseOnedimensional1996}
\abx@aux@cite{elyVs30derivedNearsurfaceSeismic2010}
\abx@aux@segm{0}{1}{elyVs30derivedNearsurfaceSeismic2010}
\abx@aux@page{37}{4}
\abx@aux@page{38}{4}
\abx@aux@page{39}{4}
\abx@aux@page{40}{4}
\abx@aux@page{41}{4}
\abx@aux@page{42}{4}
\abx@aux@page{43}{4}
\abx@aux@page{44}{4}
\abx@aux@page{45}{4}
\abx@aux@page{46}{4}
\abx@aux@cite{celebiTopographicalGeologicalAmplifications1987}
\abx@aux@segm{0}{1}{celebiTopographicalGeologicalAmplifications1987}
\abx@aux@cite{kawaseTopographyEffectCritical1990}
\abx@aux@segm{0}{1}{kawaseTopographyEffectCritical1990}
\abx@aux@cite{massaExperimentalApproachEstimating2010}
\abx@aux@segm{0}{1}{massaExperimentalApproachEstimating2010}
\abx@aux@cite{burjanekEmpiricalEvidenceLocal2014}
\abx@aux@segm{0}{1}{burjanekEmpiricalEvidenceLocal2014}
\abx@aux@cite{celebiTopographicalGeologicalAmplifications1987}
\abx@aux@segm{0}{1}{celebiTopographicalGeologicalAmplifications1987}
\abx@aux@cite{geliEffectTopographyEarthquake1988}
\abx@aux@segm{0}{1}{geliEffectTopographyEarthquake1988}
\abx@aux@cite{chavez-garciaComplexSiteEffects2000}
\abx@aux@segm{0}{1}{chavez-garciaComplexSiteEffects2000}
\abx@aux@cite{booreNoteEffectSimple1972}
\abx@aux@segm{0}{1}{booreNoteEffectSimple1972}
\abx@aux@cite{sanchez-sesmaDiffractionSVRayleigh1991}
\abx@aux@segm{0}{1}{sanchez-sesmaDiffractionSVRayleigh1991}
\abx@aux@cite{lovati2011estimation}
\abx@aux@segm{0}{1}{lovati2011estimation}
\abx@aux@cite{hartzellGroundMotionPresence2017}
\abx@aux@segm{0}{1}{hartzellGroundMotionPresence2017}
\abx@aux@cite{ashfordAnalysisTopographicAmplification1997}
\abx@aux@segm{0}{1}{ashfordAnalysisTopographicAmplification1997}
\abx@aux@cite{nguyenEvaluationSeismicGround2007}
\abx@aux@segm{0}{1}{nguyenEvaluationSeismicGround2007}
\abx@aux@cite{bouckovalasNumericalEvaluationSlope2005}
\abx@aux@segm{0}{1}{bouckovalasNumericalEvaluationSlope2005}
\abx@aux@cite{maufroyFrequencyScaledCurvature2015}
\abx@aux@segm{0}{1}{maufroyFrequencyScaledCurvature2015}
\abx@aux@cite{raiEmpiricalTerrainBasedTopographic2017}
\abx@aux@segm{0}{1}{raiEmpiricalTerrainBasedTopographic2017}
\abx@aux@cite{booreNoteEffectSimple1972}
\abx@aux@segm{0}{1}{booreNoteEffectSimple1972}
\abx@aux@cite{pischiuttaTopographicEffectsHill2010}
\abx@aux@segm{0}{1}{pischiuttaTopographicEffectsHill2010}
\abx@aux@cite{maEffectsLargeScaleSurface2007}
\abx@aux@segm{0}{1}{maEffectsLargeScaleSurface2007}
\abx@aux@cite{leeEffectsTopographySeismicWave2009}
\abx@aux@segm{0}{1}{leeEffectsTopographySeismicWave2009}
\abx@aux@cite{imperatoriRoleTopographyLateral2015}
\abx@aux@segm{0}{1}{imperatoriRoleTopographyLateral2015}
\abx@aux@page{47}{5}
\abx@aux@page{48}{5}
\abx@aux@page{49}{5}
\abx@aux@page{50}{5}
\abx@aux@page{51}{5}
\abx@aux@page{52}{5}
\abx@aux@page{53}{5}
\abx@aux@page{54}{5}
\abx@aux@page{55}{5}
\abx@aux@page{56}{5}
\abx@aux@page{57}{5}
\abx@aux@page{58}{5}
\abx@aux@page{59}{5}
\abx@aux@page{60}{5}
\abx@aux@page{61}{5}
\abx@aux@page{62}{5}
\abx@aux@page{63}{5}
\abx@aux@page{64}{5}
\abx@aux@cite{oconnellMeasuresDissipationViscoelastic1978}
\abx@aux@segm{0}{1}{oconnellMeasuresDissipationViscoelastic1978}
\abx@aux@cite{satoSeismicWavePropagation2009}
\abx@aux@segm{0}{1}{satoSeismicWavePropagation2009}
\abx@aux@cite{sato2012seismic}
\abx@aux@segm{0}{1}{sato2012seismic}
\abx@aux@cite{imperatoriRoleTopographyLateral2015}
\abx@aux@segm{0}{1}{imperatoriRoleTopographyLateral2015}
\abx@aux@cite{laiShallowBasinStructure2020}
\abx@aux@segm{0}{1}{laiShallowBasinStructure2020}
\abx@aux@cite{frankelAttenuationHighfrequencyShear1990}
\abx@aux@segm{0}{1}{frankelAttenuationHighfrequencyShear1990}
\abx@aux@cite{ericksonFrequencyDependentLgContinental2004}
\abx@aux@segm{0}{1}{ericksonFrequencyDependentLgContinental2004}
\abx@aux@cite{asterHighfrequencyBoreholeSeismograms1991}
\abx@aux@segm{0}{1}{asterHighfrequencyBoreholeSeismograms1991}
\abx@aux@cite{abercrombieNearsurfaceAttenuationSite1997}
\abx@aux@segm{0}{1}{abercrombieNearsurfaceAttenuationSite1997}
\abx@aux@page{65}{6}
\abx@aux@page{66}{6}
\abx@aux@page{67}{6}
\abx@aux@page{68}{6}
\abx@aux@page{69}{6}
\abx@aux@page{70}{6}
\abx@aux@page{71}{6}
\abx@aux@page{72}{6}
\abx@aux@page{73}{6}
\abx@aux@page{74}{6}
\abx@aux@page{75}{6}
\abx@aux@page{76}{6}
\abx@aux@page{77}{6}
\abx@aux@page{78}{6}
\abx@aux@cite{akiQuantitativeSeismology2002}
\abx@aux@segm{0}{1}{akiQuantitativeSeismology2002}
\abx@aux@cite{akiAttenuationShearwavesLithosphere1980}
\abx@aux@segm{0}{1}{akiAttenuationShearwavesLithosphere1980}
\abx@aux@cite{atkinsonAttenuationSourceParameters1995}
\abx@aux@segm{0}{1}{atkinsonAttenuationSourceParameters1995}
\abx@aux@cite{ericksonFrequencyDependentLgContinental2004}
\abx@aux@segm{0}{1}{ericksonFrequencyDependentLgContinental2004}
\abx@aux@cite{withersMemoryEfficientSimulation2015}
\abx@aux@segm{0}{1}{withersMemoryEfficientSimulation2015}
\abx@aux@cite{levanderSmallscaleHeterogeneityLargescale1992}
\abx@aux@segm{0}{1}{levanderSmallscaleHeterogeneityLargescale1992}
\abx@aux@cite{levanderCrustHeterogeneousOptical1994}
\abx@aux@segm{0}{1}{levanderCrustHeterogeneousOptical1994}
\abx@aux@cite{beanStatisticalMeasuresCrustal1999}
\abx@aux@segm{0}{1}{beanStatisticalMeasuresCrustal1999}
\abx@aux@cite{helffrichEarthMantle2001}
\abx@aux@segm{0}{1}{helffrichEarthMantle2001}
\abx@aux@cite{hedlinSeismicEvidenceSmallscale1997}
\abx@aux@segm{0}{1}{hedlinSeismicEvidenceSmallscale1997}
\abx@aux@cite{satoBroadeningSeismogramEnvelopes1989}
\abx@aux@segm{0}{1}{satoBroadeningSeismogramEnvelopes1989}
\abx@aux@cite{flatteSmallscaleStructureLithosphere1988}
\abx@aux@segm{0}{1}{flatteSmallscaleStructureLithosphere1988}
\abx@aux@cite{akiAnalysisSeismicCoda1969}
\abx@aux@segm{0}{1}{akiAnalysisSeismicCoda1969}
\abx@aux@cite{wuMultipleScatteringEnergy1985}
\abx@aux@segm{0}{1}{wuMultipleScatteringEnergy1985}
\abx@aux@cite{akiOriginCodaWaves1975}
\abx@aux@segm{0}{1}{akiOriginCodaWaves1975}
\abx@aux@cite{zengScatteringWaveEnergy1991}
\abx@aux@segm{0}{1}{zengScatteringWaveEnergy1991}
\abx@aux@cite{zengTheoryScatteredSwave1993}
\abx@aux@segm{0}{1}{zengTheoryScatteredSwave1993}
\abx@aux@cite{zengSubeventRakeRandom1995}
\abx@aux@segm{0}{1}{zengSubeventRakeRandom1995}
\abx@aux@cite{gusevSimulatedEnvelopesNonisotropically1996}
\abx@aux@segm{0}{1}{gusevSimulatedEnvelopesNonisotropically1996}
\abx@aux@cite{przybillaRadiativeTransferElastic2006}
\abx@aux@segm{0}{1}{przybillaRadiativeTransferElastic2006}
\abx@aux@cite{saitoEnvelopeBroadeningSpherically2002}
\abx@aux@segm{0}{1}{saitoEnvelopeBroadeningSpherically2002}
\abx@aux@cite{sawazakiEnvelopeSynthesisShortperiod2011}
\abx@aux@segm{0}{1}{sawazakiEnvelopeSynthesisShortperiod2011}
\abx@aux@cite{liuPredictionBroadbandGroundMotion2006}
\abx@aux@segm{0}{1}{liuPredictionBroadbandGroundMotion2006}
\abx@aux@cite{gravesBroadbandGroundMotionSimulation2010}
\abx@aux@segm{0}{1}{gravesBroadbandGroundMotionSimulation2010}
\abx@aux@cite{maiHybridBroadbandGroundMotion2010}
\abx@aux@segm{0}{1}{maiHybridBroadbandGroundMotion2010}
\abx@aux@cite{frankelFiniteDifferenceSimulations1986}
\abx@aux@segm{0}{1}{frankelFiniteDifferenceSimulations1986}
\abx@aux@cite{rothSingleScatteringTheory1993}
\abx@aux@segm{0}{1}{rothSingleScatteringTheory1993}
\abx@aux@cite{shapiroSeismicAttenuationScattering1993}
\abx@aux@segm{0}{1}{shapiroSeismicAttenuationScattering1993}
\abx@aux@cite{thyboSeismicScatteringTop2003}
\abx@aux@segm{0}{1}{thyboSeismicScatteringTop2003}
\abx@aux@page{79}{7}
\abx@aux@page{80}{7}
\abx@aux@page{81}{7}
\abx@aux@page{82}{7}
\abx@aux@page{83}{7}
\abx@aux@page{84}{7}
\abx@aux@page{85}{7}
\abx@aux@page{86}{7}
\abx@aux@page{87}{7}
\abx@aux@page{88}{7}
\abx@aux@page{89}{7}
\abx@aux@page{90}{7}
\abx@aux@page{91}{7}
\abx@aux@page{92}{7}
\abx@aux@page{93}{7}
\abx@aux@page{94}{7}
\abx@aux@page{95}{7}
\abx@aux@page{96}{7}
\abx@aux@page{97}{7}
\abx@aux@page{98}{7}
\abx@aux@page{99}{7}
\abx@aux@page{100}{7}
\abx@aux@page{101}{7}
\abx@aux@page{102}{7}
\abx@aux@cite{frankelFiniteDifferenceSimulations1986}
\abx@aux@segm{0}{1}{frankelFiniteDifferenceSimulations1986}
\abx@aux@cite{hartzellEffects3DRandom2010}
\abx@aux@segm{0}{1}{hartzellEffects3DRandom2010}
\abx@aux@cite{frankelFiniteDifferenceSimulations1986}
\abx@aux@segm{0}{1}{frankelFiniteDifferenceSimulations1986}
\abx@aux@cite{holligerUppercrustalSeismicVelocity1996}
\abx@aux@segm{0}{1}{holligerUppercrustalSeismicVelocity1996}
\abx@aux@cite{dolanRemarksEstimationFractal1997}
\abx@aux@segm{0}{1}{dolanRemarksEstimationFractal1997}
\abx@aux@cite{beanStatisticalMeasuresCrustal1999}
\abx@aux@segm{0}{1}{beanStatisticalMeasuresCrustal1999}
\abx@aux@cite{savranModelSmallscaleCrustal2016}
\abx@aux@segm{0}{1}{savranModelSmallscaleCrustal2016}
\abx@aux@cite{thyboSeismicScatteringTop2003}
\abx@aux@segm{0}{1}{thyboSeismicScatteringTop2003}
\abx@aux@cite{nielsenIdentificationCrustalUpper2006}
\abx@aux@segm{0}{1}{nielsenIdentificationCrustalUpper2006}
\abx@aux@cite{przybillaEstimationCrustalScattering2009}
\abx@aux@segm{0}{1}{przybillaEstimationCrustalScattering2009}
\abx@aux@cite{imperatoriBroadbandNearfieldGround2013}
\abx@aux@segm{0}{1}{imperatoriBroadbandNearfieldGround2013}
\abx@aux@cite{imperatoriRoleTopographyLateral2015}
\abx@aux@segm{0}{1}{imperatoriRoleTopographyLateral2015}
\abx@aux@cite{booreShortperiodSwaveRadiation1986}
\abx@aux@segm{0}{1}{booreShortperiodSwaveRadiation1986}
\abx@aux@cite{silvaEngineeringCharacterizationStrong1995}
\abx@aux@segm{0}{1}{silvaEngineeringCharacterizationStrong1995}
\abx@aux@cite{wood1908distribution}
\abx@aux@segm{0}{1}{wood1908distribution}
\abx@aux@cite{reid1910california}
\abx@aux@segm{0}{1}{reid1910california}
\abx@aux@cite{gutenbergEffectsGroundEarthquake1957}
\abx@aux@segm{0}{1}{gutenbergEffectsGroundEarthquake1957}
\abx@aux@cite{gutenbergEffectsGroundEarthquake1957}
\abx@aux@segm{0}{1}{gutenbergEffectsGroundEarthquake1957}
\abx@aux@cite{akiLocalSiteEffects1993}
\abx@aux@segm{0}{1}{akiLocalSiteEffects1993}
\abx@aux@cite{singh1993origin}
\abx@aux@segm{0}{1}{singh1993origin}
\abx@aux@page{103}{8}
\abx@aux@page{104}{8}
\abx@aux@page{105}{8}
\abx@aux@page{106}{8}
\abx@aux@page{107}{8}
\abx@aux@page{108}{8}
\abx@aux@page{109}{8}
\abx@aux@page{110}{8}
\abx@aux@page{111}{8}
\abx@aux@page{112}{8}
\abx@aux@page{113}{8}
\abx@aux@page{114}{8}
\abx@aux@page{115}{8}
\abx@aux@page{116}{8}
\abx@aux@page{117}{8}
\abx@aux@page{118}{8}
\abx@aux@page{119}{8}
\abx@aux@page{120}{8}
\abx@aux@page{121}{8}
\abx@aux@cite{baraniInfluenceSoilModeling2013}
\abx@aux@segm{0}{1}{baraniInfluenceSoilModeling2013}
\abx@aux@cite{griffithsMappingDispersionMisfit2016}
\abx@aux@segm{0}{1}{griffithsMappingDispersionMisfit2016}
\abx@aux@cite{kramerGeotechnicalEarthquakeEngineering1996}
\abx@aux@segm{0}{1}{kramerGeotechnicalEarthquakeEngineering1996}
\abx@aux@cite{rotenComparisonObservedSimulated2008}
\abx@aux@segm{0}{1}{rotenComparisonObservedSimulated2008}
\abx@aux@cite{thompsonTaxonomySiteResponse2012}
\abx@aux@segm{0}{1}{thompsonTaxonomySiteResponse2012}
\abx@aux@cite{zhuSeismicAggravationShallow2018}
\abx@aux@segm{0}{1}{zhuSeismicAggravationShallow2018}
\abx@aux@cite{chavez-garciaComplexSiteEffects2000}
\abx@aux@segm{0}{1}{chavez-garciaComplexSiteEffects2000}
\abx@aux@cite{olsenCausesLowfrequencyGround1995}
\abx@aux@segm{0}{1}{olsenCausesLowfrequencyGround1995}
\abx@aux@cite{booreCanSiteResponse2004}
\abx@aux@segm{0}{1}{booreCanSiteResponse2004}
\abx@aux@cite{matavosicPracticesProceduresSitespecific2012}
\abx@aux@segm{0}{1}{matavosicPracticesProceduresSitespecific2012}
\abx@aux@cite{teagueMeasuredVsPredicted2018}
\abx@aux@segm{0}{1}{teagueMeasuredVsPredicted2018}
\abx@aux@page{122}{9}
\abx@aux@page{123}{9}
\abx@aux@page{124}{9}
\abx@aux@page{125}{9}
\abx@aux@page{126}{9}
\abx@aux@page{127}{9}
\abx@aux@page{128}{9}
\abx@aux@page{129}{9}
\abx@aux@page{130}{9}
\abx@aux@page{131}{9}
\abx@aux@page{132}{9}
\abx@aux@page{133}{9}
\abx@aux@page{134}{9}
\abx@aux@page{135}{9}
\abx@aux@page{136}{9}
\abx@aux@cite{bssc2003NEHRPRecommended2003}
\abx@aux@segm{0}{1}{bssc2003NEHRPRecommended2003}
\abx@aux@cite{akkarEmpiricalEquationsPrediction2010}
\abx@aux@segm{0}{1}{akkarEmpiricalEquationsPrediction2010}
\abx@aux@cite{abrahamsonSummaryAbrahamsonSilva2008}
\abx@aux@segm{0}{1}{abrahamsonSummaryAbrahamsonSilva2008}
\abx@aux@cite{idrissNGAWest2EmpiricalModel2014}
\abx@aux@segm{0}{1}{idrissNGAWest2EmpiricalModel2014}
\abx@aux@cite{thompsonTaxonomySiteResponse2012}
\abx@aux@segm{0}{1}{thompsonTaxonomySiteResponse2012}
\abx@aux@cite{atkinsonEarthquakeGroundmotionPrediction2006}
\abx@aux@segm{0}{1}{atkinsonEarthquakeGroundmotionPrediction2006}
\abx@aux@cite{atikVariabilityGroundmotionPrediction2010}
\abx@aux@segm{0}{1}{atikVariabilityGroundmotionPrediction2010}
\abx@aux@page{137}{10}
\abx@aux@page{138}{10}
\abx@aux@page{139}{10}
\abx@aux@page{140}{10}
\abx@aux@page{141}{10}
\abx@aux@page{142}{10}
\abx@aux@page{143}{10}
\abx@aux@page{144}{10}
\abx@aux@page{145}{10}
\abx@aux@page{146}{10}
\abx@aux@page{147}{10}
\abx@aux@cite{hanksObservedGroundMotions2005}
\abx@aux@segm{0}{1}{hanksObservedGroundMotions2005}
\abx@aux@cite{bommerWhyModernProbabilistic2006}
\abx@aux@segm{0}{1}{bommerWhyModernProbabilistic2006}
\abx@aux@cite{olsen20083d}
\abx@aux@segm{0}{1}{olsen20083d}
\abx@aux@cite{molnar2014earthquake}
\abx@aux@segm{0}{1}{molnar2014earthquake}
\abx@aux@cite{andrewsPhysicalLimitsGround2007}
\abx@aux@segm{0}{1}{andrewsPhysicalLimitsGround2007}
\abx@aux@cite{maPhysicalModelWidespread2008}
\abx@aux@segm{0}{1}{maPhysicalModelWidespread2008}
\abx@aux@cite{duanSensitivityStudyPhysical2010}
\abx@aux@segm{0}{1}{duanSensitivityStudyPhysical2010}
\abx@aux@cite{templetonDynamicRuptureBranched2010}
\abx@aux@segm{0}{1}{templetonDynamicRuptureBranched2010}
\abx@aux@cite{dunhamEarthquakeRupturesStrongly2011}
\abx@aux@segm{0}{1}{dunhamEarthquakeRupturesStrongly2011}
\abx@aux@cite{mitchellNatureOriginOfffault2009}
\abx@aux@segm{0}{1}{mitchellNatureOriginOfffault2009}
\abx@aux@cite{nodaEarthquakeRupturesThermal2009}
\abx@aux@segm{0}{1}{nodaEarthquakeRupturesThermal2009}
\abx@aux@cite{dunhamEarthquakeRupturesStrongly2011a}
\abx@aux@segm{0}{1}{dunhamEarthquakeRupturesStrongly2011a}
\abx@aux@cite{andrewsRuptureDynamicsEnergy2005}
\abx@aux@segm{0}{1}{andrewsRuptureDynamicsEnergy2005}
\abx@aux@cite{maRuptureDynamicsBimaterial2008}
\abx@aux@segm{0}{1}{maRuptureDynamicsBimaterial2008}
\abx@aux@cite{duanSensitivityStudyPhysical2010}
\abx@aux@segm{0}{1}{duanSensitivityStudyPhysical2010}
\abx@aux@cite{dunhamEarthquakeRupturesStrongly2011}
\abx@aux@segm{0}{1}{dunhamEarthquakeRupturesStrongly2011}
\abx@aux@cite{rotenExpectedSeismicShaking2014}
\abx@aux@segm{0}{1}{rotenExpectedSeismicShaking2014}
\abx@aux@cite{fieldNonlinearSiteResponse1998}
\abx@aux@segm{0}{1}{fieldNonlinearSiteResponse1998}
\abx@aux@cite{rotenExpectedSeismicShaking2014}
\abx@aux@segm{0}{1}{rotenExpectedSeismicShaking2014}
\abx@aux@page{148}{11}
\abx@aux@page{149}{11}
\abx@aux@page{150}{11}
\abx@aux@page{151}{11}
\abx@aux@page{152}{11}
\abx@aux@page{153}{11}
\abx@aux@page{154}{11}
\abx@aux@page{155}{11}
\abx@aux@page{156}{11}
\abx@aux@page{157}{11}
\abx@aux@page{158}{11}
\abx@aux@page{159}{11}
\abx@aux@page{160}{11}
\abx@aux@page{161}{11}
\abx@aux@page{162}{11}
\abx@aux@page{163}{11}
\abx@aux@page{164}{11}
\abx@aux@page{165}{11}
\abx@aux@page{166}{12}
\@input{chapter2.aux}
\abx@aux@cite{gilbertSanFranciscoEarthquake1907}
\abx@aux@segm{0}{2}{gilbertSanFranciscoEarthquake1907}
\abx@aux@cite{fieldModifiedGroundMotionAttenuation2000}
\abx@aux@segm{0}{2}{fieldModifiedGroundMotionAttenuation2000}
\abx@aux@cite{joynerEffectQuaternaryAlluvium1981}
\abx@aux@segm{0}{2}{joynerEffectQuaternaryAlluvium1981}
\abx@aux@cite{booreEstimationGroundMotion1991}
\abx@aux@segm{0}{2}{booreEstimationGroundMotion1991}
\abx@aux@cite{andersonControlStrongMotion1996}
\abx@aux@segm{0}{2}{andersonControlStrongMotion1996}
\abx@aux@cite{dayRMSResponseOnedimensional1996}
\abx@aux@segm{0}{2}{dayRMSResponseOnedimensional1996}
\abx@aux@cite{borcherdtEstimatesSiteDependentResponse1994}
\abx@aux@segm{0}{2}{borcherdtEstimatesSiteDependentResponse1994}
\abx@aux@cite{bozorgniaNGAWest2ResearchProject2014}
\abx@aux@segm{0}{2}{bozorgniaNGAWest2ResearchProject2014}
\abx@aux@cite{internationalcodecouncil2015IBCInternational2014}
\abx@aux@segm{0}{2}{internationalcodecouncil2015IBCInternational2014}
\abx@aux@cite{waldTopographicSlopeProxy2007}
\abx@aux@segm{0}{2}{waldTopographicSlopeProxy2007}
\abx@aux@cite{thompsonVS30MapCalifornia2014}
\abx@aux@segm{0}{2}{thompsonVS30MapCalifornia2014}
\abx@aux@cite{willsNextGeneration302015}
\abx@aux@segm{0}{2}{willsNextGeneration302015}
\abx@aux@cite{thompsonVS30MapCalifornia2014}
\abx@aux@segm{0}{2}{thompsonVS30MapCalifornia2014}
\abx@aux@cite{heathGlobalHybrid302020}
\abx@aux@segm{0}{2}{heathGlobalHybrid302020}
\abx@aux@cite{steidlSiteResponseSouthern2000}
\abx@aux@segm{0}{2}{steidlSiteResponseSouthern2000}
\abx@aux@cite{leeShouldAverageShearwave2010}
\abx@aux@segm{0}{2}{leeShouldAverageShearwave2010}
\abx@aux@cite{shingakiEvaluationPerformanceSite2018}
\abx@aux@segm{0}{2}{shingakiEvaluationPerformanceSite2018}
\abx@aux@cite{abrahamsonSummaryASK14Ground2014}
\abx@aux@segm{0}{2}{abrahamsonSummaryASK14Ground2014}
\abx@aux@cite{booreNGAWest2EquationsPredicting2014}
\abx@aux@segm{0}{2}{booreNGAWest2EquationsPredicting2014}
\abx@aux@cite{campbellNGAWest2GroundMotion2014}
\abx@aux@segm{0}{2}{campbellNGAWest2GroundMotion2014}
\abx@aux@page{167}{14}
\abx@aux@page{168}{14}
\abx@aux@page{169}{14}
\abx@aux@page{170}{14}
\abx@aux@page{171}{14}
\abx@aux@page{172}{14}
\abx@aux@page{173}{14}
\abx@aux@page{174}{14}
\abx@aux@page{175}{14}
\abx@aux@page{176}{14}
\abx@aux@page{177}{14}
\abx@aux@page{178}{14}
\abx@aux@cite{savranGroundMotionSimulation2019}
\abx@aux@segm{0}{2}{savranGroundMotionSimulation2019}
\abx@aux@cite{withersGroundMotionIntraevent2019}
\abx@aux@segm{0}{2}{withersGroundMotionIntraevent2019}
\abx@aux@cite{hu05HzDeterministic2021}
\abx@aux@segm{0}{2}{hu05HzDeterministic2021}
\abx@aux@cite{smallSCECUnifiedCommunity2017}
\abx@aux@segm{0}{2}{smallSCECUnifiedCommunity2017}
\abx@aux@cite{stephensonCascadiaSubductionZone2017}
\abx@aux@segm{0}{2}{stephensonCascadiaSubductionZone2017}
\abx@aux@cite{fujiwaraJSHISINTEGRATEDSYSTEM2017}
\abx@aux@segm{0}{2}{fujiwaraJSHISINTEGRATEDSYSTEM2017}
\abx@aux@cite{tapeAdjointTomographySouthern2009}
\abx@aux@segm{0}{2}{tapeAdjointTomographySouthern2009}
\abx@aux@cite{tapeSeismicTomographySouthern2010}
\abx@aux@segm{0}{2}{tapeSeismicTomographySouthern2010}
\abx@aux@cite{leeFull3DTomographyCrustal2014}
\abx@aux@segm{0}{2}{leeFull3DTomographyCrustal2014}
\abx@aux@cite{linThreedimensionalCrustalSeismic2007}
\abx@aux@segm{0}{2}{linThreedimensionalCrustalSeismic2007}
\abx@aux@cite{leeFull3DTomographyCrustal2014}
\abx@aux@segm{0}{2}{leeFull3DTomographyCrustal2014}
\abx@aux@cite{qiuEikonalTomographySouthern2019}
\abx@aux@segm{0}{2}{qiuEikonalTomographySouthern2019}
\abx@aux@page{179}{15}
\abx@aux@page{180}{15}
\abx@aux@page{181}{15}
\abx@aux@page{182}{15}
\abx@aux@page{183}{15}
\abx@aux@page{184}{15}
\abx@aux@page{185}{15}
\abx@aux@page{186}{15}
\abx@aux@page{187}{15}
\abx@aux@page{188}{15}
\abx@aux@page{189}{15}
\abx@aux@page{190}{15}
\abx@aux@page{191}{15}
\abx@aux@page{192}{15}
\abx@aux@page{193}{15}
\abx@aux@page{194}{15}
\abx@aux@page{195}{15}
\abx@aux@page{196}{15}
\abx@aux@cite{graves1995preliminary}
\abx@aux@segm{0}{2}{graves1995preliminary}
\abx@aux@cite{andersonControlStrongMotion1996}
\abx@aux@segm{0}{2}{andersonControlStrongMotion1996}
\abx@aux@cite{imperatoriBroadbandNearfieldGround2013}
\abx@aux@segm{0}{2}{imperatoriBroadbandNearfieldGround2013}
\abx@aux@cite{dayRMSResponseOnedimensional1996}
\abx@aux@segm{0}{2}{dayRMSResponseOnedimensional1996}
\abx@aux@cite{magistraleGeologybased3DVelocity1996}
\abx@aux@segm{0}{2}{magistraleGeologybased3DVelocity1996}
\abx@aux@cite{magistraleSCECSouthernCalifornia2000}
\abx@aux@segm{0}{2}{magistraleSCECSouthernCalifornia2000}
\abx@aux@cite{sussWaveSeismicVelocity2003}
\abx@aux@segm{0}{2}{sussWaveSeismicVelocity2003}
\abx@aux@cite{teagueMeasuredVsPredicted2018}
\abx@aux@segm{0}{2}{teagueMeasuredVsPredicted2018}
\abx@aux@cite{stellerNewBoreholeGeophysical1996}
\abx@aux@segm{0}{2}{stellerNewBoreholeGeophysical1996}
\abx@aux@cite{thompsonTaxonomySiteResponse2012}
\abx@aux@segm{0}{2}{thompsonTaxonomySiteResponse2012}
\abx@aux@cite{booreSiteAmplificationsGeneric1997}
\abx@aux@segm{0}{2}{booreSiteAmplificationsGeneric1997}
\abx@aux@cite{elyVs30derivedNearsurfaceSeismic2010}
\abx@aux@segm{0}{2}{elyVs30derivedNearsurfaceSeismic2010}
\abx@aux@cite{elyVs30derivedNearsurfaceSeismic2010}
\abx@aux@segm{0}{2}{elyVs30derivedNearsurfaceSeismic2010}
\abx@aux@page{197}{16}
\abx@aux@page{198}{16}
\abx@aux@page{199}{16}
\abx@aux@page{200}{16}
\abx@aux@page{201}{16}
\abx@aux@page{202}{16}
\abx@aux@page{203}{16}
\abx@aux@page{204}{16}
\abx@aux@page{205}{16}
\abx@aux@page{206}{16}
\abx@aux@page{207}{16}
\abx@aux@page{208}{16}
\abx@aux@page{209}{16}
\abx@aux@page{210}{17}
\abx@aux@page{211}{17}
\abx@aux@cite{cuiScalableEarthquakeSimulation2010}
\abx@aux@segm{0}{2}{cuiScalableEarthquakeSimulation2010}
\abx@aux@cite{nieFourthOrderStaggered2017}
\abx@aux@segm{0}{2}{nieFourthOrderStaggered2017}
\abx@aux@cite{hu05HzDeterministic2021}
\abx@aux@segm{0}{2}{hu05HzDeterministic2021}
\abx@aux@cite{bielakShakeOutEarthquakeScenario2010}
\abx@aux@segm{0}{2}{bielakShakeOutEarthquakeScenario2010}
\abx@aux@cite{withersGroundMotionIntraevent2019}
\abx@aux@segm{0}{2}{withersGroundMotionIntraevent2019}
\abx@aux@cite{cerjanNonreflectingBoundaryCondition1985}
\abx@aux@segm{0}{2}{cerjanNonreflectingBoundaryCondition1985}
\abx@aux@page{212}{18}
\abx@aux@page{213}{18}
\abx@aux@page{214}{18}
\abx@aux@page{215}{18}
\abx@aux@page{216}{18}
\abx@aux@page{217}{18}
\abx@aux@cite{gravesKinematicGroundMotion2016}
\abx@aux@segm{0}{2}{gravesKinematicGroundMotion2016}
\abx@aux@cite{usgsEarthquakeEventsFocal2014}
\abx@aux@segm{0}{2}{usgsEarthquakeEventsFocal2014}
\abx@aux@cite{magistraleGeologybased3DVelocity1996}
\abx@aux@segm{0}{2}{magistraleGeologybased3DVelocity1996}
\abx@aux@cite{magistraleSCECSouthernCalifornia2000}
\abx@aux@segm{0}{2}{magistraleSCECSouthernCalifornia2000}
\abx@aux@page{218}{19}
\abx@aux@page{219}{19}
\abx@aux@cite{booreNoteEffectSimple1972}
\abx@aux@segm{0}{2}{booreNoteEffectSimple1972}
\abx@aux@cite{bouchonSeismicResponseHill1996}
\abx@aux@segm{0}{2}{bouchonSeismicResponseHill1996}
\abx@aux@cite{durand1999seismic}
\abx@aux@segm{0}{2}{durand1999seismic}
\abx@aux@cite{pischiuttaTopographicEffectsHill2010}
\abx@aux@segm{0}{2}{pischiuttaTopographicEffectsHill2010}
\abx@aux@cite{massaOverviewTopographicEffects2014}
\abx@aux@segm{0}{2}{massaOverviewTopographicEffects2014}
\abx@aux@cite{liu1976velocity}
\abx@aux@segm{0}{2}{liu1976velocity}
\abx@aux@cite{fehler1992separation}
\abx@aux@segm{0}{2}{fehler1992separation}
\abx@aux@cite{hartzellEffects3DRandom2010}
\abx@aux@segm{0}{2}{hartzellEffects3DRandom2010}
\abx@aux@page{220}{20}
\abx@aux@page{221}{20}
\abx@aux@cite{elyVs30derivedNearsurfaceSeismic2010}
\abx@aux@segm{0}{2}{elyVs30derivedNearsurfaceSeismic2010}
\abx@aux@cite{brocherEmpiricalRelationsElastic2005}
\abx@aux@segm{0}{2}{brocherEmpiricalRelationsElastic2005}
\abx@aux@cite{ludwigSeismicRefraction1970}
\abx@aux@segm{0}{2}{ludwigSeismicRefraction1970}
\abx@aux@page{222}{21}
\abx@aux@page{223}{21}
\abx@aux@page{224}{21}
\abx@aux@page{225}{21}
\abx@aux@page{226}{21}
\abx@aux@page{227}{21}
\abx@aux@page{228}{21}
\abx@aux@page{229}{21}
\abx@aux@page{230}{21}
\abx@aux@cite{brocherEmpiricalRelationsElastic2005}
\abx@aux@segm{0}{2}{brocherEmpiricalRelationsElastic2005}
\abx@aux@cite{elyVs30derivedNearsurfaceSeismic2010}
\abx@aux@segm{0}{2}{elyVs30derivedNearsurfaceSeismic2010}
\abx@aux@cite{booreSiteAmplificationsGeneric1997}
\abx@aux@segm{0}{2}{booreSiteAmplificationsGeneric1997}
\abx@aux@cite{magistraleSCECSouthernCalifornia2000}
\abx@aux@segm{0}{2}{magistraleSCECSouthernCalifornia2000}
\abx@aux@cite{elyVs30derivedNearsurfaceSeismic2010}
\abx@aux@segm{0}{2}{elyVs30derivedNearsurfaceSeismic2010}
\abx@aux@cite{elyVs30derivedNearsurfaceSeismic2010}
\abx@aux@segm{0}{2}{elyVs30derivedNearsurfaceSeismic2010}
\abx@aux@cite{willsDevelopingMapGeologically2006}
\abx@aux@segm{0}{2}{willsDevelopingMapGeologically2006}
\abx@aux@cite{waldTopographicSlopeProxy2007}
\abx@aux@segm{0}{2}{waldTopographicSlopeProxy2007}
\abx@aux@cite{thompsonVS30MapCalifornia2014}
\abx@aux@segm{0}{2}{thompsonVS30MapCalifornia2014}
\abx@aux@cite{willsDevelopingMapGeologically2006}
\abx@aux@segm{0}{2}{willsDevelopingMapGeologically2006}
\abx@aux@cite{willsNextGeneration302015}
\abx@aux@segm{0}{2}{willsNextGeneration302015}
\abx@aux@cite{thompsonUpdatedVs30Map2018}
\abx@aux@segm{0}{2}{thompsonUpdatedVs30Map2018}
\abx@aux@page{231}{22}
\abx@aux@page{232}{22}
\abx@aux@page{233}{22}
\abx@aux@page{234}{22}
\abx@aux@page{235}{22}
\abx@aux@page{236}{22}
\abx@aux@page{237}{22}
\abx@aux@page{238}{22}
\abx@aux@cite{thompsonUpdatedVs30Map2018}
\abx@aux@segm{0}{2}{thompsonUpdatedVs30Map2018}
\abx@aux@cite{elyVs30derivedNearsurfaceSeismic2010}
\abx@aux@segm{0}{2}{elyVs30derivedNearsurfaceSeismic2010}
\abx@aux@cite{elyVs30derivedNearsurfaceSeismic2010}
\abx@aux@segm{0}{2}{elyVs30derivedNearsurfaceSeismic2010}
\abx@aux@cite{thompsonUpdatedVs30Map2018}
\abx@aux@segm{0}{2}{thompsonUpdatedVs30Map2018}
\abx@aux@cite{magistraleSCECSouthernCalifornia2000}
\abx@aux@segm{0}{2}{magistraleSCECSouthernCalifornia2000}
\abx@aux@cite{smallSCECUnifiedCommunity2017}
\abx@aux@segm{0}{2}{smallSCECUnifiedCommunity2017}
\abx@aux@cite{elyVs30derivedNearsurfaceSeismic2010}
\abx@aux@segm{0}{2}{elyVs30derivedNearsurfaceSeismic2010}
\abx@aux@cite{elyVs30derivedNearsurfaceSeismic2010}
\abx@aux@segm{0}{2}{elyVs30derivedNearsurfaceSeismic2010}
\abx@aux@cite{thompsonUpdatedVs30Map2018}
\abx@aux@segm{0}{2}{thompsonUpdatedVs30Map2018}
\abx@aux@page{239}{23}
\abx@aux@page{240}{23}
\abx@aux@page{241}{23}
\abx@aux@page{242}{23}
\abx@aux@page{243}{23}
\abx@aux@page{244}{23}
\abx@aux@page{245}{23}
\abx@aux@page{246}{23}
\abx@aux@page{247}{23}
\abx@aux@page{248}{23}
\abx@aux@page{249}{23}
\abx@aux@page{250}{23}
\abx@aux@page{251}{23}
\abx@aux@page{252}{23}
\abx@aux@page{253}{23}
\abx@aux@cite{dayRMSResponseOnedimensional1996}
\abx@aux@segm{0}{2}{dayRMSResponseOnedimensional1996}
\abx@aux@cite{thompsonTaxonomySiteResponse2012}
\abx@aux@segm{0}{2}{thompsonTaxonomySiteResponse2012}
\abx@aux@page{254}{24}
\abx@aux@page{255}{24}
\abx@aux@cite{elyVs30derivedNearsurfaceSeismic2010}
\abx@aux@segm{0}{2}{elyVs30derivedNearsurfaceSeismic2010}
\abx@aux@cite{elyVs30derivedNearsurfaceSeismic2010}
\abx@aux@segm{0}{2}{elyVs30derivedNearsurfaceSeismic2010}
\abx@aux@cite{elyVs30derivedNearsurfaceSeismic2010}
\abx@aux@segm{0}{2}{elyVs30derivedNearsurfaceSeismic2010}
\abx@aux@cite{olsenEstimationLongPeriodSec2003}
\abx@aux@segm{0}{2}{olsenEstimationLongPeriodSec2003}
\abx@aux@cite{savranGroundMotionSimulation2019}
\abx@aux@segm{0}{2}{savranGroundMotionSimulation2019}
\abx@aux@cite{laiShallowBasinStructure2020}
\abx@aux@segm{0}{2}{laiShallowBasinStructure2020}
\abx@aux@cite{savranModelSmallscaleCrustal2016}
\abx@aux@segm{0}{2}{savranModelSmallscaleCrustal2016}
\abx@aux@page{258}{27}
\abx@aux@cite{bonillaSiteAmplificationSan1997}
\abx@aux@segm{0}{2}{bonillaSiteAmplificationSan1997}
\abx@aux@cite{gulerceSiteSpecificDesignSpectra2011}
\abx@aux@segm{0}{2}{gulerceSiteSpecificDesignSpectra2011}
\abx@aux@page{259}{28}
\abx@aux@page{260}{28}
\abx@aux@page{261}{28}
\abx@aux@page{262}{28}
\abx@aux@page{263}{28}
\abx@aux@page{264}{28}
\abx@aux@cite{sussWaveSeismicVelocity2003}
\abx@aux@segm{0}{2}{sussWaveSeismicVelocity2003}
\abx@aux@cite{pleschNewVelocityModel2007}
\abx@aux@segm{0}{2}{pleschNewVelocityModel2007}
\abx@aux@cite{pleschCVMHInversionIntegration2009}
\abx@aux@segm{0}{2}{pleschCVMHInversionIntegration2009}
\abx@aux@cite{pleschUpdatesCVMHIncluding2017}
\abx@aux@segm{0}{2}{pleschUpdatesCVMHIncluding2017}
\abx@aux@cite{tapeAdjointTomographySouthern2009}
\abx@aux@segm{0}{2}{tapeAdjointTomographySouthern2009}
\abx@aux@cite{tapeSeismicTomographySouthern2010}
\abx@aux@segm{0}{2}{tapeSeismicTomographySouthern2010}
\abx@aux@cite{elyVs30derivedNearsurfaceSeismic2010}
\abx@aux@segm{0}{2}{elyVs30derivedNearsurfaceSeismic2010}
\abx@aux@cite{tabordaEvaluationSouthernCalifornia2016}
\abx@aux@segm{0}{2}{tabordaEvaluationSouthernCalifornia2016}
\abx@aux@cite{elyVs30derivedNearsurfaceSeismic2010}
\abx@aux@segm{0}{2}{elyVs30derivedNearsurfaceSeismic2010}
\abx@aux@cite{elyVs30derivedNearsurfaceSeismic2010}
\abx@aux@segm{0}{2}{elyVs30derivedNearsurfaceSeismic2010}
\abx@aux@cite{elyVs30derivedNearsurfaceSeismic2010}
\abx@aux@segm{0}{2}{elyVs30derivedNearsurfaceSeismic2010}
\abx@aux@page{265}{29}
\abx@aux@page{266}{29}
\abx@aux@page{267}{29}
\abx@aux@page{268}{29}
\abx@aux@page{269}{29}
\abx@aux@page{270}{29}
\abx@aux@page{271}{29}
\abx@aux@page{272}{29}
\abx@aux@page{273}{29}
\abx@aux@page{274}{29}
\abx@aux@page{275}{29}
\abx@aux@cite{brune1970tectonic}
\abx@aux@segm{0}{2}{brune1970tectonic}
\abx@aux@page{276}{36}
\abx@aux@cite{thompsonUpdatedVs30Map2018}
\abx@aux@segm{0}{2}{thompsonUpdatedVs30Map2018}
\abx@aux@page{277}{39}
\abx@aux@cite{elyVs30derivedNearsurfaceSeismic2010}
\abx@aux@segm{0}{2}{elyVs30derivedNearsurfaceSeismic2010}
\abx@aux@page{278}{47}
\@input{chapter3.aux}
\abx@aux@cite{gravesSimulatingSeismicWave1996}
\abx@aux@segm{0}{3}{gravesSimulatingSeismicWave1996}
\abx@aux@cite{olsen2009shakeout}
\abx@aux@segm{0}{3}{olsen2009shakeout}
\abx@aux@cite{roten3DSimulationsEarthquakes2012}
\abx@aux@segm{0}{3}{roten3DSimulationsEarthquakes2012}
\abx@aux@cite{jones2008shakeout}
\abx@aux@segm{0}{3}{jones2008shakeout}
\abx@aux@cite{dayModelBasinEffects2008}
\abx@aux@segm{0}{3}{dayModelBasinEffects2008}
\abx@aux@cite{olsen2015sdsu}
\abx@aux@segm{0}{3}{olsen2015sdsu}
\abx@aux@cite{gravesKinematicGroundMotion2016}
\abx@aux@segm{0}{3}{gravesKinematicGroundMotion2016}
\abx@aux@page{279}{52}
\abx@aux@page{280}{52}
\abx@aux@page{281}{52}
\abx@aux@page{282}{52}
\abx@aux@page{283}{52}
\abx@aux@page{284}{52}
\abx@aux@page{285}{52}
\abx@aux@cite{gravesBroadbandGroundMotionSimulation2010}
\abx@aux@segm{0}{3}{gravesBroadbandGroundMotionSimulation2010}
\abx@aux@cite{liu1976velocity}
\abx@aux@segm{0}{3}{liu1976velocity}
\abx@aux@cite{fehler1992separation}
\abx@aux@segm{0}{3}{fehler1992separation}
\abx@aux@cite{withersMemoryEfficientSimulation2015}
\abx@aux@segm{0}{3}{withersMemoryEfficientSimulation2015}
\abx@aux@cite{olsenEstimationLongPeriodSec2003}
\abx@aux@segm{0}{3}{olsenEstimationLongPeriodSec2003}
\abx@aux@cite{pitarka2009simulating}
\abx@aux@segm{0}{3}{pitarka2009simulating}
\abx@aux@cite{imperatoriBroadbandNearfieldGround2013}
\abx@aux@segm{0}{3}{imperatoriBroadbandNearfieldGround2013}
\abx@aux@cite{tabordaEvaluationSouthernCalifornia2016}
\abx@aux@segm{0}{3}{tabordaEvaluationSouthernCalifornia2016}
\abx@aux@cite{savranGroundMotionSimulation2019}
\abx@aux@segm{0}{3}{savranGroundMotionSimulation2019}
\abx@aux@cite{laiShallowBasinStructure2020}
\abx@aux@segm{0}{3}{laiShallowBasinStructure2020}
\abx@aux@cite{elyVs30derivedNearsurfaceSeismic2010}
\abx@aux@segm{0}{3}{elyVs30derivedNearsurfaceSeismic2010}
\abx@aux@cite{huCalibrationNearsurfaceSeismic2021}
\abx@aux@segm{0}{3}{huCalibrationNearsurfaceSeismic2021}
\abx@aux@cite{huCalibrationNearsurfaceSeismic2021}
\abx@aux@segm{0}{3}{huCalibrationNearsurfaceSeismic2021}
\abx@aux@page{286}{53}
\abx@aux@page{287}{53}
\abx@aux@page{288}{53}
\abx@aux@page{289}{53}
\abx@aux@page{290}{53}
\abx@aux@page{291}{53}
\abx@aux@page{292}{53}
\abx@aux@page{293}{53}
\abx@aux@page{294}{53}
\abx@aux@page{295}{53}
\abx@aux@page{296}{53}
\abx@aux@page{297}{53}
\abx@aux@cite{liuScatteringSeismicWaves2020}
\abx@aux@segm{0}{3}{liuScatteringSeismicWaves2020}
\abx@aux@cite{imperatoriRoleTopographyLateral2015}
\abx@aux@segm{0}{3}{imperatoriRoleTopographyLateral2015}
\abx@aux@cite{takemura2015scattering}
\abx@aux@segm{0}{3}{takemura2015scattering}
\abx@aux@cite{rodgersBroadband04Hz2018}
\abx@aux@segm{0}{3}{rodgersBroadband04Hz2018}
\abx@aux@cite{trifunacAnalysisPacoimaDam1971}
\abx@aux@segm{0}{3}{trifunacAnalysisPacoimaDam1971}
\abx@aux@cite{booreNoteEffectSimple1972}
\abx@aux@segm{0}{3}{booreNoteEffectSimple1972}
\abx@aux@cite{spudichDirectionalTopographicSite1996}
\abx@aux@segm{0}{3}{spudichDirectionalTopographicSite1996}
\abx@aux@cite{bouchonSeismicResponseHill1996}
\abx@aux@segm{0}{3}{bouchonSeismicResponseHill1996}
\abx@aux@cite{assimakiSoilDependentTopographicEffects2005}
\abx@aux@segm{0}{3}{assimakiSoilDependentTopographicEffects2005}
\abx@aux@cite{davisObservedEffectsTopography1973}
\abx@aux@segm{0}{3}{davisObservedEffectsTopography1973}
\abx@aux@cite{geliEffectTopographyEarthquake1988}
\abx@aux@segm{0}{3}{geliEffectTopographyEarthquake1988}
\abx@aux@cite{umedaHighAccelerationsProduced1987}
\abx@aux@segm{0}{3}{umedaHighAccelerationsProduced1987}
\abx@aux@cite{gaffetSiteEffectStudy2000}
\abx@aux@segm{0}{3}{gaffetSiteEffectStudy2000}
\abx@aux@cite{bardDiffractedWavesDisplacement1982}
\abx@aux@segm{0}{3}{bardDiffractedWavesDisplacement1982}
\abx@aux@cite{sanchez-sesmaDiffractionSVRayleigh1991}
\abx@aux@segm{0}{3}{sanchez-sesmaDiffractionSVRayleigh1991}
\abx@aux@cite{leeEffectsRealisticSurface2009}
\abx@aux@segm{0}{3}{leeEffectsRealisticSurface2009}
\abx@aux@cite{imperatoriRoleTopographyLateral2015}
\abx@aux@segm{0}{3}{imperatoriRoleTopographyLateral2015}
\abx@aux@cite{geliEffectTopographyEarthquake1988}
\abx@aux@segm{0}{3}{geliEffectTopographyEarthquake1988}
\abx@aux@cite{bouchonSeismicResponseHill1996}
\abx@aux@segm{0}{3}{bouchonSeismicResponseHill1996}
\abx@aux@cite{maufroyFrequencyScaledCurvature2015}
\abx@aux@segm{0}{3}{maufroyFrequencyScaledCurvature2015}
\abx@aux@cite{raiEmpiricalTerrainBasedTopographic2017}
\abx@aux@segm{0}{3}{raiEmpiricalTerrainBasedTopographic2017}
\abx@aux@page{298}{54}
\abx@aux@page{299}{54}
\abx@aux@page{300}{54}
\abx@aux@page{301}{54}
\abx@aux@page{302}{54}
\abx@aux@page{303}{54}
\abx@aux@page{304}{54}
\abx@aux@page{305}{54}
\abx@aux@page{306}{54}
\abx@aux@page{307}{54}
\abx@aux@page{308}{54}
\abx@aux@page{309}{54}
\abx@aux@page{310}{54}
\abx@aux@page{311}{54}
\abx@aux@page{312}{54}
\abx@aux@page{313}{54}
\abx@aux@page{314}{54}
\abx@aux@page{315}{54}
\abx@aux@page{316}{54}
\abx@aux@page{317}{54}
\abx@aux@page{318}{54}
\abx@aux@page{319}{54}
\abx@aux@cite{cuiScalableEarthquakeSimulation2010}
\abx@aux@segm{0}{3}{cuiScalableEarthquakeSimulation2010}
\abx@aux@cite{cui2013physics}
\abx@aux@segm{0}{3}{cui2013physics}
\abx@aux@cite{withersMemoryEfficientSimulation2015}
\abx@aux@segm{0}{3}{withersMemoryEfficientSimulation2015}
\abx@aux@cite{oreillyHighorderFiniteDifference2021}
\abx@aux@segm{0}{3}{oreillyHighorderFiniteDifference2021}
\abx@aux@cite{bielakShakeOutEarthquakeScenario2010}
\abx@aux@segm{0}{3}{bielakShakeOutEarthquakeScenario2010}
\abx@aux@cite{bielak2016verification}
\abx@aux@segm{0}{3}{bielak2016verification}
\abx@aux@cite{withersMemoryEfficientSimulation2015}
\abx@aux@segm{0}{3}{withersMemoryEfficientSimulation2015}
\abx@aux@cite{oreillyHighorderFiniteDifference2021}
\abx@aux@segm{0}{3}{oreillyHighorderFiniteDifference2021}
\abx@aux@cite{komatitschSpectralelementSimulationsGlobal2002}
\abx@aux@segm{0}{3}{komatitschSpectralelementSimulationsGlobal2002}
\abx@aux@page{320}{55}
\abx@aux@page{321}{55}
\abx@aux@page{322}{55}
\abx@aux@page{323}{55}
\abx@aux@cite{magistraleSCECSouthernCalifornia2000}
\abx@aux@segm{0}{3}{magistraleSCECSouthernCalifornia2000}
\abx@aux@cite{kohlerMantleHeterogeneitiesSCEC2003}
\abx@aux@segm{0}{3}{kohlerMantleHeterogeneitiesSCEC2003}
\abx@aux@cite{leeRapidFullwaveCentroid2011}
\abx@aux@segm{0}{3}{leeRapidFullwaveCentroid2011}
\abx@aux@cite{smallSCECUnifiedCommunity2017}
\abx@aux@segm{0}{3}{smallSCECUnifiedCommunity2017}
\abx@aux@cite{tabordaEvaluationSouthernCalifornia2016}
\abx@aux@segm{0}{3}{tabordaEvaluationSouthernCalifornia2016}
\abx@aux@cite{huCalibrationNearsurfaceSeismic2021}
\abx@aux@segm{0}{3}{huCalibrationNearsurfaceSeismic2021}
\abx@aux@cite{savranModelSmallscaleCrustal2016}
\abx@aux@segm{0}{3}{savranModelSmallscaleCrustal2016}
\abx@aux@cite{imperatoriBroadbandNearfieldGround2013}
\abx@aux@segm{0}{3}{imperatoriBroadbandNearfieldGround2013}
\abx@aux@cite{savranGroundMotionSimulation2019}
\abx@aux@segm{0}{3}{savranGroundMotionSimulation2019}
\abx@aux@cite{frankelFiniteDifferenceSimulations1986}
\abx@aux@segm{0}{3}{frankelFiniteDifferenceSimulations1986}
\abx@aux@page{324}{56}
\abx@aux@page{325}{56}