Giter Club home page Giter Club logo

Comments (4)

praksharma avatar praksharma commented on July 3, 2024

What is gaussian_wave() and func_zero_IC? Remember the function must take a tensor a return a tensor.

from deepxde.

hannanmustajab avatar hannanmustajab commented on July 3, 2024

@praksharma Hey, This is

def func_zero(X):
    return np.zeros((len(X),1))

def func_zero_IC(X):
    return np.zeros((len(X),1))

def gaussian_wave(x,y):
    return torch.exp(-0.5* (((x-0)/0.3)**2 + ((y-0)/0.3)**2))  

These conditions fit well, the only problem is with this condition:

dt_IBC0 = dde.NeumannBC(geomtime,func_zero_IC,boundary_initial_dt)

Regards
Hannan

from deepxde.

lululxvi avatar lululxvi commented on July 3, 2024

The use of dde.NeumannBC looks good in the first code. But I don't really understand your second code.

from deepxde.

hannanmustajab avatar hannanmustajab commented on July 3, 2024

Hey, thanks for your response @lululxvi . Can you please mention the second code that you are referring to here ?

If you mean this one;

disk_domain = dde.geometry.Disk([7, 7], 2)
geom = geom - disk_domain

circle = dde.NeumannBC(geomtime, func_zero, boundary_circle)


def boundary_circle(x, on_boundary):
    #centre (4, 1), radius 0.3disk_domain.on_boundary(x[1]) 
    return on_boundary and disk_domain.on_boundary(x[1]) and disk_domain.on_boundary(x[0]) 

Here my goal is to first create rectangle, then remove a circle / disk from it. Which would be to depict a fracture / crack in the media. And then study the behaviour of wave when it hits that part. So basically the aim here is to create a reflective condition on the boundary of this circle. Can you please tell me if my approach here is right or not ?

Regards
Hannan

from deepxde.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.