aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorallen <allen@4451c3c6-1034-4891-99ea-21147727ccdf>1999-07-29 12:49:36 +0000
committerallen <allen@4451c3c6-1034-4891-99ea-21147727ccdf>1999-07-29 12:49:36 +0000
commit22adce91cfeddd17ea4874eebbc1fcdc6c288f9e (patch)
treee7ae138c00e7143dfcebed25144fa80c898d63b8 /src
parent3c7cfa38fbb1d3f4a50ef4313745b6272d38c0d9 (diff)
Development changes
git-svn-id: http://svn.cactuscode.org/arrangements/CactusWave/WaveToyF77/trunk@6 4451c3c6-1034-4891-99ea-21147727ccdf
Diffstat (limited to 'src')
-rw-r--r--src/InitSymBound.F774
-rw-r--r--src/InitialData.F772
-rw-r--r--src/WaveToy.F778
3 files changed, 7 insertions, 7 deletions
diff --git a/src/InitSymBound.F77 b/src/InitSymBound.F77
index 3ca909e..680323b 100644
--- a/src/InitSymBound.F77
+++ b/src/InitSymBound.F77
@@ -39,8 +39,8 @@
sym(2) = one
sym(3) = one
- call SetCartSymmetry(cctkGH, sym,'wavetoy::phi')
- call SetCartSymmetry(cctkGH, sym,'wavetoy::phi_old')
+ call SetCartSymmetry(cctkGH, sym,'wavetoyf77::phi')
+ call SetCartSymmetry(cctkGH, sym,'wavetoyf77::phi_old')
return
end
diff --git a/src/InitialData.F77 b/src/InitialData.F77
index 777a8ca..6a3a61e 100644
--- a/src/InitialData.F77
+++ b/src/InitialData.F77
@@ -1,5 +1,5 @@
/*@@
- @file InitialData.F
+ @file InitialData.F77
@date
@author Tom Goodale
@desc
diff --git a/src/WaveToy.F77 b/src/WaveToy.F77
index 9a116e4..330fec0 100644
--- a/src/WaveToy.F77
+++ b/src/WaveToy.F77
@@ -42,12 +42,12 @@ c Set the stencil width
sw(2)=1
sw(3)=1
- call ApplySymmetry(cctkGH,"wavetoy::scalarfields")
+ call ApplySymmetry(cctkGH,"wavetoyf77::scalarfields")
if (CCTK_EQUALS(bound,"flat")) then
- call ApplyFlatBC(cctkGH,sw,"wavetoy::phi")
+ call ApplyFlatBC(cctkGH,sw,"wavetoyf77::phi")
else if (CCTK_Equals(bound,"radiation").eq.1) then
- call ApplyRadiativeBC(cctkGH,1.0,sw,"wavetoy::phi","wavetoy::phi_old")
+ call ApplyRadiativeBC(cctkGH,1.0,sw,"wavetoyf77::phi","wavetoyf77::phi_old")
end if
return
@@ -134,7 +134,7 @@ c -------------------------
c Synchronize
c -----------
- call CCTK_SyncGroup(cctkGH,"wavetoy::scalarfields")
+ call CCTK_SyncGroup(cctkGH,"wavetoyf77::scalarfields")
return
end