# | Line 38 | Line 38 | |
---|---|---|
38 | * University of Notre Dame has been advised of the possibility of | |
39 | * such damages. | |
40 | */ | |
41 | < | |
41 | > | #define __C |
42 | #include "io/ForceFieldOptions.hpp" | |
43 | + | |
44 | namespace oopse { | |
45 | ||
46 | ForceFieldOptions::ForceFieldOptions() { | |
47 | DefineOptionalParameter(Name, "Name"); | |
48 | + | DefineOptionalParameter(CutoffPolicy, "cutoffPolicy"); |
49 | DefineOptionalParameterWithDefaultValue(vdWtype, "vdWtype", "Lennard-Jones"); | |
50 | DefineOptionalParameterWithDefaultValue(DistanceMixingRule, "DistanceMixingRule", "arithmetic"); | |
51 | DefineOptionalParameterWithDefaultValue(DistanceType, "DistanceType", "sigma"); | |
# | Line 57 | Line 59 | namespace oopse { | |
59 | DefineOptionalParameterWithDefaultValue(dielectric, "dielectric", 1.0); | |
60 | } | |
61 | ||
62 | + | |
63 | + | void ForceFieldOptions::makeFortranOptions(ForceOptions& fortranForceOptions){ |
64 | + | |
65 | + | fortranForceOptions.vdw14scale = this->getvdw14scale(); |
66 | + | fortranForceOptions.electrostatic14scale = this->getelectrostatic14scale(); |
67 | + | |
68 | + | std::string DistanceMix = this->getDistanceMixingRule(); |
69 | + | toUpper(DistanceMix); |
70 | + | if(DistanceMix == "ARITHMETIC"){ |
71 | + | fortranForceOptions.DistanceMixingRule = ARITHMETIC_MIXING_RULE; |
72 | + | }else if(DistanceMix == "GEOMETRIC"){ |
73 | + | fortranForceOptions.DistanceMixingRule = GEOMETRIC_MIXING_RULE; |
74 | + | }else{ |
75 | + | fortranForceOptions.DistanceMixingRule = ARITHMETIC_MIXING_RULE; |
76 | + | } |
77 | + | std::string EnergyMix = this->getEnergyMixingRule(); |
78 | + | toUpper(EnergyMix); |
79 | + | if(EnergyMix == "ARITHMETIC"){ |
80 | + | fortranForceOptions.EnergyMixingRule = ARITHMETIC_MIXING_RULE; |
81 | + | }else if(EnergyMix == "GEOMETRIC"){ |
82 | + | fortranForceOptions.EnergyMixingRule = GEOMETRIC_MIXING_RULE; |
83 | + | }else{ |
84 | + | fortranForceOptions.EnergyMixingRule = GEOMETRIC_MIXING_RULE; |
85 | + | } |
86 | + | |
87 | + | |
88 | + | } |
89 | + | |
90 | } |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |