I’m running the code in jorgensd/dolfinx_ipcs: Simple IPCS solver for dolfinx.
I ran the code as follows:
- download the docker and git clone the repository;
- run
python3 create_and_convert_2D_mesh.py
in command line; - run
python3 DFG_benchmark.py
in command line.
And I make sure I can save output successfully. I changed the DFG_benchmark.py
as follows:
def IPCS(outdir: Path, dim: int, degree_u: int,
jit_options: dict = {"cffi_extra_compile_args": ["-Ofast", "-march=native"], "cffi_libraries": ["m"]}):
......
# Solve problem
N = int(T / dt)
if has_tqdm:
time_range = tqdm(range(N))
else:
time_range = range(N)
# Save Velocity and Time.
velocity = []
U = uh.x.array[0::2].reshape((-1,1))
V = uh.x.array[1::2].reshape((-1,1))
UV = np.hstack((U, V))
velocity.append(UV)
time_step = []
time_step.append(t)
for i in time_range:
......
with common.Timer("~IO"):
if i % 5 == 4:
# print('Current time: ', t)
# print('Current Iteration: ', i)
U = uh.x.array[0::2].reshape((-1,1))
V = uh.x.array[1::2].reshape((-1,1))
UV = np.hstack((U, V))
velocity.append(UV)
time_step.append(t)
savemat('./DFG-2D3.mat', \
{'U_star': np.array(velocity), 't': np.array(time_step).reshape((-1,1))}, \
do_compression=True)
print('matrix file saved :D')
The above code saves the output at the mesh nodes, which is not free.
Now I want to save the output at points selected by user, such as (0,0), (0.1,0.1), …, how can I achieve this?