Skip to content
Snippets Groups Projects
Commit fdfe6143 authored by Delvigne Frank's avatar Delvigne Frank
Browse files

Upload New File

parent a0296c92
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Wed Mar 9 11:23:17 2022
@author: delvigne
"""
'''
Exercice 2.13 -> Kla measurement based on gassing-in/out method
'''
# datapoints
t1 = 2
t2 = 44
lnCL1 = 4.38
lnCL2 = 2.9
slope = (lnCL2 - lnCL1)/(t2 - t1)
KLa = -slope
print(KLa)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment