1-include ../../../../../petscdir.mk 2 3MANSEC = DM 4 5include ${PETSC_DIR}/lib/petsc/conf/variables 6include ${PETSC_DIR}/lib/petsc/conf/rules 7 8NP=1 9N=1 10P=1 11ORDER=2 12 13run: 14 -${MPIEXEC} -n ${NP} ${MPIEXEC_TAIL} ./ex2 -dim 2 -pc_type lu -faces ${N} -particles_cell ${P} -petscspace_order ${ORDER} -petscfe_default_quadrature_order ${ORDER} -dm_view hdf5:sol.h5 -fhat_view hdf5:sol.h5::append -rhs_view hdf5:sol.h5::append -simplex 0 -function linear -mesh_perturbation 1.e-21 -particle_perturbation 1.e-22 15 -@${PETSC_DIR}/lib/petsc/bin/petsc_gen_xdmf.py sol.h5 16 17