File tree Expand file tree Collapse file tree
examples/transient/transient_ex3 Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -499,12 +499,11 @@ void ClawSystem::assemble_avg_coupling_matrices()
499499
500500 // Find their locations on the neighbor
501501 std ::vector < Point > qface_neighbor_points ;
502- FEInterface ::inverse_map (
503- elem -> dim (),
504- fe_type ,
502+ FEMap ::inverse_map (
503+ neighbor -> dim (),
505504 neighbor ,
506- qface_points ,
507- qface_neighbor_points );
505+ /*physical_points*/ qface_points ,
506+ /*reference_points*/ qface_neighbor_points );
508507
509508 // Calculate the neighbor element shape functions at those locations
510509 fe_neighbor_face -> reinit (neighbor , & qface_neighbor_points );
@@ -668,12 +667,11 @@ void ClawSystem::assemble_jump_coupling_matrix()
668667
669668 // Find side QP locations in neighbor side reference space
670669 std ::vector < Point > qface_neighbor_points ;
671- FEInterface ::inverse_map (
672- elem -> dim (),
673- fe_type ,
670+ FEMap ::inverse_map (
671+ neighbor -> dim (),
674672 neighbor ,
675- qface_points ,
676- qface_neighbor_points );
673+ /*physical_points*/ qface_points ,
674+ /*reference_points*/ qface_neighbor_points );
677675
678676 // Calculate the neighbor element shape functions at those locations
679677 fe_neighbor_face -> reinit (neighbor , & qface_neighbor_points );
You can’t perform that action at this time.
0 commit comments