Index: /issm/trunk-jpl/src/c/modules/UpdateVertexPositionsx/UpdateVertexPositionsx.cpp
===================================================================
--- /issm/trunk-jpl/src/c/modules/UpdateVertexPositionsx/UpdateVertexPositionsx.cpp	(revision 11244)
+++ /issm/trunk-jpl/src/c/modules/UpdateVertexPositionsx/UpdateVertexPositionsx.cpp	(revision 11245)
@@ -35,4 +35,7 @@
 	VecAssemblyEnd(vz);
 
+	/*Update element inputs*/
+	InputUpdateFromVectorx(elements,nodes,vertices,loads,materials,parameters,vz,VzMeshEnum,VertexEnum);
+
 	/*Free ressources:*/
 	xfree((void**)&thickness);
Index: /issm/trunk-jpl/src/c/objects/Elements/Penta.cpp
===================================================================
--- /issm/trunk-jpl/src/c/objects/Elements/Penta.cpp	(revision 11244)
+++ /issm/trunk-jpl/src/c/objects/Elements/Penta.cpp	(revision 11245)
@@ -2043,4 +2043,7 @@
 				name==VyEnum ||
 				name==VzEnum ||
+				name==VxMeshEnum ||
+				name==VyMeshEnum ||
+				name==VzMeshEnum ||
 				name==InversionVxObsEnum ||
 				name==InversionVyObsEnum ||
Index: /issm/trunk-jpl/src/c/objects/Vertex.cpp
===================================================================
--- /issm/trunk-jpl/src/c/objects/Vertex.cpp	(revision 11244)
+++ /issm/trunk-jpl/src/c/objects/Vertex.cpp	(revision 11245)
@@ -286,7 +286,8 @@
 	velz = (newz-oldz)/dt;
 	this->z = newz;
+	//velz = 0; //FOR NOW!!!
 
 	/*put vz in vector*/
-	VecSetValue(vz,this->Sid(),velz,INSERT_VALUES);
-}
-/*}}}*/
+	VecSetValue(vz,this->dof,velz,INSERT_VALUES);
+}
+/*}}}*/
Index: /issm/trunk-jpl/src/c/solutions/transient_core.cpp
===================================================================
--- /issm/trunk-jpl/src/c/solutions/transient_core.cpp	(revision 11244)
+++ /issm/trunk-jpl/src/c/solutions/transient_core.cpp	(revision 11245)
@@ -125,4 +125,5 @@
 		if(solution_type==TransientSolutionEnum && !control_analysis && (step%output_frequency==0 || time==finaltime)){
 			_printf_(VerboseSolution(),"   saving results\n");
+			InputToResultx(femmodel->elements,femmodel->nodes,femmodel->vertices,femmodel->loads,femmodel->materials,femmodel->parameters,VzMeshEnum,step,time);
 			InputToResultx(femmodel->elements,femmodel->nodes,femmodel->vertices,femmodel->loads,femmodel->materials,femmodel->parameters,VxEnum,step,time);
 			InputToResultx(femmodel->elements,femmodel->nodes,femmodel->vertices,femmodel->loads,femmodel->materials,femmodel->parameters,VyEnum,step,time);
