Spaces:
Running
Running
File size: 12,199 Bytes
e6cac5c 7dfb0b7 e6cac5c d937c80 e6cac5c d937c80 e6cac5c d937c80 e6cac5c 7dfb0b7 d937c80 7dfb0b7 e6cac5c d937c80 e6cac5c 7dfb0b7 e6cac5c 17bfe96 e6cac5c f0fdb88 7dfb0b7 e6cac5c 17bfe96 e6cac5c 7dfb0b7 e6cac5c 17bfe96 e6cac5c d937c80 e6cac5c d937c80 e6cac5c 17bfe96 e6cac5c d937c80 e6cac5c f0fdb88 7dfb0b7 dba3031 bd9f7b0 dba3031 bd9f7b0 e6cac5c 17bfe96 bd9f7b0 7dfb0b7 bd9f7b0 7dfb0b7 17bfe96 df0fa6f 17bfe96 df0fa6f 17bfe96 df0fa6f d937c80 17bfe96 df0fa6f 17bfe96 d937c80 dba3031 d937c80 dba3031 d937c80 bd9f7b0 d937c80 bd9f7b0 d937c80 dba3031 bd9f7b0 dba3031 d937c80 dba3031 d937c80 dba3031 |
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 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 |
from pathlib import Path
import numpy as np
import pandas as pd
import plotly.colors as pcolors
import plotly.express as px
import plotly.graph_objects as go
import streamlit as st
from mlip_arena.models import REGISTRY as MODELS
DATA_DIR = Path("mlip_arena/tasks/combustion")
st.markdown("""
# Combustion
""")
st.markdown("### Methods")
container = st.container(border=True)
valid_models = [
model
for model, metadata in MODELS.items()
if Path(__file__).stem in metadata.get("gpu-tasks", [])
]
models = container.multiselect(
"MLIPs",
valid_models,
[
"MACE-MP(M)",
"CHGNet",
"M3GNet",
"SevenNet",
"ORB",
"EquiformerV2(OC22)",
"eSCN(OC20)",
],
)
st.markdown("### Settings")
vis = st.container(border=True)
# Get all attributes from pcolors.qualitative
all_attributes = dir(pcolors.qualitative)
color_palettes = {
attr: getattr(pcolors.qualitative, attr)
for attr in all_attributes
if isinstance(getattr(pcolors.qualitative, attr), list)
}
color_palettes.pop("__all__", None)
palette_names = list(color_palettes.keys())
palette_colors = list(color_palettes.values())
palette_name = vis.selectbox("Color sequence", options=palette_names, index=22)
color_sequence = color_palettes[palette_name]
if not models:
st.stop()
@st.cache_data
def get_data(models):
families = [MODELS[str(model)]["family"] for model in models]
dfs = [
pd.read_json(DATA_DIR / family.lower() / "hydrogen.json") for family in families
]
df = pd.concat(dfs, ignore_index=True)
df.drop_duplicates(inplace=True, subset=["formula", "method"])
return df
df = get_data(models)
# families = [MODELS[str(model)]["family"] for model in models]
# dfs = [pd.read_json(DATA_DIR / family.lower() / "hydrogen.json") for family in families]
# df = pd.concat(dfs, ignore_index=True)
# df.drop_duplicates(inplace=True, subset=["formula", "method"])
method_color_mapping = {
method: color_sequence[i % len(color_sequence)]
for i, method in enumerate(df["method"].unique())
}
###
# Number of products
fig = go.Figure()
for method in df["method"].unique():
row = df[df["method"] == method].iloc[0]
fig.add_trace(
go.Scatter(
x=row["timestep"],
y=row["nproducts"],
mode="lines",
name=method,
line=dict(color=method_color_mapping[method]),
showlegend=True,
),
)
fig.update_layout(
title="Hydrogen Combustion (2H2 + O2 -> 2H2O, 64 units)",
xaxis_title="Timestep",
yaxis_title="Number of water molecules",
)
st.plotly_chart(fig)
# tempearture
fig = go.Figure()
for method in df["method"].unique():
row = df[df["method"] == method].iloc[0]
fig.add_trace(
go.Scatter(
x=row["timestep"],
y=row["temperatures"],
mode="markers",
name=method,
line=dict(
color=method_color_mapping[method],
# width=1
),
marker=dict(color=method_color_mapping[method], size=3),
showlegend=True,
),
)
target_steps = df["target_steps"].iloc[0]
fig.add_trace(
go.Line(
x=[0, target_steps / 3, target_steps / 3 * 2, target_steps],
y=[300, 3000, 3000, 300],
mode="lines",
name="Target",
line=dict(dash="dash", color="white"),
showlegend=True,
),
)
fig.update_layout(
title="Hydrogen Combustion (2H2 + O2 -> 2H2O, 64 units)",
xaxis_title="Timestep",
yaxis_title="Temperature (K)",
# yaxis2=dict(
# title="Product Percentage (%)",
# overlaying="y",
# side="right",
# range=[0, 100],
# tickmode="sync",
# ),
# template="plotly_dark",
)
st.plotly_chart(fig)
# Energy
fig = go.Figure()
for method in df["method"].unique():
row = df[df["method"] == method].iloc[0]
fig.add_trace(
go.Scatter(
x=row["timestep"],
y=np.array(row["energies"]) - row["energies"][0],
mode="lines",
name=method,
line=dict(
color=method_color_mapping[method],
# width=1
),
marker=dict(color=method_color_mapping[method], size=3),
showlegend=True,
),
)
fig.update_layout(
# title="Hydrogen Combustion (2H2 + O2 -> 2H2O, 64 units)",
xaxis_title="Timestep",
yaxis_title="Potential Energy 𝚫 (eV)",
# template="plotly_dark",
)
st.plotly_chart(fig)
# Total Energy
# fig = go.Figure()
# for method in df["method"].unique():
# row = df[df["method"] == method].iloc[0]
# fig.add_trace(
# go.Scatter(
# x=row["timestep"],
# y=np.array(row["energies"]) - row["energies"][0] + np.array(row["kinetic_energies"]),
# mode="lines",
# name=method,
# line=dict(
# color=method_color_mapping[method],
# # width=1
# ),
# marker=dict(color=method_color_mapping[method], size=3),
# showlegend=True,
# ),
# )
# fig.update_layout(
# # title="Hydrogen Combustion (2H2 + O2 -> 2H2O, 64 units)",
# xaxis_title="Timestep",
# yaxis_title="Total Energy 𝚫 (eV)",
# # template="plotly_dark",
# )
# st.plotly_chart(fig)
# Reaction energy
fig = go.Figure()
exp_ref = -68.3078 # kcal/mol
df["reaction_energy"] = df["energies"].apply(lambda x: x[-1] - x[0]) / 128 * 23.0609 # kcal/mol
df["reaction_energy_abs_err"] = np.abs(df["reaction_energy"] - exp_ref)
df.sort_values("reaction_energy_abs_err", inplace=True)
fig.add_traces([
go.Bar(
x=df["method"],
y=df["reaction_energy"],
marker=dict(color=[method_color_mapping[method] for method in df["method"]]),
text=[f"{y:.2f}" for y in df["reaction_energy"]],
),
])
fig.add_shape(
go.layout.Shape(
type="line",
x0=-0.5, x1=len(df["method"]) - 0.5, # range covering the bars
y0=exp_ref, y1=exp_ref, # y-values for the horizontal line
line=dict(color="Red", width=2, dash="dash"),
layer="below"
)
)
fig.add_annotation(
go.layout.Annotation(
x=0.5,
xref="paper",
xanchor="center",
y=exp_ref,
yanchor="bottom",
text=f"Experiment: {exp_ref} kcal/mol [1]",
showarrow=False,
font=dict(
color="Red",
),
)
)
fig.update_layout(
# title="Reaction energy 𝚫H (kcal/mol)",
xaxis_title="Method <br> <span style='font-size: 10px;'>[1] Lide, D. R. (Ed.). (2004). CRC handbook of chemistry and physics (Vol. 85). CRC press.</span>",
yaxis_title="Reaction energy 𝚫H (kcal/mol)",
# annotations = [
# dict(
# x=0.5, xref="paper", xanchor="center",
# y=-0.5, yref="paper", yanchor="bottom",
# text="Caption",
# )
# ]
)
st.plotly_chart(fig)
# Final reaction rate
fig = go.Figure()
df = df.sort_values("yield", ascending=True)
fig.add_trace(
go.Bar(
x=df["yield"] * 100,
y=df["method"],
opacity=0.75,
orientation="h",
marker=dict(color=[method_color_mapping[method] for method in df["method"]]),
text=[f"{y:.2f} %" for y in df["yield"] * 100],
)
)
fig.update_layout(
title="Reaction yield (2H2 + O2 -> 2H2O, 64 units)",
xaxis_title="Yield (%)",
yaxis_title="Method"
)
st.plotly_chart(fig)
# MD runtime speed
fig = go.Figure()
df = df.sort_values("steps_per_second", ascending=True)
fig.add_trace(
go.Bar(
x=df["steps_per_second"],
y=df["method"],
opacity=0.75,
orientation="h",
marker=dict(color=[method_color_mapping[method] for method in df["method"]]),
text=df["steps_per_second"].round(1),
)
)
fig.update_layout(
title="MD runtime speed (on single A100 GPU)",
xaxis_title="Steps per second",
yaxis_title="Method",
)
st.plotly_chart(fig)
# COM drift
st.markdown("""### Center of mass drift
The center of mass (COM) drift is a measure of the stability of the simulation. A well-behaved simulation should have a COM drift close to zero. The COM drift is calculated as the displacement of the COM of the system from the initial position.
""")
@st.cache_data
def get_com_drifts(df):
df_exploded = df.explode(["timestep", "com_drifts"]).reset_index(drop=True)
# Convert the 'com_drifts' column (which are arrays) into separate columns for x, y, and z components
df_exploded[["com_drift_x", "com_drift_y", "com_drift_z"]] = pd.DataFrame(
df_exploded["com_drifts"].tolist(), index=df_exploded.index
)
# Drop the original 'com_drifts' column
df_flat = df_exploded.drop(columns=["com_drifts"])
df_flat["total_com_drift"] = np.sqrt(
df_flat["com_drift_x"] ** 2
+ df_flat["com_drift_y"] ** 2
+ df_flat["com_drift_z"] ** 2
)
return df_flat
df_exploded = get_com_drifts(df)
if "play" not in st.session_state:
st.session_state.play = False
def toggle_playing():
st.session_state.play = not st.session_state.play
# st.button(
# "Play" if not st.session_state.play else "Pause",
# type="primary" if not st.session_state.play else "secondary",
# on_click=toggle_playing,
# )
increment = df["target_steps"].max() // 200
if "time_range" not in st.session_state:
st.session_state.time_range = (0, increment)
# @st.experimental_fragment(run_every=1e-3 if st.session_state.play else None)
@st.experimental_fragment()
def draw_com_drifts_plot():
if st.session_state.play:
start, end = st.session_state.time_range
end += increment
if end > df["target_steps"].max():
start = 0
end = 0
st.session_state.time_range = (start, end)
start_timestep, end_timestep = st.slider(
"Timestep",
min_value=0,
max_value=df["target_steps"].max(),
value=st.session_state.time_range,
key="time_range",
# on_change=check_range,
)
mask = (df_exploded["timestep"] >= start_timestep) & (
df_exploded["timestep"] <= end_timestep
)
df_filtered = df_exploded[mask]
df_filtered.sort_values(["method", "timestep"], inplace=True)
fig = px.line_3d(
data_frame=df_filtered,
x="com_drift_x",
y="com_drift_y",
z="com_drift_z",
labels={
"com_drift_x": "𝚫x (Å)",
"com_drift_y": "𝚫y (Å)",
"com_drift_z": "𝚫z (Å)",
},
category_orders={"method": df_exploded["method"].unique()},
color_discrete_sequence=[
method_color_mapping[method] for method in df_exploded["method"].unique()
],
color="method",
width=800,
height=800,
)
fig.update_layout(
scene=dict(
aspectmode="cube",
),
legend=dict(
orientation="v",
x=0.95,
xanchor="right",
y=1,
yanchor="top",
bgcolor="rgba(0, 0, 0, 0)",
),
)
fig.add_traces(
[
go.Scatter3d(
x=[0],
y=[0],
z=[0],
mode="markers",
marker=dict(size=3, color="white"),
name="origin",
),
# add last point of each method and annotate the total drift
go.Scatter3d(
# df_filtered.groupby("method")["com_drift_x"].last(),
x=df_filtered.groupby("method")["com_drift_x"].last(),
y=df_filtered.groupby("method")["com_drift_y"].last(),
z=df_filtered.groupby("method")["com_drift_z"].last(),
mode="markers+text",
marker=dict(size=3, color="white", opacity=0.5),
text=df_filtered.groupby("method")["total_com_drift"].last().round(3),
# size=5,
name="total drifts",
textposition="top center",
),
]
)
st.plotly_chart(fig)
draw_com_drifts_plot()
|