SimCell¶
mdinterface.build.builder.SimCell
¶
Fluent builder for assembling layered simulation boxes.
Layers are stacked in the order they are added. Slabs (solid interfaces), solvent regions, and vacuum gaps can be freely combined.
Example
simbox = SimCell(xysize=[15, 15]) simbox.add_slab(gold, nlayers=3) simbox.add_solvent(water, solute=[na, cl], nsolute=[5, 5], zdim=25, density=1.0) simbox.add_slab(gold, nlayers=3) simbox.add_vacuum(zdim=5) simbox.build() simbox.write_lammps("data.lammps")
Source code in mdinterface/build/builder.py
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 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 | |
universe
property
¶
The assembled MDAnalysis Universe (available after build()).
__init__(xysize, verbose=None)
¶
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
xysize
|
list or tuple of float
|
XY dimensions of the simulation box in Å, e.g. |
required |
verbose
|
None, bool, int, or str
|
Controls package-wide log verbosity via :func: Integer scale:
Integers ≥ 10 are treated as raw |
None
|
Source code in mdinterface/build/builder.py
add_slab(species, nlayers=1)
¶
Add a solid-interface layer (slab).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
species
|
Specie
|
The unit-cell species to tile into a slab. |
required |
nlayers
|
int
|
Number of unit-cell layers to stack along Z. |
1
|
Source code in mdinterface/build/builder.py
add_prebuilt(species, nlayers=1)
¶
Add a pre-built layer whose atomic positions come from a prior MD run.
Semantically equivalent to :meth:add_slab but intended for species
whose positions have already been set (e.g. via
:meth:~mdinterface.core.specie.Specie.update_positions). No XY
tiling is performed; the species cell is used as-is.
Any pre-processing of the positions (centering, trimming, …) should be done on the species before passing it here.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
species
|
Specie or Polymer
|
Species with positions already set from a prior trajectory. |
required |
nlayers
|
int
|
Number of repeat units to stack along Z (usually 1). |
1
|
Source code in mdinterface/build/builder.py
add_solvent(solvent=None, solute=None, nsolute=None, zdim=None, density=None, nsolvent=None, concentration=None, conmodel=None, solute_pos=None, dilate=1.0, packmol_tolerance=2.0, ratio=None)
¶
Add a solvent (liquid) layer, optionally with dissolved species.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
solvent
|
Specie or list of Specie or None
|
Solvent molecule(s). Pass |
None
|
solute
|
list of Specie
|
Species to dissolve (ions, neutral molecules, …). |
None
|
nsolute
|
int or list of int
|
Number of each solute species (alternative to concentration). |
None
|
zdim
|
float
|
Thickness of this region in Angstroms. |
None
|
density
|
float
|
Solvent density in g/cm³ (alternative to nsolvent). |
None
|
nsolvent
|
int or list of int
|
Explicit number of solvent molecules (alternative to density). |
None
|
concentration
|
float
|
Solute concentration in Molar (alternative to nsolute). |
None
|
conmodel
|
dict
|
Spatially varying concentration model. |
None
|
solute_pos
|
str
|
Solute placement strategy:
|
None
|
dilate
|
float
|
Dilation factor > 1 for concentrated systems. PACKMOL will pack
into a box |
1.0
|
packmol_tolerance
|
float
|
Minimum distance (Å) between atoms of different molecules during
PACKMOL packing. Reduce from the default of |
2.0
|
Source code in mdinterface/build/builder.py
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 | |
add_vacuum(zdim=0.0)
¶
Add an empty vacuum gap.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
zdim
|
float
|
Thickness of the vacuum gap in Angstroms. |
0.0
|
Source code in mdinterface/build/builder.py
build(padding=0.5, center=False, layered=False, match_cell=True, hijack=None, stack_axis='z')
¶
Assemble all layers into a simulation box.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
padding
|
float
|
Spacing (Å) inserted between adjacent layers. |
0.5
|
center
|
bool
|
If True, shift the system so the center of the first layer falls on the periodic boundary (z=0). This is the standard convention for electrode/electrolyte slabs where one electrode straddles the cell edge. |
False
|
layered
|
bool
|
Assign distinct molecule indices to each slab layer for LAMMPS. |
False
|
match_cell
|
bool or Specie
|
Controls XY cell matching:
|
True
|
hijack
|
Atoms
|
After assembly, override both positions and cell dimensions with
this external |
None
|
stack_axis
|
str
|
Axis along which layers are stacked in the output file.
Assembly always happens along Z; a final coordinate permutation
reorients the box. Accepted values: |
'z'
|
Source code in mdinterface/build/builder.py
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 | |
write_lammps(filename='data.lammps', atom_style='full', write_coeff=True)
¶
Write a LAMMPS data file (and optional force-field coefficients).
.. note::
This method is only needed for classical MD with LAMMPS. If you
are using the assembled structure for AIMD, ML-MD, or any other
workflow, use :meth:to_ase or :attr:universe instead — no
force-field parameters are required for those paths.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
filename
|
str
|
Output file path. |
'data.lammps'
|
atom_style
|
str
|
LAMMPS atom style ( |
'full'
|
write_coeff
|
bool
|
Whether to write force-field coefficient blocks. |
True
|
Source code in mdinterface/build/builder.py
write_gromacs(prefix='system', outdir='.', system_name='MD System')
¶
Write GROMACS input files for the assembled system.
Produces (all written to outdir):
{prefix}.gro— atomic coordinates and box vectors.{resname}.itp— per-species include topology (one per unique species), with[ atomtypes ],[ moleculetype ],[ atoms ],[ bonds ],[ angles ], and[ dihedrals ]sections.{prefix}.top— system topology that includes the ITP files and lists molecule counts matching the GRO file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
prefix
|
str
|
Base name for the |
'system'
|
outdir
|
str
|
Directory in which all files are written. Created if it does not
exist. Default |
'.'
|
system_name
|
str
|
Title written in the |
'MD System'
|
Raises:
| Type | Description |
|---|---|
RuntimeError
|
If called before :meth: |
.. warning::
|
GROMACS output is experimental. Unit conversions and dihedral mappings have been validated for OPLS-AA molecules generated by LigParGen, but other force fields or atom styles may need adjustments. Use with care and verify the output against a reference. |
Source code in mdinterface/build/builder.py
to_ase()
¶
Convert the assembled system to an ase.Atoms object.
Returns:
| Type | Description |
|---|---|
Atoms
|
The simulation box as an ASE Atoms object with cell and PBC set. |
Raises:
| Type | Description |
|---|---|
RuntimeError
|
If called before :meth: |