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
2
votes
2 answers

Logback or Eclipse logger in Eclipse RCP based products

From Eclipse experts I want to know whether it is good to use log framework org.eclipse.e4.core.services.log.Logger provided by Eclipse RCP in RCP based products or shall we use logback in Eclipse RCP? I am using Eclipse E4 for developing. The…
babyinEclipse
  • 505
  • 11
  • 21
2
votes
3 answers

Matrix to generate finite difference

I'm implementing a finite difference scheme for a 2D PDE problem. I wish to avoid using a loop to generate the finite differences. For instance to generate a 2nd order central difference of u(x,y)_xx, I can multiply u(x,y) by the following: Is…
Mike Miller
  • 253
  • 6
  • 18
2
votes
1 answer

Transparent Eclipse Splash Screen in Deployable Feature

I want to customize the splash screen of an eclipse were my Deployable Feature is installed. I do not want to export a RCP - only a Deployable Feature. Setting another SplashScreen-Image works fine, as long as it is a file called "splash.bmp"…
John Doe
  • 179
  • 9
2
votes
0 answers

Partial integro-differential equations

I am new to partial integro-differential equations and currently I am trying to learn to solve this model. To begin with, I try to solve the model given in this paper (e.g. equation (1.6)): http://www.cmc.edu/pages/faculty/CKao/KaoLouShen2.pdf The…
2
votes
0 answers

How to plot a 3d graph using d3.js

how to plot a 3d graph with d3.js for z=x+y .I need to plot graph for partial differential equations.My project involves solving partial diffferential equation and ploting it using a graph
user1989
  • 163
  • 7
2
votes
2 answers

Multivariate differentiation in Python

I have a function that I want to simplify and differentiate in Python, defined as** def u(x, t): return math.erf((x + 1) / (2 * (k * t) ** (1 / 2))) ** Please correct me if I am wrong. I have all the necessary imports as follows: import…
AnonymousAngelo
  • 996
  • 3
  • 15
  • 37
2
votes
2 answers

FiPy not working

After a fresh installation of FiPy on a Mac (OS X 10.10.2 and Python 2.7.6) I tried some example from the documentation, but they didn't work. So I tested FiPy using the built-in test routine (typing "fipy.test()" from the python shell) but after a…
user4745703
2
votes
0 answers

MATLAB: incorrect computation for 1D parabolic-elliptic system with pdepe

I have found that MATLAB solves 1D parabolic-elliptic system incorrectly by using pdepe function when Robin boundary conditions are specified. See,…
jokersobak
  • 141
  • 3
2
votes
1 answer

Efficiently computing the 3D Laplacian using FFT and Python

For solving a PDE (Schrödinger equation), I need to compute the Laplace operator in three dimensions. My current solution is this (part of the code which requires by far the most time): for n in range(Ntstep): # loop for i in…
Micha
  • 349
  • 3
  • 14
2
votes
2 answers

Hide/Restrict/Protect code in Eclipse

I am currently planning on making a eclipse a plugin and one of the functionality of it would require me to be able to block certain code. i.e. if person one sets it so that code A is blocked,person two cannot change any of that code and also if…
Ramis
  • 329
  • 1
  • 4
  • 14
2
votes
1 answer

Derivatives Discretization with Sympy

Is there a way to discretize the derivative of an unknown function in sympy? I am trying to achieve the following: from sympy import * >>> f = Function('f') >>> x = Symbol('x') >>> dfdx = Derivative(f(x),x).somemethod() >>> print dfdx (f(x+1)…
memecs
  • 7,196
  • 7
  • 34
  • 49
2
votes
0 answers

How do I put boundary conditions in 1D Heat Equation?

I am trying to solve a problem of 1D heat equation, where u[x,t] is the density of energy in a uni-dimensional bar, in the time t=0 all the energy is concentrated in the point x=0. I want to find solutions for a given time, like t= 64, 128,256,…
Viphys
  • 21
  • 3
2
votes
1 answer

Package to solve nonlinear antiparabolic PDE in C/C++

I would like to solve the following PDE for the two-variable function f(q,y) d f(q,y) / dq + 1/2 (d^2f(q,y)/dy^2 + x(q)*(df(q,y)/dy)^2) = 0, in the interval -\inf < y < \inf, 0<=q<=1 and with boundary condition f(1,y) = g(y), where g(y) is a known…
James
  • 383
  • 1
  • 4
  • 15
2
votes
2 answers

Tycho cannot resolve Require-Bundle: org.sample.ide.common;bundle-version="1.0.0.qualifier"

I build an Eclipse plug-in project with Tycho. I got this error message. [ERROR] Cannot resolve project dependencies: [ERROR] Software being installed: org.sample.ide.core 1.0.0.qualifier [ERROR] Missing requirement: org.sample.ide.core…
2
votes
2 answers

Eclipse PDE project, add bundle dependency

In a PDE project is there a way to add third party bundles from the file system as a dependency for my project? I am looking to do the same thing that the BND tool allows; add a bundle to the local repository and then import the packages from that…
golfradio
  • 457
  • 3
  • 7
  • 17