[cig-commits] r20594 - seismo/3D/SPECFEM3D/trunk/src/specfem3D

cmorency at geodynamics.org cmorency at geodynamics.org
Sun Aug 19 12:54:48 PDT 2012


Author: cmorency
Date: 2012-08-19 12:54:48 -0700 (Sun, 19 Aug 2012)
New Revision: 20594

Modified:
   seismo/3D/SPECFEM3D/trunk/src/specfem3D/iterate_time.f90
Log:
debugged a if/else/endif statement


Modified: seismo/3D/SPECFEM3D/trunk/src/specfem3D/iterate_time.f90
===================================================================
--- seismo/3D/SPECFEM3D/trunk/src/specfem3D/iterate_time.f90	2012-08-19 19:35:19 UTC (rev 20593)
+++ seismo/3D/SPECFEM3D/trunk/src/specfem3D/iterate_time.f90	2012-08-19 19:54:48 UTC (rev 20594)
@@ -224,20 +224,18 @@
       else
         b_Usolidnorm = maxval(sqrt(b_displ(1,:)**2 + b_displ(2,:)**2 + b_displ(3,:)**2))
       endif
-    else
-      if( ACOUSTIC_SIMULATION ) then
+    endif
+    if( ACOUSTIC_SIMULATION ) then
         ! way 2
         if(GPU_MODE) then
           call get_norm_acoustic_from_device(b_Usolidnorm,Mesh_pointer,3)
         else
           b_Usolidnorm = maxval(abs(b_potential_dot_dot_acoustic(:)))
         endif
-      endif
-    else
-      if( POROELASTIC_SIMULATION ) then
+    endif
+    if( POROELASTIC_SIMULATION ) then
         b_Usolidnorm = maxval(sqrt(b_displs_poroelastic(1,:)**2 + b_displs_poroelastic(2,:)**2 + &
                                  b_displs_poroelastic(3,:)**2))
-      endif
     endif
     ! check stability of the code, exit if unstable
     ! negative values can occur with some compilers when the unstable value is greater



More information about the CIG-COMMITS mailing list