Skip to content
Snippets Groups Projects
Commit bc7c77f2 authored by Alexandros Asonitis's avatar Alexandros Asonitis
Browse files

normalization factor

parent ad819d11
No related branches found
No related tags found
No related merge requests found
...@@ -221,5 +221,10 @@ def save_to_file(measurement,file,df,sample,integration,Vgs,Vds=None): ...@@ -221,5 +221,10 @@ def save_to_file(measurement,file,df,sample,integration,Vgs,Vds=None):
f.write(df.to_string()) f.write(df.to_string())
#normalization factor to is for both normalizations 10**6/width mA/mm = µA/µm = 10**(-6)A/µm (returned from the tool)
def normalization_factor(width):
factor = 10**6/width
return factor
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment