On Sep 20, 2011, at 11:43 AM, list user wrote:
> Does FiPy also have a corresponding lattice that spans the domain? For
> instance:
> mesh = PeriodicGrid2D(dx=dx, dy=dy, nx=nx, ny=ny)
> phi = CellVariable(name = "periodic",
>mesh = mesh,
>value = 0.0)
> p
Hi Dan,
Does FiPy also have a corresponding lattice that spans the domain? For
instance:
mesh = PeriodicGrid2D(dx=dx, dy=dy, nx=nx, ny=ny)
phi = CellVariable(name = "periodic",
mesh = mesh,
value = 0.0)
phi[0] = 1000
places a pulse at 0,0. Does this mean ther
On Tue, Sep 20, 2011 at 10:11 AM, list user wrote:
> Is it possible to set the concentration in a specific cell?
Yes as long as you can identify the cell geometrically. You can do
something like this where X and Y are the closest points to the cell
that needs changing and var is the cell variabl
Is it possible to set the concentration in a specific cell? It's my
understanding that CellVariable will allow the user to define an intial
concentration for the entire field but I can't seem to find a method to set
a _pulse_ of concentration.