Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
amfe-solvers
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Aerospace and Mechanical Engineering
amfe-solvers
Merge requests
!3
Update docker to latest (VTK9+OneAPI)
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Update docker to latest (VTK9+OneAPI)
boman
into
main
Overview
0
Commits
6
Pipelines
3
Changes
1
Merged
Boman Romain
requested to merge
boman
into
main
1 year ago
Overview
0
Commits
6
Pipelines
3
Changes
1
Expand
Docker image updated to latest one (VTK9/OneAPI),
viewer.py
has been fixed (syntax error following the renaming of the element type enum),
run.sh
is now executable,
ext/amfe
has been updated.
Test suite has been tested on:
Windows / python 3.10 / latest OneAPI / VTK 9.1
Ubuntu / python 3.10 / latest OneAPI / VTK 9.1
Edited
1 year ago
by
Boman Romain
0
0
Merge request reports
Viewing commit
b058d651
Prev
Next
Show latest version
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
b058d651
fix `np.int` was a deprecated alias for the builtin `int` (numpy)
· b058d651
Boman Romain
authored
1 year ago
heat/utils.py
+
1
−
1
Options
@@ -45,7 +45,7 @@ def getTemp(solver, linelabel="Bottom", sort='x'):
import
numpy
as
np
v
=
np
.
array
(
extr
.
execute
())
nos
=
np
.
zeros_like
(
v
,
dtype
=
np
.
int
)
nos
=
np
.
zeros_like
(
v
,
dtype
=
int
)
nxs
=
np
.
zeros_like
(
v
)
nys
=
np
.
zeros_like
(
v
)
for
i
in
range
(
len
(
v
)):
Loading