[cig-commits] r21358 - short/3D/PyLith/branches/v1.8-mixedfault/modulesrc/faults

rjolivet at geodynamics.org rjolivet at geodynamics.org
Mon Feb 11 14:39:04 PST 2013


Author: rjolivet
Date: 2013-02-11 14:39:03 -0800 (Mon, 11 Feb 2013)
New Revision: 21358

Added:
   short/3D/PyLith/branches/v1.8-mixedfault/modulesrc/faults/DKSelector.i
Removed:
   short/3D/PyLith/branches/v1.8-mixedfault/modulesrc/faults/dkSelector.i
Log:
dkSelector.i is DKSelector.i

Added: short/3D/PyLith/branches/v1.8-mixedfault/modulesrc/faults/DKSelector.i
===================================================================
--- short/3D/PyLith/branches/v1.8-mixedfault/modulesrc/faults/DKSelector.i	                        (rev 0)
+++ short/3D/PyLith/branches/v1.8-mixedfault/modulesrc/faults/DKSelector.i	2013-02-11 22:39:03 UTC (rev 21358)
@@ -0,0 +1,71 @@
+// -*- C++ -*-
+//
+// ----------------------------------------------------------------------
+//
+// Brad T. Aagaard, U.S. Geological Survey
+// Charles A. Williams, GNS Science
+// Matthew G. Knepley, University of Chicago
+//
+// This code was developed as part of the Computational Infrastructure
+// for Geodynamics (http://geodynamics.org).
+//
+// Copyright (c) 2010-2012 University of California, Davis
+//
+// See COPYING for license information.
+//
+// ----------------------------------------------------------------------
+//
+
+/** @file modulesrc/faults/dkSelector.i 
+ *
+ * @brief Python interface to C++ Fault object.
+ */
+
+namespace pylith {
+  namespace faults {
+
+    class DKSelector
+    { // class DKSelector
+
+      // PUBLIC METHODS /////////////////////////////////////////////////
+    public :
+
+      /// Default constructor.
+      dkSelector(void);
+      
+      /// Destructor.
+      ~dkSelector(void);
+      
+      /// Deallocate PETSc and local data structures.
+      virtual
+      void deallocate(void);
+  
+      /** Set spatial database for dkSelector
+       *
+       * @param db Spatial database
+       */
+      void dbdksel(spatialdata::spatialdb::SpatialDB* const db);
+      
+      /** Initialize slip time function.
+       *
+       * @param faultMesh Finite-element mesh of fault.
+       * @param normalizer Nondimensionalization of scales.
+       */
+      void initialize(const pylith::topology::SubMesh& faultMesh,
+		      const spatialdata::units::Nondimensional& normalizer);
+      
+      /** Get dk on fault surface (time will be implemented through this guy)
+       *
+       * @param dk DK selector field over fault surface
+       *
+       * @returns dk for the time
+       */
+      void dk(pylith::topology::Field<pylith::topology::SubMesh>* const dkField);
+  
+    }; // class DKSelector
+
+  } // faults
+} // pylith
+
+
+// End of file 

Deleted: short/3D/PyLith/branches/v1.8-mixedfault/modulesrc/faults/dkSelector.i
===================================================================
--- short/3D/PyLith/branches/v1.8-mixedfault/modulesrc/faults/dkSelector.i	2013-02-11 21:51:53 UTC (rev 21357)
+++ short/3D/PyLith/branches/v1.8-mixedfault/modulesrc/faults/dkSelector.i	2013-02-11 22:39:03 UTC (rev 21358)
@@ -1,71 +0,0 @@
-// -*- C++ -*-
-//
-// ----------------------------------------------------------------------
-//
-// Brad T. Aagaard, U.S. Geological Survey
-// Charles A. Williams, GNS Science
-// Matthew G. Knepley, University of Chicago
-//
-// This code was developed as part of the Computational Infrastructure
-// for Geodynamics (http://geodynamics.org).
-//
-// Copyright (c) 2010-2012 University of California, Davis
-//
-// See COPYING for license information.
-//
-// ----------------------------------------------------------------------
-//
-
-/** @file modulesrc/faults/dkSelector.i 
- *
- * @brief Python interface to C++ Fault object.
- */
-
-namespace pylith {
-  namespace faults {
-
-    class DKSelector
-    { // class DKSelector
-
-      // PUBLIC METHODS /////////////////////////////////////////////////
-    public :
-
-      /// Default constructor.
-      dkSelector(void);
-      
-      /// Destructor.
-      ~dkSelector(void);
-      
-      /// Deallocate PETSc and local data structures.
-      virtual
-      void deallocate(void);
-  
-      /** Set spatial database for dkSelector
-       *
-       * @param db Spatial database
-       */
-      void dbdksel(spatialdata::spatialdb::SpatialDB* const db);
-      
-      /** Initialize slip time function.
-       *
-       * @param faultMesh Finite-element mesh of fault.
-       * @param normalizer Nondimensionalization of scales.
-       */
-      void initialize(const pylith::topology::SubMesh& faultMesh,
-		      const spatialdata::units::Nondimensional& normalizer);
-      
-      /** Get dk on fault surface (time will be implemented through this guy)
-       *
-       * @param dk DK selector field over fault surface
-       *
-       * @returns dk for the time
-       */
-      void dk(pylith::topology::Field<pylith::topology::SubMesh>* const dkField);
-  
-    }; // class DKSelector
-
-  } // faults
-} // pylith
-
-
-// End of file 



More information about the CIG-COMMITS mailing list