-
-
Notifications
You must be signed in to change notification settings - Fork 221
Open
Labels
Description
I am moving this over here from the Discourse as per Chris's request. A short summary is below.
Essentially I'm trying to use random noise as the initial condition of my simulation of the PDEs shown in that thread. Currently, I have
bcs = [c₁(0,x) ~ rand(),
c₂(0,x) ~ rand(),
c₁(t,0) ~ 0.,
c₂(t,0) ~ 0.,
c₁(t,30) ~ 0.,
c₂(t,30) ~ 0.]
But this generates a single value as the initial condition instead of changing it every time as per Chris. I am not sure how to proceed, something was mentioned about solving over all initial conditions and using that as an extra dimension but I don't quite understand this, I'm very new to PINNs.
Thanks!