[cig-commits] r8599 - seismo/2D/SPECFEM2D/trunk

walter at geodynamics.org walter at geodynamics.org
Fri Dec 7 15:59:56 PST 2007


Author: walter
Date: 2007-12-07 15:59:55 -0800 (Fri, 07 Dec 2007)
New Revision: 8599

Modified:
   seismo/2D/SPECFEM2D/trunk/assemble_MPI.F90
   seismo/2D/SPECFEM2D/trunk/attenuation_model.f90
   seismo/2D/SPECFEM2D/trunk/checkgrid.F90
   seismo/2D/SPECFEM2D/trunk/compute_arrays_source.f90
   seismo/2D/SPECFEM2D/trunk/compute_energy.f90
   seismo/2D/SPECFEM2D/trunk/compute_forces_acoustic.f90
   seismo/2D/SPECFEM2D/trunk/compute_forces_elastic.f90
   seismo/2D/SPECFEM2D/trunk/compute_gradient_attenuation.f90
   seismo/2D/SPECFEM2D/trunk/compute_pressure.f90
   seismo/2D/SPECFEM2D/trunk/compute_vector_field.f90
   seismo/2D/SPECFEM2D/trunk/construct_acoustic_surface.f90
   seismo/2D/SPECFEM2D/trunk/convolve_source_timefunction.f90
   seismo/2D/SPECFEM2D/trunk/create_color_image.f90
   seismo/2D/SPECFEM2D/trunk/createnum_fast.f90
   seismo/2D/SPECFEM2D/trunk/createnum_slow.f90
   seismo/2D/SPECFEM2D/trunk/datim.f90
   seismo/2D/SPECFEM2D/trunk/define_derivation_matrices.f90
   seismo/2D/SPECFEM2D/trunk/define_external_model.f90
   seismo/2D/SPECFEM2D/trunk/define_shape_functions.f90
   seismo/2D/SPECFEM2D/trunk/enforce_acoustic_free_surface.f90
   seismo/2D/SPECFEM2D/trunk/gmat01.f90
   seismo/2D/SPECFEM2D/trunk/lagrange_poly.f90
   seismo/2D/SPECFEM2D/trunk/locate_receivers.F90
   seismo/2D/SPECFEM2D/trunk/locate_source_force.F90
   seismo/2D/SPECFEM2D/trunk/locate_source_moment_tensor.F90
   seismo/2D/SPECFEM2D/trunk/meshfem2D.F90
   seismo/2D/SPECFEM2D/trunk/part_unstruct.F90
   seismo/2D/SPECFEM2D/trunk/plotgll.f90
   seismo/2D/SPECFEM2D/trunk/plotpost.F90
   seismo/2D/SPECFEM2D/trunk/read_value_parameters.f90
   seismo/2D/SPECFEM2D/trunk/recompute_jacobian.f90
   seismo/2D/SPECFEM2D/trunk/specfem2D.F90
   seismo/2D/SPECFEM2D/trunk/write_seismograms.F90
Log:
added CNRS to copyright information


Modified: seismo/2D/SPECFEM2D/trunk/assemble_MPI.F90
===================================================================
--- seismo/2D/SPECFEM2D/trunk/assemble_MPI.F90	2007-11-21 03:02:55 UTC (rev 8598)
+++ seismo/2D/SPECFEM2D/trunk/assemble_MPI.F90	2007-12-07 23:59:55 UTC (rev 8599)
@@ -5,24 +5,24 @@
 !                   ------------------------------
 !
 !  Main authors: Dimitri Komatitsch, Nicolas Le Goff and Roland Martin
-!                     University of Pau, France
+!                 University of Pau and CNRS, France
 !
 !                         (c) November 2007
 !
 !========================================================================
 
 !
