-
-
Notifications
You must be signed in to change notification settings - Fork 113
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
Turek & Hron FSI3 solid-calculix #300
base: develop
Are you sure you want to change the base?
Changes from all commits
0e816ee
d095a7d
3888d2d
4bf20ad
1a916b1
a04d500
2bcebb1
e2e5e61
d043148
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/sh | ||
set -e -u | ||
|
||
. ../../tools/cleaning-tools.sh | ||
|
||
clean_calculix . | ||
rm log-solid | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
participants: | ||
|
||
Solid: | ||
interfaces: | ||
- nodes-mesh: Solid-Mesh | ||
patch: surface | ||
read-data: [Force] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Running this case, I get:
Note that this case now uses stress instead of force. This will probably need a bit of work to convert, but it should be doable. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That is right, I have to dig a bit deeper for this. But first I would like to get the case running. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Don't hesitate to ask for help, this is almost there and we could merge it soon! 😄 |
||
write-data: [Displacement] | ||
|
||
precice-config-file: ../precice-config.xml |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
** Names based on fix | ||
*NSET,NSET=Nfix | ||
1, | ||
3, | ||
5, | ||
7, | ||
9, | ||
10, | ||
11, | ||
246, | ||
248, | ||
249, | ||
250, | ||
331, | ||
524, | ||
|
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.
Where does the
log-solid
come from? I don't see this in therun.sh
.In any case, when calling
rm
, it is a good idea to call it asrm -f
, so that it does not complain when the file is not there.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.
My bad! The
log-solid
came from the batch script of the cluster. I will update therun.sh
file.