Skip to content

Commit 10a60ff

Browse files
committed
small bux fixes
1 parent 4124aaf commit 10a60ff

File tree

7 files changed

+72
-3
lines changed

7 files changed

+72
-3
lines changed

COMMIT

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
============================================================
22

3+
Fri Jul 19 13:04:15 CEST 2019
4+
5+
small bux fixes
6+
7+
LOG | 45 +++++++++++++++++++++++++++++++++++++++++++++
8+
RELEASE_NOTES | 7 +++++++
9+
fem3d/Makefile | 1 +
10+
fem3d/subver.f | 7 ++++---
11+
femdoc/final/shyfem.pdf | Bin 305581 -> 305436 bytes
12+
5 files changed, 57 insertions(+), 3 deletions(-)
13+
14+
============================================================
15+
316
Fri Jul 19 12:21:57 CEST 2019
417

518
small fixes

LOG

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,49 @@
11

2+
19.07.2019
3+
4+
c ./fem3d/elab_nc_dummy.f:
5+
! 17.07.2019 ggu error in calling nc_output_record()
6+
c
7+
c ./fem3d/subshyutil.f:
8+
! 12.07.2019 ggu some comments for shy_write_scalar_record()
9+
!
10+
c ./fem3d/subn11.f:
11+
c 04.07.2019 ggu setweg & setznv introduced before make_new_depth
12+
c
13+
c ./fem3d/femelab1.f:
14+
! 17.07.2019 ggu changes to custom_elab()
15+
c
16+
c ./fem3d/subsrt.f:
17+
c 02.07.2019 ggu new routines for indirect real sort, locater_all()
18+
c 05.07.2019 ggu new routine create_permutation()
19+
c
20+
c ./fem3d/suboff.f:
21+
c 04.07.2019 ggu solved problem for vertical velocity (1 index off)
22+
c
23+
c ./fem3d/new3di.f:
24+
c 04.07.2019 ccf for offline also compute horizontal diffusion params
25+
c 16.07.2019 ggu rmsdiff was not set to 0 (bug)
26+
c
27+
c ./fem3d/subfifo.f:
28+
! 04.07.2019 ggu written from scratch
29+
c ./fem3d/subww3.f:
30+
! 04.07.2019 ggu written from scratch
31+
c ./fem3d/bio3d.f:
32+
c 12.07.2019 ggu 2d output done with shy_write_scalar_record2d()
33+
c
34+
c ./fem3d/tselab1.f:
35+
! 12.07.2019 ggu -date0 takes precedence with internal date
36+
c
37+
c ./fem3d/shyfem.f:
38+
c 04.07.2019 ggu new ww3 routines introduced
39+
c
40+
c ./fem3d/subsys.f:
41+
c 04.07.2019 ggu new description for WW3
42+
c
43+
c ./fem3d/subshy.f:
44+
! 12.07.2019 ggu some changes to shy_info()
45+
46+
247
02.07.2019
348

449
c ./fem3d/subfvl.f:

RELEASE_NOTES

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11

2+
19.07.2019 VERS_7_5_64
3+
4+
shy_write_scalar_record2d to be used for 2d output
5+
setweg & setznv introduced before make_new_depth
6+
new routines for indirect real sort
7+
bug in rmsdiff (new3di.f)
8+
29
02.07.2019 VERS_7_5_63
310

411
delete use of ishyff in subfvl.f

VERSION

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
version 7_5_63 02-07-2019 VERS_7_5_63 commit_2019-07-19
22

3+
version 7_5_63 02-07-2019 VERS_7_5_63 commit_2019-07-19
4+
35
version 7_5_63 02-07-2019 VERS_7_5_63 commit_2019-07-17
46

57
version 7_5_63 02-07-2019 VERS_7_5_63 commit_2019-07-12

fem3d/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1893,5 +1893,6 @@ weutro_seed.o: ../femlib/mod/basin.mod ../femlib/mod/levels.mod
18931893
weutro_shell.o: donata.h
18941894
weutro_ulva.o: donata.h
18951895
weutro_wdia.o: ../femlib/mod/eutro.mod weutro.h
1896+
ww3_simple.o: ../femlib/mod/fifo_shyfem.mod
18961897
ww3_test.o: ../femlib/mod/basin.mod ../femlib/mod/fifo_shyfem.mod
18971898

fem3d/subver.f

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -363,6 +363,7 @@
363363
c 13.03.2019 ggu version 7.5.61
364364
c 21.05.2019 ggu version 7.5.62
365365
c 02.07.2019 ggu version 7.5.63
366+
c 19.07.2019 ggu version 7.5.64
366367
c
367368
c*****************************************************************
368369

@@ -372,15 +373,15 @@ module shyfem_version
372373

373374
c DOCS START P_version
374375
c
375-
c \newcommand{\VERSION}{7.5.63}
376-
c \newcommand{\version}{7\_5\_63}
376+
c \newcommand{\VERSION}{7.5.64}
377+
c \newcommand{\version}{7\_5\_64}
377378
c \newcommand{\COMMIT}{2019-07-19}
378379
c
379380
c DOCS END
380381

381382
implicit none
382383

383-
character*10, parameter :: version = '7.5.63'
384+
character*10, parameter :: version = '7.5.64'
384385
character*10, parameter :: commit = '2019-07-19'
385386
character*17, parameter :: text = 'SHYFEM VERSION = '
386387

femdoc/final/shyfem.pdf

-145 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)