fsahli / Delta-PINNs

18 stars 4 forks source link

Questioning about other data? #1

Open pvkiennn opened 1 month ago

pvkiennn commented 1 month ago

Firstly, I want to thank you for sharing a fantastic paper. I would like to ask whether you can upload Navier Stokes data.

fsahli commented 1 month ago

Thanks for your interest. However, there is no Navier Stokes example in the paper. Maybe you are referring to another example?

pvkiennn commented 1 month ago

Because I see that code in your project.

class IncNavierStokes4DFlowMRI(PINN): ''' 3D incompressible Navier-Stokes solver '''

Initialize the class

def __init__(self, Re, mu_X = 0.0, sigma_X = 1.0):
    super().__init__(mu_X, sigma_X)
    self.Re = Re
    self.num_loss_terms = 2

and what example is attached to that code? Thank you for your answer

fsahli commented 1 month ago

Oh, sorry for the confusion, but that is an example implemented in the JAX-PINNs library and has nothing to do with our paper.