-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreferences.bib
More file actions
1554 lines (1377 loc) · 66.8 KB
/
Copy pathreferences.bib
File metadata and controls
1554 lines (1377 loc) · 66.8 KB
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
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
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@article{gupta22,
title = {The ugly, bad, and good stories of large-scale biomolecular simulations},
journal = {Current Opinion in Structural Biology},
volume = {73},
pages = {102338},
year = {2022},
author = {Chitrak Gupta and Daipayan Sarkar and D. Peter Tieleman and Abhishek Singharoy},
}
@article{seelig87,
author = {Seelig, Joachim and MacDonald, Peter M. and Scherer, Peter G.},
title = {Phospholipid head groups as sensors of electric charge in membranes},
journal = {Biochemistry},
volume = {26},
number = {24},
pages = {7535-7541},
year = {1987},
}
@article{piggot12,
author = {Piggot, Thomas J. and Pi{\~n}eiro, {\'A}ngel and Khalid, Syma},
title = {Molecular Dynamics Simulations of Phosphatidylcholine Membranes: A Comparative Force Field Study},
journal = {J. Chem. Theory Comput.},
volume = {8},
number = {11},
pages = {4593-4609},
year = {2012},
}
@article{kukol09,
author = {Kukol, Andreas},
title = {Lipid Models for United-Atom Molecular Dynamics Simulations of Proteins},
journal = {J. Chem. Theory Comput.},
volume = {5},
number = {3},
pages = {615-626},
year = {2009},
}
@article{Chandrasekhar03,
year={2003},
issn={0175-7571},
journal={Eur. Biophys. J.},
volume={32},
issue={1},
title={A consistent potential energy parameter set for lipids: dipalmitoylphosphatidylcholine as a benchmark of the GROMOS96 45A3 force field},
author={Chandrasekhar, Indira and Kastenholz, Mika and Lins, RobertoD. and Oostenbrink, Chris and Schuler, LukasD. and Tieleman, D.Peter and Gunsteren, WilfredF.},
pages={67-77},
language={English}
}
@article{roos19,
author = {Roos, Katarina and Wu, Chuanjie and Damm, Wolfgang and Reboul, Mark and Stevenson, James M. and Lu, Chao and Dahlgren, Markus K. and Mondal, Sayan and Chen, Wei and Wang, Lingle and Abel, Robert and Friesner, Richard A. and Harder, Edward D.},
title = {OPLS3e: Extending Force Field Coverage for Drug-Like Small Molecules},
journal = {Journal of Chemical Theory and Computation},
volume = {15},
number = {3},
pages = {1863-1874},
year = {2019},
}
@article{Salsbury22,
author = {Salsbury, Alexa M. and Michel, Haley M. and Lemkul, Justin A.},
title = {Ion-Dependent Conformational Plasticity of Telomeric G-Hairpins and G-Quadruplexes},
journal = {ACS Omega},
volume = {7},
number = {27},
pages = {23368-23379},
year = {2022},
doi = {10.1021/acsomega.2c01600},
URL = {
https://doi.org/10.1021/acsomega.2c01600
},
eprint = {
https://doi.org/10.1021/acsomega.2c01600
}
}
@article{dijon20,
author = {Duboué-Dijon, E. and Javanainen, M. and Delcroix, P. and Jungwirth, P. and Martinez-Seara, H.},
title = "{A practical guide to biologically relevant molecular simulations with charge scaling for electronic polarization}",
journal = {The Journal of Chemical Physics},
volume = {153},
number = {5},
pages = {050901},
year = {2020},
month = {08},
}
@article{nencini22,
author = {Nencini, Ricky and Ollila, O. H. Samuli},
title = {Charged Small Molecule Binding to Membranes in MD Simulations Evaluated against NMR Experiments},
journal = {The Journal of Physical Chemistry B},
volume = {126},
number = {36},
pages = {6955-6963},
year = {2022},
}
@article{ferreira15,
author = "Ferreira, Tiago Mendes and Ollila, O. H. Samuli and Pigliapochi, Roberta and Dabkowska, Aleksandra P. and Topgaard, Daniel",
title = "Model-free estimation of the effective correlation time for {C}-{H} bond reorientation in amphiphilic bilayers: $^1${H}-$^{13}${C} solid-state {NMR} and {MD} simulations",
journal = "J. Chem. Phys.",
year = "2015",
volume = "142",
pages = "044905",
}
@article{ollila07,
AUTHOR={S. Ollila and M. T. Hyv{\"o}nen and I. Vattulainen},
TITLE={Polyunsaturation in Lipid Membranes: Dynamic Properties and Lateral Pressure Profiles},
JOURNAL={J. Phys. Chem. B},
YEAR={2007},
volume={111},
pages={3139-3150},
month={},
note={},
key={},
url={},
abstract={},
}
@article{ollila16,
title = "Atomistic resolution structure and dynamics of lipid bilayers in simulations and experiments ",
journal = "Biochim. Biophys. Acta",
volume = "1858",
number = "10",
pages = "2512 - 2528",
year = "2016",
author = "O.H. Samuli Ollila and Georg Pabst",
}
@article{bacle21,
author = {Bacle, Amélie and Buslaev, Pavel and Garcia-Fandino, Rebeca and Favela-Rosales, Fernando and Mendes Ferreira, Tiago and Fuchs, Patrick F. J. and Gushchin, Ivan and Javanainen, Matti and Kiirikki, Anne M. and Madsen, Jesper J. and Melcr, Josef and Milán Rodríguez, Paula and Miettinen, Markus S. and Ollila, O. H. Samuli and Papadopoulos, Chris G. and Peón, Antonio and Piggot, Thomas J. and Piñeiro, Ángel and Virtanen, Salla I.},
title = {Inverse Conformational Selection in Lipid–Protein Binding},
journal = {Journal of the American Chemical Society},
volume = {143},
number = {34},
pages = {13701-13709},
year = {2021},
}
@article{NMRlipidsIII,
author = {Javanainen, Matti and Heftberger, Peter and Madsen, Jesper J. and Miettinen, Markus S. and Pabst, Georg and Ollila, O. H. Samuli},
title = {Quantitative Comparison against Experiments Reveals Imperfections in Force Fields’ Descriptions of POPC–Cholesterol Interactions},
journal = {Journal of Chemical Theory and Computation},
volume = {19},
number = {18},
pages = {6342-6352},
year = {2023},
}
@Article{ferreira13,
author ="Ferreira, Tiago Mendes and Coreta-Gomes, Filipe and Ollila, O. H. Samuli and Moreno, Maria Joao and Vaz, Winchil L. C. and Topgaard, Daniel",
title ="Cholesterol and {POPC} segmental order parameters in lipid membranes: solid state $^1${H}-$^{13}${C} {NMR} and {MD} simulation studies",
journal ="Phys. Chem. Chem. Phys.",
year ="2013",
volume ="15",
issue ="6",
pages ="1976-1989"
}
@article{kucerka2015,
author = {Kučerka, Norbert and van Oosten, Brad and Pan, Jianjun and Heberle, Frederick A. and Harroun, Thad A. and Katsaras, John},
title = {Molecular Structures of Fluid Phosphatidylethanolamine Bilayers Obtained from Simulation-to-Experiment Comparisons and Experimental Scattering Density Profiles},
journal = {The Journal of Physical Chemistry B},
volume = {119},
number = {5},
pages = {1947-1956},
year = {2015},
}
@article{Melcr:2018a,
Author = {Melcr, Josef and Martinez-Seara, Hector and Nencini, Ricky and Kolafa, Ji{\v r}{\'\i} and Jungwirth, Pavel and Ollila, O. H. Samuli},
Journal = {J. Phys. Chem. B},
Pages = {4546--4557},
Title = {Accurate Binding of Sodium and Calcium to a POPC Bilayer by Effective Inclusion of Electronic Polarization},
Volume = {122},
Year = {2018}
}
@article{lucas2012charge,
title={Charge equilibration force fields for molecular dynamics simulations of lipids, bilayers, and integral membrane protein systems},
author={Lucas, Timothy R and Bauer, Brad A and Patel, Sandeep},
journal={Biochimica et Biophysica Acta (BBA)-Biomembranes},
volume={1818},
number={2},
pages={318--329},
year={2012},
publisher={Elsevier}
}
@article{li2017drude,
title={Drude polarizable force field for molecular dynamics simulations of saturated and unsaturated zwitterionic lipids},
author={Li, Hui and Chowdhary, Janamejaya and Huang, Lei and He, Xibing and MacKerell Jr, Alexander D and Roux, Beno{\^\i}t},
journal={Journal of chemical theory and computation},
volume={13},
number={9},
pages={4535--4552},
year={2017},
publisher={ACS Publications}
}
@article{Li23chol,
author = {Yan Li and Ye Liu and Boya Yang and Guohui Li and Huiying Chu},
title = {Polarizable atomic multipole-based force field for cholesterol},
journal = {Journal of Biomolecular Structure and Dynamics},
volume = {0},
number = {0},
pages = {1-11},
year = {2023},
publisher = {Taylor & Francis},
doi = {10.1080/07391102.2023.2245045},
URL = {
https://doi.org/10.1080/07391102.2023.2245045
},
eprint = {
https://doi.org/10.1080/07391102.2023.2245045
}
}
@article{klauda2010update,
title={Update of the CHARMM all-atom additive force field for lipids: validation on six lipid types},
author={Klauda, Jeffery B and Venable, Richard M and Freites, J Alfredo and O’Connor, Joseph W and Tobias, Douglas J and Mondragon-Ramirez, Carlos and Vorobyov, Igor and MacKerell Jr, Alexander D and Pastor, Richard W},
journal={The journal of physical chemistry B},
volume={114},
number={23},
pages={7830--7843},
year={2010},
publisher={ACS Publications}
}
@article{seelig1974dynamic,
title={Dynamic structure of fatty acyl chains in a phospholipid bilayer measured by deuterium magnetic resonance},
author={Seelig, Anna and Seelig, Joachim},
journal={Biochemistry},
volume={13},
number={23},
pages={4839--4845},
year={1974},
publisher={ACS Publications}
}
@article{seelig1975bilayers,
title={Bilayers of dipalmitoyl-3-sn-phosphatidylcholine: Conformational differences between the fatty acyl chains},
author={Seelig, Anna and Seelig, Joachim},
journal={Biochimica et Biophysica Acta (BBA)-Biomembranes},
volume={406},
number={1},
pages={1--5},
year={1975},
publisher={Elsevier}
}
@article{gally1975conformation,
title={Conformation and motion of the choline head group in bilayers of dipalmitoyl-3-sn-phosphatidylcholine},
author={Gally, Hans U and Niederberger, Werner and Seelig, Joachim},
journal={Biochemistry},
volume={14},
number={16},
pages={3647--3652},
year={1975},
publisher={ACS Publications}
}
@article{gally1981structure,
title={Structure of Escherichia coli membranes. Glycerol auxotrophs as a tool for the analysis of the phospholipid head-group region by deuterium magnetic resonance},
author={Gally, Hans Ulrich and Pluschke, Gerd and Overath, Peter and Seelig, Joachim},
journal={Biochemistry},
volume={20},
number={7},
pages={1826--1831},
year={1981},
publisher={ACS Publications}
}
@article{roux2011ion,
title={Ion selectivity in channels and transporters},
author={Roux, Beno{\^\i}t and Bern{\`e}che, Simon and Egwolf, Bernhard and Lev, Bogdan and Noskov, Sergei Y and Rowley, Christopher N and Yu, Haibo},
journal={Journal of general physiology},
volume={137},
number={5},
pages={415--426},
year={2011},
publisher={The Rockefeller University Press}
}
@article{strenk1985model,
title={A model of orientational ordering in phosphatidylcholine bilayers based on conformational analysis of the glycerol backbone region},
author={Strenk, LM and Westerman, PW and Doane, JW},
journal={Biophysical journal},
volume={48},
number={5},
pages={765--773},
year={1985},
publisher={Elsevier}
}
@article{seelig1978molecular,
title={Molecular order in cis and trans unsaturated phospholipid bilayers},
author={Seelig, Joachim and Waespe-Sarcevic, Nada},
journal={Biochemistry},
volume={17},
number={16},
pages={3310--3315},
year={1978},
publisher={ACS Publications}
}
@article{shi2011hydration,
author = {Shi, Yue and Wu, Chuanjie and Ponder, Jay W. and Ren, Pengyu},
title = {Multipole electrostatics in hydration free energy calculations},
journal = {Journal of Computational Chemistry},
volume = {32},
number = {5},
pages = {967-977},
keywords = {hydration free energy, polarizable force field, multipole eletrostatics},
doi = {https://doi.org/10.1002/jcc.21681},
url = {https://onlinelibrary.wiley.com/doi/abs/10.1002/jcc.21681},
eprint = {https://onlinelibrary.wiley.com/doi/pdf/10.1002/jcc.21681},
abstract = {Abstract Hydration free energy (HFE) is generally used for evaluating molecular solubility, which is an important property for pharmaceutical and chemical engineering processes. Accurately predicting HFE is also recognized as one fundamental capability of molecular mechanics force field. Here, we present a systematic investigation on HFE calculations with AMOEBA polarizable force field at various parameterization and simulation conditions. The HFEs of seven small organic molecules have been obtained alchemically using the Bennett Acceptance Ratio method. We have compared two approaches to derive the atomic multipoles from quantum mechanical calculations: one directly from the new distributed multipole analysis and the other involving fitting to the electrostatic potential around the molecules. Wave functions solved at the MP2 level with four basis sets (6-311G*, 6-311++G(2d,2p), cc-pVTZ, and aug-cc-pVTZ) are used to derive the atomic multipoles. HFEs from all four basis sets show a reasonable agreement with experimental data (root mean square error 0.63 kcal/mol for aug-cc-pVTZ). We conclude that aug-cc-pVTZ gives the best performance when used with AMOEBA, and 6-311++G(2d,2p) is comparable but more efficient for larger systems. The results suggest that the inclusion of diffuse basis functions is important for capturing intermolecular interactions. The effect of long-range correction to van der Waals interaction on the hydration free energies is about 0.1 kcal/mol when the cutoff is 12Å, and increases linearly with the number of atoms in the solute/ligand. In addition, we also discussed the results from a hybrid approach that combines polarizable solute with fixed-charge water in the HFE calculation. © 2010 Wiley Periodicals, Inc. J Comput Chem, 2011},
year = {2011}
}
@article{shi2013proteinamoeba,
author = {Shi, Yue and Xia, Zhen and Zhang, Jiajing and Best, Robert and Wu, Chuanjie and Ponder, Jay W. and Ren, Pengyu},
title = {Polarizable Atomic Multipole-Based AMOEBA Force Field for Proteins},
journal = {Journal of Chemical Theory and Computation},
volume = {9},
number = {9},
pages = {4046-4063},
year = {2013},
doi = {10.1021/ct4003702},
URL = {
https://doi.org/10.1021/ct4003702
},
eprint = {
https://doi.org/10.1021/ct4003702
}
}
@article{sun2017,
author = {Sun, Rui-Ning and Gong, Haipeng},
title = {Simulating the Activation of Voltage Sensing Domain for a Voltage-Gated Sodium Channel Using Polarizable Force Field},
journal = {The Journal of Physical Chemistry Letters},
volume = {8},
number = {5},
pages = {901-908},
year = {2017},
doi = {10.1021/acs.jpclett.7b00023},
URL = {
https://doi.org/10.1021/acs.jpclett.7b00023},
eprint = {
https://doi.org/10.1021/acs.jpclett.7b00023
}
}
@article{douliez1995restatement,
title={Restatement of order parameters in biomembranes: calculation of CC bond order parameters from CD quadrupolar splittings},
author={Douliez, Jean-Paul and Leonard, Alain and Dufourc, Erick J},
journal={Biophysical journal},
volume={68},
number={5},
pages={1727--1739},
year={1995},
publisher={Elsevier}
}
@article{shaikh2002monounsaturated,
title={Monounsaturated PE does not phase-separate from the lipid raft molecules sphingomyelin and cholesterol: role for polyunsaturation?},
author={Shaikh, Saame Raza and Brzustowicz, Michael R and Gustafson, Noah and Stillwell, William and Wassall, Stephen R},
journal={Biochemistry},
volume={41},
number={34},
pages={10593--10602},
year={2002},
publisher={ACS Publications}
}
@article{perly1985acyl,
title={Acyl chain dynamics of phosphatidylethanolamines containing oleic acid and dihydrosterculic acid: deuteron NMR relaxation studies},
author={Perly, Bruno and Smith, Ian CP and Jarrell, Harold C},
journal={Biochemistry},
volume={24},
number={17},
pages={4659--4665},
year={1985},
publisher={ACS Publications}
}
@article{chu2018polarizable,
title={Polarizable atomic multipole-based force field for DOPC and POPE membrane lipids},
author={Chu, Huiying and Peng, Xiangda and Li, Yan and Zhang, Yuebin and Min, Hanyi and Li, Guohui},
journal={Molecular Physics},
volume={116},
number={7-8},
pages={1037--1050},
year={2018},
publisher={Taylor \& Francis}
}
@article{chu2018anionicpolarizable,
title={A polarizable atomic multipole-based force field for molecular dynamics simulations of anionic lipids},
author={Chu, Huiying and Peng, Xiangda and Li, Yan and Zhang, Yuebin and Li, Guohui},
journal={Molecules},
volume={23},
number={1},
pages={77},
year={2018},
publisher={Multidisciplinary Digital Publishing Institute}
}
@article{davis2009molecular,
title={Molecular dynamics simulations of a DMPC bilayer using nonadditive interaction models},
author={Davis, Joseph E and Rahaman, Obaidur and Patel, Sandeep},
journal={Biophysical journal},
volume={96},
number={2},
pages={385--402},
year={2009},
publisher={Elsevier}
}
@article{klauda2005ab,
title={An ab initio study on the torsional surface of alkanes and its effect on molecular simulations of alkanes and a DPPC bilayer},
author={Klauda, Jeffery B and Brooks, Bernard R and MacKerell, Alexander D and Venable, Richard M and Pastor, Richard W},
journal={The journal of physical chemistry B},
volume={109},
number={11},
pages={5300--5311},
year={2005},
publisher={ACS Publications}
}
@article{davis2009charge,
title={Charge equilibration force fields for lipid environments: applications to fully hydrated DPPC bilayers and DMPC-embedded gramicidin A},
author={Davis, Joseph E and Patel, Sandeep},
journal={The Journal of Physical Chemistry B},
volume={113},
number={27},
pages={9183--9196},
year={2009},
publisher={ACS Publications}
}
@article{melcr2019improved,
title={Improved Cation Binding to Lipid Bilayers with Negatively Charged POPS by Effective Inclusion of Electronic Polarization},
author={Melcr, Josef and Ferreira, Tiago M and Jungwirth, Pavel and Ollila, OH Samuli},
journal={Journal of chemical theory and computation},
year={2019},
publisher={ACS Publications}
}
@article{Botan2015,
author = {Botan, Alexandru and Favela-Rosales, Fernando and Fuchs, Patrick F. J. and Javanainen, Matti and Kanduč, Matej and Kulig, Waldemar and Lamberg, Antti and Loison, Claire and Lyubartsev, Alexander and Miettinen, Markus S. and Monticelli, Luca and Määttä, Jukka and Ollila, O. H. Samuli and Retegan, Marius and Róg, Tomasz and Santuz, Hubert and Tynkkynen, Joona},
title = {Toward Atomistic Resolution Structure of Phosphatidylcholine Headgroup and Glycerol Backbone at Different Ambient Conditions},
journal = {The Journal of Physical Chemistry B},
volume = {119},
number = {49},
pages = {15075-15088},
year = {2015},
doi = {10.1021/acs.jpcb.5b04878},
URL = {
https://doi.org/10.1021/acs.jpcb.5b04878
},
eprint = {
https://doi.org/10.1021/acs.jpcb.5b04878
}
}
@Inbook{Antila2013,
author="Antila, Hanne S.
and Salonen, Emppu",
editor="Monticelli, Luca
and Salonen, Emppu",
title="Polarizable Force Fields",
bookTitle="Biomolecular Simulations: Methods and Protocols",
year="2013",
publisher="Humana Press",
address="Totowa, NJ",
pages="215--241",
abstract="This chapter provides an overview of the most common methods for including an explicit description of electronic polarization in molecular mechanics force fields: the induced point dipole, shell, and fluctuating charge models. The importance of including polarization effects in biomolecular simulations is discussed, and some of the most important achievements in the development of polarizable biomolecular force fields to date are highlighted.",
isbn="978-1-62703-017-5",
doi="10.1007/978-1-62703-017-5_9",
url="https://doi.org/10.1007/978-1-62703-017-5_9"
}
@article{Antila2019,
author = {Antila, Hanne and Buslaev, Pavel and Favela-Rosales, Fernando and Ferreira, Tiago M. and Gushchin, Ivan and Javanainen, Matti and Kav, Batuhan and Madsen, Jesper J. and Melcr, Josef and Miettinen, Markus S. and Määttä, Jukka and Nencini, Ricky and Ollila, O. H. Samuli and Piggot, Thomas J.},
title = {Headgroup Structure and Cation Binding in Phosphatidylserine Lipid Bilayers},
journal = {The Journal of Physical Chemistry B},
volume = {123},
number = {43},
pages = {9066-9079},
year = {2019},
doi = {10.1021/acs.jpcb.9b06091},
URL = {
https://doi.org/10.1021/acs.jpcb.9b06091
},
eprint = {
https://doi.org/10.1021/acs.jpcb.9b06091
}
}
@article{Antila2021,
author = {Antila, Hanne S. and M. Ferreira, Tiago and Ollila, O. H. Samuli and Miettinen, Markus S.},
title = {Using Open Data to Rapidly Benchmark Biomolecular Simulations: Phospholipid Conformational Dynamics},
journal = {Journal of Chemical Information and Modeling},
volume = {61},
number = {2},
pages = {938-949},
year = {2021},
doi = {10.1021/acs.jcim.0c01299},
URL = {
https://doi.org/10.1021/acs.jcim.0c01299
},
eprint = {
https://doi.org/10.1021/acs.jcim.0c01299
}
}
@article{Antila2022,
author = {Antila, Hanne S. and Kav, Batuhan and Miettinen, Markus S. and Martinez-Seara, Hector and Jungwirth, Pavel and Ollila, O. H. Samuli},
title = {Emerging Era of Biomolecular Membrane Simulations: Automated Physically-Justified Force Field Development and Quality-Evaluated Databanks},
journal = {The Journal of Physical Chemistry B},
volume = {126},
number = {23},
pages = {4169-4183},
year = {2022},
doi = {10.1021/acs.jpcb.2c01954},
URL = {
https://doi.org/10.1021/acs.jpcb.2c01954
},
eprint = {
https://doi.org/10.1021/acs.jpcb.2c01954
}
}
@article{Antila2022rot,
title = {Rotational decoupling between the hydrophilic and hydrophobic regions in lipid membranes},
journal = {Biophysical Journal},
volume = {121},
number = {1},
pages = {68-78},
year = {2022},
issn = {0006-3495},
doi = {https://doi.org/10.1016/j.bpj.2021.12.003},
url = {https://www.sciencedirect.com/science/article/pii/S0006349521038947},
author = {Hanne S. Antila and Anika Wurl and O.H. Samuli Ollila and Markus S. Miettinen and Tiago M. Ferreira},
abstract = {Cells use homeostatic mechanisms to ensure an optimal composition of distinct types of lipids in cellular membranes. The hydrophilic region of biological lipid membranes is mainly composed of several types of phospholipid headgroups that interact with incoming molecules, nanoparticles, and viruses, whereas the hydrophobic region consists of a distribution of acyl chains and sterols affecting membrane fluidity/rigidity related properties and forming an environment for membrane-bound molecules such as transmembrane proteins. A fundamental open question is to what extent the motions of these regions are coupled and, consequently, how strongly the interactions of phospholipid headgroups with other molecules depend on the properties and composition of the membrane hydrophobic core. We combine advanced solid-state nuclear magnetic resonance spectroscopy with high-fidelity molecular dynamics simulations to demonstrate how the rotational dynamics of choline headgroups remain nearly unchanged (slightly faster) with incorporation of cholesterol into a phospholipid membrane, contrasting the well-known extreme slowdown of the other phospholipid segments. Notably, our results suggest a new paradigm in which phospholipid dipole headgroups interact as quasi-freely rotating flexible dipoles at the interface, independent of the properties in the hydrophobic region.}
}
@article{ando2001stable,
title={A stable fluctuating-charge polarizable model for molecular dynamics simulations: Application to aqueous electron transfers},
author={Ando, Koji},
journal={The Journal of Chemical Physics},
volume={115},
number={11},
pages={5228--5237},
year={2001},
publisher={American Institute of Physics}
}
@Article{Catte2016,
author ="Catte, Andrea and Girych, Mykhailo and Javanainen, Matti and Loison, Claire and Melcr, Josef and Miettinen, Markus S. and Monticelli, Luca and Määttä, Jukka and Oganesyan, Vasily S. and Ollila, O. H. Samuli and Tynkkynen, Joona and Vilov, Sergey",
title ="Molecular electrometer and binding of cations to phospholipid bilayers",
journal ="Phys. Chem. Chem. Phys.",
year ="2016",
volume ="18",
issue ="47",
pages ="32560-32569",
publisher ="The Royal Society of Chemistry",
doi ="10.1039/C6CP04883H",
url ="http://dx.doi.org/10.1039/C6CP04883H",
abstract ="Despite the vast amount of experimental and theoretical studies on the binding affinity of cations – especially the biologically relevant Na+ and Ca2+ – for phospholipid bilayers{,} there is no consensus in the literature. Here we show that by interpreting changes in the choline headgroup order parameters according to the ‘molecular electrometer’ concept [Seelig et al.{,} Biochemistry{,} 1987{,} 26{,} 7535]{,} one can directly compare the ion binding affinities between simulations and experiments. Our findings strongly support the view that in contrast to Ca2+ and other multivalent ions{,} Na+ and other monovalent ions (except Li+) do not specifically bind to phosphatidylcholine lipid bilayers at sub-molar concentrations. However{,} the Na+ binding affinity was overestimated by several molecular dynamics simulation models{,} resulting in artificially positively charged bilayers and exaggerated structural effects in the lipid headgroups. While qualitatively correct headgroup order parameter response was observed with Ca2+ binding in all the tested models{,} no model had sufficient quantitative accuracy to interpret the Ca2+:lipid stoichiometry or the induced atomistic resolution structural changes. All scientific contributions to this open collaboration work were made publicly{,} using nmrlipids.blogspot.fi as the main communication platform."}
@article{Chen2021,
author = {Chen, Peiran and Vorobyov, Igor and Roux, Benoît and Allen, Toby W.},
title = {Molecular Dynamics Simulations Based on Polarizable Models Show that Ion Permeation Interconverts between Different Mechanisms as a Function of Membrane Thickness},
journal = {The Journal of Physical Chemistry B},
volume = {125},
number = {4},
pages = {1020-1035},
year = {2021},
doi = {10.1021/acs.jpcb.0c08613},
URL = {
https://doi.org/10.1021/acs.jpcb.0c08613
},
eprint = {
https://doi.org/10.1021/acs.jpcb.0c08613
}
}
@article{Grossfield2003,
author = {Grossfield, Alan and Ren, Pengyu and Ponder, Jay W.},
title = {Ion Solvation Thermodynamics from Simulation with a Polarizable Force Field},
journal = {Journal of the American Chemical Society},
volume = {125},
number = {50},
pages = {15671-15682},
year = {2003},
doi = {10.1021/ja037005r},
URL = {
https://doi.org/10.1021/ja037005r
},
eprint = {
https://doi.org/10.1021/ja037005r
}
}
@article{Han2018,
author = {Han, Kyungreem and Venable, Richard M. and Bryant, Anne-Marie and Legacy, Christopher J. and Shen, Rong and Li, Hui and Roux, Benoît and Gericke, Arne and Pastor, Richard W.},
title = {Graph–Theoretic Analysis of Monomethyl Phosphate Clustering in Ionic Solutions},
journal = {The Journal of Physical Chemistry B},
volume = {122},
number = {4},
pages = {1484-1494},
year = {2018},
doi = {10.1021/acs.jpcb.7b10730},
URL = {
https://doi.org/10.1021/acs.jpcb.7b10730
},
eprint = {
https://doi.org/10.1021/acs.jpcb.7b10730
}
}
@article{inakollu2020polarisable,
title={Polarisable force fields: what do they add in biomolecular simulations?},
author={Inakollu, VS Sandeep and Geerke, Daan P and Rowley, Christopher N and Yu, Haibo},
journal={Current Opinion in Structural Biology},
volume={61},
pages={182--190},
year={2020},
publisher={Elsevier}
}
@article{jing2019polarizable,
title={Polarizable force fields for biomolecular simulations: Recent advances and applications},
author={Jing, Zhifeng and Liu, Chengwen and Cheng, Sara Y and Qi, Rui and Walker, Brandon D and Piquemal, Jean-Philip and Ren, Pengyu},
journal={Annual Review of biophysics},
volume={48},
pages={371},
year={2019},
publisher={NIH Public Access}
}
@article{baker2015polarizable,
title={Polarizable force fields for molecular dynamics simulations of biomolecules},
author={Baker, Christopher M},
journal={Wiley Interdisciplinary Reviews: Computational Molecular Science},
volume={5},
number={2},
pages={241--254},
year={2015},
publisher={Wiley Online Library}
}
@article{Databank,
place={Cambridge}, title={NMRlipids Databank makes data-driven analysis of biomembrane properties accessible for all}, DOI={10.26434/chemrxiv-2023-jrpwm-v2}, journal={ChemRxiv}, publisher={Cambridge Open Engage}, author={Kiirikki, Anne and Antila, Hanne and Bort, Lara and Buslaev, Pavel and Fernando, Favela and Mendes Ferreira, Tiago and Fuchs, Patrick and Garcia-Fandino, Rebeca and Gushchin, Ivan and Kav, Batuhan and et al.}, year={2023}} This content is a preprint and has not been peer-reviewed.
@article{Klauda08,
title = {Rotation of Lipids in Membranes: Molecular Dynamics Simulation, 31P Spin-Lattice Relaxation, and Rigid-Body Dynamics},
journal = {Biophysical Journal},
volume = {94},
number = {8},
pages = {3074-3083},
year = {2008},
issn = {0006-3495},
doi = {https://doi.org/10.1529/biophysj.107.121806},
url = {https://www.sciencedirect.com/science/article/pii/S0006349508704648},
author = {Jeffery B. Klauda and Mary F. Roberts and Alfred G. Redfield and Bernard R. Brooks and Richard W. Pastor}
}
@article{kucerka2011,
title = {Fluid phase lipid areas and bilayer thicknesses of commonly used phosphatidylcholines as a function of temperature},
journal = {Biochimica et Biophysica Acta (BBA) - Biomembranes},
volume = {1808},
number = {11},
pages = {2761-2771},
year = {2011},
issn = {0005-2736},
doi = {https://doi.org/10.1016/j.bbamem.2011.07.022},
url = {https://www.sciencedirect.com/science/article/pii/S0005273611002276},
author = {Norbert Kučerka and Mu-Ping Nieh and John Katsaras},
keywords = {Area per lipid, Bilayer structure, Fluid phase, Neutron scattering, X-ray scattering, Phosphatidylcholine},
abstract = {The structural parameters of fluid phase bilayers composed of phosphatidylcholines with fully saturated, mixed, and branched fatty acid chains, at several temperatures, have been determined by simultaneously analyzing small-angle neutron and X-ray scattering data. Bilayer parameters, such as area per lipid and overall bilayer thickness have been obtained in conjunction with intrabilayer structural parameters (e.g. hydrocarbon region thickness). The results have allowed us to assess the effect of temperature and hydrocarbon chain composition on bilayer structure. For example, we found that for all lipids there is, not surprisingly, an increase in fatty acid chain trans–gauche isomerization with increasing temperature. Moreover, this increase in trans–gauche isomerization scales with fatty acid chain length in mixed chain lipids. However, in the case of lipids with saturated fatty acid chains, trans–gauche isomerization is increasingly tempered by attractive chain–chain van der Waals interactions with increasing chain length. Finally, our results confirm a strong dependence of lipid chain dynamics as a function of double bond position along fatty acid chains.}
}
@article{kucerka2008,
title = {Lipid Bilayer Structure Determined by the Simultaneous Analysis of Neutron and X-Ray Scattering Data},
journal = {Biophysical Journal},
volume = {95},
number = {5},
pages = {2356-2367},
year = {2008},
issn = {0006-3495},
doi = {https://doi.org/10.1529/biophysj.108.132662},
url = {https://www.sciencedirect.com/science/article/pii/S0006349508783838},
author = {Norbert Kučerka and John F. Nagle and Jonathan N. Sachs and Scott E. Feller and Jeremy Pencer and Andrew Jackson and John Katsaras},
abstract = {Quantitative structures were obtained for the fully hydrated fluid phases of dioleoylphosphatidylcholine (DOPC) and dipalmitoylphosphatidylcholine (DPPC) bilayers by simultaneously analyzing x-ray and neutron scattering data. The neutron data for DOPC included two solvent contrasts, 50% and 100% D2O. For DPPC, additional contrast data were obtained with deuterated analogs DPPC_d62, DPPC_d13, and DPPC_d9. For the analysis, we developed a model that is based on volume probability distributions and their spatial conservation. The model's design was guided and tested by a DOPC molecular dynamics simulation. The model consistently captures the salient features found in both electron and neutron scattering density profiles. A key result of the analysis is the molecular surface area, A. For DPPC at 50°C A=63.0Å2, whereas for DOPC at 30°C A=67.4Å2, with estimated uncertainties of 1Å2. Although A for DPPC agrees with a recently reported value obtained solely from the analysis of x-ray scattering data, A for DOPC is almost 10% smaller. This improved method for determining lipid areas helps to reconcile long-standing differences in the values of lipid areas obtained from stand-alone x-ray and neutron scattering experiments and poses new challenges for molecular dynamics simulations.}
}
@article{Lemkul2016,
author = {Lemkul, Justin A. and Huang, Jing and Roux, Benoît and MacKerell, Alexander D. Jr.},
title = {An Empirical Polarizable Force Field Based on the Classical Drude Oscillator Model: Development History and Recent Applications},
journal = {Chemical Reviews},
volume = {116},
number = {9},
pages = {4983-5013},
year = {2016},
doi = {10.1021/acs.chemrev.5b00505},
URL = {
https://doi.org/10.1021/acs.chemrev.5b00505
},
eprint = {
https://doi.org/10.1021/acs.chemrev.5b00505
}
}
@article{lamoreux2003,
author = {Lamoureux, Guillaume and Roux, Benoı̂t},
title = "{Modeling induced polarization with classical Drude oscillators: Theory and molecular dynamics simulation algorithm}",
journal = {The Journal of Chemical Physics},
volume = {119},
number = {6},
pages = {3025-3039},
year = {2003},
month = {07},
abstract = "{A simple treatment for incorporating induced polarization in computer simulations is formulated on the basis of the classical Drude oscillator model. In this model, electronic induction is represented by the displacement of a charge-carrying massless particle attached to a polarizable atom under the influence of the local electric field. The traditional self-consistent field (SCF) regime of induced polarization is reproduced if these auxiliary particles are allowed to relax instantaneously to their local energy minima for any given fixed configuration of the atoms in the system. In practice, such treatment is computationally prohibitive for generating molecular dynamics trajectories because the electric field must be recalculated several times iteratively to satisfy the SCF condition, and it is important to seek a more efficient way to simulate the classical Drude oscillator model. It is demonstrated that a close approximation to the SCF regime can be simulated efficiently by considering the dynamics of an extended Lagrangian in which a small mass is attributed to the auxiliary particles, and the amplitude of their oscillations away from the local energy minimum is controlled with a low-temperature thermostat. A simulation algorithm in this modified two-temperature isobaric–isothermal ensemble is developed. The algorithm is tested and illustrated using a rigid three-site water model with one additional Drude particle attached to the oxygen which is closely related to the polarizable SPC model of Ahlström et al. [Mol. Phys. 68, 563 (1989)]. The tests with the extended Lagrangian show that stable and accurate molecular dynamics trajectories for large integration time steps (1 or 2 fs) can be generated and that liquid properties equivalent to SCF molecular dynamics can be reproduced at a fraction of the computational cost.}",
issn = {0021-9606},
doi = {10.1063/1.1589749},
url = {https://doi.org/10.1063/1.1589749},
eprint = {https://pubs.aip.org/aip/jcp/article-pdf/119/6/3025/10853811/3025\_1\_online.pdf},
}
@article{Lynch21,
author = {Lynch, Charlotte I. and Klesse, Gianni and Rao, Shanlin and Tucker, Stephen J. and Sansom, Mark S. P.},
title = {Water Nanoconfined in a Hydrophobic Pore: Molecular Dynamics Simulations of Transmembrane Protein 175 and the Influence of Water Models},
journal = {ACS Nano},
volume = {15},
number = {12},
pages = {19098-19108},
year = {2021},
doi = {10.1021/acsnano.1c06443},
URL = {
https://doi.org/10.1021/acsnano.1c06443
},
eprint = {
https://doi.org/10.1021/acsnano.1c06443
}
}
@article{Ngo2019,
author = {Ngo, Van A. and Fanning, John Keenan and Noskov, Sergei Yu},
title = {Comparative Analysis of Protein Hydration from MD simulations with Additive and Polarizable Force Fields},
journal = {Advanced Theory and Simulations},
volume = {2},
number = {2},
pages = {1800106},
keywords = {conformational dynamics, hydrogen bonds, polarizable force fields, proteins, simulations},
doi = {https://doi.org/10.1002/adts.201800106},
url = {https://onlinelibrary.wiley.com/doi/abs/10.1002/adts.201800106},
eprint = {https://onlinelibrary.wiley.com/doi/pdf/10.1002/adts.201800106},
abstract = {Abstract Recent development of the Drude polarizable (Drude) force field (FF), based on the extension of an induced dipole model, has reached a milestone in the past few years providing a complete set of polarizable parameters for proteins, water, ions, and many lipid types. This FF enables stable simulations up to microseconds, surpassing the capability of other polarizable FFs. The quality of the Drude FF, however, has remained largely untested for modeling the secondary structures of small peptides in explicit solvents compared with classical non-polarizable FFs. It is critical to benchmark the complex and mutually dependent dynamics of hydrogen-bond (H-bond) networks formed by water–water, protein–water, and protein–protein interactions that are expected to have a major impact on the stability of protein structures and their conformational space. Here, a direct comparison is presented between the current Drude FF and the CHARMM-36 non-polarizable classical FF for 1) the solvation free energy of mimetics for all amino acid side-chain equivalents, 2) limited conformational space, 3) protein–water and protein–protein interactions, and 4) the comparative lifetimes of H-bonds. The impact of counterions on the stabilization of secondary structure in model peptides is additionally discussed and compared between these FFs.},
year = {2019}
}
@article{nochebuena23,
author = {Nochebuena, Jorge and Piquemal, Jean-Philip and Liu, Shubin and Cisneros, G. Andrés},
title = {Cooperativity and Frustration Effects (or Lack Thereof) in Polarizable and Non-polarizable Force Fields},
journal = {Journal of Chemical Theory and Computation},
volume = {0},
number = {0},
pages = {null},
year = {0},
doi = {10.1021/acs.jctc.3c00762},
URL = {
https://doi.org/10.1021/acs.jctc.3c00762
},
eprint = {
https://doi.org/10.1021/acs.jctc.3c00762
}
}
@article{Ren2011polorganic,
author = {Ren, Pengyu and Wu, Chuanjie and Ponder, Jay W.},
title = {Polarizable Atomic Multipole-Based Molecular Mechanics for Organic Molecules},
journal = {Journal of Chemical Theory and Computation},
volume = {7},
number = {10},
pages = {3143-3161},
year = {2011},
doi = {10.1021/ct200304d},
URL = {
https://doi.org/10.1021/ct200304d
},
eprint = {
https://doi.org/10.1021/ct200304d
}
}
@Article{Rickeard2020,
author ="Rickeard, Brett W. and Nguyen, Michael H. L. and DiPasquale, Mitchell and Yip, Caesar G. and Baker, Hamilton and Heberle, Frederick A. and Zuo, Xiaobing and Kelley, Elizabeth G. and Nagao, Michihiro and Marquardt, Drew",
title ="Transverse lipid organization dictates bending fluctuations in model plasma membranes",
journal ="Nanoscale",
year ="2020",
volume ="12",
issue ="3",
pages ="1438-1447",
publisher ="The Royal Society of Chemistry",
doi ="10.1039/C9NR07977G",
url ="http://dx.doi.org/10.1039/C9NR07977G",
abstract ="Membrane undulations play a vital role in many biological processes{,} including the regulation of membrane protein activity. The asymmetric lipid composition of most biological membranes complicates theoretical description of these bending fluctuations{,} yet experimental data that would inform any such a theory is scarce. Here{,} we used neutron spin-echo (NSE) spectroscopy to measure the bending fluctuations of large unilamellar vesicles (LUV) having an asymmetric transbilayer distribution of high- and low-melting lipids. The asymmetric vesicles were prepared using cyclodextrin-mediated lipid exchange{,} and were composed of an outer leaflet enriched in egg sphingomyelin (ESM) and an inner leaflet enriched in 1-palmitoyl-2-oleoyl-phosphoethanolamine (POPE){,} which have main transition temperatures of 37 °C and 25 °C{,} respectively. The overall membrane bending rigidity was measured at three temperatures: 15 °C{,} where both lipids are in a gel state; 45 °C{,} where both lipids are in a fluid state; and 30 °C{,} where there is gel-fluid co-existence. Remarkably{,} the dynamics for the fluid asymmetric LUVs (aLUVs) at 30 °C and 45 °C do not follow trends predicted by their symmetric counterparts. At 30 °C{,} compositional asymmetry suppressed the bending fluctuations{,} with the asymmetric bilayer exhibiting a larger bending modulus than that of symmetric bilayers corresponding to either the outer or inner leaflet. We conclude that the compositional asymmetry and leaflet coupling influence the internal dissipation within the bilayer and result in membrane properties that cannot be directly predicted from corresponding symmetric bilayers."}
@article{Stone1981,
title={Distributed multipole analysis, or how to describe a molecular charge distribution},
author={Stone, Anthony J},
journal={Chemical Physics Letters},
volume={83},
number={2},
pages={233--239},
year={1981},
publisher={Elsevier}
}
@article{Tan2022,
author = {Tan, Qiaozhu and Ding, Ye and Qiu, Zongyang and Huang, Jing},
title = {Binding Energy and Free Energy of Calcium Ion to Calmodulin EF-Hands with the Drude Polarizable Force Field},
journal = {ACS Physical Chemistry Au},
volume = {2},
number = {2},
pages = {143-155},
year = {2022},
doi = {10.1021/acsphyschemau.1c00039},
URL = {
https://doi.org/10.1021/acsphyschemau.1c00039
},
eprint = {
https://doi.org/10.1021/acsphyschemau.1c00039
}
}
@article{Thole1981,
title = {Molecular polarizabilities calculated with a modified dipole interaction},
journal = {Chemical Physics},
volume = {59},
number = {3},
pages = {341-350},
year = {1981},
issn = {0301-0104},
doi = {https://doi.org/10.1016/0301-0104(81)85176-2},
url = {https://www.sciencedirect.com/science/article/pii/0301010481851762},
author = {B.T. Thole},
abstract = {The point dipole interaction model for molecular polarizability recently proposed by Applequist, Carl, and Fung is modified by replacing the point dipole interaction by an interaction between smeared out dipoles. Rules are developed to indicate plausible forms for this modified interaction. The polarizabilities of a wide range of chemically different molecules can be calculated, using for each atom one polarizability independent of its chemical enviromnent. The errors are comparable to experimental uncertainty. Special care is taken to produce a model that tends to avoid infinite polarizabilities without use of cutoffs at short distances.}
}
@Article{kav2022,
author ="Kav, Batuhan and Strodel, Birgit",
title ="Does the inclusion of electronic polarisability lead to a better modelling of peptide aggregation?",
journal ="RSC Adv.",
year ="2022",
volume ="12",
issue ="32",
pages ="20829-20837",
publisher ="The Royal Society of Chemistry",
doi ="10.1039/D2RA01478E",
url ="http://dx.doi.org/10.1039/D2RA01478E",
abstract ="Simulating the process of amyloid aggregation with atomic detail is a challenging task for various reasons. One of them is that it is difficult to parametrise a force field such that all protein states ranging from the folded through the unfolded to the aggregated state are represented with the same level of accuracy. Here{,} we test whether the consideration of electronic polarisability improves the description of the different states of Aβ16–22. Surprisingly{,} the CHARMM Drude polarisable force field is found to perform worse than its unpolarisable counterpart CHARMM36m. Sources for this failure of the Drude model are discussed."}
@article{klesse2020induced,
title={Induced polarization in molecular dynamics simulations of the 5-HT3 receptor channel},
author={Klesse, Gianni and Rao, Shanlin and Tucker, Stephen J and Sansom, Mark SP},
journal={Journal of the American Chemical Society},
volume={142},
number={20},
pages={9415--9427},
year={2020},
publisher={ACS Publications}
}
@article{kognole2022charmm,
title={CHARMM-GUI Drude prepper for molecular dynamics simulation using the classical Drude polarizable force field},
author={Kognole, Abhishek A and Lee, Jumin and Park, Sang-Jun and Jo, Sunhwan and Chatterjee, Payal and Lemkul, Justin A and Huang, Jing and MacKerell Jr, Alexander D and Im, Wonpil},
journal={Journal of computational chemistry},
volume={43},
number={5},
pages={359--375},
year={2022},
publisher={Wiley Online Library}
}
@article{jo2008charmm,
title={CHARMM-GUI: a web-based graphical user interface for CHARMM},
author={Jo, Sunhwan and Kim, Taehoon and Iyer, Vidyashankara G and Im, Wonpil},
journal={Journal of computational chemistry},
volume={29},
number={11},
pages={1859--1865},
year={2008},
publisher={Wiley Online Library}
}
@article{lee2016charmm,
title={CHARMM-GUI input generator for NAMD, GROMACS, AMBER, OpenMM, and CHARMM/OpenMM simulations using the CHARMM36 additive force field},
author={Lee, Jumin and Cheng, Xi and Swails, Jason M and Yeom, Min Sun and Eastman, Peter K and Lemkul, Justin A and Wei, Shuai and Buckner, Joshua and Jeong, Jong Cheol and Qi, Yifei and others},
journal={Journal of chemical theory and computation},
volume={12},
number={1},
pages={405--413},
year={2016},
publisher={ACS Publications}
}
@misc{wu2014charmm,