1 2CFLAGS = 3FFLAGS = 4CPPFLAGS = 5FPPFLAGS = 6LOCDIR = src/dm/impls/swarm/tests/ 7EXAMPLESC = ex1.c ex2.c ex4.c ex5.c 8EXAMPLESF = 9MANSEC = DM 10 11include ${PETSC_DIR}/lib/petsc/conf/variables 12include ${PETSC_DIR}/lib/petsc/conf/rules 13include ${PETSC_DIR}/lib/petsc/conf/test 14 15NP=1 16N=1 17P=1 18ORDER=2 19 20run: 21 -${MPIEXEC} -n ${NP} ./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 22 -@${PETSC_DIR}/lib/petsc/bin/petsc_gen_xdmf.py sol.h5 23 24