Skip to content

Commit cfd0a14

Browse files
committed
switch to using fgout_module.f90 from geoclaw, which should handle dclaw once clawpack/geoclaw#624 is merged
1 parent 006c11f commit cfd0a14

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/2d/dig/Makefile.dclaw

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ COMMON_MODULES += \
2323
$(GEOLIB)/multilayer/multilayer_module.f90 \
2424
$(GEOLIB)/friction_module.f90 \
2525
$(DIGLIB)/refinement_module.f90 \
26-
$(GEOLIB)/adjointsup_module.f90
26+
$(GEOLIB)/adjointsup_module.f90 \
27+
$(GEOLIB)/fgout_module.f90 \
2728

2829
#list of common modules needed for dclaw codes
2930
COMMON_MODULES += \
3031
$(DIGLIB)/digclaw_module.f90 \
3132
$(DIGLIB)/qinit_module.f90 \
3233
$(DIGLIB)/auxinit_module.f90 \
33-
$(DIGLIB)/fgout_module.f90 \
3434

3535

3636
# list of source files from AMR library.

src/2d/dig/amr2.f90

+2-2
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ program amr2
491491
call read_dtopo_settings() ! specifies file with dtopo from earthquake
492492
call read_topo_settings(rest) ! specifies topography (bathymetry) files
493493
call set_auxinit() ! specifies file(s) for auxiliary variables
494-
call set_fgout(rest) ! Fixed grid settings
494+
call set_fgout(rest,nvar) ! Fixed grid settings
495495
call set_regions() ! Set refinement regions
496496
call set_dig(naux)
497497
call set_pinit()
@@ -526,7 +526,7 @@ program amr2
526526
call read_dtopo_settings() ! specifies file with dtopo from earthquake
527527
call read_topo_settings(rest) ! specifies topography (bathymetry) files
528528
call set_auxinit() ! specifies file(s) for auxiliary variables
529-
call set_fgout(rest) ! Fixed grid settings
529+
call set_fgout(rest,nvar) ! Fixed grid settings
530530
call set_regions() ! Set refinement regions
531531
call set_gauges(rest, nvar, naux) ! Set gauge output
532532
call set_fgmax()

0 commit comments

Comments
 (0)