deepxde icon indicating copy to clipboard operation
deepxde copied to clipboard

Different PDEs for different points

Open bakhtiyar-k opened this issue 10 months ago • 2 comments

Hello,

If I have two sets of collocation points (red and blue), how can I specify two different sets of PDEs for them and run the network training? image

bakhtiyar-k avatar Mar 30 '24 05:03 bakhtiyar-k

I think domain decomposition is not supported by DeepXDE. You can try NVIDIA Modulus as they have a comprehensive library to handle such cases.

praksharma avatar Apr 24 '24 10:04 praksharma

You can use if/where condition to specific the location in your PDE definition.

lululxvi avatar Jun 20 '24 00:06 lululxvi

tf.where(condition, pde_set_1, pde_set_2)?

bakhtiyar-k avatar Jul 10 '24 12:07 bakhtiyar-k

tf.where(condition, pde_set_1, pde_set_2)?

Yes.

lululxvi avatar Aug 15 '24 20:08 lululxvi