Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90454086
saturated.py
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Nov 1, 20:23
Size
1 KB
Mime Type
text/x-python
Expires
Sun, Nov 3, 20:23 (2 d)
Engine
blob
Format
Raw Data
Handle
22052363
Attached To
rTAMAAS tamaas
saturated.py
View Options
# -*- coding: utf-8 -*-
#
# Copyright (©) 2016-2024 EPFL (École Polytechnique Fédérale de Lausanne),
# Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
import
tamaas
as
tm
import
numpy
as
np
import
matplotlib.pyplot
as
plt
from
tamaas.utils
import
publications
grid_size
=
256
load
=
1.6
p_sat
=
100
iso
=
tm
.
Isopowerlaw2D
()
iso
.
q0
=
4
iso
.
q1
=
4
iso
.
q2
=
16
iso
.
hurst
=
0.8
sg
=
tm
.
SurfaceGeneratorFilter2D
([
grid_size
,
grid_size
])
sg
.
random_seed
=
2
sg
.
spectrum
=
iso
surface
=
sg
.
buildSurface
()
surface
-=
np
.
max
(
surface
)
model
=
tm
.
ModelFactory
.
createModel
(
tm
.
model_type
.
basic_2d
,
[
1.
,
1.
],
[
grid_size
,
grid_size
])
model
.
E
=
1.
model
.
nu
=
0
esolver
=
tm
.
PolonskyKeerRey
(
model
,
surface
,
1e-12
,
tm
.
PolonskyKeerRey
.
pressure
,
tm
.
PolonskyKeerRey
.
pressure
)
esolver
.
solve
(
load
)
elastic_tractions
=
model
.
traction
.
copy
()
plt
.
imshow
(
elastic_tractions
)
plt
.
title
(
'Elastic contact tractions'
)
plt
.
colorbar
()
model
.
traction
[:]
=
0.
solver
=
tm
.
KatoSaturated
(
model
,
surface
,
1e-12
,
p_sat
)
solver
.
dump_freq
=
1
solver
.
max_iter
=
200
solver
.
solve
(
load
)
plt
.
figure
()
plt
.
imshow
(
model
.
traction
)
plt
.
title
(
'Saturated contact tractions'
)
plt
.
colorbar
()
plt
.
show
()
publications
()
Event Timeline
Log In to Comment