Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ the code. Some of those feature can be discussed and are not mandatory:
- Check if multiple materials already works or if continuity and boundary
conditions are needed
- Add test for thermal simulation with convective boundary condition
- Put all nonlinear options into one data class

### Issues

Expand Down
4 changes: 2 additions & 2 deletions plutho/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from .simulation import PiezoSimTime, ThermoPiezoSimTime, MeshData, \
SimulationData, MaterialData, SimulationType, ModelType, \
ThermoSimTime, NonlinearType
ThermoSimTime, NonlinearType, NLPiezoHB, NLPiezoTime, \
Nonlinearity
from .io import parse_charge_hist_file, parse_displacement_hist_file, \
create_vector_field_as_csv, create_scalar_field_as_csv
from .postprocessing import calculate_impedance, \
Expand All @@ -9,4 +10,3 @@
from .single_sim import SingleSimulation, FieldType
from .mesh import Mesh
from .coupled_sim import CoupledThermoPiezoThermoSim, CoupledFreqPiezoTherm
from .nonlinear_sim import PiezoNonlinear
Loading