ImperialCollegeLondon / AI4PDEs

PDE solvers expressed as neural networks
MIT License
5 stars 0 forks source link

separate operators #28

Open lm2612 opened 2 weeks ago

lm2612 commented 2 weeks ago

Instead of w1, w2, w3 ... = get_weights_linear_2D we would like to have separate functions for each operators. We also suggest renaming them to be more clear to users. Then users can construct their own equations more easily. e.g.,

xadv_weights = get_xadv_weights_2D(...)
yadv_weights = get_yadv_weights_2D(...)