@@ -33,7 +33,7 @@ class AbstractChargeMedium(AbstractMedium):
3333 def charge (self ):
3434 """
3535 This means that a charge medium has been defined inherently within this solver medium.
36- This provides interconnection with the `MultiPhysicsMedium` higher-dimensional classes.
36+ This provides interconnection with the :class: `MultiPhysicsMedium` higher-dimensional classes.
3737 """
3838 return self
3939
@@ -77,7 +77,7 @@ class ChargeConductorMedium(AbstractChargeMedium):
7777 conductivity : pd .PositiveFloat = pd .Field (
7878 ...,
7979 title = "Electric conductivity" ,
80- description = f "Electric conductivity of material in units of { CONDUCTIVITY } ." ,
80+ description = "Electric conductivity of material." ,
8181 units = CONDUCTIVITY ,
8282 )
8383
@@ -296,20 +296,24 @@ class SemiconductorMedium(AbstractChargeMedium):
296296
297297 delta_E_g : BandGapNarrowingModelType = pd .Field (
298298 None ,
299- title = r"$\ Delta E_g$ Bandgap narrowing model." ,
299+ title = ":math:` \\ Delta E_g` Bandgap narrowing model." ,
300300 description = "Bandgap narrowing model." ,
301301 )
302302
303303 N_a : Union [pd .NonNegativeFloat , SpatialDataArray , tuple [DopingBoxType , ...]] = pd .Field (
304304 0 ,
305305 title = "Doping: Acceptor concentration" ,
306- description = "Units of 1/cm^3" ,
306+ description = "Concentration of acceptor impurities, which create mobile holes, resulting in p-type material. "
307+ "Can be specified as a single float for uniform doping, a :class:`SpatialDataArray` for a custom profile, "
308+ "or a tuple of geometric shapes to define specific doped regions." ,
307309 units = "1/cm^3" ,
308310 )
309311
310312 N_d : Union [pd .NonNegativeFloat , SpatialDataArray , tuple [DopingBoxType , ...]] = pd .Field (
311313 0 ,
312314 title = "Doping: Donor concentration" ,
313- description = "Units of 1/cm^3" ,
315+ description = "Concentration of donor impurities, which create mobile electrons, resulting in n-type material. "
316+ "Can be specified as a single float for uniform doping, a :class:`SpatialDataArray` for a custom profile, "
317+ "or a tuple of geometric shapes to define specific doped regions." ,
314318 units = "1/cm^3" ,
315319 )
0 commit comments