-
-
Notifications
You must be signed in to change notification settings - Fork 122
Fix inconsistenies in the Nutils participants of the partitioned-heat-conduction tutorial #496
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
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
IshaanDesai marked this conversation as resolved.
Show resolved
Hide resolved
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/bash | ||
set -e -u | ||
|
||
. ../../tools/log.sh | ||
exec > >(tee --append "$LOGFILE") 2>&1 | ||
|
||
python3 -m venv .venv | ||
. .venv/bin/activate | ||
pip install -r requirements.txt | ||
|
||
rm -rf Dirichlet-*.vtk | ||
NUTILS_RICHOUTPUT=no python3 heat.py | ||
|
||
close_log |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/sh | ||
set -e -u | ||
|
||
. ../../tools/cleaning-tools.sh | ||
|
||
clean_nutils . |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,136 @@ | ||
#! /usr/bin/env python3 | ||
|
||
from nutils import cli, mesh, function, solver, export | ||
import functools | ||
import treelog | ||
import numpy as np | ||
import precice | ||
|
||
|
||
def main(n=10, degree=1, timestep=.1, alpha=3., beta=1.2): | ||
|
||
x_grid = np.linspace(1, 2, n) | ||
y_grid = np.linspace(0, 1, n) | ||
|
||
# define the Nutils mesh | ||
domain, geom = mesh.rectilinear([x_grid, y_grid]) | ||
coupling_boundary = domain.boundary['left'] | ||
coupling_sample = coupling_boundary.sample('gauss', degree=degree * 2) | ||
|
||
# Nutils namespace | ||
ns = function.Namespace() | ||
ns.x = geom | ||
ns.basis = domain.basis('std', degree=degree) | ||
ns.alpha = alpha # parameter of problem | ||
ns.beta = beta # parameter of problem | ||
ns.u = 'basis_n ?lhs_n' # solution | ||
ns.dudt = 'basis_n (?lhs_n - ?lhs0_n) / ?dt' # time derivative | ||
ns.flux = 'basis_n ?fluxdofs_n' # heat flux | ||
ns.f = 'beta - 2 - 2 alpha' # rhs | ||
ns.uexact = '1 + x_0 x_0 + alpha x_1 x_1 + beta ?t' # analytical solution | ||
ns.readbasis = coupling_sample.basis() | ||
ns.readfunc = 'readbasis_n ?readdata_n' | ||
|
||
# define the weak form | ||
res = domain.integral( | ||
'(basis_n dudt - basis_n f + basis_n,i u_,i) d:x' @ ns, | ||
degree=degree * 2) | ||
|
||
# set boundary conditions at non-coupling boundaries | ||
# top and bottom boundary are non-coupling for both sides | ||
sqr = domain.boundary['top,bottom,right'].integral('(u - uexact)^2 d:x' @ ns, degree=degree * 2) | ||
|
||
res += coupling_sample.integral('basis_n readfunc d:x' @ ns) | ||
|
||
# preCICE setup | ||
participant = precice.Participant("Neumann", "../precice-config.xml", 0, 1) | ||
mesh_name = "Neumann-Mesh" | ||
vertex_ids = participant.set_mesh_vertices( | ||
mesh_name, coupling_sample.eval(ns.x)) | ||
precice_write = functools.partial( | ||
participant.write_data, | ||
mesh_name, | ||
"Temperature", | ||
vertex_ids) | ||
precice_read = functools.partial( | ||
participant.read_data, | ||
mesh_name, | ||
"Heat-Flux", | ||
vertex_ids) | ||
|
||
# write initial data | ||
if participant.requires_initial_data(): | ||
precice_write(coupling_sample.eval(0.)) | ||
|
||
participant.initialize() | ||
precice_dt = participant.get_max_time_step_size() | ||
solver_dt = timestep | ||
dt = min(precice_dt, solver_dt) | ||
|
||
t = 0. | ||
istep = 0 | ||
|
||
# initial condition | ||
sqr0 = domain.integral('(u - uexact)^2' @ ns, degree=degree * 2) | ||
lhs = solver.optimize('lhs', sqr0, arguments=dict(t=t)) | ||
bezier = domain.sample('bezier', degree * 2) | ||
|
||
while True: | ||
|
||
# generate output | ||
x, u, uexact = bezier.eval(['x_i', 'u', 'uexact'] @ ns, lhs=lhs, t=t) | ||
with treelog.add(treelog.DataLog()): | ||
export.vtk( | ||
"Neumann-" + | ||
str(istep), | ||
bezier.tri, | ||
x, | ||
Temperature=u, | ||
reference=uexact) | ||
|
||
if not participant.is_coupling_ongoing(): | ||
break | ||
|
||
# save checkpoint | ||
if participant.requires_writing_checkpoint(): | ||
checkpoint = lhs, t, istep | ||
|
||
# prepare next timestep | ||
precice_dt = participant.get_max_time_step_size() | ||
dt = min(solver_dt, precice_dt) | ||
lhs0 = lhs | ||
istep += 1 | ||
# read data from participant | ||
readdata = precice_read(dt) | ||
t += dt | ||
|
||
# update (time-dependent) boundary condition | ||
cons = solver.optimize( | ||
'lhs', | ||
sqr, | ||
droptol=1e-15, | ||
arguments=dict( | ||
t=t, | ||
readdata=readdata)) | ||
|
||
# solve nutils timestep | ||
lhs = solver.solve_linear( | ||
'lhs', res, constrain=cons, arguments=dict( | ||
lhs0=lhs0, dt=dt, t=t, readdata=readdata)) | ||
|
||
# write data to participant | ||
write_data = coupling_sample.eval('u' @ ns, lhs=lhs) | ||
precice_write(write_data) | ||
|
||
# do the coupling | ||
participant.advance(dt) | ||
|
||
# read checkpoint if required | ||
if participant.requires_reading_checkpoint(): | ||
lhs, t, istep = checkpoint | ||
|
||
participant.finalize() | ||
|
||
|
||
if __name__ == '__main__': | ||
cli.run(main) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
nutils==7 | ||
pyprecice==3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/bash | ||
set -e -u | ||
|
||
. ../../tools/log.sh | ||
exec > >(tee --append "$LOGFILE") 2>&1 | ||
|
||
python3 -m venv .venv | ||
. .venv/bin/activate | ||
pip install -r requirements.txt | ||
|
||
rm -rf Neumann-*.vtk | ||
NUTILS_RICHOUTPUT=no python3 heat.py | ||
|
||
close_log |
This file was deleted.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.