forked from NHERI-SimCenter/SimCenterDocumentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtmp1
17676 lines (11948 loc) · 531 KB
/
tmp1
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
commit d062a50ba9ccbacf989bf4734f0baacfa504336f
Merge: e42041ba 330e6dae
Author: fmckenna <[email protected]>
Date: Sun May 12 21:04:53 2024 -0700
Merge branch 'master' of github.com:NHERI-SimCenter/SimCenterDocumentation
commit 330e6daecc56e764d75fb719d72a871e0f8603d6
Merge: f4a466d2 31b14df5
Author: Frank McKenna <[email protected]>
Date: Sun May 12 21:03:24 2024 -0700
Merge pull request #390 from JustinBonus/master
Overhaul HydroUQ docs + reformat parts of SimCenterDocumentation shared docs to fix TOC structures
commit 31b14df5d8892072f3598828b5c266d16142e79d
Merge: f4a466d2 61afc956
Author: Justin Bonus <[email protected]>
Date: Sun May 12 09:30:28 2024 -0700
Merge pull request #16 from JustinBonus/TheDocu6
Merge my local updates for SimCenterDocumentation formatting + HydroUQ write-up to master
commit 61afc9560f75c1b0b6c0e04e216b9049dd13f0fe
Merge: 5073db7c 75b23ad7
Author: JustinBonus <[email protected]>
Date: Sun May 12 09:25:13 2024 -0700
Merge branch 'TheDocu6' of https://github.com/JustinBonus/SimCenterDocumentation into TheDocu6
commit 5073db7c6f3e79ae03ccf38bdd5a7e9049bfd3fb
Merge: ac2e89b8 f4a466d2
Author: JustinBonus <[email protected]>
Date: Sun May 12 09:23:55 2024 -0700
Merge remote-tracking branch 'upstream/master' into TheDocu6
commit ac2e89b802d5589343670fe64d79b841b664b9e9
Author: JustinBonus <[email protected]>
Date: Sun May 12 09:23:40 2024 -0700
Update HydroUQ user manual
commit fc60605e7d763ee861c782d506ca4c4da9fb9e0b
Author: JustinBonus <[email protected]>
Date: Sun May 12 09:23:01 2024 -0700
Update download and install instructions format
commit d07aef9f0b599c3a34e8171a879a8fb237545edf
Author: JustinBonus <[email protected]>
Date: Sun May 12 09:20:52 2024 -0700
Dev manual update
commit ef676ba0d74715a9f691a42981945b0f245d644d
Author: JustinBonus <[email protected]>
Date: Sun May 12 09:20:14 2024 -0700
HydroUQ techmanual updates
commit a558d3f8f4ff4a1a1281ee5afdb8a01c68604a50
Author: JustinBonus <[email protected]>
Date: Sun May 12 09:19:08 2024 -0700
Reformat bugs rst to have additional labels and more detail
commit 88e12211a33d0d1ccd47e4d9d8ae679549e74af6
Author: JustinBonus <[email protected]>
Date: Sun May 12 09:17:32 2024 -0700
Fixes for HydroUQ EVT and Tools
commit 7a4891293a113f66a1fd8652421fd641c6fb06ec
Author: JustinBonus <[email protected]>
Date: Sun May 12 09:15:52 2024 -0700
Clean formatting for EVT
commit 398bc9b145b5a6251de6e6668607c3a97678f1df
Author: JustinBonus <[email protected]>
Date: Sun May 12 09:14:45 2024 -0700
Fix technical manual organization / refs / table of contents
commit 3869bfcdc0444d5068c25982134921b85995de8a
Author: JustinBonus <[email protected]>
Date: Sun May 12 09:13:39 2024 -0700
Update GeoClaw and shallow-water solver docs
commit 75b23ad7ca3aa9c6bfbbdbe2f26a6baadcc89fd4
Merge: 0a002089 f4a466d2
Author: JustinBonus <[email protected]>
Date: Fri May 10 10:46:47 2024 -0700
Merge pull request #15 from JustinBonus/master
Updates
commit e42041baae0da6e7285e7d8a83068115a25174d7
Merge: 97299209 f4a466d2
Author: fmckenna <[email protected]>
Date: Fri May 10 08:35:50 2024 -0700
fmk - merge conflicts wePlans
commit 972992098f2f0b4a934ea9e591fb1cdc205f6f1c
Author: fmckenna <[email protected]>
Date: Fri May 10 08:34:22 2024 -0700
fmk - updating wePlans
commit f4a466d2daac6a29bf4a98054e8cb7fbe3dff807
Merge: 7cc56329 286d0ca4
Author: Frank McKenna <[email protected]>
Date: Fri May 10 06:41:16 2024 -0700
Merge pull request #388 from JustinBonus/patch-2
Update for README examples sync/building
commit 7cc56329d9a0380581dc99502bc37a8149147375
Merge: b4a2cef6 f5ff1552
Author: Frank McKenna <[email protected]>
Date: Fri May 10 06:40:56 2024 -0700
Merge pull request #389 from zsarnoczay/master
azs - update PBE front matter to v3.4
commit 0a002089988898bb16bbb7f72d348c1bb2935128
Merge: 5c75cb75 b4a2cef6
Author: JustinBonus <[email protected]>
Date: Fri May 10 02:50:52 2024 -0700
Merge pull request #14 from JustinBonus/master
Merge pre-summit changes
commit 5c75cb75a51531f2917f725f43ca128090d56451
Merge: b8701143 0a1f487d
Author: JustinBonus <[email protected]>
Date: Thu May 9 15:27:57 2024 -0700
Merge remote-tracking branch 'origin/TheDocu6' into TheDocu6
commit b8701143d2bbeef51cda2830ab9be086a49f7372
Author: JustinBonus <[email protected]>
Date: Thu May 9 15:27:46 2024 -0700
Change release date to match Zenodo, formatting in About
commit f5ff1552878858df4f1b61bcbd6011e535ad011b
Author: Adam Zsarnoczay <[email protected]>
Date: Thu May 9 15:12:06 2024 -0700
azs - update PBE front matter to v3.4
commit 286d0ca471cbbd80041de8c0546da1160c4aabef
Author: JustinBonus <[email protected]>
Date: Thu May 9 13:42:12 2024 -0700
Update for README examples sync/building
Feel free to edit this if there is a better format / command set
commit b4a2cef653789062e301f2b196ee83dd062370d0
Merge: b7b9b901 32629543
Author: Frank McKenna <[email protected]>
Date: Thu May 9 08:36:55 2024 -0700
Merge pull request #382 from JustinBonus/master
Merge in update H / HL rtm's for HydroUQ and R2D water-borne hazards
commit 326295430e458067bdc3a7e13c7ef9bb8f5da98d
Merge: b6f6933c b7b9b901
Author: JustinBonus <[email protected]>
Date: Wed May 8 22:14:50 2024 -0700
Merge branch 'master' into master
commit b7b9b901b7e581122eb8cea1b523f96290c55fd7
Merge: 10aafd91 847dac4f
Author: Frank McKenna <[email protected]>
Date: Wed May 8 17:40:48 2024 -0700
Merge pull request #387 from abiyfantaye/master
Spelling and grammar issues for WE-UQ & TInf
commit 847dac4ff1f0e07d7a5c5450010f6f30031b7eaf
Author: Abiy Melaku <[email protected]>
Date: Wed May 8 17:35:52 2024 -0700
abiy - added the _out files manually from Aakash's branch
commit 836266faf6a7d660e48e4125c6a1460d82aeda52
Author: Abiy Melaku <[email protected]>
Date: Wed May 8 17:23:36 2024 -0700
abiy - removed _out files in requirments
commit 2be3c5413b2c58ddca4ad06ec773962e051ab01e
Merge: 7dcb0675 491d8bb8
Author: Abiy Melaku <[email protected]>
Date: Wed May 8 17:12:23 2024 -0700
abiy - merged upsteam with my master fixing issues in installation instruction for macOS
commit 7dcb0675448caf573bf69d7e37bfca52e89dc628
Merge: 115d67d1 10aafd91
Author: Abiy Melaku <[email protected]>
Date: Wed May 8 17:10:40 2024 -0700
abiy - merged upsteam with my master fixing issues in installation instruction for macOS
commit 491d8bb8697dc6a27b9a679c76227baa0c8d114f
Merge: 115d67d1 10aafd91
Author: Frank McKenna <[email protected]>
Date: Wed May 8 17:03:44 2024 -0700
Merge branch 'master' into master
commit 10aafd919c4b0479a6281465bcdae05878bc765c
Merge: 93647582 9c23ab3f
Author: Frank McKenna <[email protected]>
Date: Wed May 8 17:01:33 2024 -0700
Merge pull request #386 from bsaakash/documentation_improvements
abs - spelling and grammar fixes
commit b6f6933ce2c86cdf32121fb4374d77f78051b33a
Merge: e7a735cd 0a1f487d
Author: JustinBonus <[email protected]>
Date: Wed May 8 12:09:34 2024 -0700
Merge pull request #13 from JustinBonus/TheDocu6
Merge in the recent changes upstream, etc, from other devs
commit 0a1f487d4b378acd274c10b540f90783985cff97
Merge: 254d80f8 e7a735cd
Author: JustinBonus <[email protected]>
Date: Wed May 8 12:07:51 2024 -0700
Merge pull request #12 from JustinBonus/master
Update TheDocu6 branch, probably should deprecate it soon
commit 254d80f82e1ad89b50eebc8379f7766c39b9bfb5
Merge: a1aec342 93647582
Author: JustinBonus <[email protected]>
Date: Wed May 8 02:27:56 2024 -0700
Merge remote-tracking branch 'upstream/master' into TheDocu6
commit 9c23ab3ffb7f450c41ee899d3e6e4b8a811d1293
Merge: 51be7695 93647582
Author: bsaakash <[email protected]>
Date: Tue May 7 17:50:31 2024 -0700
Merge remote-tracking branch 'upstream/master' into documentation_improvements
commit 51be769541de71cdf107758707ceedd29b865cd2
Merge: d5d8e292 d6e1af60
Author: bsaakash <[email protected]>
Date: Tue May 7 17:50:10 2024 -0700
abs - merging updates from master
commit d5d8e2927f07ac2f0c595dffadd2694af41a213f
Author: bsaakash <[email protected]>
Date: Tue May 7 17:46:01 2024 -0700
abs - spelling and grammar fixes
commit 115d67d1c2d179a2188a0ebeceb54d4f0e1b0022
Merge: bf0ca254 4d1d1e12
Author: Abiy Melaku <[email protected]>
Date: Tue May 7 16:32:21 2024 -0700
abiy - merged reqment branch with master on my git repo
commit 4d1d1e1209f67027786ddd5c093981805e2e7263
Merge: 70fa5d73 7b8add8e
Author: Abiy Melaku <[email protected]>
Date: Tue May 7 16:18:31 2024 -0700
abiy - merged with aakash reqment branch
commit e7a735cdcbe3d2bf3eb77948f89b98dfddf10201
Merge: 769c6364 93647582
Author: JustinBonus <[email protected]>
Date: Tue May 7 15:16:45 2024 -0700
Merge branch 'NHERI-SimCenter:master' into master
commit 9364758260e743aec00fdba2b388294195bb6c2c
Merge: 1fb2a6c4 d6e1af60
Author: Frank McKenna <[email protected]>
Date: Tue May 7 11:18:43 2024 -0700
Merge pull request #383 from bsaakash/master
abs - spelling and grammar fixes in documentation files of quoFEM, UQ, RV
commit d6e1af6027ddadb257a8573018c4c58d05926f90
Merge: ccd52f76 1fb2a6c4
Author: Frank McKenna <[email protected]>
Date: Tue May 7 11:18:35 2024 -0700
Merge branch 'master' into master
commit 1fb2a6c4838e34410d9be3ea29c56463c2493288
Merge: 545fb885 aae4fd09
Author: Frank McKenna <[email protected]>
Date: Tue May 7 11:01:27 2024 -0700
Merge pull request #376 from jinyan1214/EQhazardTool
JZ R2D proofread
commit 545fb8856630d598a7de2ce3b63ab70c8b95439d
Merge: 697eba01 76df6571
Author: Frank McKenna <[email protected]>
Date: Tue May 7 11:00:55 2024 -0700
Merge pull request #380 from yisangriB/master
sy - updates for the new WE-UQ example + adding release plans for EE-UQ
commit ccd52f764ac07e2b33c8d09a170b70661260c6dc
Author: bsaakash <[email protected]>
Date: Tue May 7 09:42:49 2024 -0700
abs - spelling and grammar fixes
commit 76eb3d4057bbda2b04cc0b9e6236d61571830121
Merge: 0ef1ed8c 697eba01
Author: bsaakash <[email protected]>
Date: Tue May 7 09:32:06 2024 -0700
Merge remote-tracking branch 'upstream/master'
commit 0ef1ed8c1f4da4839ef40208966f9853749cfc64
Merge: 9210a34f 7b8add8e
Author: bsaakash <[email protected]>
Date: Tue May 7 09:31:31 2024 -0700
abs - merging updates from reqments
commit 769c6364c5bc9fd58744cca34bfa4cac94118a53
Merge: 19f42f87 a1aec342
Author: JustinBonus <[email protected]>
Date: Tue May 7 02:03:13 2024 -0700
Merge pull request #11 from JustinBonus/TheDocu6
Updates for H and HL rtm's
commit a1aec34261c00ffaf7806f434740f8eb1a22c683
Author: JustinBonus <[email protected]>
Date: Tue May 7 02:01:17 2024 -0700
Updates to H and HL requirements matrices
commit 64da137091d83ff0d06a11694d1276b7a8b1a1da
Merge: af87742c 697eba01
Author: JustinBonus <[email protected]>
Date: Tue May 7 00:51:35 2024 -0700
Merge remote-tracking branch 'upstream/master' into TheDocu6
commit af87742cb766ac6aa00dbb15a6538dd59d51df1a
Merge: cd0c4a82 7b8add8e
Author: JustinBonus <[email protected]>
Date: Tue May 7 00:47:45 2024 -0700
Merge branch 'reqments' of https://github.com/bsaakash/SimCenterDocumentation into TheDocu6
commit 19f42f87cae03e0e907bcae5a2f5fecb801f8196
Merge: 9589b2ad cd0c4a82
Author: JustinBonus <[email protected]>
Date: Mon May 6 23:20:19 2024 -0700
Merge pull request #10 from JustinBonus/TheDocu6
Merge pull request #9 from JustinBonus/master
commit 697eba01260f45153a1f946559e74f6699ba9fd6
Author: fmckenna <[email protected]>
Date: Mon May 6 23:09:29 2024 -0700
fmk - adding class longtable to get past crappy output if pdf required
commit bf0ca25462fe16200c55e2627d36b51137422e6d
Author: Abiy Melaku <[email protected]>
Date: Mon May 6 23:07:57 2024 -0700
abiy - edited grammar and spelling mistakes in TInf
commit 513eba977e3949ac07f71e901c0bd80e78eb6f7a
Author: Abiy Melaku <[email protected]>
Date: Mon May 6 23:07:15 2024 -0700
abiy - edited grammar and spelling mistakes in user manual for WE-UQ
commit aae4fd09d57d62b4c0e4fd36b807dd7dc246258d
Merge: 23682c6a 1ab57bad
Author: jinyan1214 <[email protected]>
Date: Mon May 6 22:25:52 2024 -0700
Merge remote-tracking branch 'upstream/master' into EQhazardTool
commit 23682c6a09bb899ab881cddd8cedd2d7c9db9d31
Author: jinyan1214 <[email protected]>
Date: Mon May 6 22:23:19 2024 -0700
troubleshooting startup proofread
commit 43edbf04e247fd04a6429775749b4c0b8ffd48fb
Author: jinyan1214 <[email protected]>
Date: Mon May 6 22:19:49 2024 -0700
JZ troubleshooting running proofread
commit e1e10225c6d062728f0035c13d587bcc38d144e5
Author: jinyan1214 <[email protected]>
Date: Mon May 6 22:03:17 2024 -0700
EQ Event simulation proofread
commit d0eee83d7f96404d13b8f1d4a0a65e9ddb00d7b4
Author: jinyan1214 <[email protected]>
Date: Mon May 6 21:48:42 2024 -0700
JZ: R2D tools proofread
commit 03d179519636c55c341801c2a5aac37d2be1fdc2
Author: jinyan1214 <[email protected]>
Date: Mon May 6 21:48:23 2024 -0700
JZ: RES proofread
commit 1ab57badcbd460bb6026cdc46ac11e527c3ebccd
Author: fmckenna <[email protected]>
Date: Mon May 6 21:39:47 2024 -0700
fmk - updating DB-BE requirements
commit 0ee01b58c3cd2929f6894fc35c76165aefd0b3ab
Author: fmckenna <[email protected]>
Date: Mon May 6 21:39:25 2024 -0700
fmk - updating DB-BE requirements
commit 48a35703f871db2ad92d4ecea3ff9b97799f9a0e
Author: fmckenna <[email protected]>
Date: Mon May 6 21:13:57 2024 -0700
fmk - updaling loading requirements
commit b89a32088a4a85eb7b391cd777d5188afbd4b2ca
Merge: 53d56645 d1ed7661
Author: fmckenna <[email protected]>
Date: Mon May 6 20:37:30 2024 -0700
Merge branch 'master' of github.com:NHERI-SimCenter/SimCenterDocumentation
commit d1ed76618ebc17520d4b4f8683ab6fba46590bd9
Merge: b0c7221f 7b8add8e
Author: Frank McKenna <[email protected]>
Date: Mon May 6 20:36:59 2024 -0700
Merge pull request #381 from bsaakash/reqments
Reqments
commit 7b8add8ea9c501021510581012a04211f29a3200
Author: bsaakash <[email protected]>
Date: Mon May 6 20:20:09 2024 -0700
abs - fixing figure width
commit a42d1937021e2b5cd646b250d9b5f9914b53fe75
Author: bsaakash <[email protected]>
Date: Mon May 6 20:14:26 2024 -0700
abs - incorporating updates from Frank, fixing formatting, fixing entries for consistency
commit 76df6571bb8fbe35183cfb52ef84501a973dc916
Author: yisangriB <[email protected]>
Date: Mon May 6 18:31:49 2024 -0700
sy - adding example we0016
commit 1387c1a162c4f4593f9c6374efe80b40ac758d2e
Author: yisangriB <[email protected]>
Date: Mon May 6 18:31:28 2024 -0700
sy - adding release plans for EE-UQ
commit a477b345660222b6b1f723ed5514ecad2de546fa
Author: jinyan1214 <[email protected]>
Date: Mon May 6 18:23:00 2024 -0700
JZ: correct mistakes in usage.rst
commit 434443a473119440160951036db5e863ab7cf911
Author: jinyan1214 <[email protected]>
Date: Mon May 6 17:56:42 2024 -0700
JZ: UQ proofread
commit f505c3b2f13c8efb1fd3f9205082b176a201b8f9
Merge: 0ad53b53 b0c7221f
Author: jinyan1214 <[email protected]>
Date: Mon May 6 17:51:00 2024 -0700
Merge remote-tracking branch 'upstream/master' into EQhazardTool
commit 0ad53b534ca95de3d1a6b53d4051547bc2e589ce
Author: jinyan1214 <[email protected]>
Date: Mon May 6 17:47:58 2024 -0700
JZ: DL proofread
commit 2549ef699d1a05d474bc3c133d812a6dbf1b46c7
Author: jinyan1214 <[email protected]>
Date: Mon May 6 17:39:34 2024 -0700
JZ: ANA proofread
commit bd52509af6b31cc4b1c5421c65093ff876b038a8
Author: jinyan1214 <[email protected]>
Date: Mon May 6 17:30:54 2024 -0700
JZ: MOD proofread
commit beb781f0b960bb3d4bcdd2ef4de175076160b344
Author: jinyan1214 <[email protected]>
Date: Mon May 6 17:07:23 2024 -0700
JZ: HTA proofread
commit 5d01a1befd39f47828596c167540de2d52f707ef
Author: jinyan1214 <[email protected]>
Date: Mon May 6 16:57:41 2024 -0700
JZ: ASD proofread
commit 53d56645a3c6f103149d270d7bc4db08e25e7f3c
Merge: 0303aa4d b0c7221f
Author: fmckenna <[email protected]>
Date: Mon May 6 16:32:51 2024 -0700
fm - merge conflict
commit 0303aa4d265109b5685656ae8774c4327fe072f8
Author: fmckenna <[email protected]>
Date: Mon May 6 16:28:41 2024 -0700
fmk - upfdating ee release nodes and physicsBased
commit 356140410331fbf79773da642627dec8d0e3a6cb
Author: fmckenna <[email protected]>
Date: Mon May 6 16:27:54 2024 -0700
fmk - making iages smaller in installMac
commit 7f363d9b8b5b9974b8b5200a28b405de20409e56
Merge: 4fb13b3c 57698713
Author: bsaakash <[email protected]>
Date: Mon May 6 16:13:23 2024 -0700
Merge remote-tracking branch 'origin/reqments' into reqments
commit 4fb13b3cf7fcd6e592f49d34c6c0febaafc11fe2
Author: bsaakash <[email protected]>
Date: Mon May 6 16:12:56 2024 -0700
abs - updates to formatting
commit 9ec0e88eda12f128c44c03442e96d5c10c20130f
Author: jinyan1214 <[email protected]>
Date: Mon May 6 16:09:56 2024 -0700
JZ: GI proofread
commit b0c7221fcb31593cbf79a231e5a515c0c222269a
Merge: d9b9e6a3 57698713
Author: Frank McKenna <[email protected]>
Date: Mon May 6 16:07:25 2024 -0700
Merge pull request #379 from bsaakash/reqments
Reqments
commit 57698713d4f57e21fe71d513d1bc7908c1ecf041
Merge: 83fc5d11 d9b9e6a3
Author: bsaakash <[email protected]>
Date: Mon May 6 16:06:03 2024 -0700
Merge pull request #13 from NHERI-SimCenter/master
abs - merging updates from upstream
commit 9bae0f20425c0372ae3840c5f1495cd664169dda
Author: yisangriB <[email protected]>
Date: Mon May 6 16:01:25 2024 -0700
sy - updating EE-UQ release plans, adding DRM and ROM
commit 8f83605f88280fb41f7ee2969253969968ba81dc
Author: jinyan1214 <[email protected]>
Date: Mon May 6 15:59:54 2024 -0700
JZ: VIZ proofread
commit 7bb856ed09b5c8df209871969dde43422166ef62
Author: jinyan1214 <[email protected]>
Date: Mon May 6 15:48:58 2024 -0700
JZ: proofread usage
commit 4cf44306c862d2b9dc9717eed086469810bfe0dd
Author: jinyan1214 <[email protected]>
Date: Mon May 6 15:36:40 2024 -0700
JZ Proofread install_macOS
commit 83fc5d11540ee1b9edb99dc2b4dadccc4bd4c29c
Merge: a048f5c7 da66429f
Author: bsaakash <[email protected]>
Date: Mon May 6 15:18:19 2024 -0700
abs - merging updates from Adam
commit 9210a34fb12477cdcba70d20536adc1de69bd7ca
Author: bsaakash <[email protected]>
Date: Mon May 6 15:13:48 2024 -0700
abs - spelling and grammar fixes
commit da66429faed5a2fef67d66ed3e176843049fef37
Author: Adam Zsarnoczay <[email protected]>
Date: Mon May 6 15:10:09 2024 -0700
azs - even more updates to RTM
commit 0b46128ccf8b0fd2a2211899f36de42666d0c961
Author: Adam Zsarnoczay <[email protected]>
Date: Mon May 6 15:03:29 2024 -0700
azs - more updates to RTM
commit 8822f64e8b89d35541d202bdb294592556838cef
Author: Adam Zsarnoczay <[email protected]>
Date: Mon May 6 15:02:23 2024 -0700
azs - udpates to RTM
commit a4697bf77071cbfcccc6c56014a5d2df7bc1f3a1
Author: bsaakash <[email protected]>
Date: Mon May 6 13:09:55 2024 -0700
abs - updating tags for inclusion of RV options from SimCenter UQ engine
commit a111a94ff01ef7a464ddaba7eafa52b0901b81ef
Merge: e8cb9369 a048f5c7
Author: bsaakash <[email protected]>
Date: Mon May 6 12:57:15 2024 -0700
Merge remote-tracking branch 'origin/reqments'
commit a048f5c7b4b8cd36d3b4b1ef0c3581838b860a13
Author: bsaakash <[email protected]>
Date: Mon May 6 12:56:47 2024 -0700
abs - minor fix
commit f7a6b3de40ace97d0191212750a9d06cdf792d9e
Author: bsaakash <[email protected]>
Date: Mon May 6 10:20:59 2024 -0700
abs - adjusting column widths for pdf document
commit daf5cf13ceb660e71e6447d756abab805f50133f
Author: bsaakash <[email protected]>
Date: Mon May 6 09:47:06 2024 -0700
abs - adjusting column widths for pdf format
commit 7a33477335cbaf848c46b6664c795ac973e28bcf
Author: bsaakash <[email protected]>
Date: Mon May 6 09:20:20 2024 -0700
abs - using landscape formatting for pdf
commit b908bd87ba63db49cdeaa320274d41b9d8fdbe2c
Author: bsaakash <[email protected]>
Date: Mon May 6 09:07:42 2024 -0700
abs - formatting WBS entries
commit d9b9e6a30f75172579287bc8916c57e38bcf22a8
Merge: 7a97bda3 bbfedf13
Author: Frank McKenna <[email protected]>
Date: Sun May 5 23:20:43 2024 -0700
Merge pull request #378 from yisangriB/master
sy - EE-UQ proofreading
commit cd0c4a826cafb1b30d92d9c6573166446483b7da
Merge: da763d2f 9589b2ad
Author: JustinBonus <[email protected]>
Date: Sun May 5 18:35:48 2024 -0700
Merge pull request #9 from JustinBonus/master
Spelling and examples mostly
commit 9589b2ad8e22c534f7729f7c98445dd71f9a0eca
Merge: 4e5b140d da763d2f
Author: JustinBonus <[email protected]>
Date: Sun May 5 18:35:41 2024 -0700
Merge branch 'TheDocu6' into master
commit da763d2f7f2ebd5cb0d95e799e2212193d6b6f82
Author: JustinBonus <[email protected]>
Date: Sun May 5 18:30:23 2024 -0700
Capabilities and release HydroUQ
commit 4e5b140d2602796733da08171c0600b7b78af5b7
Merge: 52737569 7a97bda3
Author: JustinBonus <[email protected]>
Date: Sun May 5 18:29:28 2024 -0700
Merge branch 'NHERI-SimCenter:master' into master
commit bbfedf13c19b4c25f35a61bb066e03830c26e768
Merge: 4839857c 7a97bda3
Author: yisangriB <[email protected]>
Date: Sun May 5 15:24:18 2024 -0700
Merge remote-tracking branch 'upstream/master'
commit 4839857c48ae2652cfdfb3308ebbf42d8205d0bc
Author: yisangriB <[email protected]>
Date: Sun May 5 15:20:43 2024 -0700
sy - fixing formatting
commit a65425e880fb421f429eec1b8664d1768545a2be
Author: yisangriB <[email protected]>
Date: Sun May 5 15:19:26 2024 -0700
sy - cleaning up EE-UQ/general(grammar, spelling, broken links, formatting etc.)
commit 33a961ae8986d59fcbe233627107edac047f7b65
Merge: 527f3e50 7a97bda3
Author: JustinBonus <[email protected]>
Date: Fri May 3 21:13:27 2024 -0700
Merge branch 'master' of https://github.com/NHERI-SimCenter/SimCenterDocumentation into TheDocu6
commit 527f3e50652616fa67b6fcae361d504c8bb567d8
Merge: 81446eff 17fb9c05
Author: JustinBonus <[email protected]>
Date: Fri May 3 20:50:06 2024 -0700
Merge remote-tracking branch 'aakash/reqments' into TheDocu6
commit 1db216c7d262eb4f731e7579ff4e17417310dab0
Merge: f14888ef 7a97bda3
Author: fmckenna <[email protected]>
Date: Fri May 3 19:55:33 2024 -0700
Merge branch 'master' of github.com:NHERI-SimCenter/SimCenterDocumentation
commit 7a97bda3c1dfbe3ed699bedb8991b04e7dc0c626
Merge: 673c66ac 966b5b47
Author: Frank McKenna <[email protected]>
Date: Fri May 3 19:53:00 2024 -0700
Merge pull request #377 from yisangriB/master
sy - adding user manual for stochastic wind pressure generator
commit 673c66ac4874832499bb581c570a4f6cf1f9b2bb
Merge: 1591298e 6130efb5
Author: Frank McKenna <[email protected]>
Date: Fri May 3 19:49:36 2024 -0700
Merge pull request #375 from snaeimi/master
SN - Testbed Proofreading done + REWET's Example
commit 1591298e9eaa4e8c46588a734a1c7aafc6aedb89
Merge: d5758d62 7a38044f
Author: Frank McKenna <[email protected]>
Date: Fri May 3 19:42:17 2024 -0700
Merge pull request #374 from JustinBonus/patch-1
Please merge: Fix NSF grant number
commit 966b5b4768b9bbeea8f65b206782d9e412a5ddf7
Author: yisangriB <[email protected]>
Date: Fri May 3 17:04:46 2024 -0700
sy - adding user manual for stochastic wind pressure generator
commit 5b51555ccfa2a671a193e1e1f6124df4c9be96fb
Author: yisangriB <[email protected]>
Date: Fri May 3 17:04:01 2024 -0700
sy - minor fix
commit 31f319bb98490e8bb6132f99eb4cc55b7ad3d669
Author: jinyan1214 <[email protected]>
Date: Fri May 3 16:08:31 2024 -0700
R2D install_windows proofread
commit 222b09c4225e0e066d5da82cdf672219422bcc9a
Author: jinyan1214 <[email protected]>
Date: Fri May 3 16:05:13 2024 -0700
add reference to Workflow Management Coalition in glossary
commit 6130efb5e160d1e6c8af89719c6c7ccc9cb7fe1b
Author: Sina Naeimi <[email protected]>
Date: Fri May 3 15:57:10 2024 -0700
SN - Added REWET example and user manual
commit dd3dff44959d0ef47df29175fd1b1995d619a1a9
Author: jinyan1214 <[email protected]>
Date: Fri May 3 15:42:15 2024 -0700
ee-uq change to 2 clause BSD
commit 97ecccbe23b63b89c541b410ff2beff4637fe2f5
Author: jinyan1214 <[email protected]>
Date: Fri May 3 15:41:58 2024 -0700
r2d release note proof read
commit 64bc3d87d8d28a99b4e6e684874a9205f6997124
Author: jinyan1214 <[email protected]>
Date: Fri May 3 15:29:01 2024 -0700
r2drelease plans proofread
commit 1fab6775b244c49c2f52deeb9e610a35df40ebbc
Author: jinyan1214 <[email protected]>
Date: Fri May 3 15:01:00 2024 -0700
add tags in ANA.rst
commit a20e9877353d36f44fe9327c8dad08a9f2214559
Author: jinyan1214 <[email protected]>
Date: Fri May 3 14:58:14 2024 -0700
r2d capabilities GPT and JZ proof read
commit b1985b994137a7ae8321f02acedf40f8cc0d1838
Author: jinyan1214 <[email protected]>
Date: Fri May 3 14:06:02 2024 -0700
r2d capabilities typos
commit 17fb9c05816c06265d71ba601ebf16d04b562047
Author: bsaakash <[email protected]>
Date: Fri May 3 13:43:07 2024 -0700
abs - adding updates from Abiy
commit ccb883abb5e447258ac3244cb98b3cd8d1fbab56
Author: bsaakash <[email protected]>
Date: Fri May 3 13:28:35 2024 -0700
abs - changes to makefile and creating a new _out_from_json directory
commit 70fa5d73191c4e5086d9085486c256ef9ebf01bf
Author: abiyfantaye <[email protected]>
Date: Fri May 3 13:20:08 2024 -0700
abiy - updates to wind loading
commit e8cb9369f350b5a094f29f5f2d476c87b02738b2
Author: bsaakash <[email protected]>
Date: Fri May 3 13:01:11 2024 -0700
abs - spelling and grammar fixes
commit 7d5e4e7608bb71fb92b77c864f4ea1fa83b5ee86
Author: jinyan1214 <[email protected]>
Date: Fri May 3 12:55:08 2024 -0700
Grace requested
commit d921f62cbc7f48fec5e4d98c31f6475a79d15ba1
Merge: 8fd1f7ee 3e1b022a
Author: Abiy Melaku <[email protected]>
Date: Fri May 3 12:17:03 2024 -0700
Merge remote-tracking branch 'aakash/reqments' into reqments
commit 81446eff775eef1faf69f109ffb55fa661c043f3
Author: JustinBonus <[email protected]>
Date: Fri May 3 06:38:54 2024 -0700
HydroUQ update + a few typos in common files, etc.
commit 16b59fa206f9b6d72edff32caa655eaa048cc25e
Author: Sina Naeimi <[email protected]>
Date: Thu May 2 15:29:56 2024 -0700
proof reading for all testbed matterial is done
commit 4589f5060aff9b7a3ee102271826b3f40b8cc6c7
Author: Sina Naeimi <[email protected]>
Date: Thu May 2 14:04:58 2024 -0700
SN - testbed/sf_bay_area proofreading done
commit d0b7faffe71680f01810a81cf78996274522f5bf
Author: JustinBonus <[email protected]>
Date: Thu May 2 13:11:11 2024 -0700
NSF grant number correction
commit 60c5c60d1971e717e580de2df93c7077ea63de70
Author: JustinBonus <[email protected]>
Date: Thu May 2 06:37:01 2024 -0700
sync_examples
commit 7a38044f85bd8fe605bb1b48bc164b40db7856cf
Author: JustinBonus <[email protected]>
Date: Thu May 2 06:35:41 2024 -0700
Also fix NSF grant number for PBE (ack_pbe.rst)
Same as previous commit but for PBE
commit 160ec64c6703c76b245fd4ea7f371c389a32e87c
Author: JustinBonus <[email protected]>
Date: Thu May 2 06:30:39 2024 -0700
applications csv
commit fa6a87ef732105b83601120f9c5e5cef94db771a
Merge: b83b4e61 bbb2dd42
Author: JustinBonus <[email protected]>
Date: Thu May 2 06:29:27 2024 -0700
Merge branch 'TheDocu6' of https://github.com/JustinBonus/SimCenterDocumentation into TheDocu6
commit b83b4e61b658c9fe9adf7d70201eb9af145c55d5
Author: JustinBonus <[email protected]>
Date: Thu May 2 06:28:36 2024 -0700
fix HydroUQ doc example compile
commit 6207b8001e18e92fc5fa7ab3342145a52974ba1e
Author: bsaakash <[email protected]>
Date: Wed May 1 17:02:09 2024 -0700
abs - spelling and grammar fixes
commit 3c1f183ac7169784605ebe82ee66509070690b89
Author: bsaakash <[email protected]>
Date: Wed May 1 16:44:59 2024 -0700
abs - spelling and grammar fixes
commit 167003ef4351df762960a80dbf8344c23ea211ed
Author: bsaakash <[email protected]>
Date: Wed May 1 16:43:11 2024 -0700
abs - spelling and grammar fixes
commit 4b7563b5de013115ef0389cbf62be7e66fee460e
Author: bsaakash <[email protected]>
Date: Wed May 1 16:28:16 2024 -0700
abs - spelling and grammar fixes
commit 3c01413fce729d0983edc33251bfdd0cff6c8f9c