tmp commit - toward 0.0.1
This commit is contained in:
16
pina/problem2d.py
Normal file
16
pina/problem2d.py
Normal file
@@ -0,0 +1,16 @@
|
||||
from .problem import Problem
|
||||
|
||||
|
||||
class Problem2D(Problem):
|
||||
|
||||
spatial_dimensions = 2
|
||||
|
||||
@property
|
||||
def boundary_condition(self):
|
||||
return self._boundary_condition
|
||||
|
||||
@boundary_condition.setter
|
||||
def boundary_condition(self, bc):
|
||||
self._boundary_condition = bc
|
||||
|
||||
|
||||
Reference in New Issue
Block a user