[cig-commits] r6728 - short/3D/PyLith/trunk/libsrc/feassemble

willic3 at geodynamics.org willic3 at geodynamics.org
Mon Apr 30 13:43:36 PDT 2007


Author: willic3
Date: 2007-04-30 13:43:35 -0700 (Mon, 30 Apr 2007)
New Revision: 6728

Modified:
   short/3D/PyLith/trunk/libsrc/feassemble/ImplicitElasticity.hh
Log:
Updated header.


Modified: short/3D/PyLith/trunk/libsrc/feassemble/ImplicitElasticity.hh
===================================================================
--- short/3D/PyLith/trunk/libsrc/feassemble/ImplicitElasticity.hh	2007-04-30 20:27:57 UTC (rev 6727)
+++ short/3D/PyLith/trunk/libsrc/feassemble/ImplicitElasticity.hh	2007-04-30 20:43:35 UTC (rev 6728)
@@ -87,17 +87,17 @@
 
   /** Integrate constant part of RHS for 3-D finite elements.
    * Includes only body forces at present.
+   * We have not yet figured out where grav section is coming from, so it
+   * is not being passed in as it was originally.
    *
    *
    * @param b Constant field (output)
    * @param dispT Displacement field at time t
-   * @param grav Gravity vector for cell
-   * @param coordinates Field of cell vertex coordinates
+   * @param mesh Mesh object
    */
   void integrateConstant(const ALE::Obj<real_section_type>& b,
 			 const ALE::Obj<real_section_type>& dispT,
-			 const ALE::Obj<real_section_type>& grav,
-			 const ALE::Obj<real_section_type>& coordinates);
+			 const ALE::Obj<Mesh>& mesh);
 
   /** Integrate residual part of RHS for 3-D finite elements.
    * Includes element internal force contribution.
@@ -105,21 +105,21 @@
    *
    * @param b Residual field (output)
    * @param dispT Displacement field at time t
-   * @param coordinates Field of cell vertex coordinates
+   * @param mesh Mesh object
    */
   void integrateResidual(const ALE::Obj<real_section_type>& b,
 			 const ALE::Obj<real_section_type>& dispT,
-			 const ALE::Obj<real_section_type>& coordinates);
+			 const ALE::Obj<Mesh>& mesh);
 
   /** Compute Jacobian matrix (A) associated with operator.
    *
    * @param mat Sparse matrix
    * @param dispT Displacement at time t
-   * @param coordinates Field of cell vertex coordinates
+   * @param mesh Mesh object
    */
   void integrateJacobian(PetscMat* mat,
 			 const ALE::Obj<real_section_type>& dispT,
-			 const ALE::Obj<real_section_type>& coordinates);
+			 const ALE::Obj<Mesh>& mesh);
   
 // PROTECTED METHODS ////////////////////////////////////////////////////
 protected :



More information about the cig-commits mailing list