-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathcommit_logs.txt
executable file
·3517 lines (2431 loc) · 111 KB
/
commit_logs.txt
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 5447ba34d28b876b88ab0ef89d19091cd5deab76
Author: [Terry Miller] <[tamiller@lanl.gov]>
Date: Tue Apr 4 10:48:56 2017 -0600
Added instructions for static compile on Ubuntu 14 with static exodus libs
commit 3ec21bb6f675201860aedb4068740ceff1ed9c18
Merge: 2353632 6dab70a
Author: [Terry Miller] <[tamiller@lanl.gov]>
Date: Tue Mar 28 13:44:18 2017 -0600
Resolved conflicts by using clone and current lagrit.h files
Merge branch 'master' of https://github.com/lanl/LaGriT
Conflicts:
src/lagrit.h
src/lagrit_ulin64.h
test/level01/check_test.pyc
test/level01/control01.pyc
test/level01/diffout_lin.txt
test/level01/intrp_2D_sizes/2d_sink_new.gmv
test/level01/recon1/tmp.stor
test/level01/run_test.pyc
test/level01/test_results/stdout_linux2.txt
test/level02/control02.pyc
test/suite.py
commit 2353632dd3421baf39ec9aef0d4d2d992496a1bf
Author: [Terry Miller] <[tamiller@lanl.gov]>
Date: Tue Mar 28 12:26:34 2017 -0600
Update to banner changed reference, update all reference/outx3dgen files
removed some extra files in some test directories that are in reference
commit 2167c2b580e6ff80594421ce3d0da8e3df860532
Author: [Terry Miller] <[tamiller@lanl.gov]>
Date: Tue Mar 28 10:30:22 2017 -0600
Modified test io_agf_simple to call fehm individual files including coord
commit 17297a5a2e9e6aa955e4c11e28c3462cbf6467cd
Author: [Terry Miller] <[tamiller@lanl.gov]>
Date: Tue Mar 28 10:04:00 2017 -0600
Description and build commands for personal repo and server repo
commit 0c36614a6e1d078babb210993d1203de16cc83d5
Author: [Terry Miller] <[tamiller@lanl.gov]>
Date: Tue Mar 28 08:55:00 2017 -0600
New compile data and V3.201
commit ddf289b7165d66e7c131933f18e137f035609ba0
Author: [Terry Miller] <[tamiller@lanl.gov]>
Date: Tue Mar 28 08:54:19 2017 -0600
Update copyright text to open source version
commit 479e7e748cdd9b5ed5fdfc088618c3e1301c5809
Author: [Terry Miller] <[tamiller@lanl.gov]>
Date: Tue Mar 28 08:52:03 2017 -0600
format fix to allow large number in reporting number for Dudding points
commit 6dab70a424334f88c04187ca3752a83e4a6becf2
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Mon Mar 27 18:39:17 2017 -0600
Added new arctic example
commit 277a0e9d1e809158845a875fbe2f62aef606e200
Merge: 489e7cf f6d20a9
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Mon Mar 27 18:34:50 2017 -0600
Merge branch 'master' of https://github.com/losalamos/LaGriT
commit 489e7cfa9873c63026964ae4d0ac6549998a9f28
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Mon Mar 27 18:34:34 2017 -0600
Added points method and tried to simplify stack_layers method
commit 627a5f141411f5927fa692be5d1a99c230c70f96
Author: [Terry Miller] <[tamiller@lanl.gov]>
Date: Fri Mar 24 13:41:59 2017 -0600
Update to new version 3.201
commit f6d20a9d9443a29c30c191fc5b875f5bec033e72
Merge: c9c6f57 9b6d3d6
Author: [Terry Miller] <[tamiller@lanl.gov]>
Date: Fri Mar 24 13:37:12 2017 -0600
Merge branch 'master' of https://github.com/lanl/LaGriT
Updates from Ubuntu build
commit c9c6f57dc8c62d30842fa54e133e3dcbbd5c937e
Author: [Terry Miller] <[tamiller@lanl.gov]>
Date: Fri Mar 24 13:35:49 2017 -0600
Sample config file for Ubuntu build
commit d43d2358ba6b37800c5109b9eebfb7aeace0a4f3
Author: [Terry Miller] <[tamiller@lanl.gov]>
Date: Fri Mar 24 13:34:06 2017 -0600
Modifications made for Ubuntu 14 build and test suite
commit 9b6d3d63980f9b8b19e024f445c419e5e9d20dab
Author: [Terry Miller] <[tamiller@lanl.gov]>
Date: Mon Mar 20 10:12:36 2017 -0600
Fix IO for writing just a FEHM coord file
commit d7a55cb28f2fcbc253d1e0a3e36c8de9f7d699e6
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Tue Feb 7 18:09:18 2017 -0700
Added surface method for mesh object class to create a surface from the mesh object
commit 29a0de26389554e4e781829d92ae8424ab82fa2f
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Mon Feb 6 18:43:58 2017 -0700
Fixed bug in pylagrit arctic_2D example
commit 81d9db840a1223164d4c02e05016a31a83290df2
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Tue Jan 17 14:57:37 2017 -0700
Fixed losalamos to lanl path for PyLaGriT manual
commit 3b62cccb14604c013ec767de47c60edbcabdb1c6
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Tue Jan 17 14:52:25 2017 -0700
Added function to read in fehm mesh
commit 188dbd8722449a2440e7f129a6d6e6d13f15a0dd
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Wed Dec 14 08:29:29 2016 -0700
Changed create_boundary_facesets method options for more control
commit 2c316631a0047aa34a53856f8fa13ac032c92f13
Merge: 762303b ae3ae96
Author: [Terry Miller] <[tamiller@lanl.gov]>
Date: Thu Oct 20 10:40:47 2016 -0600
Merge branch 'master' of https://github.com/losalamos/LaGriT
changes to lagrit.lanl.gov
commit 762303bbc79e56a58608fd24ff9b323a03bee4df
Author: [Terry Miller] <[tamiller@lanl.gov]>
Date: Tue Oct 18 08:43:16 2016 -0600
Removed links to GMV binaries and added words regarding GPL license.
commit ae3ae967bc3e13be4d56cba75f756c7e0675428d
Merge: edd8974 771bf77
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Mon Oct 17 14:15:01 2016 -0600
Merge branch 'master' of https://github.com/losalamos/LaGriT
commit edd8974411db2c30a795cbce0d801aa78bdee78b
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Mon Oct 17 14:14:27 2016 -0600
Fixed broken pylagrit arctic2d example
commit 771bf77200ea43e1cd8afa5605aec3d05a7f859c
Author: [Terry Miller] <[tamiller@lanl.gov]>
Date: Fri Oct 14 09:49:32 2016 -0600
Updates to all web pages except Manual to reflect open-source designation
and updates to release notes up to current V3.2 release
commit 7d0b085ef8af0e318ab41f783c251beadf7be8c9
Author: [Terry Miller] <[tamiller@lanl.gov]>
Date: Thu Oct 13 14:30:20 2016 -0600
update repository with newer page from published version
commit 9ed03ad5ae730467dfc2abbf1be241ecd3923e34
Merge: a56a78f dee451c
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Thu Oct 13 12:27:56 2016 -0600
Merge branch 'master' of https://github.com/losalamos/LaGriT
commit dee451cf927f047bb16b39306cad435520e2d899
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Thu Oct 13 12:25:46 2016 -0600
Added args option to pylagrit dump_fehm method
commit 12dae34ea314158888625d1e8efca7ced908ee60
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Wed Oct 5 09:23:46 2016 -0600
Updated PyLaGriT documentation
commit 59bde289b8ec2b210ae406f40accccda702eff6c
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Tue Oct 4 17:17:10 2016 -0600
Additional update to PyLaGriT docs
commit db40d613b1881f83b26f38d3fb8f494aae6c424f
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Tue Oct 4 17:13:26 2016 -0600
Updated PyLaGriT docs folder
commit 84c3a2886894bf123056dba31dd2e2bff3d90c8c
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Tue Oct 4 17:09:36 2016 -0600
Added getting started page to PyLaGriT documentation
commit cd3ab91a6313e1705d88fc5e2916f86c36068d88
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Tue Oct 4 15:35:59 2016 -0600
Another mod to README.md
commit 5acb5e28b5a2d55c1d4a6ce706cecd43cfeb6817
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Tue Oct 4 15:35:07 2016 -0600
README.md modification
commit b2824bfd44ca1878d3d98f5945d51729e9db236e
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Tue Oct 4 15:32:40 2016 -0600
Added link to PyLaGriT manual in Readme
commit 510b5471b10fb4ed0fc799830dbef37c8ccb2ede
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Tue Oct 4 14:50:54 2016 -0600
Attempted adding docs folder again
commit 038b482c4470d96b06a4f4d11ad167b79484926c
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Tue Oct 4 14:47:20 2016 -0600
Removed docs folder
commit 0e7904b61095bb3b31ccc008da856b3a9efa1342
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Tue Oct 4 14:15:00 2016 -0600
Tried moving documentation for auto documentation on github page
commit bc37e1fe1f2f3a036f94aa2bb58651997c4d7d20
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Tue Oct 4 13:50:32 2016 -0600
Added PyLaGriT doc build files
commit a56a78fbabba5c184e0822c18da302291372ca88
Author: Dylan Robert Harp <dharp73@gmail.com>
Date: Tue Oct 4 13:33:04 2016 -0600
Removed githubpages from PyLaGriT sphinx documentation since linux servers don't support it
commit 3d6744b6fdc090874ac51d6b6b1d07372efb81d8
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Tue Oct 4 12:57:45 2016 -0600
Created initial PyLaGriT documentation
commit 5c1193a6d0a53f3a2376282f7f933bd5798f1334
Merge: 8453931 a08f4a4
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Fri Sep 30 16:36:44 2016 -0600
Merge branch 'master' of https://github.com/losalamos/LaGriT
commit 8453931072e32f796b0b311ba552510b12d72c3f
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Fri Sep 30 16:36:10 2016 -0600
Added function to convert zone files to zonn files
commit a08f4a465ec26d5964030857fce5fba5b8e33057
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Fri Sep 30 08:22:26 2016 -0600
Fixed bug in working directory pylagritrc reading
commit 01cca0321e879c4e03971436a8352c44cc1c60a1
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Thu Sep 29 17:14:02 2016 -0600
Added caveat about PyLaGriT not working on Windows
commit 4b8962b69c098e1d773b352d499759b7c5ce751e
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Thu Sep 29 15:36:40 2016 -0600
Added instructions for installing PyLaGriT to README.md
commit 8662d43eab1ce1afa036f40e9c8af3e7cb04ae8f
Author: Dylan Robert Harp <dharp73@gmail.com>
Date: Thu Sep 29 15:27:14 2016 -0600
Added pylagrit setup.py script
commit 92a0cb1f317507341281378a0cd442aef3d21fab
Author: Dylan Robert Harp <dharp73@gmail.com>
Date: Fri Sep 2 14:15:14 2016 -0600
Added PyLaGriT description to README.md
commit 47f59b361cd67e14c482fac91c021af2f68ec7b5
Author: Dylan Robert Harp <dharp73@gmail.com>
Date: Fri Sep 2 14:07:51 2016 -0600
Moved pylagrit tests folder to PyLaGriT folder
commit 83916d1882d0f21046da8a3297ccec4be1a67923
Author: Dylan Robert Harp <dharp73@gmail.com>
Date: Fri Sep 2 14:05:20 2016 -0600
Moved pylagrit into its own folder
commit e6995053b44b28829fa9d3c8ba42ad214f818ef9
Merge: db0c4e9 d70cef5
Author: Dylan Robert Harp <dharp73@gmail.com>
Date: Fri Sep 2 13:55:41 2016 -0600
Merge remote-tracking branch 'pylagrit/master'
commit db0c4e91d72d5ed5d890cad41297a1803cf38e03
Author: [Terry Miller] <[tamiller@lanl.gov]>
Date: Fri Sep 2 10:59:01 2016 -0600
Merge with Mikita cygwin version for WIN7 for V3.200
Add docs/ cmake-script and build_win.txt instructions that may apply to other platforms
commit 28eb894df79502ebb28c336326d96f6cf91c6e97
Author: [Terry Miller] <[tamiller@lanl.gov]>
Date: Fri Sep 2 09:30:37 2016 -0600
Change version number for lagrit banner to V3.200
commit 0ac7a85824e4336fb2e1e5f6a997d9ad5bcb24d8
Author: [Terry Miller] <[tamiller@lanl.gov]>
Date: Thu Sep 1 08:49:27 2016 -0600
Final cleanup and screenshots for commit
commit ed64682b7e17082f1b9f8bc6f0617e2278d248e8
Author: [Terry Miller] <[tamiller@lanl.gov]>
Date: Thu Aug 25 13:55:23 2016 -0600
Update go.scr to most recent build on Ubuntu Linux LaGriT V3.108
commit 091ee2f781c8f978b58c29b73ef7e966a227b116
Author: [Terry Miller] <[tamiller@lanl.gov]>
Date: Thu Aug 25 13:41:38 2016 -0600
Added output files to the sort routine for easier checking.
commit 21d53d36da3621c649c5eebc5fc4e88d965004ca
Author: [Terry Miller] <[tamiller@lanl.gov]>
Date: Thu Aug 25 13:40:07 2016 -0600
Clean up test related files after building and running the test suite.
commit 5c0ea3b097e3214e80f570dab66a15288c101f5d
Author: [Terry Miller] <[tamiller@lanl.gov]>
Date: Thu Aug 25 13:35:44 2016 -0600
Turn debug off
commit 0b04382d7706dbb6682098ccc3a03f12b290b4b4
Author: [Terry Miller] <[tamiller@lanl.gov]>
Date: Wed Aug 24 13:09:52 2016 -0600
Add lg_util files to lagrit repo
commit 451485702a4eb8de75e8cb44870e3258e42f46ba
Author: [Terry Miller] <[tamiller@lanl.gov]>
Date: Wed Aug 24 12:37:35 2016 -0600
Cleanup of V3.108 for open source repo
commit d70cef5af06023f6267570fe928a7f2c5ec8f7e3
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Thu Aug 11 16:18:32 2016 -0600
Added explicit setting of islg to False
commit 01ec295e8880881039c83aefc9d3206e166f11f6
Author: Terry Miller <tamiller@lanl.gov>
Date: Tue Jul 26 10:09:18 2016 -0600
Added tag Release V3.108 for changeset 9035aecce4aa
commit 802650ff60b4ef90cfcf0b8940326086a50a8c24
Merge: 5caf3ea ae098b0
Author: Terry Miller <tamiller@lanl.gov>
Date: Tue Jul 26 09:48:53 2016 -0600
Version V3.107 merge with Mikita test dirs and my updates
commit 5caf3ea10900ecd4fc040f881d09ca401c83f1df
Author: Terry Miller <tamiller@lanl.gov>
Date: Tue Jul 26 08:29:32 2016 -0600
Extra V3.107 commit
commit d269006e192de13da024869156d8a7666ef33a25
Author: Terry Miller <tamiller@lanl.gov>
Date: Tue Jul 26 08:18:39 2016 -0600
Extra commit for V3.107
commit b5590c6bef76575cd816fe5132848f30e59f3bcd
Author: Terry Miller <tamiller@lanl.gov>
Date: Tue Jul 26 08:08:41 2016 -0600
dumpexodusII.f replacement stub to compile without Exodus libraries.
commit 51a1ac0005d56a5f465d5ab9328c110743e4dfa3
Author: Terry Miller <tamiller@lanl.gov>
Date: Mon Jul 25 14:19:11 2016 -0600
Final update of V3.107 code for first version of open source
commit 7875d02b706a6166ab83051a65b63ee26b4e62d6
Author: Terry Miller <tamiller@lanl.gov>
Date: Mon Jul 25 13:52:55 2016 -0600
Updated all lagrit*h to this version 3.107
commit c87a8db57343658e43b43f35c89ce19c72e0b96c
Author: Terry Miller <tamiller@lanl.gov>
Date: Mon Jul 25 10:17:18 2016 -0600
Fixed seg fault for 0 elem report message by using a,a instead of a format.
commit e5948d5e43b637d8f1387158f726a22b4bcedb60
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Wed Jul 13 10:36:33 2016 -0600
Removed print statement from read method, modified lagrit read example
commit 2394c5214731134711ba6dc5155a51f912747092
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Wed Jul 13 10:32:21 2016 -0600
Mods to reading in binary lagrit file, more carefully checking if file is lagrit binary now, ensures name is querried, added ability to read in multiple mos from lagrit binary, but lagrit dump doesn't seem to do this, even with '-all-' option
commit ccc7a682f1657277e225266571b3f2899bf04760
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Tue Jul 12 10:32:52 2016 -0600
Rearranged dump_pset docstring
commit 0718eb3ff90bc3cb0b591a65b8069df17b88159f
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Tue Jul 12 10:29:00 2016 -0600
Changed order of arguments in dump_pset
commit 22dbf1eabd08bb9c78fa94cd1cd2f653ea198507
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Fri Jul 8 15:58:21 2016 -0600
Revised dump_psets and added dump method to pset class
commit df2e84fc7c7707031b01f39a5a8c64a023539b69
Author: Jeffrey De'Haven Hyman <jhyman@lanl.gov>
Date: Fri Jul 8 14:44:38 2016 -0600
dump_psets command included into mesh object
commit d20400a84807c47a183c8771333b26b70fcecc09
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Wed Jul 6 09:20:03 2016 -0600
Added rotate and stack example
commit 26feb3d8e4dfb03b6bb08a188fc747744e3451ff
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Mon Jun 27 17:43:31 2016 -0600
Added rotateln method and example
commit 27bd093b8d7a9ca519d9831e5c357c3c48f5d5c7
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Mon Jun 27 09:17:36 2016 -0600
Added error checking for dimension in gridder method
commit 7ec3fda42f0949b49d0cddcd0ed1046b34ef42ed
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Mon Jun 27 08:29:50 2016 -0600
Changed gridder docstring based on Carl Gable's comment
commit e4e6425ea8d5b0a7c52291d9d0d3fc2ad5984a89
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Fri Jun 24 16:22:33 2016 -0600
Added gridder method docstring
commit 0893f8906501a5a6a7c7e0a5293b6cc2a0010a39
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Fri Jun 24 16:05:53 2016 -0600
Added gridder example script
commit 58cc482a643c898ec431b9d6d94583ceadf9346a
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Fri Jun 24 15:54:33 2016 -0600
Added gridder and mesh object read methods
commit c98c5b598f2f0e013a7a6e15d84ff2a8c5e53010
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Fri Apr 29 16:50:14 2016 -0600
Modified merge example to use modified merge method
commit c926adab9307f6e98389ced36f7ac1d22928f4ea
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Fri Apr 29 16:49:49 2016 -0600
Added check to ex_refine_edge that mesh does not loose nodes during connect
commit ea6a934a08ef931a867af309a2387f1f92560356
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Fri Apr 29 16:29:31 2016 -0600
Modified merge method to use list of mesh objects and removed use of python reduce; added mins and maxs properties; updated startswith to work with newer versions of python
commit f8ef44b3b3b03f3528707969b4ca4835b534e32d
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Tue Apr 12 14:50:27 2016 -0600
Changed elem_type check in createpts method from tri to triplane
commit 007c21d4853d3ece80b04716de1d94d289c09649
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Thu Apr 7 16:58:22 2016 -0600
Made elem_type a required input for PyLaGriT class createpts method
commit 0d8868770dfe5b52ac4ced8e92f7c21e9e602028
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Wed Apr 6 08:47:10 2016 -0600
More adjustments to createpts assertions
commit 563d4f15f4e9be8e1e8d3fd6eba079599bab7fd2
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Tue Apr 5 18:22:21 2016 -0600
Added tet elem_type to connect noadd type of connection
commit 82b1cdb39dc79e999ac5dea89cb15b5b7b5d63c1
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Tue Apr 5 18:17:03 2016 -0600
Added elem_type property to mesh object class; added connect logic based on elem_type; modified automation of elem_type selection in createpts method
commit 109deeb49852fa0047c1f2243a8b6cf77d34af78
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Mon Apr 4 15:50:14 2016 -0600
Fixed timeout option bug
commit a98508bbb729627d7de7f61725f2847bca9973fb
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Thu Mar 31 10:11:01 2016 -0600
Tried to add automatic mesh type selection for PyLaGriT createpts_* methods
commit 945ff958b526e86c0d87b5a67610b81a32db7ce0
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Thu Mar 24 17:31:36 2016 -0600
Added createpts_* methods to PyLaGriT class
commit a5eb65ee4a11f4cf2d9a1caf9729ac9935feb07c
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Thu Mar 24 15:37:18 2016 -0600
Modified createpts_dxyz docstring based on Carl Gable's suggestion and added printout of minmaxs
commit b7b9e7f90a5be67b3a1272b382aacbac0b9fed31
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Thu Mar 24 13:22:56 2016 -0600
Added ex_refine_edge example
commit 34d06afbfad7972ab0d0d6916e01689c54988c72
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Thu Mar 24 13:13:15 2016 -0600
Added docstring to trans method and modified createpts_dxyz to handle mixed boundary options
commit 842fe7925f8a07eeed8d924a65a617880e10d34d
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Mon Mar 21 17:26:47 2016 -0600
Added dump_zone_outside method, did not test all option combinations
commit 31755c2506a428f4aed823addf52d86fc4e0526f
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Mon Mar 21 15:37:19 2016 -0600
Modified pset and eltset boolean methods
commit ab0a7ca527a477464aee6197d12ed9f7f84890f2
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Mon Mar 21 09:06:46 2016 -0600
Update pset_geom_rtz and rtz documentation
commit f1f7d2c57b0c27d4919f3e1a668712ef6cde530c
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Fri Mar 18 18:45:00 2016 -0600
Added max and min, etc. properties to psets, made all returned properties verbose false so that lagrit output is not displayed
commit f3eb2e6a341a3405e0ebda56d49ef4af0aabccda
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Thu Mar 17 16:05:18 2016 -0600
Added createpts_dxyz example
commit 05776179b8c65e913909cc70a5034dffd906db85
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Thu Mar 17 15:58:30 2016 -0600
Added createpts_dxyz method allowing delta x,y,z values to provided
commit 63524c528733df1d477943d067c8410f848019d8
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Thu Mar 17 10:38:52 2016 -0600
Modifications to interpolate methods
commit 71ea2d1a921f9cfea47deedcdab6174109dd2752
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Thu Feb 11 18:37:38 2016 -0700
Switched all rz_switch options to (1,1,1) so that mins and maxs are used as cell vertices
commit c47a4511456c922a23998ca1c845529983e6dbfe
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Thu Feb 11 17:05:39 2016 -0700
Added timeout to expect method
commit 89e979f0462b3bd8008751578d216bc6d4504605
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Thu Feb 11 16:38:37 2016 -0700
Added mesh object properties and upscale and trans methods
commit 230290c9f2cbecd7b8f6427f8d8b47beafae625f
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Thu Feb 4 18:46:44 2016 -0700
Added methods for ne_fault_zone.py example
commit 1a946cbafe45b571eaa9f7a69f6b0c76ba3b8c02
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Mon Jan 11 17:01:16 2016 -0700
MO delete method now removes mesh object from PyLaGriT mo dictionary also
commit 1c77e081ac315a27195aa9d12d4a4c12b7245b83
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Mon Jan 11 15:41:24 2016 -0700
Added interpolate methods to pset class
commit 0089ca6354477c079178eb9dc43eb51df197ea55
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Fri Jan 8 09:43:09 2016 -0700
Added tri_mo_from_polyline and tri_mesh_outputt_prep methods
commit 8f8871ffa293660afcd2983590fea5f5f0376739
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Thu Jan 7 17:20:48 2016 -0700
Added triangulate example
commit 3f0461ae75219b5310884a419f8dc34d1f6d66cf
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Thu Jan 7 17:16:45 2016 -0700
Added triangulate, recon, filter, smooth, and derived method clean
commit cf9bc341280a7735b1093acbd98ecf5220ecee92
Author: Dylan Robert Harp <dharp73@gmail.com>
Date: Mon Dec 21 15:07:45 2015 -0700
Added ability to specify nearest flag for interpolate continuous method
commit d7b7dd10cee417b33bfe7fb5be66cb58a776bf8e
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Sun Dec 13 15:49:41 2015 -0700
Added docstring to dump_exo
commit f9a9bf50a0e395c250c92cd0f5d15cc495d59cb7
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Mon Nov 23 17:40:02 2015 -0700
Mods to ideas mesh example
commit 3da27b973fdb4f65b6a54ed183886c50038d395a
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Mon Nov 23 15:04:57 2015 -0700
Updated ideas mesh example with David's suggestion and my fixes
commit 0ced228910085aff8dd84f4fa503016a6055c7d7
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Thu Nov 19 17:46:58 2015 -0700
Modified ideas example to prisms and flipped y data to be correct
commit ca62e3903a219ebd6a7d1a5c50c60711153de8ec
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Fri Oct 30 09:31:15 2015 -0600
Added arctic 2D meshing example
commit 9e3292b03056d85b63901f728aadcf0c719dde64
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Fri Oct 30 08:42:28 2015 -0600
Added meshing example from ideas
commit 1bbc189df2e0a7ddb5a4557922db234a9cb11dd4
Author: Dylan Robert Harp <dharp73@gmail.com>
Date: Tue Sep 29 09:00:15 2015 -0600
Fixed bug in dump_ats_xml
commit 73b5ad8aab7d411f16f3b846e33751ac67bec4eb
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Mon Sep 28 09:24:38 2015 -0600
Added create_exo example
commit 44ad62f2274f763cfc33721e17271b02d909fbef
Author: Dylan Robert Harp <dharp73@gmail.com>
Date: Thu Sep 24 18:40:18 2015 -0600
Fixed bug in dump_ats_xml
commit d48332243a0c6ea8811eaf2e436dc624d70b03dd
Author: Dylan Robert Harp <dharp73@gmail.com>
Date: Thu Sep 24 18:27:19 2015 -0600
added dump_ats_xml method
commit 7d00187edae82997939d44ec2c62a3c2c67a8f2d
Author: Dylan Robert Harp <dharp73@gmail.com>
Date: Mon Sep 21 13:56:35 2015 -0600
Fixed bug in extract_surfmesh
commit 79decdcdf2cbb742b1dba156b31da79582e36955
Author: Dylan Robert Harp <dharp73@gmail.com>
Date: Wed Sep 16 10:55:43 2015 -0600
Modification for generating arctic meshes; added stack_layers, stack_fill, math, createpts_median, and create_boundary_facesets methods
commit ce7422402fb2959008c074c516c545ceb365c54a
Author: Dylan Robert Harp <dharp73@gmail.com>
Date: Mon Sep 14 12:06:31 2015 -0600
Added interpolate method
commit 177eee94b178658e9016c7745213160eb63a8d68
Author: Dylan Robert Harp <dharp73@gmail.com>
Date: Mon Sep 14 10:03:36 2015 -0600
Added copyatt and createpts methods
commit 7b7a70cfad3dc164ba84d13f4d59dde80e9d4de2
Author: Dylan Robert Harp <dharp73@gmail.com>
Date: Wed Sep 2 08:56:23 2015 -0600
Added refine_to_object example
commit ae098b0d428700ff57568ed07adcb4c5ac213a66
Author: Mikita Yankouski <tamiller@lanl.gov>
Date: Mon Aug 3 12:51:02 2015 -0600
Added LaGrit executable control to suite.py, fixed bugs with exodus_prisms input file.
commit e7399acb2e5bb933fbde74584df1ae77fa055733
Author: Mikita Yankouski <tamiller@lanl.gov>
Date: Tue Jul 28 11:43:14 2015 -0600
Readme and run_tests updated.
commit 8419c404cee662492679eeb7372f3e56c6ab18d6
Author: Dylan Robert Harp <dharp73@gmail.com>
Date: Fri Jul 24 13:21:33 2015 -0600
Mods to refine_to_object
commit 9060e8795ab64596d6daa57da7dc7c65b7492120
Author: Mikita Yankouski <tamiller@lanl.gov>
Date: Thu Jul 23 16:02:58 2015 -0600
Added necessary include files and removed unnecessary ones.
commit 1a628cf88bcb0ffc8da26b47e9cf45460797f7ff
Author: Mikita Yankouski <tamiller@lanl.gov>
Date: Thu Jul 23 10:14:11 2015 -0600
The rest of the updated testing files.
commit 246262b3c3339c3033aeda8603548466f6fd780b
Author: Mikita Yankouski <tamiller@lanl.gov>
Date: Thu Jul 23 10:03:06 2015 -0600
removing unnecessary files from mercurial repo
commit 5fcf42bdb338e00ded51cf56a0042a96277181ea
Author: Mikita Yankouski <tamiller@lanl.gov>
Date: Wed Jul 22 17:19:22 2015 -0600
Level01 files updated.
commit 634bdbc79fb1640106f2b5f6ad495bf2cab05a18
Author: Mikita Yankouski <tamiller@lanl.gov>
Date: Wed Jul 22 15:25:54 2015 -0600
Added top level test control suite, and standarized level02 output files
commit 649ead18271adcbf3796f9f3c973b9cf09a726ee
Author: Dylan Robert Harp <dharp73@gmail.com>
Date: Tue Jul 21 11:54:03 2015 -0600
Changes fo refine_to_mesh method
commit 90768442848d205a692127122493e8af74977481
Author: Dylan Robert Harp <dharp73@gmail.com>
Date: Mon Jul 20 20:05:36 2015 -0600
Created refine_object and eltset_bool methods
commit 0d5337e38089e08f5ccec4ea1066af6d8faa238e
Author: Dylan Robert Harp <dharp73@gmail.com>
Date: Mon Jul 20 14:52:32 2015 -0600
Added createpts_line and extrude methods
commit 3f151ce6b4e5e6188d4699772fd2338f33ae022d
Author: Dylan Robert Harp <dharp73@gmail.com>
Date: Thu Jul 16 10:53:10 2015 -0600
Modified connect methods and added copypts method
commit c56966a578c39700f09d894c8994b6f8c6101fb3
Author: Mikita Yankouski <tamiller@lanl.gov>
Date: Thu Jul 2 12:07:01 2015 -0600
Added function control script called suite.py which accepts arguments from the terminal to perform various steps of the LaGrit testing process.
commit b640aea9f319c9316e87428e80c6fa55f55013e6
Author: Terry Miller <tamiller@lanl.gov>
Date: Tue Jun 30 10:45:13 2015 -0600
tag Release V3.107
commit 569aa14509e539c7a3692fe3fddf73939c9e1694
Author: Terry Miller <tamiller@lanl.gov>
Date: Tue Jun 30 10:44:34 2015 -0600
Added tag Release V3.107 for changeset 2db9ae23974d
commit 8c3a400a78652d81510ed29a289ebbe64bbe3492
Author: Terry Miller <tamiller@lanl.gov>
Date: Tue Jun 30 10:42:28 2015 -0600
Tests for exodus element and node sets
commit e68aa47ade99327675fbfb8457972eebaf746f1b
Author: Terry Miller <tamiller@lanl.gov>
Date: Mon Jun 29 10:50:49 2015 -0600
Corrected bug that overwrites volic with incorrect value if grid is non-planer
commit 2dc41d6b1a54b2627d10bf014a45f1bfd70235cd
Author: Dylan Robert Harp <dharp73@gmail.com>
Date: Mon Jun 22 14:00:01 2015 -0600
Fixed bugs in dump_avs2
commit c793c1e954c58d042d61946df8edbb2fba372674
Author: Dylan Robert Harp <dharp73@gmail.com>
Date: Mon Jun 22 13:44:39 2015 -0600
Added dump_fehm method
commit 29daa7af5a69895c2f671a01e3a8099efd5a2f27
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Thu Jun 18 13:46:05 2015 -0600
dump method now utilizes lagrits ability to detect filetype based on extension
commit fa65804b64e8ec540aa6847cd761a895949280dd
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Thu Jun 18 13:16:19 2015 -0600
Modified read to use lagrit filetype detection
commit cd402cde0284c237037f7d76b2c1c97df04c4fe0
Author: Dylan Robert Harp <dharp@lanl.gov>
Date: Wed Jun 17 18:02:00 2015 -0600
Read used filename to determine filetype
commit 33161424cc9ec1a4782267c1e7c5a5871af5cad5
Author: Shaoping Chu <spchu@lanl.gov>
Date: Wed Jun 17 14:08:32 2015 -0600
Removed rmpoint_pset docstring test
commit b1d70f5f086b93de7e24f458dc61071a5b8b55a8
Author: Shaoping Chu <spchu@lanl.gov>
Date: Wed Jun 17 14:03:25 2015 -0600
Started docstring for rmpoint_pset
commit f65169274bc7d741f0dda51c6bbfd3f1060ee1f4
Author: Shaoping Chu <spchu@lanl.gov>
Date: Wed Jun 17 13:13:33 2015 -0600
modified rmpoint method functionality
commit fef4ea6ffa2a7a458ccde57345db6736e8d44824
Author: Shaoping Chu <spchu@lanl.gov>
Date: Tue Jun 16 14:17:21 2015 -0600
Added pset attribute method to MO class
commit 33de930b32d66954c84d0d496fa206e5fcf87f01
Author: Dylan Robert Harp <dharp73@gmail.com>
Date: Tue Jun 16 10:09:56 2015 -0600
Restructured folder
commit b66f3801be4f6125726adcdc54462516b0dc0dc8
Author: Dylan Robert Harp <dharp73@gmail.com>
Date: Mon Jun 8 18:50:32 2015 -0600
Modified batch mode lagrit execution
commit 70719bc037b870990a9abb04dfdc181df9c94392
Author: Dylan Robert Harp <dharp73@gmail.com>
Date: Mon Jun 8 18:29:40 2015 -0600
Added delatt and dump_avs2 methods
commit b114e349fd8f3f104c29dc6657445e06b4c080c0
Author: Terry Miller <tamiller@lanl.gov>
Date: Wed Jun 3 07:58:46 2015 -0600
Version 3.106 for Ubuntu using ExodusII 6.09 modules.
commit 082447b0691641990247a006f963b19b3d9c9d06
Author: Terry Miller <tamiller@lanl.gov>
Date: Wed Jun 3 07:44:13 2015 -0600
Update API from ExodusII 5.22a to 6.09
Conform fortran calls to 6.09 documentation and type names.
Remove multiplier by 10000 for block id.
Add additional error checking and comments to code.
Replace excre_wrapper with EXCRE API fortran call that now works.
commit 5bd42ad56b8ae2f8c8b0ea86121323640dacdac4
Author: Terry Miller <tamiller@lanl.gov>
Date: Wed Jun 3 07:37:31 2015 -0600
Replaced binary characters embedded in the code header text.