[cig-commits] r13436 - in long/3D/Gale/trunk: . src/Underworld/plugins/Output/VTKOutput

walter at geodynamics.org walter at geodynamics.org
Tue Dec 2 01:08:06 PST 2008


Author: walter
Date: 2008-12-02 01:08:06 -0800 (Tue, 02 Dec 2008)
New Revision: 13436

Modified:
   long/3D/Gale/trunk/
   long/3D/Gale/trunk/src/Underworld/plugins/Output/VTKOutput/VTKOutput.c
Log:
 r2390 at dante:  boo | 2008-12-02 01:06:40 -0800
 Make VTKOutput run after the solve, but before the advection



Property changes on: long/3D/Gale/trunk
___________________________________________________________________
Name: svk:merge
   - 3a629746-de10-0410-b17b-fd6ecaaa963e:/cig:2388
   + 3a629746-de10-0410-b17b-fd6ecaaa963e:/cig:2390

Modified: long/3D/Gale/trunk/src/Underworld/plugins/Output/VTKOutput/VTKOutput.c
===================================================================
--- long/3D/Gale/trunk/src/Underworld/plugins/Output/VTKOutput/VTKOutput.c	2008-12-02 08:53:13 UTC (rev 13435)
+++ long/3D/Gale/trunk/src/Underworld/plugins/Output/VTKOutput/VTKOutput.c	2008-12-02 09:08:06 UTC (rev 13436)
@@ -56,7 +56,12 @@
 
 	context = (UnderworldContext*)Stg_ComponentFactory_ConstructByName( cf, "context", UnderworldContext, True, data );
 
-	ContextEP_Append( context, AbstractContext_EP_Dump,
+        /* Run after the solve, but before time integration
+           (e.g. advection).  This gives us data that is always valid.
+           It also simplifies intepretation because we do not have to
+           separate mesh deformation from what the solver gave us. */
+
+	ContextEP_Append( context, AbstractContext_EP_Solve,
                           VTKOutput );
 }
 



More information about the CIG-COMMITS mailing list