Transforming linear pde to code equation
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi everyone,
Please how can I transform linear pde to code equation. The equations are in the attached file
BC:
theta(0,t) = theta(d,t) = 0
v(0, t) = v(d,t) = 0
2 Kommentare
Antworten (1)
SAI SRUJAN
am 10 Okt. 2023
Hi ,
I understand that you are trying to convert linear pde into a code equation.
You can follow the below given example to resolve the issue.
syms f(x,y) x y
eqn1=diff(f,x)
eqn2=diff(diff(f,x),x)
eqn3=diff(diff(f,x),y)
The MATLAB function "diff" can be used to convert partial differential equations into code equations, you can refer to the above example to proceed further. For a comprehensive understanding of the "diff" function in MATLAB, please refer to the provided documentation below.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Geometry and Mesh finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!