Skip to content

Commit

Permalink
Modified `esis.flights.f1.optics.filters.materials.thin_film_design()…
Browse files Browse the repository at this point in the history
…` to use amorphous aluminum oxide instead of crystalline based on discussion with @jacobdparker.
  • Loading branch information
byrdie committed Mar 22, 2024
1 parent 76d7575 commit c48eded
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion esis/flights/f1/optics/filters/materials/_materials.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,11 @@ def thin_film_design() -> optika.materials.ThinFilmFilter:
thickness=100 * u.nm,
),
layer_oxide=optika.materials.Layer(
chemical="Al2O3",
chemical=optika.chemicals.Chemical(
formula="Al2O3",
is_amorphous=True,
table="palik",
),
thickness=4 * u.nm,
),
mesh=optika.materials.meshes.Mesh(
Expand Down

0 comments on commit c48eded

Please sign in to comment.