-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathVERSION
8718 lines (7462 loc) · 229 KB
/
VERSION
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
version 7_2_1 31-07-2015 VERS_7_2_1
========================================================== 31-07-2015 - 7_2_1
c ./fem3d/subver.f:
c 31.07.2015 ggu version 7.2.1 holiday release
==========================================================
version 7_1_84 31-07-2015 VERS_7_1_84 commit_2015-07-31
version 7_1_84 31-07-2015 VERS_7_1_84 commit_2015-07-31
version 7_1_84 31-07-2015 VERS_7_1_84
========================================================== 31-07-2015 - 7_1_84
c ./fem3d/subver.f:
c 31.07.2015 ggu version 7.1.84
==========================================================
version 7_1_83 30-07-2015 VERS_7_1_83 commit_2015-07-31
version 7_1_83 30-07-2015 VERS_7_1_83
========================================================== 30-07-2015 - 7_1_83
c ./fem3d/shyfem.f:
c 30.07.2015 ggu routine renamed from ht to shyfem
c
c ./fem3d/subver.f:
c 30.07.2015 ggu version 7.1.83
c
c ./fem3d/subcst.f:
c 30.07.2015 ggu read str-file from command line
c
c ./fem3d/shypre.f:
c 30.07.2015 ggu vp renamed to shypre
c
c ./fem3d/shyelab.f:
c 30.07.2015 ggu shyelab started
==========================================================
version 7_1_82 24-07-2015 VERS_7_1_82 commit_2015-07-30
version 7_1_82 24-07-2015 VERS_7_1_82
========================================================== 24-07-2015 - 7_1_82
c ./fem3d/subver.f:
c 24.07.2015 ggu version 7.1.82
==========================================================
version 7_1_81 20-07-2015 VERS_7_1_81 commit_2015-07-24
version 7_1_81 20-07-2015 VERS_7_1_81
========================================================== 20-07-2015 - 7_1_81
c ./fem3d/subver.f:
c 20.07.2015 ggu version 7.1.81
==========================================================
version 7_1_80 17-07-2015 VERS_7_1_80 commit_2015-07-20
version 7_1_80 17-07-2015 VERS_7_1_80 commit_2015-07-20
version 7_1_80 17-07-2015 VERS_7_1_80
========================================================== 17-07-2015 - 7_1_80
c ./fem3d/subver.f:
c 17.07.2015 ggu version 7.1.80
==========================================================
version 7_1_53 17-07-2015 VERS_7_1_53 commit_2015-07-17
version 7_1_53 17-07-2015 VERS_7_1_53
========================================================== 17-07-2015 - 7_1_53
c ./fem3d/subver.f:
c 17.07.2015 ggu version 7.1.52
c 17.07.2015 ggu version 7.1.53
==========================================================
version 7_1_52 17-07-2015 VERS_7_1_52 commit_2015-07-17
version 7_1_52 17-07-2015 VERS_7_1_52
========================================================== 17-07-2015 - 7_1_52
c ./fem3d/subver.f:
c 13.07.2015 ggu version 7.1.52
==========================================================
version 7_1_51 13-07-2015 VERS_7_1_51 commit_2015-07-17
version 7_1_51 13-07-2015 VERS_7_1_51
========================================================== 13-07-2015 - 7_1_51
c ./fem3d/subver.f:
c 13.07.2015 ggu version 7.1.51
==========================================================
version 7_1_50 10-07-2015 VERS_7_1_50 commit_2015-07-13
version 7_1_50 10-07-2015 VERS_7_1_50
========================================================== 10-07-2015 - 7_1_50
c ./fem3d_50/subbnd.f:
c 23.06.2015 ggu setbc() deleted, nrz,nrq eliminated
c
c ./fem3d/subver.f:
c 10.07.2015 ggu version 7.1.50 big release...
c
c ./fem3d/subbnd.f:
c 23.06.2015 ggu setbc() deleted, nrz,nrq eliminated
==========================================================
version 7_1_12 05-06-2015 VERS_7_1_12 commit_2015-07-10
version 7_1_12 05-06-2015 VERS_7_1_12
========================================================== 05-06-2015 - 7_1_12
c ./fem3d_05/simsys_spk.f:
c 25.05.2015 ggu some calls chenaged (pass array in)
c
c ./fem3d_05/subdep.f:
c 25.05.2015 ggu some changes in depth computation
c
c ./fem3d_05/newini.f:
c 25.05.2015 ggu file cleaned and prepared for module
c
c ./fem3d_05/subbas.f:
c 25.05.2015 ggu module introduced
c
c ./fem3d_04/simsys_spk.f:
c 25.05.2015 ggu some calls chenaged (pass array in)
c
c ./fem3d_04/subdep.f:
c 25.05.2015 ggu some changes in depth computation
c
c ./fem3d_04/newini.f:
c 25.05.2015 ggu file cleaned and prepared for module
c
c ./fem3d_04/subbas.f:
c 25.05.2015 ggu module introduced
c
c ./fem3d_06/simsys_spk.f:
c 25.05.2015 ggu some calls chenaged (pass array in)
c
c ./fem3d_06/subdep.f:
c 25.05.2015 ggu some changes in depth computation
c
c ./fem3d_06/newini.f:
c 25.05.2015 ggu file cleaned and prepared for module
c
c ./fem3d_06/subbas.f:
c 25.05.2015 ggu module introduced
c
c ./femplot/supsim.f:
c 05.06.2015 ggu some plotting routines adjourned (flag)
c
c ./femplot/supano.f:
c 05.06.2015 ggu new keyword vart in legend for variable text
c
c ./fem3d/subclo.f:
! 28.05.2015 ggu new routine clo_add_sep()
!
c ./fem3d/tmp/alloc1/3/new/subnos1.f:
! 30.05.2015 ggu module introduced
!
c ./fem3d/simsys_spk.f:
c 25.05.2015 ggu some calls changed (pass array in)
c
c ./fem3d/subver.f:
c 05.06.2015 ggu version 7.1.12
c
c ./fem3d/subwrt.f:
c 05.06.2015 ggu new routine to limit concentration between 0 and c0
c
c ./fem3d/femelab.f:
! 05.06.2015 ggu iextract to extract nodal value
c
c ./fem3d/noselab.f:
c 05.06.2015 ggu many more features added
c
c ./fem3d/subdep.f:
c 25.05.2015 ggu some changes in depth computation
c
c ./fem3d/newini.f:
c 25.05.2015 ggu file cleaned and prepared for module
c
c ./fem3d/subbas.f:
c 25.05.2015 ggu module introduced
c
c ./fem3d_03/newini.f:
c 25.05.2015 ggu file cleaned and prepared for module
==========================================================
version 7_1_11 21-05-2015 VERS_7_1_11 commit_2015-06-05
version 7_1_11 21-05-2015 VERS_7_1_11 commit_2015-05-25
version 7_1_11 21-05-2015 VERS_7_1_11
========================================================== 21-05-2015 - 7_1_11
c ./femplot/supano.f:
c 06.05.2015 ggu prepared for logarithmic color bar
c
c ./femplot/col.f:
c 06.05.2015 ggu logarithmic scale introduced (ilog, blog)
c
c ./fem3d/subetsa.f:
c 30.05.2015 ggu new read from STR file, using module ets
c
c ./fem3d/sublnka.f:
c 20.05.2015 ggu new call to mklenkii to set up lenkiiv
c
c ./fem3d/subnls.f:
c 12.05.2015 ggu new char table
c
c ./fem3d/tmp/al1/lagrange_sedim.f:
c 06.05.2015 ccf written from scratch
c
c ./fem3d/tmp/al1/lagrange_inout.f:
c 06.05.2015 ccf write relative total depth and type to output
c 07.05.2015 ccf assign settling velocity to particles
c
c ./fem3d/tmp/al1/lagrange_vertical.f:
c 06.05.2015 ccf included settling velocity for lagrangian
c
c ./fem3d/tmp/al1/suboff.f:
c 06.05.2015 ccf write offline to .off file
c read offline from offlin file in section name
c
c ./fem3d/lagrange_init.f:
c 20.05.2015 ccf give type to released particles
c
c ./fem3d/lagrange_sedim.f:
c 06.05.2015 ccf written from scratch
c
c ./fem3d/submeteo2.f:
c 12.05.2015 ggu introduced ia_icefree for icefree elements
c
c ./fem3d/subver.f:
c 21.05.2015 ggu version 7.1.11
c
c ./fem3d/newcon.f:
c 20.05.2015 ggu accumulate over nodes (for parallel version)
c
c ./fem3d/subn35.f:
c 12.05.2015 ggu rewritten with modules and allocatable
c
c ./fem3d/subinterpol.f:
c 06.05.2015 ggu set number of max iterations (imax)
c
c ./fem3d/subflxa.f:
c 20.05.2015 ggu modules introduced
c
c ./fem3d/links.f:
c 30.05.2015 ggu new subroutine mklenkii to compute lenkiiv
c
c ./fem3d/subexta.f:
c 20.05.2015 ggu modules introduced
c
c ./fem3d/subsys.f:
c 06.05.2015 ccf new parameters itmoff and offlin
c
c ./fem3d/new3di.f:
c 06.05.2015 ggu cleaning up of sp256f
c 20.05.2015 ggu&erp sp256v parallelized
c
c ./fem3d/subwrt.f:
c 20.05.2015 ggu rinside computed only once, bug fix for conz==0
c
c ./fem3d/lagrange_inout.f:
c 06.05.2015 ccf write relative total depth and type to output
c 07.05.2015 ccf assign settling velocity to particles
c
c ./fem3d/femelab.f:
! 20.05.2015 ggu use bhuman to convert to human readable time
c
c ./fem3d/etsutil.f:
c 30.05.2015 ggu new code for reading header 1 and 2 indipendently
c
c ./fem3d/subxi.f:
c 16.05.2015 ccf add some more check in xit_start_end for small numbers
c
c ./fem3d/lagrange_vertical.f:
c 06.05.2015 ccf included settling velocity for lagrangian
c 08.05.2015 ggu&ccf bug fix in track_xi_next_element
c 14.05.2015 ccf bug fix in track_xi
c
c ./fem3d/noselab.f:
c 06.05.2015 ggu noselab started
c
c ./fem3d/newstab.f:
c 20.05.2015 ggu always compute stability, call to conzstab changed
c
c ./fem3d/suboff.f:
c 06.05.2015 ccf write offline to .off file
c 06.05.2015 ccf read offline from offlin file in section name
c
c ./fem3d/subsss.f:
c 06.05.2015 ggu new routine logvals() for logarithmic values
==========================================================
version 7_1_10 05-05-2015 VERS_7_1_10 commit_2015-05-21
version 7_1_10 05-05-2015 VERS_7_1_10
========================================================== 05-05-2015 - 7_1_10
c ./fem3d/sublnka.f:
c 04.05.2015 ggu remove equivalence - use winkv as local array
c
c ./fem3d/submeteo2.f:
c 04.05.2015 ggu bug in ice eliminated
c
c ./fem3d/subver.f:
c 05.05.2015 ggu version 7.1.10
==========================================================
version 7_1_9 30-04-2015 VERS_7_1_9 commit_2015-05-05
version 7_1_9 30-04-2015 VERS_7_1_9 commit_2015-05-05
version 7_1_9 30-04-2015 VERS_7_1_9
========================================================== 30-04-2015 - 7_1_9
c ./fem3d/submeteo2.f:
c 30.04.2015 ggu ice integrated
c
c ./fem3d/subver.f:
c 30.04.2015 ggu version 7.1.9 Harald's birthday '
c
c ./fem3d/submet.f:
c 30.04.2015 ggu ice cover implemented
c
c ./fem3d/subn35.f:
c 28.04.2015 ggu czdef is default for all areas not given
c
c ./fem3d/ousextr_cat.f:
c 29.04.2015 ggu mode 1 implemented
c
c ./fem3d/ousutil.f:
c 29.04.2015 ggu new helper routines for start/end time in file
c
c ./fem3d/subuti.f:
c 29.04.2015 ggu energy now in Joule
c
c ./fem3d/subapn.f:
c 29.04.2015 ggu generic changes - now works as anticipated
==========================================================
version 7_1_8 23-04-2015 VERS_7_1_8 commit_2015-04-30
version 7_1_8 23-04-2015 VERS_7_1_8
========================================================== 23-04-2015 - 7_1_8
c ./femplot/suplag.f:
c 23.04.2015 ggu plotting for 3d particles
c
c ./fem3d/lgrinf.f:
c 23.04.2015 ggu for new version 5
c
c ./fem3d/lagrange_main.f:
c 23.04.2015 ggu internal coordinates implemented (blgrxi)
c
c ./fem3d/subver.f:
c 23.04.2015 ggu version 7.1.8 St. George's release '
c
c ./fem3d/subnev.f:
c 19.04.2015 ggu new routines for internal coordinates (distance)
c 22.04.2015 ggu bug fix in xi2xy - x/y were exchanged
c
c ./fem3d/subxi.f:
c 23.04.2015 ggu compute s value for particle path
c
c ./fem3d/lagrange_vertical.f:
c 23.04.2015 ggu internal coodinates finished
==========================================================
version 7_1_7 01-04-2015 VERS_7_1_7 commit_2015-04-23
version 7_1_7 01-04-2015 VERS_7_1_7
========================================================== 01-04-2015 - 7_1_7
c ./fem3d/tmp/javier/subwrt.f:
c 11.03.2015 ggu introduced bstop, if early stop, write to file
c
c ./fem3d/subdts.f:
c 31.03.2015 ggu bug fix - month was 71/2, now 61/2
c
c ./fem3d/subver.f:
c 01.04.2015 ggu version 7.1.7 first of aprile version
c
c ./fem3d/subnev.f:
c 31.03.2015 ggu new routines for internal coordinates
c
c ./fem3d/subwrt.f:
c 31.03.2015 ggu compute res time for different areas
c
c ./fem3d/subbas.f:
c 31.03.2015 ggu set iarnv on read
==========================================================
version 7_1_6 26-02-2015 VERS_7_1_6 commit_2015-04-01
version 7_1_6 26-02-2015 VERS_7_1_6
========================================================== 26-02-2015 - 7_1_6
c ./fem3d/subver.f:
c 26.02.2015 ggu version 7.1.6
==========================================================
version 7_1_5 26-02-2015 VERS_7_1_5 commit_2015-02-26
version 7_1_5 26-02-2015 VERS_7_1_5
========================================================== 26-02-2015 - 7_1_5
c ./femplot/supbas.f:
c 10.02.2015 ggu also plot other points, also regular points
c
c ./femplot/supout.f:
c 10.02.2015 ggu use different file units (more than one can be opened)
c
c ./fem3d/subtsfile.f:
c 10.02.2015 ggu length of line set to 2048
c
c ./fem3d/subclo.f:
! 26.01.2015 ggu make argument to clo_parse_options() optional
! 26.01.2015 ggu new routine clo_check_files()
! 08.02.2015 ggu bug fix in clo_get_option, new routine clo_info
!
c ./fem3d/subnls.f:
c 05.02.2015 ggu program completely rewritten (modules introduced)
c 08.02.2015 ggu accept also '!' and '#' for end comment on line
c
c ./fem3d/subbnds.f:
c 05.02.2015 ggu check for number of variables read
c 10.02.2015 ggu new routine bnds_read_new()
c
c ./fem3d/subssm.f:
c 10.02.2015 ggu some double precision routines introduced
c
c ./fem3d/kepsd.f:
c 10.02.2015 ggu in gotm call to do_gotm_turb() with ddt and not dt
c
c ./fem3d/subver.f:
c 26.02.2015 ggu version 7.1.5
c
c ./fem3d/subpar3.f:
c 13.02.2015 ggu limit of string raised from 6 to 10
c
c ./fem3d/subnosa.f:
c 10.02.2015 ggu some new routines for writing...
c
c ./fem3d/optintp.f:
c 07.02.2015 ggu OI finished
c
c ./fem3d/newconz.f:
c 10.02.2015 ggu call to bnds_read_new() introduced
c
c ./fem3d/newbcl.f:
c 10.02.2015 ggu call to bnds_read_new() introduced
c
c ./fem3d/feminf.f:
! 10.02.2015 ggu option for not complaining about changed time step
c
c ./fem3d/subn11.f:
c 10.02.2015 ggu new call to iff_read_and_interpolate()
c
c ./fem3d/arc/subnls_new.f:
c 05.02.2015 ggu program completely rewritten (modules introduced)
c
c ./fem3d/subscn.f:
c 06.02.2015 ggu new routines istos,iston,is_digit,is_letter
c
c ./fem3d/subfemintp.f:
! 05.02.2015 ggu iff_read_and_interpolate() introduced for parallel bug
!
c ./fem3d/subapn.f:
c 10.02.2015 ggu debugged, bcompat gives compatibility with old versions
==========================================================
version 7_1_4 23-01-2015 VERS_7_1_4 commit_2015-02-26
version 7_1_4 23-01-2015 VERS_7_1_4
========================================================== 23-01-2015 - 7_1_4
c ./fem3d/subver.f:
c 23.01.2015 ggu version 7.1.4
c
c ./fem3d/subwaves.f:
! 21.01.2015 ggu computing fetch for geographical coordinates (bug fix)
!
c ./fem3d/subnev.f:
c 21.01.2015 ggu new routine compute_cartesian_coords()
c
c ./fem3d/subproj.f:
c 21.01.2015 ggu code to handle projection in both directions
==========================================================
version 7_1_3 19-01-2015 VERS_7_1_3 commit_2015-01-23
version 7_1_3 19-01-2015 VERS_7_1_3
========================================================== 19-01-2015 - 7_1_3
c ./fem3d/subver.f:
c 19.01.2015 ggu version 7.1.3 huge commit (include for common)
==========================================================
version 7_1_2 19-01-2015 VERS_7_1_2 commit_2015-01-19
version 7_1_2 19-01-2015 VERS_7_1_2
========================================================== 19-01-2015 - 7_1_2
c ./fem3d/subver.f:
c 19.01.2015 ggu version 7.1.2
==========================================================
version 7_1_1 15-01-2015 VERS_7_1_1 commit_2015-01-19
version 7_1_1 15-01-2015 VERS_7_1_1 commit_2015-01-19
version 7_1_1 15-01-2015 VERS_7_1_1 commit_2015-01-19
version 7_1_1 15-01-2015 VERS_7_1_1 commit_2015-01-16
version 7_1_1 15-01-2015 VERS_7_1_1 commit_2015-01-16
version 7_1_1 15-01-2015 VERS_7_1_1
========================================================== 15-01-2015 - 7_1_1
c ./fem3d/subclo.f:
! 14.01.2015 ggu added new routines clo_add_info/extra
!
c ./fem3d/subver.f:
c 15.01.2015 ggu version 7.1.1
c
c ./fem3d/feminf.f:
! 14.01.2015 ggu finished and cleaned
c
c ./fem3d/tideg.f:
c 14.01.2015 ccf small bug fix rounding date and time
c
c ./fem3d/femelab.f:
! 14.01.2015 ggu adapted from feminf
c
c ./fem3d/subfemfile.f:
c 14.01.2015 ggu new routine fem_file_string2time()
c
c ./fem3d/subapn.f:
c 14.01.2015 ggu reorganized and cleaned
==========================================================
version 7_1_0 12-01-2015 VERS_7_1_0 commit_2015-01-15
version 7_1_0 12-01-2015 VERS_7_1_0
========================================================== 12-01-2015 - 7_1_0
c ./tmp/shyfem-1e5396afab_2015-01-12_stable/fem3d/subfemfile.f:
c 09.01.2015 ggu new routine fem_file_get_format_description()
c
c ./fem3d/subver.f:
c 12.01.2015 ggu version 7.1.0 Wolfgangs release
c
c ./fem3d/subfemfile.f:
c 09.01.2015 ggu new routine fem_file_get_format_description()
==========================================================
version 7_0_12 09-01-2015 VERS_7_0_12 commit_2015-01-12
version 7_0_12 09-01-2015 VERS_7_0_12
========================================================== 09-01-2015 - 7_0_12
c ./fem3d/subnls.f:
c 08.01.2015 ggu new version for nrdvec*()
c
c ./fem3d/subver.f:
c 09.01.2015 ggu version 7.0.12
c
c ./fem3d/subtime.f:
c 07.01.2015 ggu fractional time step without rounding (itsplt=3)
c
c ./fem3d/subgrd.f:
c 08.01.2015 ggu common blocks in include file
c
c ./fem3d/subbas.f:
c 04.01.2015 ggu new routine sp13_get_par()
c
c ./fem3d/subfemintp.f:
! 07.01.2015 ggu bug fix in iff_populate_records() -> handle holes
! 08.01.2015 ggu bug fix for parallel: make variables local
==========================================================
version 7_0_11 23-12-2014 VERS_7_0_11 commit_2015-01-09
version 7_0_11 23-12-2014 VERS_7_0_11
========================================================== 23-12-2014 - 7_0_11
c ./femplot/suplin.f:
c 22.12.2014 ggu new routine integrate_flux()
c
c ./fem3d/subver.f:
c 23.12.2014 ggu version 7.0.11 pre Christmas eve release
c
c ./fem3d/subtime.f:
c 23.12.2014 ggu fractional time step introduced
c
c ./fem3d/ousvdiff.f:
c 20.12.2014 ggu bug fix: nlv was not set, new calling sequence
==========================================================
version 7_0_10 19-12-2014 VERS_7_0_10 commit_2014-12-23
version 7_0_10 19-12-2014 VERS_7_0_10
========================================================== 19-12-2014 - 7_0_10
c ./fem3d/subver.f:
c 19.12.2014 ggu version 7.0.10 pre Christmas release
c
c ./fem3d/subtime.f:
c 19.12.2014 ggu accept date also as string
==========================================================
version 7_0_9 12-12-2014 VERS_7_0_9 commit_2014-12-19
version 7_0_9 12-12-2014 VERS_7_0_9 commit_2014-12-18
version 7_0_9 12-12-2014 VERS_7_0_9
========================================================== 12-12-2014 - 7_0_9
c ./fem3d/subrst.f:
c 11.12.2014 ccf bug fix for atime
c
c
c ./fem3d/subver.f:
c 12.12.2014 ggu version 7.0.9 pre St Lucia release
==========================================================
version 7_0_8 05-12-2014 VERS_7_0_8 commit_2014-12-12
version 7_0_8 05-12-2014 VERS_7_0_8
========================================================== 05-12-2014 - 7_0_8
c ./fem3d/subclo.f:
! 27.11.2014 ggu is now fully functional
!
c ./fem3d/subnsh.f:
c 01.12.2014 ccf handle new section waves for wave module
c
c ./fem3d/subver.f:
c 05.12.2014 ggu version 7.0.8 pre Santa Claus release
c
c ./fem3d/subsys.f:
c 01.12.2014 ccf wave parameters moved to subwave.f
c
c ./fem3d/ht.f:
c 05.12.2014 ccf new interface for waves
==========================================================
version 7_0_7 26-11-2014 VERS_7_0_7 commit_2014-12-05
version 7_0_7 26-11-2014 VERS_7_0_7
========================================================== 26-11-2014 - 7_0_7
c ./fem3d/subnsh.f:
c 10.11.2014 ggu shyfem time management routines to new file subtime.f
c
c ./fem3d/subdts.f:
c 12.11.2014 ggu new routines for unformatting and timespan
c
c ./fem3d/suboutput.f:
c 10.11.2014 ggu time management routines transfered to this file
c
c ./fem3d/subver.f:
c 26.11.2014 ggu version 7.0.7 Peter Epplers Geburtstags release
c
c ./fem3d/subtime.f:
c 10.11.2014 ggu time management routines transfered to this file
c
c ./fem3d/subcst.f:
c 10.11.2014 ggu time and date routines transfered to subtime.f
==========================================================
version 7_0_6 07-11-2014 VERS_7_0_6 commit_2014-11-25
version 7_0_6 07-11-2014 VERS_7_0_6
========================================================== 07-11-2014 - 7_0_6
c ./fem3d/subver.f:
c 07.11.2014 ggu version 7.0.6
c
c ./fem3d/subn11.f:
c 07.11.2014 ggu bug fix for distance computation in z_tilt, c_tilt
==========================================================
version 7_0_5 05-11-2014 VERS_7_0_5 commit_2014-11-07
version 7_0_5 05-11-2014 VERS_7_0_5
========================================================== 05-11-2014 - 7_0_5
c ./tmp/shyfem-f307c41547_2014-11-04_stable/fem3d/subwaves.f:
! 04.11.2014 ccf rewritten
!
c ./tmp/shyfem-f307c41547_2014-11-04_stable/fem3d/subbnd.f:
c 03.11.2014 ggu nbdim deleted
c
c ./tmp/shyfem-f307c41547_2014-11-04_stable/fem3d/subnev.f:
c 30.10.2014 ggu new routine compute_distance()
c
c ./tmp/shyfem-f307c41547_2014-11-04_stable/fem3d/subn11.f:
c 30.10.2014 ggu in c_tilt() compute distance also for lat/lon
c 31.10.2014 ccf new call to init_z0 instead than init_z0b
c
c ./tmp/shyfem-f307c41547_2014-11-04_stable/fem3d/newini.f:
c 31.10.2014 ccf initi_z0 for zos and zob
c
c ./fem3d/subver.f:
c 05.11.2014 ggu version 7.0.5
c
c ./fem3d/subwaves.f:
! 04.11.2014 ccf rewritten
!
c ./fem3d/subbnd.f:
c 03.11.2014 ggu nbdim deleted
c
c ./fem3d/subnev.f:
c 30.10.2014 ggu new routine compute_distance()
c
c ./fem3d/subn11.f:
c 30.10.2014 ggu in c_tilt() compute distance also for lat/lon
c 31.10.2014 ccf new call to init_z0 instead than init_z0b
c
c ./fem3d/newini.f:
c 31.10.2014 ccf initi_z0 for zos and zob
==========================================================
version 7_0_4 30-10-2014 VERS_7_0_4 commit_2014-11-04
version 7_0_4 30-10-2014 VERS_7_0_4
========================================================== 30-10-2014 - 7_0_4
c ./tmp/shyfem-8c666943c1_2014-10-30_stable/fem3d/subnos.f:
c 29.10.2014 ggu new routine nos_is_nos_file()
c
c ./tmp/shyfem-8c666943c1_2014-10-30_stable/fem3d/subnsh.f:
c 29.10.2014 ggu do_() routines transfered from newpri.f
c
c ./tmp/shyfem-8c666943c1_2014-10-30_stable/fem3d/subboxa.f:
c 29.10.2014 ggu new code and 3d version
c
c ./tmp/shyfem-8c666943c1_2014-10-30_stable/fem3d/subfemfile.f:
c 29.10.2014 ggu new routine fem_file_is_fem_file()
c
c ./tmp/shyfem-8c666943c1_2014-10-30_stable/fem3d/subous.f:
c 29.10.2014 ggu new routine ous_is_ous_file()
c
c ./tmp/shyfem-8c666943c1_2014-10-30_stable/fem3d/subbas.f:
c 23.10.2014 ggu introduced ftype and nvers = 4
c
c ./fem3d/subnos.f:
c 29.10.2014 ggu new routine nos_is_nos_file()
c
c ./fem3d/subnsh.f:
c 29.10.2014 ggu do_() routines transfered from newpri.f
c
c ./fem3d/subver.f:
c 30.10.2014 ggu version 7.0.4
c
c ./fem3d/subboxa.f:
c 29.10.2014 ggu new code and 3d version
c
c ./fem3d/subfemfile.f:
c 29.10.2014 ggu new routine fem_file_is_fem_file()
c
c ./fem3d/subous.f:
c 29.10.2014 ggu new routine ous_is_ous_file()
c
c ./fem3d/subbas.f:
c 23.10.2014 ggu introduced ftype and nvers = 4
==========================================================
version 7_0_3 21-10-2014 VERS_7_0_3 commit_2014-10-30
version 7_0_3 21-10-2014 VERS_7_0_3
========================================================== 21-10-2014 - 7_0_3
c ./tmp/shyfem-d10f7da76c_2014-10-21_stable/femplot/plotsim.f:
c 20.10.2014 ggu handle absolute and plotting time
c
c ./tmp/shyfem-d10f7da76c_2014-10-21_stable/femplot/supsim.f:
c 20.10.2014 ggu new time management
c
c ./tmp/shyfem-d10f7da76c_2014-10-21_stable/femplot/suptim.f:
c 20.10.2014 ggu completely restructured, old routines deleted
c
c ./tmp/shyfem-d10f7da76c_2014-10-21_stable/femplot/supout.f:
c 20.10.2014 ggu deleted is2d() and out reading routines
c
c ./tmp/shyfem-d10f7da76c_2014-10-21_stable/femplot/supano.f:
c 16.10.2014 ggu annotes doesnt need it anymore
c
c ./tmp/shyfem-d10f7da76c_2014-10-21_stable/fem3d/subtsfile.f:
c 20.10.2014 ggu integrating datetime into time series
c
c ./tmp/shyfem-d10f7da76c_2014-10-21_stable/fem3d/aquabc_fem_interface.f:
c 21.10.2014 ggu converted to new boundary treatment
c
c ./tmp/shyfem-d10f7da76c_2014-10-21_stable/fem3d/subbfm.f:
c 21.10.2014 ggu converted to new boundary treatment
c
c ./tmp/shyfem-d10f7da76c_2014-10-21_stable/fem3d/newcon.f:
c 20.10.2014 ggu accept ids from calling routines
c
c ./tmp/shyfem-d10f7da76c_2014-10-21_stable/fem3d/newconz.f:
c 20.10.2014 ggu pass ids to scal_adv routines
c
c ./tmp/shyfem-d10f7da76c_2014-10-21_stable/fem3d/subcst.f:
c 20.10.2014 ggu new routine ckdate()
c
c ./tmp/shyfem-d10f7da76c_2014-10-21_stable/fem3d/newbcl.f:
c 20.10.2014 ggu pass ids to scal_adv()
c
c ./tmp/shyfem-d10f7da76c_2014-10-21_stable/fem3d/bio3d.f:
c 21.10.2014 ggu converted to new boundary treatment
c
c ./tmp/shyfem-d10f7da76c_2014-10-21_stable/fem3d/sedi3d.f:
c 21.10.2014 ggu converted to new boundary treatment
c
c ./tmp/shyfem-d10f7da76c_2014-10-21_stable/fem3d/atoxi3d.f:
c 21.10.2014 ggu converted to new boundary treatment
c
c ./tmp/shyfem-d10f7da76c_2014-10-21_stable/fem3d/subsys.f:
c 20.10.2014 ggu new default for date (-1)
c
c ./tmp/shyfem-d10f7da76c_2014-10-21_stable/fem3d/subfemfile.f:
c 20.10.2014 ggu second version (date record is just after first record)
c
c ./tmp/shyfem-d10f7da76c_2014-10-21_stable/fem3d/subfemintp.f:
! 20.10.2014 ggu deal with datetime in fem/ts files
!
c ./femplot/plotsim.f:
c 20.10.2014 ggu handle absolute and plotting time
c
c ./femplot/supsim.f:
c 20.10.2014 ggu new time management
c
c ./femplot/suptim.f:
c 20.10.2014 ggu completely restructured, old routines deleted
c
c ./femplot/supout.f:
c 20.10.2014 ggu deleted is2d() and out reading routines
c
c ./femplot/supano.f:
c 16.10.2014 ggu annotes doesnt need it anymore
c
c ./fem3d/subtsfile.f:
c 20.10.2014 ggu integrating datetime into time series
c
c ./fem3d/aquabc_fem_interface.f:
c 21.10.2014 ggu converted to new boundary treatment
c
c ./fem3d/subver.f:
c 21.10.2014 ggu version 7.0.3
c
c ./fem3d/subbfm.f:
c 21.10.2014 ggu converted to new boundary treatment
c
c ./fem3d/newcon.f:
c 20.10.2014 ggu accept ids from calling routines
c
c ./fem3d/newconz.f:
c 20.10.2014 ggu pass ids to scal_adv routines
c
c ./fem3d/subcst.f:
c 20.10.2014 ggu new routine ckdate()
c
c ./fem3d/newbcl.f:
c 20.10.2014 ggu pass ids to scal_adv()
c
c ./fem3d/bio3d.f:
c 21.10.2014 ggu converted to new boundary treatment
c
c ./fem3d/sedi3d.f:
c 21.10.2014 ggu converted to new boundary treatment
c
c ./fem3d/atoxi3d.f:
c 21.10.2014 ggu converted to new boundary treatment
c
c ./fem3d/subsys.f:
c 20.10.2014 ggu new default for date (-1)
c
c ./fem3d/subfemfile.f:
c 20.10.2014 ggu second version (date record is just after first record)
c
c ./fem3d/subfemintp.f:
! 20.10.2014 ggu deal with datetime in fem/ts files
==========================================================
version 7_0_2 13-10-2014 VERS_7_0_2 commit_2014-10-21
version 7_0_2 13-10-2014 VERS_7_0_2
========================================================== 13-10-2014 - 7_0_2
c ./tmp/shyfem-28da59bc8a_2014-10-13_stable/fem3d/subdts.f:
c 13.10.2014 ggu absolute time routines inserted
c 13.10.2014 ggu one day off error fixed ($ONEDAYOFF)
c
c ./tmp/shyfem-28da59bc8a_2014-10-13_stable/fem3d/wininf.f:
c 29.09.2014 ggu uses allocatable ayyars
c
c ./fem3d/subdts.f:
c 13.10.2014 ggu absolute time routines inserted
c 13.10.2014 ggu one day off error fixed ($ONEDAYOFF)
c
c ./fem3d/subver.f:
c 13.10.2014 ggu version 7.0.2
c
c ./fem3d/wininf.f:
c 29.09.2014 ggu uses allocatable ayyars
==========================================================
version 7_0_1 18-07-2014 VERS_7_0_1 commit_2014-10-13
version 7_0_1 18-07-2014 VERS_7_0_1 commit_2014-10-13
version 7_0_1 18-07-2014 VERS_7_0_1
========================================================== 18-07-2014 - 7_0_1
c ./fem3d/subtsuvfile.f:
c 10.07.2014 ggu only new file format allowed
c
c ./fem3d/subbnds.f:
c 10.07.2014 ggu only new file format allowed
c
c ./fem3d/subver.f: