-
Notifications
You must be signed in to change notification settings - Fork 5
update/SOF 7461 #145
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update/SOF 7461 #145
Conversation
VsevolodX
commented
Oct 2, 2024
- upsdate: add get_materials wrapper
- update: add set_materials wrapper
|
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
| { | ||
| "cell_type": "code", | ||
| "outputs": [], | ||
| "source": [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line #4. FILM_INDEX = 1
FILM_INDEX = 1 # Index in the list of materials, to access as materials[FILM_INDEX]
Reply via ReviewNB
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok
| { | ||
| "cell_type": "code", | ||
| "outputs": [], | ||
| "source": [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line #8. print("Please select a film material. Film is set to substrate.")
Film material not found. Re-using substrate material as film.
Reply via ReviewNB
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok
| "cell_type": "code", | ||
| "outputs": [], | ||
| "source": [ | ||
| "# Enable interactive selection of terminations via UI prompt\n", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line #21. TERMINATION_PAIR_INDEX = 0
TERMINATION_PAIR_INDEX # Will be overriden in interactive selection is used
Reply via ReviewNB
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok
| @@ -0,0 +1,1079 @@ | |||
| { | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line #6. materials = list(map(Material, globals()["materials_in"]))
Let's clean up the outputs
Reply via ReviewNB