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
vote
0 answers

Using the GPU with Lux and NeuralPDE Julia

I am trying to run a model using the GPU, no problem with the CPU. I think somehow using measured boundary conditions is causing the issue but I am not sure. I am following this example: https://docs.sciml.ai/dev/modules/NeuralPDE/tutorials/gpu/.…
1
vote
1 answer

Solving a heat equation using Julia

I am new user of Julia and I want to use it for solving PDEs and ODEs numerically. I am trying to run examples that are available in Julia website or GitHub but I get error. For instance I want to run this example: using OrdinaryDiffEq,…
Rock
  • 51
  • 7
1
vote
2 answers

How to print the contents of an instance in java or pde?

class bouncingBall(): def __init__(self, bounce, window, position): self.bounce = bounce self.window = window self.position = position ball = bouncingBall(0.35, 1.5, 0.75) print(ball) # <__main__.bouncingBall object at…
Gunty
  • 1,841
  • 1
  • 15
  • 27
1
vote
0 answers

nonlinear Schroedinger equation resolution with split step method

I'm trying to resolve a nonlinear PDE Schrödinger equation with the split-step Fourier pseudo-spectral method. The fonction "solver" is supposed to solve the time and space dependant equation with the split-step method but it gives values…
rbalint99
  • 11
  • 1
1
vote
0 answers

Finite volume method from C to MATLAB

I am trying to re write my code implementing on a C compilator in MATLAB. The aim is to solve using finite volume method the equation below : With : I am applying the method such that : ## Code mandatory declarations: */ #include…
KarlZ
  • 19
  • 3
1
vote
0 answers

Python 1D PDE Using the Implicit Method

How would I code the equation and the initial and boundary conditions of the problem below? I did them by hand but I'm unsure of how to code them. I also attached the code I have so far. I know what I coded below is incorrect, but it is somewhat…
1
vote
0 answers

MATLAB resolution of a 6-th order non-linear differential equation [stiffness]

I am currently trying to solve a non-linear differential equation of order 6 for a function F defined on : Or : With these following boundary conditions : And an additional integral condition that is written : I am using MATLAB in order to do so…
Wiss
  • 145
  • 6
1
vote
0 answers

How to input a general non-linear pde at py-pde (python)?

I'm trying to use py-pde to simulate the mean curvature flow for a 2d-graph z=u(x,y). The equation for the Mean Curvature Flow has a term with the Hessian of the function u see the equations here (D_i denotes the derivatives with respect to x and y,…
1
vote
0 answers

Exporting a plugin from Eclipse: JDTCompilerAdapter not found

I'm trying to update an old eclipse plugin to work on the more recent version of Eclipse. Everything compiles fine, but when I try to export the plugin, I get the following error: Class not found: org.eclipse.jdt.core.JDTCompilerAdapter Any clue as…
Talin
  • 1,397
  • 2
  • 15
  • 30
1
vote
1 answer

Eclipse PDE plugin is not load in target Platform, debugging works

I try to make my first plugin for Eclipse. To do it, I have defined a Target Platform and has created a small hello world Plugin. It has the Extension Point org.eclipse.ui.startup. When I run the Plugin in debug mode, the target will load and prints…
1
vote
1 answer

How to solve a 4th order differential equation in space and time variables in Julia

I am relatively new to solving differential equations in Julia and thus cant figure out how to solve a higher order ode in 2 independent variables(space and time) and thus would request for assistance. I am trying to plot the curve using Julia…
Rodash
  • 13
  • 2
1
vote
1 answer

Problem with PDE (Print Dialog Extension) on Mac OS X

I try to make PDE, but when I open a print dialog and want to select my pane I see only that message: "The package "MyPDE" could not be loaded because it contains no version for the current architecture.". I compiled it with different options for…
Bartosz Bialecki
  • 4,391
  • 10
  • 42
  • 64
1
vote
2 answers

Solving 1D heat equation on GPU in Numba

I am new to the use of GPUs, and I am trying to write a kernel in Numba to solve numerically the 1D heat equation. I also wrote a Numpy version of the PDE solver, and it turned out that the GPU kernel doesn't provide the correct result. Below I show…
user2983638
  • 903
  • 1
  • 13
  • 20
1
vote
0 answers

Eclipse PDE: Open internal web browser in specific position

I want to open the Eclipse internal Web browser programmatically on the right side of the editor area, regardless of the open perspective. I have no problem doing it in the main editor area, but when I open the browser as (or inside) a View, it is…
Yaron
  • 11
  • 1
1
vote
1 answer

In matter of PDEs, can I use ODE solvers for each step?

I have equations like this: wl[n]= w[n] + Δx*v[n] ϕl[n]= ϕ[n] + Δx*ρ[n] ρl[n] = ρ[n] - Δt*fρ(ρ,v,w,n) vl[n] = v[n] - Δt*fv(ρ,v,w,Δx,n) Simulating these equations: Can I use ODE solvers to do it in time, then in space. Or, else, is there a Julia…
BuddhiLW
  • 608
  • 3
  • 9