polykin.transport.diffusion¤
uptake_sheet ¤
uptake_sheet(t: float, a: float, D: float) -> float
Fractional mass uptake for transient diffusion in a plane sheet.
For a plane sheet of thickness \(2a\), with diffusion from both faces, where the concentration is initially \(C_0\) everywhere, and the concentration at both surfaces is maintained at \(C_s\), the fractional mass uptake is:
where \(t\) is the time, and \(D\) is the diffusion coefficient.
Tip
This equation is also applicable to a plane sheet of thickness \(a\) if one of the faces is sealed.
References
- J. Crank, "The mathematics of diffusion", Oxford University Press, 1975, p. 48.
PARAMETER | DESCRIPTION |
---|---|
t
|
Time (s).
TYPE:
|
a
|
Half thickness of sheet (m).
TYPE:
|
D
|
Diffusion coefficient (m²/s).
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
float
|
Fractional mass uptake. |
See also
profile_sheet
: related method to determine the concentration profile.
Examples:
Determine the fractional mass uptake after 100 seconds for a polymer solution film with a thickness of 0.2 mm and a diffusion coefficient of 1e-10 m²/s.
>>> from polykin.transport.diffusion import uptake_sheet
>>> uptake_sheet(t=1e2, a=0.2e-3, D=1e-10)
0.562233541762138
Source code in src/polykin/transport/diffusion.py
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 |
|