-! This file contains subroutines related to assembling (of the mass matrix, potential_dot_dot and 
+! This file contains subroutines related to assembling (of the mass matrix, potential_dot_dot and
 ! accel_elastic).
 ! These subroutines are for the most part not used in the sequential version.
 !
 
 !-----------------------------------------------
-! Determines the points that are on the interfaces with other partitions, to help 
+! Determines the points that are on the interfaces with other partitions, to help
 ! build the communication buffers, and determines which elements are considered 'inner'
-! (no points in common with other partitions) and 'outer' (at least one point in common 
-! with neighbouring partitions). 
-! We have both acoustic and elastic buffers, for coupling between acoustic and elastic elements 
+! (no points in common with other partitions) and 'outer' (at least one point in common
+! with neighbouring partitions).
+! We have both acoustic and elastic buffers, for coupling between acoustic and elastic elements
 ! led us to have two sets of communications.
 !-----------------------------------------------
 subroutine prepare_assemble_MPI (nspec,ibool, &
@@ -269,7 +269,7 @@
 
 !-----------------------------------------------
 ! Creation of persistent communication requests (send and recv) for acoustic elements.
-! Should be disposed of if using Paraver (with MPItrace), since it does not instrument persistent 
+! Should be disposed of if using Paraver (with MPItrace), since it does not instrument persistent
 ! communications yet.
 !-----------------------------------------------
 subroutine create_MPI_req_SEND_RECV_ac( &
@@ -322,7 +322,7 @@
 
 !-----------------------------------------------
 ! Creation of persistent communication requests (send and recv) for elastic elements.
-! Should be disposed of if using Paraver (with MPItrace), since it does not instrument persistent 
+! Should be disposed of if using Paraver (with MPItrace), since it does not instrument persistent
 ! communications yet.
 !-----------------------------------------------
 subroutine create_MPI_req_SEND_RECV_el( &
@@ -458,7 +458,7 @@
 
 
 !-----------------------------------------------
-! Assembling potential_dot_dot for acoustic elements : 
+! Assembling potential_dot_dot for acoustic elements :
 ! the buffers are filled, and the send and recv are started here.
 ! We use MPI_Start (MPI_Startall is not used, since it causes problems in OpenMPI prior to v1.2).
 !-----------------------------------------------
@@ -521,7 +521,7 @@
 
 
 !-----------------------------------------------
-! Assembling accel_elastic for elastic elements : 
+! Assembling accel_elastic for elastic elements :
 ! the buffers are filled, and the send and recv are started here.
 ! We use MPI_Start (MPI_Startall is not used, since it causes problems in OpenMPI prior to v1.2).
 !-----------------------------------------------
@@ -586,8 +586,8 @@
 
 
 !-----------------------------------------------
-! Assembling potential_dot_dot for acoustic elements : 
-! We wait for the completion of the communications, and add the contributions received 
+! Assembling potential_dot_dot for acoustic elements :
+! We wait for the completion of the communications, and add the contributions received
 ! for the points on the interfaces.
 !-----------------------------------------------
 subroutine assemble_MPI_vector_ac_wait(array_val1,npoin, &
@@ -646,8 +646,8 @@
 
 
 !-----------------------------------------------
-! Assembling accel_elastic for elastic elements : 
-! We wait for the completion of the communications, and add the contributions received 
+! Assembling accel_elastic for elastic elements :
+! We wait for the completion of the communications, and add the contributions received
 ! for the points on the interfaces.
 !-----------------------------------------------
 subroutine assemble_MPI_vector_el_wait(array_val2,npoin, &

Modified: seismo/2D/SPECFEM2D/trunk/attenuation_model.f90
===================================================================
--- seismo/2D/SPECFEM2D/trunk/attenuation_model.f90	2007-11-21 03:02:55 UTC (rev 8598)
+++ seismo/2D/SPECFEM2D/trunk/attenuation_model.f90	2007-12-07 23:59:55 UTC (rev 8599)
@@ -5,7 +5,7 @@
 !                   ------------------------------
 !
 !  Main authors: Dimitri Komatitsch, Nicolas Le Goff and Roland Martin
-!                     University of Pau, France
+!                 University of Pau and CNRS, France
 !
 !                         (c) November 2007
 !

Modified: seismo/2D/SPECFEM2D/trunk/checkgrid.F90
===================================================================
--- seismo/2D/SPECFEM2D/trunk/checkgrid.F90	2007-11-21 03:02:55 UTC (rev 8598)
+++ seismo/2D/SPECFEM2D/trunk/checkgrid.F90	2007-12-07 23:59:55 UTC (rev 8599)
@@ -5,7 +5,7 @@
 !                   ------------------------------
 !
 !  Main authors: Dimitri Komatitsch, Nicolas Le Goff and Roland Martin
-!                     University of Pau, France
+!                 University of Pau and CNRS, France
 !
 !                         (c) November 2007
 !

Modified: seismo/2D/SPECFEM2D/trunk/compute_arrays_source.f90
===================================================================
--- seismo/2D/SPECFEM2D/trunk/compute_arrays_source.f90	2007-11-21 03:02:55 UTC (rev 8598)
+++ seismo/2D/SPECFEM2D/trunk/compute_arrays_source.f90	2007-12-07 23:59:55 UTC (rev 8599)
@@ -5,7 +5,7 @@
 !                   ------------------------------
 !
 !  Main authors: Dimitri Komatitsch, Nicolas Le Goff and Roland Martin
-!                     University of Pau, France
+!                 University of Pau and CNRS, France
 !
 !                         (c) November 2007
 !

Modified: seismo/2D/SPECFEM2D/trunk/compute_energy.f90
===================================================================
--- seismo/2D/SPECFEM2D/trunk/compute_energy.f90	2007-11-21 03:02:55 UTC (rev 8598)
+++ seismo/2D/SPECFEM2D/trunk/compute_energy.f90	2007-12-07 23:59:55 UTC (rev 8599)
@@ -5,7 +5,7 @@
 !                   ------------------------------
 !
 !  Main authors: Dimitri Komatitsch, Nicolas Le Goff and Roland Martin
-!                     University of Pau, France
+!                 University of Pau and CNRS, France
 !
 !                         (c) November 2007
 !

Modified: seismo/2D/SPECFEM2D/trunk/compute_forces_acoustic.f90
===================================================================
--- seismo/2D/SPECFEM2D/trunk/compute_forces_acoustic.f90	2007-11-21 03:02:55 UTC (rev 8598)
+++ seismo/2D/SPECFEM2D/trunk/compute_forces_acoustic.f90	2007-12-07 23:59:55 UTC (rev 8599)
@@ -5,7 +5,7 @@
 !                   ------------------------------
 !
 !  Main authors: Dimitri Komatitsch, Nicolas Le Goff and Roland Martin
-!                     University of Pau, France
+!                 University of Pau and CNRS, France
 !
 !                         (c) November 2007
 !

Modified: seismo/2D/SPECFEM2D/trunk/compute_forces_elastic.f90
===================================================================
--- seismo/2D/SPECFEM2D/trunk/compute_forces_elastic.f90	2007-11-21 03:02:55 UTC (rev 8598)
+++ seismo/2D/SPECFEM2D/trunk/compute_forces_elastic.f90	2007-12-07 23:59:55 UTC (rev 8599)
@@ -5,7 +5,7 @@
 !                   ------------------------------
 !
 !  Main authors: Dimitri Komatitsch, Nicolas Le Goff and Roland Martin
-!                     University of Pau, France
+!                 University of Pau and CNRS, France
 !
 !                         (c) November 2007
 !

Modified: seismo/2D/SPECFEM2D/trunk/compute_gradient_attenuation.f90
===================================================================
--- seismo/2D/SPECFEM2D/trunk/compute_gradient_attenuation.f90	2007-11-21 03:02:55 UTC (rev 8598)
+++ seismo/2D/SPECFEM2D/trunk/compute_gradient_attenuation.f90	2007-12-07 23:59:55 UTC (rev 8599)
@@ -5,7 +5,7 @@
 !                   ------------------------------
 !
 !  Main authors: Dimitri Komatitsch, Nicolas Le Goff and Roland Martin
-!                     University of Pau, France
+!                 University of Pau and CNRS, France
 !
 !                         (c) November 2007
 !

Modified: seismo/2D/SPECFEM2D/trunk/compute_pressure.f90
===================================================================
--- seismo/2D/SPECFEM2D/trunk/compute_pressure.f90	2007-11-21 03:02:55 UTC (rev 8598)
+++ seismo/2D/SPECFEM2D/trunk/compute_pressure.f90	2007-12-07 23:59:55 UTC (rev 8599)
@@ -5,7 +5,7 @@
 !                   ------------------------------
 !
 !  Main authors: Dimitri Komatitsch, Nicolas Le Goff and Roland Martin
-!                     University of Pau, France
+!                 University of Pau and CNRS, France
 !
 !                         (c) November 2007
 !

Modified: seismo/2D/SPECFEM2D/trunk/compute_vector_field.f90
===================================================================
--- seismo/2D/SPECFEM2D/trunk/compute_vector_field.f90	2007-11-21 03:02:55 UTC (rev 8598)
+++ seismo/2D/SPECFEM2D/trunk/compute_vector_field.f90	2007-12-07 23:59:55 UTC (rev 8599)
@@ -5,7 +5,7 @@
 !                   ------------------------------
 !
 !  Main authors: Dimitri Komatitsch, Nicolas Le Goff and Roland Martin
-!                     University of Pau, France
+!                 University of Pau and CNRS, France
 !
 !                         (c) November 2007
 !

Modified: seismo/2D/SPECFEM2D/trunk/construct_acoustic_surface.f90
===================================================================
--- seismo/2D/SPECFEM2D/trunk/construct_acoustic_surface.f90	2007-11-21 03:02:55 UTC (rev 8598)
+++ seismo/2D/SPECFEM2D/trunk/construct_acoustic_surface.f90	2007-12-07 23:59:55 UTC (rev 8599)
@@ -5,17 +5,17 @@
 !                   ------------------------------
 !
 !  Main authors: Dimitri Komatitsch, Nicolas Le Goff and Roland Martin
-!                     University of Pau, France
+!                 University of Pau and CNRS, France
 !
 !                         (c) November 2007
 !
 !========================================================================
 
 !
-! From array 'surface' (element, type : node/edge, node(s) ) that describes the 
-! acoustic free surface, determines the points (ixmin, ixmax, izmin and izmax) on the surface 
+! From array 'surface' (element, type : node/edge, node(s) ) that describes the
+! acoustic free surface, determines the points (ixmin, ixmax, izmin and izmax) on the surface
 ! for each element.
-! We chose to have ixmin <= ixmax and izmin <= izmax, so as to be able to have DO loops on it with 
+! We chose to have ixmin <= ixmax and izmin <= izmax, so as to be able to have DO loops on it with
 ! an increment of +1.
 !
 subroutine construct_acoustic_surface ( nspec, ngnod, knods, nsurface, surface, tab_surface )

Modified: seismo/2D/SPECFEM2D/trunk/convolve_source_timefunction.f90
===================================================================
--- seismo/2D/SPECFEM2D/trunk/convolve_source_timefunction.f90	2007-11-21 03:02:55 UTC (rev 8598)
+++ seismo/2D/SPECFEM2D/trunk/convolve_source_timefunction.f90	2007-12-07 23:59:55 UTC (rev 8599)
@@ -5,7 +5,7 @@
 !                   ------------------------------
 !
 !  Main authors: Dimitri Komatitsch, Nicolas Le Goff and Roland Martin
-!                     University of Pau, France
+!                 University of Pau and CNRS, France
 !
 !                         (c) November 2007
 !

Modified: seismo/2D/SPECFEM2D/trunk/create_color_image.f90
===================================================================
--- seismo/2D/SPECFEM2D/trunk/create_color_image.f90	2007-11-21 03:02:55 UTC (rev 8598)
+++ seismo/2D/SPECFEM2D/trunk/create_color_image.f90	2007-12-07 23:59:55 UTC (rev 8599)
@@ -5,7 +5,7 @@
 !                   ------------------------------
 !
 !  Main authors: Dimitri Komatitsch, Nicolas Le Goff and Roland Martin
-!                     University of Pau, France
+!                 University of Pau and CNRS, France
 !
 !                         (c) November 2007
 !

Modified: seismo/2D/SPECFEM2D/trunk/createnum_fast.f90
===================================================================
--- seismo/2D/SPECFEM2D/trunk/createnum_fast.f90	2007-11-21 03:02:55 UTC (rev 8598)
+++ seismo/2D/SPECFEM2D/trunk/createnum_fast.f90	2007-12-07 23:59:55 UTC (rev 8599)
@@ -5,7 +5,7 @@
 !                   ------------------------------
 !
 !  Main authors: Dimitri Komatitsch, Nicolas Le Goff and Roland Martin
-!                     University of Pau, France
+!                 University of Pau and CNRS, France
 !
 !                         (c) November 2007
 !

Modified: seismo/2D/SPECFEM2D/trunk/createnum_slow.f90
===================================================================
--- seismo/2D/SPECFEM2D/trunk/createnum_slow.f90	2007-11-21 03:02:55 UTC (rev 8598)
+++ seismo/2D/SPECFEM2D/trunk/createnum_slow.f90	2007-12-07 23:59:55 UTC (rev 8599)
@@ -5,7 +5,7 @@
 !                   ------------------------------
 !
 !  Main authors: Dimitri Komatitsch, Nicolas Le Goff and Roland Martin
-!                     University of Pau, France
+!                 University of Pau and CNRS, France
 !
 !                         (c) November 2007
 !

Modified: seismo/2D/SPECFEM2D/trunk/datim.f90
===================================================================
--- seismo/2D/SPECFEM2D/trunk/datim.f90	2007-11-21 03:02:55 UTC (rev 8598)
+++ seismo/2D/SPECFEM2D/trunk/datim.f90	2007-12-07 23:59:55 UTC (rev 8599)
@@ -5,7 +5,7 @@
 !                   ------------------------------
 !
 !  Main authors: Dimitri Komatitsch, Nicolas Le Goff and Roland Martin
-!                     University of Pau, France
+!                 University of Pau and CNRS, France
 !
 !                         (c) November 2007
 !

Modified: seismo/2D/SPECFEM2D/trunk/define_derivation_matrices.f90
===================================================================
--- seismo/2D/SPECFEM2D/trunk/define_derivation_matrices.f90	2007-11-21 03:02:55 UTC (rev 8598)
+++ seismo/2D/SPECFEM2D/trunk/define_derivation_matrices.f90	2007-12-07 23:59:55 UTC (rev 8599)
@@ -5,7 +5,7 @@
 !                   ------------------------------
 !
 !  Main authors: Dimitri Komatitsch, Nicolas Le Goff and Roland Martin
-!                     University of Pau, France
+!                 University of Pau and CNRS, France
 !
 !                         (c) November 2007
 !

Modified: seismo/2D/SPECFEM2D/trunk/define_external_model.f90
===================================================================
--- seismo/2D/SPECFEM2D/trunk/define_external_model.f90	2007-11-21 03:02:55 UTC (rev 8598)
+++ seismo/2D/SPECFEM2D/trunk/define_external_model.f90	2007-12-07 23:59:55 UTC (rev 8599)
@@ -5,7 +5,7 @@
 !                   ------------------------------
 !
 !  Main authors: Dimitri Komatitsch, Nicolas Le Goff and Roland Martin
-!                     University of Pau, France
+!                 University of Pau and CNRS, France
 !
 !                         (c) November 2007
 !

Modified: seismo/2D/SPECFEM2D/trunk/define_shape_functions.f90
===================================================================
--- seismo/2D/SPECFEM2D/trunk/define_shape_functions.f90	2007-11-21 03:02:55 UTC (rev 8598)
+++ seismo/2D/SPECFEM2D/trunk/define_shape_functions.f90	2007-12-07 23:59:55 UTC (rev 8599)
@@ -5,7 +5,7 @@
 !                   ------------------------------
 !
 !  Main authors: Dimitri Komatitsch, Nicolas Le Goff and Roland Martin
-!                     University of Pau, France
+!                 University of Pau and CNRS, France
 !
 !                         (c) November 2007
 !

Modified: seismo/2D/SPECFEM2D/trunk/enforce_acoustic_free_surface.f90
===================================================================
--- seismo/2D/SPECFEM2D/trunk/enforce_acoustic_free_surface.f90	2007-11-21 03:02:55 UTC (rev 8598)
+++ seismo/2D/SPECFEM2D/trunk/enforce_acoustic_free_surface.f90	2007-12-07 23:59:55 UTC (rev 8599)
@@ -5,7 +5,7 @@
 !                   ------------------------------
 !
 !  Main authors: Dimitri Komatitsch, Nicolas Le Goff and Roland Martin
-!                     University of Pau, France
+!                 University of Pau and CNRS, France
 !
 !                         (c) November 2007
 !

Modified: seismo/2D/SPECFEM2D/trunk/gmat01.f90
===================================================================
--- seismo/2D/SPECFEM2D/trunk/gmat01.f90	2007-11-21 03:02:55 UTC (rev 8598)
+++ seismo/2D/SPECFEM2D/trunk/gmat01.f90	2007-12-07 23:59:55 UTC (rev 8599)
@@ -5,7 +5,7 @@
 !                   ------------------------------
 !
 !  Main authors: Dimitri Komatitsch, Nicolas Le Goff and Roland Martin
-!                     University of Pau, France
+!                 University of Pau and CNRS, France
 !
 !                         (c) November 2007
 !

Modified: seismo/2D/SPECFEM2D/trunk/lagrange_poly.f90
===================================================================
--- seismo/2D/SPECFEM2D/trunk/lagrange_poly.f90	2007-11-21 03:02:55 UTC (rev 8598)
+++ seismo/2D/SPECFEM2D/trunk/lagrange_poly.f90	2007-12-07 23:59:55 UTC (rev 8599)
@@ -5,7 +5,7 @@
 !                   ------------------------------
 !
 !  Main authors: Dimitri Komatitsch, Nicolas Le Goff and Roland Martin
-!                     University of Pau, France
+!                 University of Pau and CNRS, France
 !
 !                         (c) November 2007
 !

Modified: seismo/2D/SPECFEM2D/trunk/locate_receivers.F90
===================================================================
--- seismo/2D/SPECFEM2D/trunk/locate_receivers.F90	2007-11-21 03:02:55 UTC (rev 8598)
+++ seismo/2D/SPECFEM2D/trunk/locate_receivers.F90	2007-12-07 23:59:55 UTC (rev 8599)
@@ -5,7 +5,7 @@
 !                   ------------------------------
 !
 !  Main authors: Dimitri Komatitsch, Nicolas Le Goff and Roland Martin
-!                     University of Pau, France
+!                 University of Pau and CNRS, France
 !
 !                         (c) November 2007
 !

Modified: seismo/2D/SPECFEM2D/trunk/locate_source_force.F90
===================================================================
--- seismo/2D/SPECFEM2D/trunk/locate_source_force.F90	2007-11-21 03:02:55 UTC (rev 8598)
+++ seismo/2D/SPECFEM2D/trunk/locate_source_force.F90	2007-12-07 23:59:55 UTC (rev 8599)
@@ -5,7 +5,7 @@
 !                   ------------------------------
 !
 !  Main authors: Dimitri Komatitsch, Nicolas Le Goff and Roland Martin
-!                     University of Pau, France
+!                 University of Pau and CNRS, France
 !
 !                         (c) November 2007
 !

Modified: seismo/2D/SPECFEM2D/trunk/locate_source_moment_tensor.F90
===================================================================
--- seismo/2D/SPECFEM2D/trunk/locate_source_moment_tensor.F90	2007-11-21 03:02:55 UTC (rev 8598)
+++ seismo/2D/SPECFEM2D/trunk/locate_source_moment_tensor.F90	2007-12-07 23:59:55 UTC (rev 8599)
@@ -5,7 +5,7 @@
 !                   ------------------------------
 !
 !  Main authors: Dimitri Komatitsch, Nicolas Le Goff and Roland Martin
-!                     University of Pau, France
+!                 University of Pau and CNRS, France
 !
 !                         (c) November 2007
 !

Modified: seismo/2D/SPECFEM2D/trunk/meshfem2D.F90
===================================================================
--- seismo/2D/SPECFEM2D/trunk/meshfem2D.F90	2007-11-21 03:02:55 UTC (rev 8598)
+++ seismo/2D/SPECFEM2D/trunk/meshfem2D.F90	2007-12-07 23:59:55 UTC (rev 8599)
@@ -5,7 +5,7 @@
 !                   ------------------------------
 !
 !  Main authors: Dimitri Komatitsch, Nicolas Le Goff and Roland Martin
-!                     University of Pau, France
+!                 University of Pau and CNRS, France
 !
 !                         (c) November 2007
 !

Modified: seismo/2D/SPECFEM2D/trunk/part_unstruct.F90
===================================================================
--- seismo/2D/SPECFEM2D/trunk/part_unstruct.F90	2007-11-21 03:02:55 UTC (rev 8598)
+++ seismo/2D/SPECFEM2D/trunk/part_unstruct.F90	2007-12-07 23:59:55 UTC (rev 8599)
@@ -5,14 +5,14 @@
 !                   ------------------------------
 !
 !  Main authors: Dimitri Komatitsch, Nicolas Le Goff and Roland Martin
-!                     University of Pau, France
+!                 University of Pau and CNRS, France
 !
 !                         (c) November 2007
 !
 !========================================================================
 
 !
-! This module contains subroutines related to unstructured meshes and partitioning of the 
+! This module contains subroutines related to unstructured meshes and partitioning of the
 ! corresponding graphs.
 !
 

Modified: seismo/2D/SPECFEM2D/trunk/plotgll.f90
===================================================================
--- seismo/2D/SPECFEM2D/trunk/plotgll.f90	2007-11-21 03:02:55 UTC (rev 8598)
+++ seismo/2D/SPECFEM2D/trunk/plotgll.f90	2007-12-07 23:59:55 UTC (rev 8599)
@@ -5,7 +5,7 @@
 !                   ------------------------------
 !
 !  Main authors: Dimitri Komatitsch, Nicolas Le Goff and Roland Martin
-!                     University of Pau, France
+!                 University of Pau and CNRS, France
 !
 !                         (c) November 2007
 !

Modified: seismo/2D/SPECFEM2D/trunk/plotpost.F90
===================================================================
--- seismo/2D/SPECFEM2D/trunk/plotpost.F90	2007-11-21 03:02:55 UTC (rev 8598)
+++ seismo/2D/SPECFEM2D/trunk/plotpost.F90	2007-12-07 23:59:55 UTC (rev 8599)
@@ -5,7 +5,7 @@
 !                   ------------------------------
 !
 !  Main authors: Dimitri Komatitsch, Nicolas Le Goff and Roland Martin
-!                     University of Pau, France
+!                 University of Pau and CNRS, France
 !
 !                         (c) November 2007
 !

Modified: seismo/2D/SPECFEM2D/trunk/read_value_parameters.f90
===================================================================
--- seismo/2D/SPECFEM2D/trunk/read_value_parameters.f90	2007-11-21 03:02:55 UTC (rev 8598)
+++ seismo/2D/SPECFEM2D/trunk/read_value_parameters.f90	2007-12-07 23:59:55 UTC (rev 8599)
@@ -5,7 +5,7 @@
 !                   ------------------------------
 !
 !  Main authors: Dimitri Komatitsch, Nicolas Le Goff and Roland Martin
-!                     University of Pau, France
+!                 University of Pau and CNRS, France
 !
 !                         (c) November 2007
 !

Modified: seismo/2D/SPECFEM2D/trunk/recompute_jacobian.f90
===================================================================
--- seismo/2D/SPECFEM2D/trunk/recompute_jacobian.f90	2007-11-21 03:02:55 UTC (rev 8598)
+++ seismo/2D/SPECFEM2D/trunk/recompute_jacobian.f90	2007-12-07 23:59:55 UTC (rev 8599)
@@ -5,7 +5,7 @@
 !                   ------------------------------
 !
 !  Main authors: Dimitri Komatitsch, Nicolas Le Goff and Roland Martin
-!                     University of Pau, France
+!                 University of Pau and CNRS, France
 !
 !                         (c) November 2007
 !

Modified: seismo/2D/SPECFEM2D/trunk/specfem2D.F90
===================================================================
--- seismo/2D/SPECFEM2D/trunk/specfem2D.F90	2007-11-21 03:02:55 UTC (rev 8598)
+++ seismo/2D/SPECFEM2D/trunk/specfem2D.F90	2007-12-07 23:59:55 UTC (rev 8599)
@@ -5,7 +5,7 @@
 !                   ------------------------------
 !
 !  Main authors: Dimitri Komatitsch, Nicolas Le Goff and Roland Martin
-!                     University of Pau, France
+!                 University of Pau and CNRS, France
 !
 !                         (c) November 2007
 !

Modified: seismo/2D/SPECFEM2D/trunk/write_seismograms.F90
===================================================================
--- seismo/2D/SPECFEM2D/trunk/write_seismograms.F90	2007-11-21 03:02:55 UTC (rev 8598)
+++ seismo/2D/SPECFEM2D/trunk/write_seismograms.F90	2007-12-07 23:59:55 UTC (rev 8599)
@@ -5,7 +5,7 @@
 !                   ------------------------------
 !
 !  Main authors: Dimitri Komatitsch, Nicolas Le Goff and Roland Martin
-!                     University of Pau, France
+!                 University of Pau and CNRS, France
 !
 !                         (c) November 2007
 !



More information about the cig-commits mailing list