61 system().domain().lattice());
64 if (normalVecParamId != paramId)
return 0.0;
70 double nvLength = system().domain().unitCell().parameter(paramId);
73 double phiTot = system().mask().phiTot();
78 for (
int ind = 0; ind < 3; ind++) {
80 dim[ind] = system().domain().mesh().dimensions()[ind];
93 deriv.
allocate(system().domain().mesh().dimensions());
94 RField<D> const & maskRGrid = system().mask().rgrid();
96 for (x = 0; x < dim[0]; x++) {
98 for (y = 0; y < dim[1]; y++) {
100 for (z = 0; z < dim[2]; z++) {
102 maskVal = maskRGrid[counter];
106 d = (double)coords[normalVecId()] /
107 (double)dim[normalVecId()];
109 deriv[counter] = maskVal * (maskVal - 1) * 8.0
110 * (std::abs(d - 0.5) - 0.5)
111 / interfaceThickness();
118 int nMonomer = system().mixture().nMonomer();
119 int nx = system().domain().mesh().size();
122 xi.
allocate(system().domain().mesh().dimensions());
124 for (
int i = 0; i < nx; i++) {
125 xi[i] = system().w().rgrid(0)[i];
128 for (
int in = 0; in < nMonomer; in++) {
129 chi = system().interaction().chi(0,in);
130 if (fabs(chi) > 1e-6) {
131 for (
int i = 0; i < nx; i++) {
132 xi[i] -= system().c().rgrid(in)[i] * chi;
137 if (system().hasExternalFields()) {
138 for (
int i = 0; i < nx; i++) {
139 xi[i] -= system().h().rgrid(0)[i];
144 double intTerm = 0.0;
145 for (
int i = 0; i < nx; i++) {
146 intTerm += xi[i] * deriv[i];
148 intTerm /= (phiTot * nx);
151 if (!sysPtr_->hasFreeEnergy()) {
152 sysPtr_->computeFreeEnergy();
154 double pSys = sysPtr_->pressure();
155 double pTerm = pSys * excludedThickness() /
156 (phiTot * nvLength * nvLength);
158 return pTerm - intTerm;
166 system().domain().lattice());
167 if (nvParamId == paramId) {
171 UTIL_THROW(
"fBulk must be set before calculating this stress.");
175 if (!sysPtr_->hasFreeEnergy()) {
176 sysPtr_->computeFreeEnergy();
178 double fSys = sysPtr_->fHelmholtz();
181 double L = system().domain().unitCell().parameter(paramId);
183 double modifiedStress = (stress * (L - excludedThickness()))
186 return modifiedStress;
198 UTIL_CHECK(system().domain().unitCell().isInitialized());
201 system().mask().setFieldIo(system().domain().fieldIo());
204 if (!system().mask().isAllocatedRGrid()) {
205 system().mask().allocateRGrid(system().domain().mesh().dimensions());
207 if (system().iterator().isSymmetric()) {
208 UTIL_CHECK(system().domain().basis().isInitialized());
209 if (!system().mask().isAllocatedBasis()) {
210 system().mask().allocateBasis(system().domain().basis().nBasis());
222 UTIL_CHECK(excludedThickness() > interfaceThickness());
223 UTIL_CHECK(system().mask().isAllocatedRGrid());
224 if (system().iterator().isSymmetric()) {
225 UTIL_CHECK(system().mask().isAllocatedBasis());
230 system().domain().lattice());
231 double L = system().domain().unitCell().parameter(paramId);
236 for (
int ind = 0; ind < 3; ind++) {
238 dim[ind] = system().domain().mesh().dimensions()[ind];
246 rGrid.
allocate(system().domain().mesh().dimensions());
252 for (x = 0; x < dim[0]; x++) {
254 for (y = 0; y < dim[1]; y++) {
256 for (z = 0; z < dim[2]; z++) {
261 d = coords[normalVecId()] * L / dim[normalVecId()];
264 rhoW = 0.5 * (1 + tanh(4 * (((.5 * (excludedThickness()-L)) +
265 fabs(d - (L/2))) / interfaceThickness())));
266 rGrid[counter++] = 1-rhoW;
272 system().mask().setRGrid(rGrid, system().iterator().isSymmetric());
275 normalVecCurrent_ = systemLatticeVector(normalVecId());