flory.constraint.no
Module for no constraint.
Classes
Class for no constraints. |
|
Compiled class for no constraint. |
- class NoConstraint(num_feat)[source]
Bases:
ConstraintBaseClass for no constraints.
Public Methods:
Inherited from
ConstraintBase:compiled(**kwargs_full)Make a compiled constraint instance for
CoexistingPhasesFinder.Private Methods:
Implementation of creating a no constraint instance.
Inherited from
ConstraintBase:_compiled_impl(**kwargs)Implementation of creating a compiled constraint instance (Interface).
- _compiled_impl()[source]
Implementation of creating a no constraint instance.
- Returns:
Instance of
NoConstraintCompiled.- Return type:
- compiled(**kwargs_full)
Make a compiled constraint instance for
CoexistingPhasesFinder.This function requires the implementation of
_compiled_impl(). The constraint instance is a compiled class, which must implement a list of methods or properties. SeeConstraintBaseCompiledfor the list and the detailed information. Also seeCanonicalEnsembleCompiledfor an example of the implementation.- Parameters:
kwargs_full¶ – The keyword arguments for
_compiled_impl()but allowing redundant arguments.- Returns:
The compiled constraint instance.
- Return type:
- class NoConstraintCompiled(num_feat)[source]
Bases:
ConstraintBaseCompiledCompiled class for no constraint.
- Parameters:
num_feat¶ – Number of features \(N_\mathrm{S}\).
Public Data Attributes:
Number of features \(N_\mathrm{S}\).
The potential for features generated by the constraint.
The volume derivatives of the constraint part of entropic energy.
Inherited from
ConstraintBaseCompiled:Number of features \(N_\mathrm{S}\).
The potential for features generated by the constraint.
The volume derivatives of the constraint part of entropic energy.
Public Methods:
initialize(num_part)Initialize the internal data of the constraint.
prepare(phis_feat, Js, masks)Prepare the constraint.
evolve(step, masks)Evolve the internal state of the constraint.
Inherited from
ConstraintBaseCompiled:initialize(num_part)Initialize the internal data of the constraint.
prepare(phis_feat, Js, masks)Prepare the constraint.
evolve(step, masks)Evolve the internal state of the constraint.
- property potential: ndarray
The potential for features generated by the constraint.
This property typically contains the Jacobian of the constraint part of the free energy with respect to the volume fractions of the features, which is an array with the size of \(N_\mathrm{S} \times N_\mathrm{M}\). Note that this property should be used after
prepare()is called.
- property volume_derivative: ndarray
The volume derivatives of the constraint part of entropic energy.
This property typically contains the Jacobian of the constraint part of the free energy with respect to the volumes of the compartments, which is an array with the size of \(N_\mathrm{M}\). Note that this property should be used after
prepare()is called.
- initialize(num_part)[source]
Initialize the internal data of the constraint.
Typically this function initialize the Lagrange multiplier according to the number of compartments.
- prepare(phis_feat, Js, masks)[source]
Prepare the constraint.
This function prepares the constraint according to the volume fractions of features and the masks of the compartments. Usually this includes the calculation of
potentialandvolume_derivative.- Parameters:
phis_feat¶ (
ndarray) – Constant. The 2D array with the size of \(N_\mathrm{S} \times N_\mathrm{M}\), containing the volume fractions of features \(\phi_r^{(m)}\).Js¶ (
ndarray) – Constant. The 1D array with the size of \(N_\mathrm{M}\), containing the relative volumes of compartments \(J_m\).masks¶ (
ndarray) – Constant. The 1D array with the size of \(N_\mathrm{M}\), containing the masks to mark whether the compartment is living or not.
- Return type: