PSCF v1.2
|
Confinement and External Fields (Prev) Visualization (Next)
Thin-film confinement can be imposed on the PSCF unit cell by including an ImposedFieldsGenerator object in the parameter file with "film" as the type parameter. See this previous page for more general information about the ImposedFieldsGenerator feature and for a description of how masks and external potential fields are implemented in PSCF. On this page, we first explain the model used to represent thin film confinement, followed by an explanation of how a user can impose the constraint in PSCF.
If you use this tool in your research, please cite the following paper in which the tool was first presented:
More detail about the tool and the model can also be found in this subsequent paper:
For further reading on thin film SCFT, see the two publications listed below, on which our implementation is largely based:
The thin film is modeled as a polymer melt confined between two parallel walls with a fixed distance between them. The mask that is used to enforce this confinement prohibits the polymers from occupying the space inside of these walls. Additionally, chemical interactions between the walls and the monomer species are modeled using external fields that are imposed at the polymer/wall interface.
The mask field \( m({\bf r}) \) that we use to impose a thin film geometry is defined to have a sigmoidal shape that rapidly rises from zero to one at the polymer/wall interfaces, with the walls located on opposite sides of the unit cell and the polymer located in the middle. Formally, we write the mask as
\[ m(z) = 1 - 0.5*\left( 1+ {\rm tanh} \left( 4*\frac{.5(T-L)+|z-\frac{L}{2}|}{t} \right) \right) \]
Here, we have written the mask density as a function of z, which we define as the position along the direction normal to the walls. L is the length of the unit cell in this direction, and T is the total thickness of the wall in this direction (i.e., the "excluded" thickness where \( m({\bf r}) < 0.5 \)). t defines the rate at which \( m(z) \) decays from 1 to 0 when passing from the film region into the wall. If t is small, the calculation will require high spatial resolution to converge, which can be computationally prohibitive, but a sufficiently large t will not be able to accurately model a rigid film boundary. A common compromise in literature is to choose \( 0.15R_g \le t \le 0.5R_g \), where \( R_g \) is the radius of gyration of the polymer (for a one-component system).
The chemical potential fields are defined by a Flory–Huggins-like χ interaction parameter between each monomer species and the walls, where the wall volume fraction is defined as \( 1-m({\bf r}) \). We define a "top" and a "bottom" wall which can have different interaction parameters, where the "bottom" wall is that which contains the unit-cell origin. Formally, this is written as
\[ h_{\alpha}(z) = \left\{ \begin{array}{ll} \chi_{\alpha,{\rm bot}} (1-m({\bf r})) & {\rm for} \: z < L/2 \\ \chi_{\alpha,{\rm top}} (1-m({\bf r})) & {\rm for} \: z \ge L/2 \end{array} \right. \]
where \( \chi_{\alpha,{\rm bot}} \) and \( \chi_{\alpha,{\rm top}} \) are the interaction parameters between species \(\alpha\) and the bottom wall and top wall, respectively.
Although it is not strictly necessary, we impose an additional constraint on the unit cells used for thin film calculations in order to simplify the construction and interpretation of the mask: one lattice basis vector must be oriented normal to the walls, and all other lattice basis vectors must be parallel to the walls. It does not matter which basis vector is normal to the walls, as long as all basis vectors satisfy this requirement. For example, if one were to use a hexagonal unit cell in 3D, the walls must be parallel to the a and b lattice vectors, because this is the only orientation of the walls for which the third lattice vector is normal to the walls. Additionally, the length of the lattice vector that is normal to the walls is not allowed to vary, so the film thickness will be held constant throughout the calculation even if the user chooses to have a flexible unit cell.
The space group used to describe the system must accurately describe the symmetry of the mask and the external fields within a unit cell that satisfies the constraints described here. Determining the proper space group can be difficult in some cases, so an entire section is dedicated to this topic below.
In the parameter file, the thin film constraint is included by adding a ImposedFieldsGenerator object to the end of the iterator block. In this section, we consider an example system that one might wish to study: a bcc morphology in a thin film that is 2 unit cells thick, with walls that are normal to the c lattice basis vector. We provide a parameter file for this example, followed by a discussion of all key details of this parameter file that pertain to the thin-film constraint. The parameter file will look like the following:
First, we draw your attention to the Domain
block. Notice that this differs significantly from the Domain
block that would be expected for a bcc structure in a neat melt. The space group has been downgraded from the cubic Im-3m group to tetragonal P4/mmm. See the "Space groups" section below for more information about determining the appropriate space group symmetry for a thin film. Also notice that we have chosen specific and intentional values for the mesh discretization in the c direction, with 4x more gridpoints than in the other directions. The gridpoint density required to resolve the polymer/wall interface is, as a good rule of thumb, about twice that of a bulk SCFT phase, and the film is two unit cells thick (while only being one unit cell wide in the a and b directions), hence the 4x higher gridpoint density.
Now, we proceed to the AmIteratorBasis
block. The first four parameters in this block define the AmIteratorBasis object and do not pertain to the thin film constraint (from epsilon
to isFlexible
). Then we get to the ImposedFieldsGenerator
block that defines the mask. The first parameter in this block is type
, which is given the keyword "film" to indicate that the object should generate a mask and external fields that have the functional form described above. The parameters that follow are those that are necessary to define the imposed fields.
The first of these required parameters is normalVecId
, indicating which of the 3 lattice basis vectors is oriented normal to the walls. The input should be either 0, 1, or 2, corresponding to the a, b, or c lattice vectors, respectively. In the example above, the c vector is normal to the wall. Importantly, the two vectors that are not normal to the wall (a and b in this example) must be parallel to the wall. So, if c is normal to the wall, then the unit cell angles α and β must both be 90°. The software will throw an Exception if this condition is not met.
The next required inputs are interfaceThickness
and excludedThickness
, which correspond to t and T in the expression for \(m(z)\) above. These values are defined in the same units as other length inputs (unit cell parameters, segment lengths). In the example, we have chosen t to be 0.2, or ~ \(0.49R_g\) based on information from the Mixture
block, and we have chosen T to be 0.4, or ~ \(0.98R_g\).
Let us also briefly consider the parameter L (the length of the unit cell in the direction normal to the wall) in the context of the example parameter file above, now that we have defined T. Since we have declared that the c lattice basis vector is orthogonal to the wall, the length of c is equivalent to L. The parameter L is thus not defined in the parameter file, and can instead be found in the input field file. Because of the presence of the walls, the thickness of the actual polymer/solvent film is instead equal to L–T, or 4.0. If we expect that the bcc structure will have a cubic lattice parameter of ~2.0, then we can target a film that is two unit cells thick by setting the lattice parameters to 2.0 (for a) and 4.4 (for c) in the field file. The latter parameter will not be allowed to vary in the calculation, because it defines the film thickness.
This is an important distinction that may be somewhat confusing at first; the excludedThickness
parameter in the parameter file defines the region of the unit cell that does not contribute to the film thickness, while the film thickness itself is defined via the lattice parameters in the field file. This makes it easy to perform parameter sweeps that vary the film thickness, because the lattice parameters can be varied and a new mask will be generated at each sweep step with a consistent value of excludedThickness used at each step. It also ensures that the excludedThickness is always set to an appropriate value, and will never accidentally drift to be too small or unnecessarily large.
Next, there are required input arrays chiBottom
and chiTop
. These allow the user to define the Flory-Huggins-like interaction parameter between each monomer species and the walls. For a system with n
monomer species, the chi arrays will contain n
entries each. Each entry corresponds to a single monomer species, in the same order that they are listed in the monomers[
block. chiBottom
defines the interaction between each species and the lower wall (defined as the wall that contains the origin of the unit cell), while 'chiTop' defines the interactions with the upper wall.
In the example above, we have two monomer species, with species indices 0 and 1. Both walls interact more favorably with the monomer species with index 0. If chiBottom
and chiTop
are identical then the walls are said to be "chemically identical," which is the case for this example.
The wall chi parameters are computational analogs to the physical property of interfacial tension. The interfacial tension between a given monomer species and the wall can be related to the corresponding wall chi parameter using a procedure outlined in the following reference from Hur and coworkers:
We also briefly draw your attention to the Sweep block at the bottom of the example parameter file. To make it easier to efficiently explore the state space of thin film polymer systems, we have introduced three sweep parameters that are specific to thin film systems. First is cell_param
, which allows for a sweep to be performed on any lattice parameter. The syntax for this sweep parameter is cell_param i delta
where i
is the index of the lattice parameter to be swept (starting from 0) and delta
is the desired change in this parameter over the entire sweep. Note that i
refers to the index of the parameter in the array that is input in the unitCell
line of the parameter file. So, in the example above, i
can only be 0 or 1 because there are only 2 lattice parameters specified on the unitCell
line. Note that the lattice parameter being swept should be held rigid during the calculation, or else the iterator will allow that parameter to relax back to it's most optimal value at each step of the sweep.
The second and third sweep parameters for thin films are chi_bottom
and chi_top
, which allow the user to sweep any of the values in the chiBottom
and chiTop
arrays. The syntax for the chi_bottom
sweep parameter is chi_bottom i delta
where i
specifies the array index of the chi value that will be swept (indexing starting from 0), and delta
is the desired change in this parameter over the entire sweep. i
must be less than n_monomer. Replace chi_bottom
with chi_top
to sweep a value in the chiTop
array instead.
In the example parameter file above, we show how one would perform a sweep along all three thin film sweep parameters at once; we sweep the c lattice parameter from 4.4 to 5.4, and we sweep chiBottom[1]
and chiTop[1]
from 10 to 0. Note that we chose a sweep that keeps the walls chemically identical, because asymmetric walls would break the symmetry of the space group that we've chosen, so we'd need to switch to a different space group to model bcc with asymmetric walls.
Finally, notice that there is an additional line in the Sweep block: reuseState 0
. The reuseState feature typically improves convergence time for sweeps by using the last few iterations of the previous sweep step as the initial "histories" for the current sweep step. However, this feature actually worsens convergence time when paired with a thin film thickness (cell_param
) sweep, and thus we include reuseState 0
in the param file to turn off the feature when sweeping film thickness.
It is important to note that the free energy contribution arising from polymer/wall interactions has an inherent linear dependence on t. For instance, consider a homopolymer melt where the polymer volume fraction is equal to \( m({\bf r}) \) everywhere, and both walls are chemically identical with \( \chi_{\rm A,bot}=\chi_{\rm A,top}=\chi_{\rm A,wall} \). Then, the free energy per monomer reference volume has the following contribution from interactions with the external field:
\[ \tilde{f}_{\rm ext}= \frac{1}{\overline{m}V} \chi_{\rm A,wall} \int d{\bf r}\,m({\bf r})(1-m({\bf r})) \]
Using the expression for \( m({\bf r}) \) above, one can show that the integral of \( m({\bf r})(1-m({\bf r})) \) is proportional to t. As such, the strength of the interactions between polymers/solvents and walls is dependent not only on \( \chi_{\rm A,wall} \) but also on t. Because of this, it is strongly recommended to use the same value of t for all calculations that are to be compared to one another.
When walls are added into the system, the user can still choose whether to fix the unit cell parameters or allow some or all of them to vary, but the implementation is slightly different. Specifically, we require that the length of the lattice basis vector that is orthogonal to the wall is fixed regardless of the inputs provided in isFlexible
and flexibleParams
, in order to force the thin film to maintain a constant thickness throughout the iteration process. Furthermore, we require that the other lattice basis vector(s) remain parallel to the walls. This implies the following:
normalVecId
. The length of the lattice basis vector that is normal to the wall (the vector indicated by normalVecId
) is held fixed, and the remaining two angles are fixed at 90°.This behavior is implemented automatically. If the user specifies that some or all lattice parameters may vary, then the software will decide which lattice parameters are actually allowed to vary based on normalVecId
and unitCell
. If the user tries to define a unit cell that is incompatible with the rules above (e.g., a 2D unit cell with α ≠ 90°), the software will throw an error.
When using PSCF for bulk systems (those without a thin film constraint), users can use the COMPUTE command in the command file to solve the MDEs and determine the concentration fields from a given set of potential (w) fields. Based on the way the thin film code is implemented, the COMPUTE command will currently give the wrong result if the system in question has a thin film constraint. This is because the code has to generate external fields and a mask field to represent the upper and lower walls, which alter the other calculations that happen within the system, and these fields are not generated until the ITERATE command is called.
If the user wishes to simply solve the MDEs for a thin film system without iterating to a solution, we recommend the following workaround: instead of calling COMPUTE, set the epsilon value of the iterator to a very large number (say, 1e5) and call ITERATE. The MDE solution at Iteration 0 will be "converged" because it will have an error value that is lower than epsilon, and so the iteration procedure will terminate on Iteration 0 without ever updating the potential fields. Thus, the only operation performed by ITERATE will be solving the MDEs, which will then allow the user to write the resulting concentration fields to a file.
Although we are imposing a thin film constraint on the system, we still use periodic boundary conditions in all directions so that the symmetry-adapted basis functions used for bulk (non-thin film) calculations can be used without modification. It is therefore still ideal to use the highest possible space-group symmetry to describe the system under consideration in order to reduce computational expense and minimize the effect of numerical errors. However, the presence of a mask and external fields reduces the number of allowed symmetry operations for these unit cells, because the only allowed symmetry operations are those that describe every relevant field in the system: the mask, the external fields, and the polymer morphology. Thus, the selection of the appropriate space group for a thin film requires more substantial thought than is the case for bulk systems.
The appropriate space group for a desired system can be identified by looking at the symmetry operations for the space group that describes the system in the bulk, removing those operations that are not allowed in the thin film (which differ depending on whether the walls are identical or not), and then finding the space group that contains only those symmetry operations that remain. This procedure is described in the supporting information of the following manuscript, and is repeated here for convenience:
If, for example, the walls are in the x-y plane (param file contains "normalVecId 2
.") and the two walls are chemically identical, then symmetry operations that change z to -z are allowed because the walls are mirror images of each other. All other changes in z (e.g., from z to z+1/2 in reduced coordinates) are forbidden, because these operations would result in the wall being moved to a different location than where it started. If the walls are chemically dissimilar, then the only symmetry operations that are permitted are those that leave z* unchanged. So, in order to identify the space group for a thin-film system, one should start from the space group that describes the 3-dimensionally periodic polymer morphology in the absence of the walls, remove all symmetry operations that do not satisfy the above requirements, and then identify the space group that contains the remaining symmetry operations, which is the space group of the thin-film unit cell.
Tools are available at https://www.cryst.ehu.es/ that make this much easier, including the ability to list all symmetry operations for a given space group, even for unit cells that use non-standard lattice basis vectors, as well as the ability to determine the space group given a list of symmetry operations. The space-group diagrams at http://img.chem.ucl.ac.uk/sgp/mainmenu.htm are also a valuable resource for visualizing and comparing space groups.
We can clarify further with an example, again considering the parameter file above for a thin film bcc structure. The space group for bcc in the bulk is Im-3m. We are imposing a wall that is parallel to the x-y plane, so the allowed symmetry operations for our thin film can only have (z -> z) or (z -> -z) transformations of the z coordinate (and the latter is only allowed for chemically identical walls). On this page we can see the 96 symmetry operations for the Im-3m space group, and only 16 of them are allowed for the system with the wall present.
We then search for a space group with only these 16 symmetry operations. It will be in the tetragonal crystal system, because that is the shape of the unit cell that we expect for the thin film bcc structure. After searching through the tetragonal space groups, we find that P4/mmm is the space group we are looking for.
An important detail to note is the difference between the space group and the unit cell. The unit cell shape only defines the lattice vectors along which the system has translational symmetry. By contrast, the space group defines all of the other allowed symmetry operations in the system, some of which are only allowed for unit cells of a certain shape. For example, a cubic space group (the highest possible symmetry) represents a set of symmetry operations that can only be applied to a cubic unit cell. However, this does not mean that a cubic unit cell must have cubic symmetry—it can also have the symmetry of any of the space groups associated with crystal systems of lower symmetry (e.g., tetragonal). In the context of PSCF, this means that you can choose a unit cell and a space group that belong to different crystal systems, as long as the symmetry operations of that space group are all applicable to that unit cell. For example, a tetragonal unit cell could be used with a monoclinic space group. As another example, the triclinic space group P_1
, which has no symmetry operations other than the identity, can be used alongside all possible choices of unit cell.
In the thin-film bcc example discussed above, it would be fine to declare a cubic unit cell with the P4/mmm space group; this would be used to simulate a bcc structure that is slightly less than 1 unit cell thick (because of the space occupied by the walls). However, to model a film with different thickness, a tetragonal unit cell is required, which keeps the a and b lattice basis vectors the same length but allows c to vary. An orthorhombic unit cell, however, would be incompatible with the P4/mmm space group; P4/mmm requires that a and b are the same length.
This brings up a final important consideration when setting up a PSCF system: the space group contains inherent choices of which lattice parameters are allowed to vary independently and which are not, which should be considered when choosing normalVecId
. Tetragonal unit cells must have |a|=|b|, so the natural choice of normalVecId
is 2, so that the lattice basis vector that is perpendicular to the film (c) is allowed to vary independently. In fact, the space group P4/mmm is not compatible with a normalVecId
value of 0 or 1.
In 3D systems, it is recommended to choose 2 for normalVecId
, except in the case of a monoclinic unit cell, which is more compatible with a normalVecId
value of 1. This is because β is the only angle allowed to vary in a monoclinic unit cell, but a choice of 0 or 2 for normalVecId
would force β to be 90° and thus force the unit cell to be stuck in an orthorhombic shape.
The recommended technique for generating an initial guess is to first converge the desired morphology as a bulk calculation, and generate a converged solution in rgrid format. Then, create a new rgrid with the desired mesh size/shape by duplicating the existing data periodically along any of the lattice basis vectors. For our bcc example above, we could take a 32x32x32 bcc solution in rgrid format, duplicate the data along the z direction to generate a 32x32x64 mesh of bcc data, and then add 4 more layers of data points in the z direction (2 on top and 2 on bottom) to represent the interior of the walls, all of which should have zero concentration for all species (as an initial guess). This leaves us with a 32x32x68 initial guess in rgrid format for the bcc thin film. The gridpoint density can be increased, if desired, by interpolation. This rgrid can subsequently be converted into an initial guess for the omega field in symmetry-adapted basis format by using the RGRID_TO_BASIS and ESTIMATE_W_FROM_C commands in the command file. In our experience using this tool, this approach is sufficient to achieve a converged SCFT solution for most systems of interest with minimal difficulty.
Here we present a comprehensive list of the rules determining permitted/forbidden choices of unit cell and space group in a thin film system, which have been alluded to in the above discussion.
The systems that are compatible with the thin film constraint must obey the following rules:
Confinement and External Fields (Prev) Visualization (Next)