PSCF v1.4.0
Mask.cu
1/*
2* PSCF - Polymer Self-Consistent Field
3*
4* Copyright 2015 - 2025, The Regents of the University of Minnesota
5* Distributed under the terms of the GNU General Public License.
6*/
7
8#include "Mask.h"
9#include <pscf/cuda/Reduce.h>
10
11#include <rp/field/Mask.tpp> // base class template implementation
12
13// Explicit instantiation definitions
14namespace Pscf {
15 namespace Rp {
16 using namespace Prdc::Cuda;
17 template class Mask< 1, RField<1>, Rpg::FieldIo<1> >;
18 template class Mask< 2, RField<2>, Rpg::FieldIo<2> >;
19 template class Mask< 3, RField<3>, Rpg::FieldIo<3> >;
20 }
21 namespace Rpg {
22 template class Mask<1>;
23 template class Mask<2>;
24 template class Mask<3>;
25 }
26}
A field that specifies an inhomogeneous total monomer concentration.
Definition field/Mask.h:92
A field to which the total monomer concentration is constrained.
Definition /field/Mask.h:35
Class templates for real-valued periodic fields.
SCFT and PS-FTS with real periodic fields (GPU)
PSCF package top-level namespace.