Skip to content

Commit 2e9f493

Browse files
committed
fix doc mistake
1 parent 1cb8c34 commit 2e9f493

File tree

1 file changed

+2
-2
lines changed
  • tidy3d/components/tcad/boundary

1 file changed

+2
-2
lines changed

tidy3d/components/tcad/boundary/heat.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ class ConvectionBC(HeatChargeBC):
133133
>>>
134134
>>> # Next, create the model, which requires the fluid and a characteristic length.
135135
>>> natural_conv_model = td.VerticalNaturalConvectionCoeffModel.from_si_units(
136-
... medium=air, characteristic_length=1e-5
136+
... medium=air, plate_length=1e-5
137137
... )
138138
>>>
139139
>>> # Finally, create the boundary condition using this model.
@@ -143,7 +143,7 @@ class ConvectionBC(HeatChargeBC):
143143
144144
>>> # If the fluid medium is not provided to the coefficient model, it is automatically retrieved from
145145
>>> # the interface.
146-
>>> natural_conv_model_nom = td.VerticalNaturalConvectionCoeffModel.from_si_units(characteristic_length=1e-5)
146+
>>> natural_conv_model_nom = td.VerticalNaturalConvectionCoeffModel.from_si_units(plate_length=1e-5)
147147
>>> bc_natural_nom = td.ConvectionBC(
148148
... ambient_temperature=300, transfer_coeff=natural_conv_model
149149
... )

0 commit comments

Comments
 (0)