Skip to content

Commit

Permalink
Reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriele-ferrero committed Oct 5, 2023
1 parent d13222d commit 73c3de6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/unit/test_boundary_conditions.py
Original file line number Diff line number Diff line change
Expand Up @@ -547,14 +547,14 @@ def test_dissociation_flux_solve():
sim = festim.Simulation()
sim.mesh = festim.MeshFromVertices([0, 1, 2, 3])
sim.materials = festim.Material(id=1, D_0=1, E_D=0)
sim.T =festim.Temperature(value=500)
sim.T = festim.Temperature(value=500)
sim.boundary_conditions = [
festim.DissociationFlux(surfaces=[1], Kd_0=1, E_Kd=0, P=1e4)
]
sim.settings = festim.Settings(
transient=False, absolute_tolerance=1e8, relative_tolerance=1e-8
)
sim.sources=[]
sim.sources = []
sim.dt = None
sim.exports = []
sim.initialise()
Expand Down

0 comments on commit 73c3de6

Please sign in to comment.