Questions tagged [pde]

Use this tag for questions about partial differential equations. For questions about the Eclipse Plugin Development Environment, use eclipse-pde instead.

Partial Differential Equations are differential equations that contain unknown multivariable functions and their partial derivatives. See [http://en.wikipedia.org/wiki/Partial_differential_equation][1]

The Eclipse Plug-in Development Environment (PDE) provides tools to create, develop, test, debug, build and deploy Eclipse plug-ins, fragments, features, update sites and RCP products. PDE also provides comprehensive OSGi tooling. See [http://www.eclipse.org/pde/][2]

Questions about the Eclipse Plug-in Development Environment are better tagged as 'eclipse-pde'.

See

Partial_differential_equation

Eclipse Plug-in Development Environment

477 questions
-1
votes
1 answer

Need suggestions on which plugin to install from eclipse market?

I am developing a new plugin in eclipse. I need a plugin from internet (for eclipse, of course) which I can dissect and understand its implementation (by looking into plugin.xml etc.). It would help me create my own plugin. I want your help in…
user4252523
  • 69
  • 2
  • 8
-1
votes
1 answer

How to resolve the error 'mat1 and mat2 shapes cannot be multiplied (1000x1 and 3x512)' in NeuroDiffEq?

I'm new to neural networks and have a basic understanding of how they are used. I am trying to solve the Spherical Laplace Equation with boundary conditions: u(r=0)=u(r=1)=0 for all theta and phi, using Artificial Neural Networks(ANN), in…
-1
votes
1 answer

Problem in 2D heat equation solution using FDM in Matlab

I am trying to solve the 2D time dependent heat equation using finite difference method in Matlab. The code is below: %Spatial variable on x direction Lx=1; delta=0.1; xmin=-Lx/2; xmax=Lx/2; Nx=(xmax-xmin)/delta; x=linspace(xmin,xmax,Nx); %Spatial…
User123
  • 29
  • 9
-1
votes
1 answer

Using Finite Element Method for Partial Differential Equation Methods in Image Inpainting

How does one traverse through a corrupted grayscale image fixing all the corrupted pixels in it without checking the pixels that are not corrupted? Any help would be greatly appreciated. P.S. I have an algorithm that fixes corrupted pixels by…
Bloggs
  • 3
  • 2
-1
votes
1 answer

Function defined as an integral: trapz?

I want to calculate a function p of x,y: p(x,y) which is defined by the integral of another function of x and y: p(x,y) = Integral(indefinite) of v(x,y) dx Now, if I have a matrix expressing p on a uniform grid x and y, how do I construct the…
usumdelphini
  • 213
  • 1
  • 11
-1
votes
1 answer

Solving PDE with Matlab

`sol = pdepe(m,@ParticleDiffusionpde,@ParticleDiffusionic,@ParticleDiffusionbc,x,t); % Extract the first solution component as u. u = sol(:,:,:); function [c,f,s] = ParticleDiffusionpde(x,t,u,DuDx) global Ds c = 1/Ds; f = DuDx; s = 0; function…
-1
votes
1 answer

How to solve two coupled nonlinear Schrodinger equations in MATLAB?

The two coupled equations are as follows: where i->sqrt(-1); 'u_t' refers to the first order derivative w.r.t. the time 't', 'u_z' is the first order derivative w.r.t. 'z', similarly, 'u_tt' means second order derivative w.r.t. time. |u|^2 is…
Miracles
  • 21
  • 7
-2
votes
1 answer

Solving a second order partial differential equation with bounday limits

I'm trying to solve this equation: d2u/dx2 + d2u/dy2 = u +3 With the following boundary limits: u(0, y)=0 u(1, y)=0 for 0
spaldix
  • 7
  • 3
-2
votes
1 answer

high order number in computer simulation

I wrote a Fortran code to solve PDE (like continuity equation) but the initial value of unknown are in order of 1.0e20 this imply my code to give NANE (not number) of infinity because it's multiplying or dividing big number what can I do to run…
-2
votes
1 answer

How to add new command this?

user3639147
  • 103
  • 1
  • 1
  • 4
-2
votes
1 answer

(PDE / Eclipse Plug-in Development) How to set layout SWT & JFace?

https://i.stack.imgur.com/DK6q0.png This layout is GridLayout. Text, Label and Button is element of SWT. So, there use set GridData. But TreeViewer is a element of JFace. It is can't use GridData. I Want to TreeViewer's size is fill horizontal.
user3639147
  • 103
  • 1
  • 1
  • 4
-4
votes
1 answer

Solving a PDE with sympy or matlab

i would like to know how to solve the following PDE with sympy or matlab thanks in advance.
Bolor
  • 413
  • 6
  • 14
1 2 3
31
32