Inverse PINN Problem - General Questions #1644
Unanswered
KostasVog20
asked this question in
Q&A
Replies: 2 comments
-
|
@lululxvi can you please help me !! |
Beta Was this translation helpful? Give feedback.
0 replies
-
Not necessary, but usually helps.
"anchors" is OK.
You can use all training data.
No.
It is the period to print the results. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello everyone, I just wanted to express how incredible the DeepXDE package is! It truly stands out as an exceptional tool.
I am endeavoring to utilize the DeepXDE package for solving an inverse problem involving parameter identification. Specifically, I am dealing with a system of three coupled partial differential equations (PDEs) where two parameters, Deff and um, need to be identified. The general form of my system is:
T = y[:, 0:1] # temperature
S1 = y[:, 1:2] # endothermic fuel
S2 = y[:, 2:3] # exothermic fuel
dT_x = dde.grad.jacobian(y, x, i = 0, j = 0) # dT/dx
dT_xx = dde.grad.hessian(y, x, component = 0, i = 0, j = 0) # d^2T/dx^2
dT_t = dde.grad.jacobian(y, x, i = 0, j = 1) # dT/dt
dS1_t = dde.grad.jacobian(y, x, i = 1, j = 1) # dS1/dt
dS2_t = dde.grad.jacobian(y, x, i = 2, j = 1) # dS2/dt
Eq1 = (dT_t - 0.38 * (Deff * dT_xx - um * dT_x) + 938.46 * S1 * 30 * tf.exp( - 4500 / T) - 8546.15 * S2 * ((40 * tf.exp( - 7000 / T) * 0.002) / (40 * tf.exp( - 7000 / T) + 0.002)) + 0.009 * (T - 300))
Eq2 = dS1_t + S1 * 30 * tf.exp( - 4500 / T)
Eq3 = dS2_t + S2 * ((40 * tf.exp(- 7000 / T) * 0.002)/(40 * tf.exp( - 7000 / T) + 0.002))
This is an 1D spatiotemporal problem with x in [0, 100] m and t in [0, 200] s. The temperature values are in the interval of [300, 2000] K and S1, S2 in [0, 1]. To train the model, I generated data like: x = [0, 1, 2, .........., 100] and t = [0, 1, 2, ......., 200] and T, S1, S2 are the corresponding matrices with values at these specific spatial and temporal points. I have several general questions that I'd like to ask, and I would appreciate it if you could provide answers:
Your assistance would be greatly appreciated.
Beta Was this translation helpful? Give feedback.
All reactions