-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathforcefield.py
873 lines (744 loc) · 36.8 KB
/
forcefield.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Synopsis of forcefield Class
============================
The `forcefield` class defines the core behavior for managing inter-particle interactions
in molecular dynamics simulations or similar physics-based models. It provides methods
to calculate interaction parameters, including pair styles, diagonal pair coefficients,
and off-diagonal pair coefficients, which are crucial for forcefield models.
Key Attributes:
---------------
- `PAIR_STYLE` (str): Defines the pair style command for the forcefield interactions.
- `PAIR_DIAGCOEFF` (str): Defines the command for calculating diagonal pair coefficients.
- `PAIR_OFFDIAGCOEFF` (str): Defines the command for calculating off-diagonal pair coefficients.
- `parameters` (parameterforcefield): Stores the parameters used for interaction evaluations.
- `beadtype` (int): The bead type used in the forcefield model.
- `userid` (str): A unique identifier for the forcefield instance.
Key Methods:
------------
- `pair_style(printflag=True)`: Returns the pair style command based on the current
`parameters`, `beadtype`, and `userid`.
- `pair_diagcoeff(printflag=True, i=None)`: Returns the diagonal pair coefficient command
based on the current bead type `i` and `userid`. The bead type can be overridden.
- `pair_offdiagcoeff(o=None, printflag=True, i=None)`: Returns the off-diagonal pair
coefficient command for interactions between two bead types or forcefield objects.
The bead type `i` and the interacting forcefield `o` can be specified or overridden.
--- forcefield methods for LAMMPS ---
The superclass provides a collection of classes to define materials
and forcefields. Note that the following hierarchy is used:
> forcefield() is the top class (to be called directly)
> customff(forcefield) defines a new forcefield so called customff
> customstyle(customff) defines a pair-style applicable to customff
> custommaterial(customstyle) defines a new material
--- Material library (first implementations) ---
w = water(beadtype=1, userid="fluid")
w.parameters.Cp = 20
print("\n"*2,w)
f = solidfood(beadtype=2, userid="elastic")
print("\n"*2,f)
r = rigidwall(beadtype=3, userid="wall")
print("\n"*2,r)
--- Template to define a material ---
class mymaterial(myforcefield):
userid = "short name"
version = value
def __init__(self, beadtype=1, userid=None):
super().__init__()
if userid!=None: self.userid = userid
self.name.material"] = "short of the material"
self.description.material"] = "full description"
self.beadtype = beadtype
self.parameters = parameterforcefield(
param1 = value1,
param2 = value2,
param3 = "math expression with ${param1, ${param2}"
)
--- Example of outputs | LAMMPS:SMD:tlsph:solidfood ---
========================== [ elastic | version=0.1 ] ===========================
Bead of type 2 = [LAMMPS:SMD:tlsph:solidfood]
-----------------:----------------------------------------
rho: 1000
c0: 10.0
E: 5*${c0}^2*${rho}
nu: 0.3
q1: 1.0
q2: 0.0
Hg: 10
Cp: 1.0
sigma_yield: 0.1*${E}
hardening: 0
contact_scale: 1.5
contact_stiffness: 2.5*${c0}^2*${rho}
-----------------:----------------------------------------
forcefield object with 12 parameters
............................... [ description ] ................................
# LAMMPS:SMD - solid, liquid, rigid forcefields (continuum mechanics)
# SMD:TLSPH - total Lagrangian for solids
# food beads - solid behavior
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ [ methods ] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
replace FFi,FFj by your variable names <<<
To assign a type, use: FFi.beadtype = integer value
Use the methods FFi.pair_style() and FFi.pair_coeff(FFj)
Note for pairs: the caller object is i (FFi), the argument is j (FFj or j)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ [ template ] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# [2:elastic] PAIR STYLE SMD
pair_style hybrid/overlay smd/ulsph *DENSITY_CONTINUITY *VELOCITY_GRADIENT *NO_GRADIENT_CORRECTION &
smd/tlsph smd/hertz 1.5
# [2:elastic x 2:elastic] Diagonal pair coefficient tlsph
pair_coeff 2 2 smd/tlsph *COMMON 1000 500000.0 0.3 1.0 0.0 10 1.0 &
*STRENGTH_LINEAR_PLASTIC 50000.0 0 &
*EOS_LINEAR &
*END
# [2:elastic x 1:none] Off-diagonal pair coefficient (generic)
pair_coeff 2 1 smd/hertz 250000.0
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
run this code by pressing <F5>
"""
__project__ = "Pizza3"
__author__ = "Olivier Vitrac"
__copyright__ = "Copyright 2022"
__credits__ = ["Olivier Vitrac"]
__license__ = "GPLv3"
__maintainer__ = "Olivier Vitrac"
__email__ = "olivier.vitrac@agroparistech.fr"
__version__ = "1.006"
# INRAE\Olivier Vitrac - rev. 2025-02-18
# contact: olivier.vitrac@agroparistech.fr
# History
# 2022-02-12 early version
# 2022-02-13 release candidate
# 2022-02-20 made compatible with the update private.mstruct.py
# 2022-02-28 fix class inheritance with mutable type, update is carried with + and struct()
# 2022-03-02 fix off-diagonal order for i,j
# 2022-03-19 standardized pizza path
# 2022-04-16 add saltTLSPH() forcefield in the material library, and document it better
# 2022-05-16 force sortdefintions for + and += with parameterforcefield()
# 2022-05-17 direct use of pizza.private.mstruct.paramauto()
# 2023-07-25 fix forcefield (deepduplicate instead of duplicate)
# 2024-09-10 updated documentation for pizza.forcefield (to be read along with pizza.dforcefield)
# 2024-09-12 upgrading of parameterforcefield
# 2024-09-21 dforcefield and forcefield can be combined indifferently (no precedence)
# 2024-10-10 fix the dynamic parameterization with dforcefield (more overrides)
# 2025-02-18 add tlsphalone, ulsphalone (for special cases not requiring overlay)
# %% Dependencies
import types
# All forcefield parameters are stored à la Matlab in a structure
from pizza.private.mstruct import struct,paramauto
__all__ = ['forcefield', 'none', 'paramauto', 'parameterforcefield', 'rigidwall', 'saltTLSPH', 'smd', 'solidfood', 'struct', 'tlsph', 'ulsph', 'water']
# %% Parent class (not to be called directly)
# Note that some attributes are stored in the instances but in the class itself
# recommendation 1: Recreate/derive a class when possible
# recommendation 2: __dict__ list only properties in the instance,
# use getallattributes() to see all attributes
# container of forcefield parameters
class parameterforcefield(paramauto):
""" class of forcefields parameters, derived from param
note that conctanating two forcefields force them
to to be sorted
"""
_type = "FF"
_fulltype = "forcefield"
_ftype = "parameter"
_maxdisplay = 80
# same strategy as used in dscript for forcing _returnerror = False (added 2024-09-12)
def __init__(self, _protection=False, _evaluation=True, sortdefinitions=False, **kwargs):
"""
Constructor for parameterforcefield. It forces the parent's _returnerror parameter to False.
Parameters:
-----------
_protection : bool, optional
Whether to enable protection on the parameters (default: False).
_evaluation : bool, optional
Whether evaluation is enabled for the parameters (default: True).
sortdefinitions : bool, optional
Whether to sort definitions upon initialization (default: False).
**kwargs : dict
Additional keyword arguments for the parent class.
"""
# Call the parent class constructor
super().__init__(_protection=_protection, _evaluation=_evaluation, sortdefinitions=sortdefinitions, **kwargs)
# Override the _returnerror attribute at the instance level
self._returnerror = False
# core class
class forcefield():
"""
The `forcefield` class represents the core implementation of a forcefield model,
defining interaction parameters and coefficients for simulations. This class provides
methods to handle pair styles, diagonal pair coefficients, and off-diagonal pair coefficients,
which are essential for simulating inter-particle interactions in molecular dynamics or
other physics-based simulations.
Attributes:
-----------
PAIR_STYLE : str
The default pair style command for the forcefield interactions.
PAIR_DIAGCOEFF : str
The default command for calculating diagonal pair coefficients.
PAIR_OFFDIAGCOEFF : str
The default command for calculating off-diagonal pair coefficients.
parameters : parameterforcefield
An instance of `parameterforcefield` that stores the parameters for
evaluating interaction commands.
beadtype : int
The bead type associated with the current forcefield instance.
userid : str
A unique identifier for the forcefield instance, used in interaction commands.
Methods:
--------
pair_style(printflag=True):
Generate and return the pair style command based on the current parameters,
beadtype, and userid.
pair_diagcoeff(printflag=True, i=None):
Generate and return the diagonal pair coefficients based on the current parameters,
beadtype, and userid. The bead type `i` can be overridden with an optional argument.
pair_offdiagcoeff(o=None, printflag=True, i=None):
Generate and return the off-diagonal pair coefficients between two different
bead types or forcefield objects. The bead type `i` can be overridden, and the
interaction with another forcefield object `o` can also be specified.
Notes:
------
- This class is intended to be extended by specific forcefield types such as `ulsph`.
- The parameters used in the interaction commands are dynamically evaluated using
the `parameterforcefield` class, which provides the required values during runtime.
"""
# Main attributes (instance independent)
name = struct(forcefield="undefined", style="undefined", material="undefined")
description = struct(forcefield="missing", style="missing", material="missing")
beadtype = 1 # default bead type
parameters = parameterforcefield() # empty parameters object
userid = "undefined"
version = 0
# print method for headers (static, no implicit argument)
@staticmethod
def printheader(txt,align="^",width=80,filler="~"):
""" print header """
if txt=="":
print("\n"+filler*(width+6)+"\n")
else:
print(("\n{:"+filler+"{align}{width}}\n").format(' [ '+txt+' ] ', align=align, width=str(width)))
# Display/representation method
# The method provides full help for the end-user
def __repr__(self):
""" disp method """
stamp = self.name.forcefield+":"+self.name.style+":"+self.name.material
self.printheader("%s | version=%0.3g" % (self.userid,self.version),filler="=")
print(" Bead of type %d = [%s]" % (self.beadtype,stamp))
print(self.parameters)
self.printheader("description",filler=".")
print("\t# \t%s" % self.description.forcefield)
print("\t# \t%s" % self.description.style)
print("\t# \t%s" % self.description.material)
self.printheader("methods")
print("\t >>> replace FFi,FFj by your variable names <<<")
print("\tTo assign a type, use: FFi.beadtype = integer value")
print("\tUse the methods FFi.pair_style() and FFi.pair_coeff(FFj)")
print("\tNote for pairs: the caller object is i (FFi), the argument is j (FFj or j)")
self.printheader("template")
self.pair_style()
self.pair_diagcoeff()
self.pair_offdiagcoeff()
self.printheader("")
return stamp
# Extract attributes within the class
def getallattributes(self):
""" advanced method to get all attributes including class ones"""
return {k: getattr(self, k) for k in dir(self) \
if (not k.startswith('_')) and (not isinstance(getattr(self, k),types.MethodType))}
# Forcefield Methods: pair_style(), pair_coeff()
# the substitution of LAMMPS variables is carried out with the method
# parameters.format() method implemented in struct and inherited by parameterforcefield()
def pair_style(self,printflag=False,verbose=True, raw=False,USER=None,beadtype=None,userid=None):
"""
Generate and return the pair style command for the current forcefield instance.
This method creates a formatted pair style command based on the interaction parameters
stored in the `parameters` attribute. It allows customization of the command using the
`beadtype` and `userid` arguments. The behavior can be altered by passing a `USER` object
or opting for the raw command template.
Parameters:
-----------
printflag : bool, optional, default=False
If True, the generated pair style command is printed to the console.
verbose : bool, optional, default=True
If True, enables verbose output during the script generation.
raw : bool, optional, default=False
If True, returns the raw template of the pair style without any interpretation.
USER : struct, optional, default=None
A user-defined struct object used for overriding the default parameters.
When provided, the method updates parameters using `USER` in conjunction with
the instance's base parameters.
beadtype : int, optional, default=None
The bead type identifier used in the generated command. If not provided, the
instance's beadtype is used.
userid : str, optional, default=None
The user identifier to include in the formatted command. Defaults to the instance's
userid if not specified.
Returns:
--------
str
The formatted pair style command string.
Raises:
-------
TypeError
If `USER` is provided but is not of type `struct` or derived from `struct`.
"""
# raw format
if raw:
return self.PAIR_STYLE
# USER overrride if the forcefield class is inherited
if USER is None: # ---- default behavior for forcefield
parameters = self.parameters
beadtype = self.beadtype
userid = self.userid
elif isinstance(USER,struct): # ---- behavior for dforcefield (using baseclass)
parameters = self.parameters+USER
beadtype = beadtype if beadtype is not None else USER.beadtype if hasattr(USER, 'beadtype') else self.beadtype
userid = userid if userid is not None else USER.userid if hasattr(USER, 'userid') else self.userid
else:
raise TypeError(f'USER must be of type struct or derived from struct, not {type(USER)}')
# cmd
cmd = parameters.formateval(self.PAIR_STYLE)
# Replace [comment] with the formatted comment (e.g., "[2:my_user_id]")
cmd = cmd.replace("[comment]","[%d:%s]" % (beadtype, userid) if verbose else "")
if printflag: print(cmd)
return cmd
def pair_diagcoeff(self,printflag=False,verbose=True, i=None,raw=False,USER=None,beadtype=None,userid=None):
"""
Generate and return the diagonal pair coefficients for the current forcefield instance.
This method evaluates the diagonal pair coefficients based on the interaction parameters,
the bead type (`beadtype`), and the user identifier (`userid`). The bead type `i` can
be overridden by passing it as an argument. The method supports returning the raw template
without evaluation and modifying parameters using a `USER` object.
Parameters:
-----------
printflag : bool, optional, default=False
If True, the generated diagonal pair coefficient command is printed to the console.
verbose : bool, optional, default=True
If True, enables verbose output during the script generation.
i : int, optional, default=None
The bead type used for evaluating the diagonal pair coefficients. If not provided,
defaults to the instance's bead type (`self.beadtype`).
raw : bool, optional, default=False
If True, returns the raw template for the diagonal pair coefficients without interpretation.
USER : struct, optional, default=None
A user-defined struct object used for overriding the default parameters.
When provided, the method updates parameters using `USER` in conjunction with
the instance's base parameters.
beadtype : int, optional, default=None
The bead type identifier to use in the command. Defaults to the instance's beadtype
if not provided.
userid : str, optional, default=None
The user identifier to include in the formatted command. Defaults to the instance's
userid if not specified.
Returns:
--------
str
The formatted diagonal pair coefficient command string.
Raises:
-------
TypeError
If `USER` is provided but is not of type `struct` or derived from `struct`.
"""
# raw format
if raw:
return self.PAIR_DIAGCOEFF
# USER overrride if the forcefield class is inherited
if USER is None: # ---- default behavior for forcefield
parameters = self.parameters
beadtype = self.beadtype
userid = self.userid
elif isinstance(USER,struct): # ---- behavior for dforcefield (using baseclass)
parameters = self.parameters+USER
beadtype = beadtype if beadtype is not None else USER.beadtype if hasattr(USER, 'beadtype') else self.beadtype
userid = userid if userid is not None else USER.userid if hasattr(USER, 'userid') else self.userid
else:
raise TypeError(f'USER must be of type struct or derived from struct, not {type(USER)}')
# diagonal index
i = i if i is not None else beadtype
# cmd
cmd = parameters.formateval(self.PAIR_DIAGCOEFF) % (i,i)
# Replace [comment] with the formatted string, without using .format()
cmd = cmd.replace("[comment]", "[%d:%s x %d:%s]" % (i, userid, i, userid) if verbose else "")
if printflag: print(cmd)
return cmd
def pair_offdiagcoeff(self,o=None,printflag=False,verbose=True,i=None,raw=False,USER=None,beadtype=None,userid=None,oname=None):
"""
Generate and return the off-diagonal pair coefficients for the current forcefield instance.
This method evaluates the off-diagonal pair coefficients between two different bead types
or forcefield objects, using the interaction parameters, bead type, and user identifier.
The bead type `i` can be overridden, and the interaction with another forcefield object `o`
can also be specified.
Parameters:
-----------
o : forcefield or int, optional, default=None
The second forcefield object or bead type used for calculating the off-diagonal
pair coefficients. If not provided, the method assumes interactions between
beads of the same type.
printflag : bool, optional, default=False
If True, the generated off-diagonal pair coefficient command is printed to the console.
verbose : bool, optional, default=True
If True, enables verbose output during the script generation.
i : int, optional, default=None
The bead type used for the current forcefield instance. If not provided,
defaults to the instance's bead type (`self.beadtype`).
raw : bool, optional, default=False
If True, returns the raw template for the off-diagonal pair coefficients without interpretation.
USER : struct, optional, default=None
A user-defined struct object used for overriding the default parameters.
When provided, the method updates parameters using `USER` in conjunction with
the instance's base parameters.
beadtype : int, optional, default=None
The bead type identifier used in the command. Defaults to the instance's beadtype
if not provided.
userid : str, optional, default=None
The user identifier included in the formatted command. Defaults to the instance's
userid if not specified.
oname : str, optional, default=None
The user identifier for the second forcefield or bead type. If not provided, it
defaults to `"none"`.
Returns:
--------
str
The formatted off-diagonal pair coefficient command string.
Raises:
-------
TypeError
If `USER` is not of type `struct` or derived from `struct`.
IndexError
If the first argument `o` is not a forcefield object or an integer.
"""
# raw format
if raw:
return self.PAIR_OFFDIAGCOEFF
# USER overrride if the forcefield class is inherited
if USER is None: # ---- default behavior for forcefield
parameters = self.parameters
beadtype = self.beadtype
userid = self.userid
i = i if i is not None else beadtype
elif isinstance(USER,struct): # ---- behavior for dforcefield (using baseclass)
parameters = self.parameters+USER
beadtype = beadtype if beadtype is not None else USER.beadtype if hasattr(USER, 'beadtype') else self.beadtype
userid = userid if userid is not None else USER.userid if hasattr(USER, 'userid') else self.userid
else:
raise TypeError(f'USER must be of type struct or derived from struct, not {type(USER)}')
# Determine the first bead type (i)
i = i if i is not None else beadtype
# Determine the second bead type (j) based on o
if o is None:
j = i
elif hasattr(o, 'beadtype'):
j = o.beadtype
elif isinstance(o, (float, int)):
j = int(o)
else:
raise IndexError("The first argument should be a forcefield object or an integer representing bead type.")
# Adjust j if it matches i (to ensure off-diagonal interaction)
if j == i:
j = i - 1 if i > 1 else i + 1
oname = oname if oname is not None else o.userid if hasattr(o, "userid") else "none"
# cmd
cmd = parameters.formateval(self.PAIR_OFFDIAGCOEFF) % (min(i,j),max(j,i))
# Replace [comment] with the formatted string, without using .format()
cmd = cmd.replace("[comment]", "[%d:%s x %d:%s]" % (i, self.userid, j, oname) if verbose else "")
if printflag: print(cmd)
return cmd
# %% Forecefield library
# This section can be upgraded by the end-user according to the manual of each style
# numerical value shoud be declared with variable/parameter with the same syntax as in LAMMPS.
# Note that you can copy directly LAMMPS code between triple """ for templates
# Main templates are strings: PAIR_STYLE, PAIR_DIAGCOEFF, PAIR_OFFDIAGCOEFF
#
# ${param} represents the variable called "param", and whose value will be defined
# in the parameters section of the material class as parameters.param = value
#
# use {comment} to add an automatic comment
# %d in PAIR_COEFF represent place holder for corresponding beadtype
#
# The subsitutions are managed by the parent class forcefield().
# BEGIN PAIR-STYLE FORCEFIELD ===========================
class smd(forcefield):
""" SMD forcefield """
name = forcefield.name + struct(forcefield="LAMMPS:SMD")
description = forcefield.description + struct(forcefield="LAMMPS:SMD - solid, liquid, rigid forcefields (continuum mechanics)")
# forcefield definition (LAMMPS code between triple """)
PAIR_STYLE = """
# [comment] PAIR STYLE SMD
pair_style hybrid/overlay smd/ulsph *DENSITY_CONTINUITY *VELOCITY_GRADIENT *NO_GRADIENT_CORRECTION &
smd/tlsph smd/hertz ${contact_scale}
"""
# END PAIR-STYLE FORCEFIELD ===========================
# BEGIN PAIR-COEFF FORCEFIELD ===========================
class ulsph(smd):
""" SMD:ULSPH forcefield (updated Lagrangian) """
name = smd.name + struct(style="ulsph")
description = smd.description + struct(style="SMD:ULSPH - updated Lagrangian for fluids - SPH-like")
# style definition (LAMMPS code between triple """)
PAIR_DIAGCOEFF = """
# [comment] Pair diagonal coefficient ulsph
pair_coeff %d %d smd/ulsph *COMMON ${rho} ${c0} ${q1} ${Cp} 0 &
*EOS_TAIT ${taitexponent} &
*END
"""
PAIR_OFFDIAGCOEFF = """
# [comment] Off-diagonal pair coefficient (generic)
pair_coeff %d %d smd/hertz ${contact_stiffness}
"""
# END PAIR-COEFF FORCEFIELD ===========================
# BEGIN PAIR-COEFF FORCEFIELD ===========================
class tlsph(smd):
""" SMD:TLSPH forcefield (total Lagrangian) """
name = smd.name + struct(style="tlsph")
description = smd.description + struct(style="SMD:TLSPH - total Lagrangian for solids")
# style definition (LAMMPS code between triple """)
PAIR_DIAGCOEFF = """
# [comment] Diagonal pair coefficient tlsph
pair_coeff %d %d smd/tlsph *COMMON ${rho} ${E} ${nu} ${q1} ${q2} ${Hg} ${Cp} &
*STRENGTH_LINEAR_PLASTIC ${sigma_yield} ${hardening} &
*EOS_LINEAR &
*END
"""
PAIR_OFFDIAGCOEFF = """
# [comment] Off-diagonal pair coefficient (generic)
pair_coeff %d %d smd/hertz ${contact_stiffness}
"""
# END PAIR-COEFF FORCEFIELD ===========================
# BEGIN PAIR-COEFF FORCEFIELD ===========================
class ulsphalone(smd):
""" SMD:ULSPH forcefield (updated Lagrangian) """
name = smd.name + struct(style="ulsph")
description = smd.description + struct(style="SMD:ULSPH - updated Lagrangian for fluids - SPH-like")
# forcefield definition (LAMMPS code between triple """)
PAIR_STYLE = """
# [comment] PAIR STYLE SMD
pair_style smd/ulsph *DENSITY_CONTINUITY *VELOCITY_GRADIENT *NO_GRADIENT_CORRECTION
"""
# style definition (LAMMPS code between triple """)
PAIR_DIAGCOEFF = """
# [comment] Pair diagonal coefficient ulsph
pair_coeff %d %d smd/ulsph *COMMON ${rho} ${c0} ${q1} ${Cp} 0 &
*EOS_TAIT ${taitexponent} &
*END
"""
PAIR_OFFDIAGCOEFF = """
# [comment] Off-diagonal pair coefficient (generic)
pair_coeff %d %d smd/hertz ${contact_stiffness}
"""
# END PAIR-COEFF FORCEFIELD ===========================
# BEGIN PAIR-COEFF FORCEFIELD ===========================
class tlsphalone(forcefield):
""" SMD:TLSPH forcefield (total Lagrangian) """
name = smd.name + struct(style="tlsph")
description = smd.description + struct(style="SMD:TLSPH - total Lagrangian for solids")
# forcefield definition (LAMMPS code between triple """)
PAIR_STYLE = """
# [comment] PAIR STYLE SMD
pair_style hybrid/overlay smd/tlsph smd/hertz ${contact_scale}
"""
# style definition (LAMMPS code between triple """)
PAIR_DIAGCOEFF = """
# [comment] Diagonal pair coefficient tlsph
pair_coeff %d %d smd/tlsph *COMMON ${rho} ${E} ${nu} ${q1} ${q2} ${Hg} ${Cp} &
*STRENGTH_LINEAR_PLASTIC ${sigma_yield} ${hardening} &
*EOS_LINEAR &
*END
"""
PAIR_OFFDIAGCOEFF = """
# [comment] Off-diagonal pair coefficient (generic)
pair_coeff %d %d smd/hertz ${contact_stiffness}
"""
# END PAIR-COEFF FORCEFIELD ===========================
# BEGIN PAIR-COEFF FORCEFIELD ===========================
class none(smd):
""" SMD:TLSPH forcefield (updated Lagrangian) """
name = smd.name + struct(style="none")
description = smd.description + struct(style="no interactions")
# style definition (LAMMPS code between triple """)
PAIR_DIAGCOEFF = """
# [comment] Diagonal pair coefficient tlsph
pair_coeff %d %d none
"""
PAIR_OFFDIAGCOEFF = """
# [comment] Off-diagonal pair coefficient (generic)
pair_coeff %d %d smd/hertz ${contact_stiffness}
"""
# END PAIR-COEFF FORCEFIELD ===========================
# %% Material library
# template:
# class mymaterial(myforcefield):
# userid = "short name"
# version = value
# def __init__(self, beadtype=1, userid=None):
# super().__init__()
# if userid!=None: self.userid = userid
# self.name.material"] = "short of the material"
# self.description.material"] = "full description"
# self.beadtype = beadtype
# self.parameters = parameterforcefield(
# param1 = value1,
# param2 = value2,
# param3 = "math expression with ${param1, ${param2}"
# )
#
# ATTENTION: ${param1} and ${param2} cannot be used in an expression
# if they do not have been prealably defined
# BEGIN MATERIAL: WATER ========================================
class water(ulsph):
""" water material (smd:ulsph): generic water model
water()
water(beadtype=index, userid="myfluid", USER=...)
override any propery with USER.parameter (set only the parameters you want to override)
USER.rho: density in kg/m3 (default=1000)
USER.c0: speed of the sound in m/s (default=10.0)
USER.q1: standard artificial viscosity linear coefficient (default=1.0)
USER.Cp: heat capacity of material -- not used here (default=1.0)
USER.contact_scale: scaling coefficient for contact (default=1.5)
USER.contact_stiffness: contact stifness in Pa (default="2.5*${c0}^2*${rho}")
"""
name = ulsph.name + struct(material="water")
description = ulsph.description + struct(material="water beads - SPH-like")
userid = 'water'
version = 0.1
# constructor (do not forgert to include the constuctor)
def __init__(self, beadtype=1, userid=None, USER=parameterforcefield()):
""" water forcefield:
water(beadtype=index, userid="myfluid") """
if userid!=None: self.userid = userid
self.beadtype = beadtype
self.parameters = parameterforcefield(
# water-water interactions
rho = 1000,
c0 = 10.0,
q1 = 1.0,
Cp = 1.0,
taitexponent = 7,
# hertz contacts
contact_scale = 1.5,
contact_stiffness = '2.5*${c0}^2*${rho}'
) + USER # update with user properties if any
# END MATERIAL: WATER ==========================================
# BEGIN MATERIAL: SOLID FOOD ========================================
class solidfood(tlsph):
""" solidfood material (smd:tlsph): model solid food object
solidfood()
solidfood(beadtype=index, userid="myfood", USER=...)
override any propery with USER.property=value (set only the parameters you want to override)
USER.rho: density in kg/m3 (default=1000)
USER.c0: speed of the sound in m/s (default=10.0)
USER.E: Young's modulus in Pa (default="5*${c0}^2*${rho}")
USER.nu: Poisson ratio (default=0.3)
USER.q1: standard artificial viscosity linear coefficient (default=1.0)
USER.q2: standard artificial viscosity quadratic coefficient (default=0)
USER.Hg: hourglass control coefficient (default=10.0)
USER.Cp: heat capacity of material -- not used here (default=1.0)
USER.sigma_yield: plastic yield stress in Pa (default="0.1*${E}")
USER.hardening: hardening parameter (default=0)
USER.contact_scale: scaling coefficient for contact (default=1.5)
USER.contact_stiffness: contact stifness in Pa (default="2.5*${c0}^2*${rho}")
"""
name = tlsph.name + struct(material="solidfood")
description = tlsph.description + struct(material="food beads - solid behavior")
userid = 'solidfood'
version = 0.1
# constructor (do not forgert to include the constuctor)
def __init__(self, beadtype=1, userid=None, USER=parameterforcefield()):
""" food forcefield:
solidfood(beadtype=index, userid="myfood") """
# super().__init__()
if userid!=None: self.userid = userid
self.beadtype = beadtype
self.parameters = parameterforcefield(
# food-food interactions
rho = 1000,
c0 = 10.0,
E = "5*${c0}^2*${rho}",
nu = 0.3,
q1 = 1.0,
q2 = 0.0,
Hg = 10.0,
Cp = 1.0,
sigma_yield = "0.1*${E}",
hardening = 0,
# hertz contacts
contact_scale = 1.5,
contact_stiffness = "2.5*${c0}^2*${rho}"
) + USER # update with user properties if any
# END MATERIAL: SOLID FOOD ==========================================
# BEGIN MATERIAL: SALT TLSPH ========================================
class saltTLSPH(tlsph):
""" SALTLSPH (smd:tlsph): ongoing "salting" beadtype for rheology control
saltTLSPH()
saltTLSPH(beadtype=index, userid="salt", USER=...)
override any property with USER.property = value
"""
name = tlsph.name + struct(material="solidfood")
description = tlsph.description + struct(material="food beads - solid behavior")
userid = '"salt"'
version = 0.1
# constructor (do not forgert to include the constuctor)
def __init__(self, beadtype=1, userid=None, USER=parameterforcefield()):
""" saltTLSPH forcefield:
saltTLSPH(beadtype=index, userid="salt") """
# super().__init__()
if userid!=None: self.userid = userid
self.beadtype = beadtype
self.parameters = parameterforcefield(
# food-food interactions
rho = 1000,
c0 = 10.0,
E = '5*${c0}^2*${rho}',
nu = 0.3,
q1 = 1.0,
q2 = 0.0,
Hg = 10,
Cp = 1.0,
sigma_yield = '0.1*${E}',
hardening = 0,
# hertz contacts
contact_scale = 1.5,
contact_stiffness = '2.5*${c0}^2*${rho}'
) + USER # update with user properties if any
# END MATERIAL: SOLID FOOD ==========================================
# BEGIN MATERIAL: RIGID WALLS ========================================
class rigidwall(none):
""" rigid walls (smd:none):
rigidwall()
rigidwall(beadtype=index, userid="wall", USER=...)
override any propery with USER.parameter (set only the parameters you want to override)
USER.rho: density in kg/m3 (default=3000)
USER.c0: speed of the sound in m/s (default=10.0)
USER.contact_scale: scaling coefficient for contact (default=1.5)
USER.contact_stiffness: contact stifness in Pa (default="2.5*${c0}^2*${rho}")
"""
name = none.name + struct(material="walls")
description = none.description + struct(material="rigid walls")
userid = 'solidfood'
version = 0.1
# constructor (do not forgert to include the constuctor)
def __init__(self, beadtype=1, userid=None, USER=parameterforcefield()):
""" rigidwall forcefield:
rigidwall(beadtype=index, userid="mywall") """
# super().__init__()
if userid!=None: self.userid = userid
self.beadtype = beadtype
self.parameters = parameterforcefield(
rho = 3000,
c0 = 10.0,
contact_stiffness = '2.5*${c0}^2*${rho}',
contact_scale = 1.5
) + USER # update with user properties if any
# END MATERIAL: RIGID WALLS ==========================================
# %% DEBUG
# ===================================================
# main()
# ===================================================
# for debugging purposes (code called as a script)
# the code is called from here
# ===================================================
if __name__ == '__main__':
w = water(beadtype=1, userid="fluid")
w.parameters.Cp = 20
print("\n"*2,w)
f = solidfood(beadtype=2, userid="elastic")
print("\n"*2,f)
r = rigidwall(beadtype=3, userid="wall")
print("\n"*2,r)