Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -415,7 +415,7 @@ with tab1:
|
|
415 |
|
416 |
**High y Expression (Green):**
|
417 |
```
|
418 |
-
(
|
419 |
```
|
420 |
where a = z_a
|
421 |
""")
|
@@ -448,10 +448,10 @@ with tab3:
|
|
448 |
col1, col2 = st.columns([1, 2])
|
449 |
|
450 |
with col1:
|
451 |
-
z = st.slider("z", min_value=-10.0, max_value=
|
452 |
-
y_3 = st.slider("y", min_value=0.1, max_value=
|
453 |
beta_3 = st.slider("β", min_value=0.0, max_value=1.0, value=0.5, step=0.01, key="beta_3")
|
454 |
-
a = st.slider("a", min_value=0.1, max_value=
|
455 |
|
456 |
st.subheader("s Range")
|
457 |
s_min = st.number_input("s_min", value=-5.0)
|
@@ -462,7 +462,7 @@ with tab3:
|
|
462 |
intersection_guesses = st.slider("Intersection search points", min_value=200, max_value=2000, value=1000, step=100)
|
463 |
intersection_tolerance = st.select_slider(
|
464 |
"Intersection tolerance",
|
465 |
-
options=[1e-6, 1e-8, 1e-10, 1e-12, 1e-14],
|
466 |
value=1e-10
|
467 |
)
|
468 |
|
|
|
415 |
|
416 |
**High y Expression (Green):**
|
417 |
```
|
418 |
+
(- 4 a ( a - 1 )*y*β - 2a*y + 2a*( 2 a - 1 ) )/( 1 - 2 a )
|
419 |
```
|
420 |
where a = z_a
|
421 |
""")
|
|
|
448 |
col1, col2 = st.columns([1, 2])
|
449 |
|
450 |
with col1:
|
451 |
+
z = st.slider("z", min_value=-10.0, max_value=10000.0, value=1.0, step=0.1)
|
452 |
+
y_3 = st.slider("y", min_value=0.1, max_value=1000.0, value=1.0, step=0.1, key="y_3")
|
453 |
beta_3 = st.slider("β", min_value=0.0, max_value=1.0, value=0.5, step=0.01, key="beta_3")
|
454 |
+
a = st.slider("a", min_value=0.1, max_value=1000.0, value=1.0, step=0.1)
|
455 |
|
456 |
st.subheader("s Range")
|
457 |
s_min = st.number_input("s_min", value=-5.0)
|
|
|
462 |
intersection_guesses = st.slider("Intersection search points", min_value=200, max_value=2000, value=1000, step=100)
|
463 |
intersection_tolerance = st.select_slider(
|
464 |
"Intersection tolerance",
|
465 |
+
options=[1e-6, 1e-8, 1e-10, 1e-12, 1e-14,1e-16,1e-18,1e-20],
|
466 |
value=1e-10
|
467 |
)
|
468 |
|