-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHello.py
76 lines (60 loc) · 2.26 KB
/
Hello.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import streamlit as st
from Utilities import utilities as ut
st.set_page_config(
page_title = 'Welcome',
page_icon = "👷♀️",
initial_sidebar_state ="expanded",
layout = "wide"
)
st.title('Welcome to Metalurg.IA Software Probe')
ut.logo()
st.sidebar.success("This is a Metlaurg.IA App, choose a tool 👆 o go home 🏠 to explore the menu")
st.write("""This is a demo app who contains some useful tools for fast calculations and application for mineral processing.
Please explore our fast tools and mass balance:
""")
col1, col2 = st.columns(2)
with col1:
with st.container(border = True):
st.write("**Calcs**")
st.page_link("pages/1_Tools.py" ,label = """
#Tools:
1️⃣ Mill Charge Level.
2️⃣ %Sol to Pulp Density
3️⃣ Pulp Density to %Sol
4️⃣ Recovery Calc""",
icon = "🧰",
use_container_width = False)
with st.container(border = True):
st.write("**Mass Balance**")
st.page_link("pages/2_Hidrocilon_mass_balance.py" ,label = """
Hydrocyclon Mass Balance""",
icon = "🌪️")
st.page_link("pages/6_MB_Direct_Grinding_Circuit.py",
label = """
➡️ Direct Circuit Mass Balance
""",
icon = "🌊")
st.page_link("pages/7_MB_Reverse_Grinding_Circuit.py",
label = """
⬅️ Reverse Circuit Mass Balance
""",
icon = "🌊")
with col2.container(border = True):
st.write("**Metallurgical Balance**")
st.page_link("pages/3_MB_1_Concentrate.py", label = """
1️⃣ Mass Balance: Two products
""", icon = "⚖️")
st.page_link("pages/4_MB_2_Concentrates.py", label = """
2️⃣ Mass Balance: Three products
""", icon = "⚖️")
st.page_link("pages/5_MB_3_Concentrates.py", label = """
3️⃣ Mass Balance: Four products
""", icon = "⚖️")
st.markdown(
"""
This is a Demo for the use of Metallurgical Applications in web browser.
### About Us
- Take a Look of our block (Spanish) [Metarlurg.IA Blog](https://metalurg-ia.blogspot.com/).
- Our LinkedIn Profiles:
- [Clayton Jhordan Iliquin Zavaleta](https://www.linkedin.com/in/clayton-jhordan-iliquin-zavaleta/)
""")