@@ -252,35 +252,9 @@ void StokesFOThickness::constructThicknessEvaluators (PHX::FieldManager<PHAL::Al
252
252
ev = Teuchos::rcp (new LandIce::ThicknessResid<EvalT,PHAL::AlbanyTraits>(*p,dl));
253
253
fm0.template registerEvaluator <EvalT>(ev);
254
254
255
- if (Albany::mesh_depends_on_solution ()) {
256
- // --- Gather Coordinates ---//
257
- p = Teuchos::rcp (new Teuchos::ParameterList (" Gather Coordinate Vector" ));
258
-
259
- // Output:: Coordinate Vector at vertices
260
- p->set <std::string>(" Coordinate Vector Name" , " Coord Vec Old" );
261
-
262
- ev = Teuchos::rcp (new PHAL::GatherCoordinateVector<EvalT,PHAL::AlbanyTraits>(*p,dl));
263
- fm0.template registerEvaluator <EvalT>(ev);
264
-
265
- // --- Update Z Coordinate ---//
266
- p = Teuchos::rcp (new Teuchos::ParameterList (" Update Z Coordinate" ));
267
-
268
- // Input
269
- p->set <std::string>(" Old Coords Name" , " Coord Vec Old" );
270
- p->set <std::string>(" New Coords Name" , Albany::coord_vec_name);
271
- p->set <std::string>(" Thickness Increment Name" , " Extruded " + dof_names[1 ]);
272
- p->set <std::string>(" Past Thickness Name" , initial_ice_thickness_name);
273
- p->set <std::string>(" Top Surface Name" , surface_height_name);
274
- p->set <std::string>(" Bed Topography Name" , bed_topography_name);
275
- p->set <Teuchos::ParameterList*>(" Physical Parameter List" , ¶ms->sublist (" LandIce Physical Parameters" ));
276
-
277
- ev = Teuchos::rcp (new LandIce::UpdateZCoordinateMovingTop<EvalT,PHAL::AlbanyTraits>(*p, dl));
278
- fm0.template registerEvaluator <EvalT>(ev);
279
- } else {
280
- // ---- Gather coordinates
281
- ev = evalUtils.constructGatherCoordinateVectorEvaluator ();
282
- fm0.template registerEvaluator <EvalT> (ev);
283
- }
255
+ // ---- Gather coordinates
256
+ ev = evalUtils.constructGatherCoordinateVectorEvaluator ();
257
+ fm0.template registerEvaluator <EvalT> (ev);
284
258
285
259
// --- Compute actual thickness --- //
286
260
p = Teuchos::rcp (new Teuchos::ParameterList (" Update Thickness" ));
0 commit comments