Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
analist
/
ZenerSimul
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
analist
commited on
Apr 26, 2024
Commit
7ba98cc
·
verified
·
1 Parent(s):
9a4156f
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+2
-0
app.py
CHANGED
Viewed
@@ -1,5 +1,7 @@
1
import streamlit as st
2
3
def production_hydro_moles(i, t):
4
return i * t / 2 * F
5
1
import streamlit as st
2
3
+
4
+
F = 96485
5
def production_hydro_moles(i, t):
6
return i * t / 2 * F
7