Skip to content

An implementation of the ALGOIM quadrature method on implicitly defined regions.

License

Notifications You must be signed in to change notification settings

HMegh/QuadratureOnImplicitRegions.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

84 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

QuadratureOnImplicitRegions

Build Status

This package implements a quadrature method on implicitly defined regions based on ideas from the algorithm in:

R. I. Saye, High-Order Quadrature Methods for Implicitly Defined Surfaces and Volumes in Hyperrectangles, SIAM Journal on Scientific Computing, 37(2), A993-A1019 (2015)..

NOTE: For the original C++ implementation, see the Algoim repo. Also, see the Julia wrapper in Algoim.jl.


Alternative package

Due to time constraints, I am no longer able to continue working on this project. Fortunately, there's another Julia package that implements the Algoim algorithm. It offers cleaner code and better performance than my implementation, so I highly recommend using it instead.


Examples

Let $\Omega=[0,1]^2$ and let $\psi(x,y)=x^2+y^2-1$. Our goal is to create quadrature nodes and weights on the subdomains:

$$\Omega_1=\left\{(x,y)\in \Omega : \psi(x,y)<0\right\},\qquad \Omega_2=\left\{(x,y)\in \Omega : \psi(x,y)>0\right\}.$$

using QuadratureOnImplicitRegions

ψ(x)= x'*x-1.0 
a,b=zeros(2), ones(2) #the unit interval. 
quad_order=10

#the nodes and weights on Ω₁
xy1,w1=algoim_nodes_weights(ψ,-1.0, a,b,quad_order)
#the nodes and weights on Ω₂
xy2,w2=algoim_nodes_weights(ψ,+1.0, a,b,quad_order)

To plot the nodes, please see this tutorial and the documentation.

The same syntax can be used for higher dimensional regions. For example, in the case of the intersection of the unit sphere and unit cube, we only need to adjust a and b:

using QuadratureOnImplicitRegions

ψ(x)= x'*x-1.0 
a,b=zeros(3), ones(3) #the unit cube. 
quad_order=5 

xyz1,w1=algoim_nodes_weights(ψ,-1.0, a,b,quad_order)

For the outer region, we only need to change -1.0 to 1.0

About

An implementation of the ALGOIM quadrature method on implicitly defined regions.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages