Index: /issm/trunk/src/c/objects/Elements/Beam.cpp
===================================================================
--- /issm/trunk/src/c/objects/Elements/Beam.cpp	(revision 3705)
+++ /issm/trunk/src/c/objects/Elements/Beam.cpp	(revision 3706)
@@ -142,4 +142,5 @@
 	}	
 	if (iomodel->gridonbed) this->inputs->AddInput(new BoolInput(ElementOnBedEnum,(IssmBool)iomodel->gridonbed[index]));
+	if (iomodel->dt) this->inputs->AddInput(new DoubleInput(DtEnum,iomodel->dt));
 
 	//this->parameters: we still can't point to it, it may not even exist. Configure will handle this.
Index: /issm/trunk/src/c/objects/Elements/Penta.cpp
===================================================================
--- /issm/trunk/src/c/objects/Elements/Penta.cpp	(revision 3705)
+++ /issm/trunk/src/c/objects/Elements/Penta.cpp	(revision 3706)
@@ -161,4 +161,5 @@
 	if (iomodel->elementonwater) this->inputs->AddInput(new BoolInput(ElementOnWaterEnum,(IssmBool)iomodel->elementonwater[index]));
 	if (iomodel->elementonsurface) this->inputs->AddInput(new BoolInput(ElementOnSurfaceEnum,(IssmBool)iomodel->elementonsurface[index]));
+	if (iomodel->dt) this->inputs->AddInput(new DoubleInput(DtEnum,iomodel->dt));
 
 	//elements of type 3 are macayeal type penta. we collapse the formulation on their base.
Index: /issm/trunk/src/c/objects/Elements/Sing.cpp
===================================================================
--- /issm/trunk/src/c/objects/Elements/Sing.cpp	(revision 3705)
+++ /issm/trunk/src/c/objects/Elements/Sing.cpp	(revision 3706)
@@ -94,4 +94,6 @@
 	if (iomodel->vz_obs) this->inputs->AddInput(new SingVertexInput(VzEnum,iomodel->vz_obs[i]));
 	if (iomodel->weights) this->inputs->AddInput(new SingVertexInput(WeightsEnum,iomodel->weights[i]));
+
+	if (iomodel->dt) this->inputs->AddInput(new DoubleInput(DtEnum,iomodel->dt));
 
 	//this->parameters: we still can't point to it, it may not even exist. Configure will handle this.
Index: /issm/trunk/src/c/objects/Elements/Tria.cpp
===================================================================
--- /issm/trunk/src/c/objects/Elements/Tria.cpp	(revision 3705)
+++ /issm/trunk/src/c/objects/Elements/Tria.cpp	(revision 3706)
@@ -174,4 +174,5 @@
 	if (iomodel->elementonwater) this->inputs->AddInput(new BoolInput(ElementOnWaterEnum,(IssmBool)iomodel->elementonwater[index]));
 	if (iomodel->elementonsurface) this->inputs->AddInput(new BoolInput(ElementOnSurfaceEnum,(IssmBool)iomodel->elementonsurface[index]));
+	if (iomodel->dt) this->inputs->AddInput(new DoubleInput(DtEnum,iomodel->dt));
 
 	//this->parameters: we still can't point to it, it may not even exist. Configure will handle this.
