-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHome.py
More file actions
22 lines (17 loc) · 742 Bytes
/
Home.py
File metadata and controls
22 lines (17 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import streamlit as st
st.set_page_config(
page_title="UCNPs virtual lab",
page_icon="🧪",
layout="wide",
initial_sidebar_state="expanded"
)
st.title("UCNPs Virtual Lab (Beta)")
st.markdown("""
---
This app was developed for sharing data regarding studies on the internal quantum yield of UCNPs.
For more information on the mathematical modelling check the following paper: (Coming soon!)
This is a virtual lab to test how different parameters of UCNP compounds affect
the population densities, luminescence and internal quantum yield of the energy levels of the rare-earth elements embedded in the host matrix.
Navigate to the `simulation` tab in the sidebar and play with the parameters available there.
Enjoy!
""")