How can we save transient CFD results in a file during running the code?

조회 수: 6 (최근 30일)
Ahmed Saeed Mansour
Ahmed Saeed Mansour 2019년 1월 20일
댓글: Ahmed Saeed Mansour 2019년 1월 21일
  • Hello, I have a CFD code solves a domain and generates transient resluts, I can plot the results vs time but howcan we save the time history of the results in a file during running the code?
  • Thank you!

답변 (1개)

Precise Simulation
Precise Simulation 2019년 1월 21일
It is hard to say what the best approch is without knowing anything about your code, but assuming you have access to the data why not just use the standard save command? Something like
filename = sprintf('cfd_data_at_time_%g.dat',t);
save( filename, cfd_data_at_time_step )
where t is the simulation time, and cfd_data_at_time_step a variable containing you data to save. This will save it in binary format, you can add the "-ascii" flag to save it as a text file.
  댓글 수: 1
Ahmed Saeed Mansour
Ahmed Saeed Mansour 2019년 1월 21일
Hello, thank you so much, here is the main lines of the code:
n = n + 1;
T_n = T;
for j = 2:ny-1
for i = 2:nx-1
T(j,i) = T_n(j,i) + r_x*(T_n(j,i+1)-2*T_n(j,i)+T_n(j,i-1))...
+ r_y*(T_n(j+1,i)-2*T_n(j,i)+T_n(j-1,i));
end
end
It solves the heat transfer at each time step, the question is, where can we put the 2 save lines you thankfully worte above? in the loop or outside it? I get an error " Argument must contain a string." I am using GUI.
Thank you and tell me please if you need anything else...

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Computational Fluid Dynamics (CFD)에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by