#56: Error for internal BCs
---------------------+------------------------------------------------------
Reporter: wd15 | Owner: nobody
Type: defect | Status: closed
Priority: 5 | Component: None
Version: None | Severity: Bugs
Resolution: fixed | Keywords:
---------------------+------------------------------------------------------
Changes (by wd15):
* resolution: None => fixed
* status: assigned => closed
* type: => defect
Old description:
> {{{
> System should throw a meaningful error if BCs are applied to internal
> faces.
> }}}
New description:
{{{
System should throw a meaningful error if BCs are applied to internal
faces.
}}}
Comment:
This is fixed. e.g.
>>> from fipy.meshes.grid1D import Grid1D
>>> mesh = Grid1D(nx=2)
>>> from fipy.boundaryConditions.fixedValue import FixedValue
>>> fv = FixedValue(mesh.getFaces()[1], 0)
Traceback (most recent call last):
...
IndexError: Face list has interior faces
--
Ticket URL: <http://matdl-osi.org:9000/fipy/ticket/56>
FiPy <http://www.ctcms.nist.gov/fipy>
A Finite Volume PDE Solver Using Python