-
Notifications
You must be signed in to change notification settings - Fork 2
Quick_Start_Examples #13
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
base: master
Are you sure you want to change the base?
Conversation
|
||
with open("case_name_list.dat", "w", encoding="utf-8") as f: | ||
for line in case_name_list: | ||
f.write(f"{line}\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.
[Optional][TBD] Perhaps we can dump both case name and case id into the dat file? Just in case the new user who's unfamiliar with Flow360 submit multiples cases with the same case name.
I see the logic in download_data.py, I think it's OK to keep the script as it is
However, it seems all 4 quick starts are using the case name to identify the case we'd like to download. Perhaps we can pick one of the quick starts. Dump both case name and case id into the *.dat file and fetch the case according to the case id?
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.
Sure I like this idea. I would like to keep the case names for folders within a directory and plotting, but I like the idea of still fetching the case using case ID.
axes = [] | ||
|
||
|
||
def plot_sectional_forces(data, plot_name): |
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.
Would be nice if we can display the sectional loading on a single blade.
Or at least set the xlim = [root,tip]. Currently between [0, root] we're showing the sectional loading from other blades --> kind of confusing for new users
Quick start examples that are relevant to python (no WebUI quick starts). The examples are updated based on recent Flow360Scripts guidelines.
Mesh files same as on documentation page. (apart from XV15 as volume zones still don't work in new python client)
Options for case submission are both from Mesh ID (added to examples in admin portal, but not visible in new python client. To use this, log-in to examples account directly) and upload from S3
XV15 adaptive CFL contains two JSON files as "volume zones" still doesn't work in new python client. We will remove legacy json and replace mesh URL link, once it does
Some pylint issues still exist due to capitalization.