desc.objectives.PlasmaVesselDistance
- class desc.objectives.PlasmaVesselDistance(eq, surface, target=None, bounds=None, weight=1, normalize=True, normalize_target=True, loss_function=None, deriv_mode='auto', surface_grid=None, plasma_grid=None, use_softmin=False, eq_fixed=False, surface_fixed=False, softmin_alpha=1.0, name='plasma-vessel distance', use_signed_distance=False, jac_chunk_size=None, **kwargs)Source
Target the distance between the plasma and a surrounding surface.
Computes the minimum distance from each point on the surface grid to a point on the plasma grid. For dense grids, this will approximate the global min, but in general will only be an upper bound on the minimum separation between the plasma and the surrounding surface.
NOTE: By default, assumes the surface is not fixed and its coordinates are computed at every iteration, for example if the winding surface you compare to is part of the optimization and thus changing. If the bounding surface is fixed, set surface_fixed=True to precompute the surface coordinates and improve the efficiency of the calculation.
NOTE: for best results, use this objective in combination with either MeanCurvature or PrincipalCurvature, to penalize the tendency for the optimizer to only move the points on surface corresponding to the grid that the plasma-vessel distance is evaluated at, which can cause cusps or regions of very large curvature.
- Parameters:
eq (Equilibrium) – Equilibrium that will be optimized to satisfy the Objective.
surface (Surface) – Bounding surface to penalize distance to.
surface_grid (Grid, optional) – Collocation grid containing the nodes to evaluate surface geometry at. Defaults to
LinearGrid(M=eq.M_grid, N=eq.N_grid).plasma_grid (Grid, optional) – Collocation grid containing the nodes to evaluate plasma geometry at. Defaults to
LinearGrid(M=eq.M_grid, N=eq.N_grid).use_softmin (bool, optional) – Use softmin or hard min.
use_signed_distance (bool, optional) – Whether to use absolute value of distance or a signed distance, with d being positive if the plasma is inside of the bounding surface, and negative if outside of the bounding surface. NOTE:
plasma_gridandsurface_gridmust have the same toroidal angle values for signed distance to be used.eq_fixed (bool, optional) – Whether the eq/surface is fixed or not. If True, the eq/surface is fixed and its coordinates are precomputed, which saves on computation time during optimization, and self.things = [surface]/[eq] only. If False, the eq/surface coordinates are computed at every iteration. False by default, so that self.things = [eq, surface] Both cannot be True.
surface_fixed (bool, optional) – Whether the eq/surface is fixed or not. If True, the eq/surface is fixed and its coordinates are precomputed, which saves on computation time during optimization, and self.things = [surface]/[eq] only. If False, the eq/surface coordinates are computed at every iteration. False by default, so that self.things = [eq, surface] Both cannot be True.
softmin_alpha (float, optional) – Parameter used for softmin. The larger
softmin_alpha, the closer the softmin approximates the hardmin. softmin -> hardmin assoftmin_alpha-> infinity.target ({float, ndarray}, optional) – Target value(s) of the objective. Only used if
boundsisNone. Must be broadcastable toObjective.dim_f. Defaults tobounds=(1,np.inf).bounds (tuple of {float, ndarray}, optional) – Lower and upper bounds on the objective. Overrides
target. Both bounds must be broadcastable toObjective.dim_f. Defaults tobounds=(1,np.inf).weight ({float, ndarray}, optional) – Weighting to apply to the Objective, relative to other Objectives. Must be broadcastable to
Objective.dim_f.normalize (bool, optional) – Whether to compute the error in physical units or non-dimensionalize.
normalize_target (bool, optional) – Whether target and bounds should be normalized before comparing to computed values. If
normalizeisTrueand the target is in physical units, this should also be set toTrue.loss_function ({None, 'mean', 'min', 'max','sum'}, optional) – Loss function to apply to the objective values once computed. This loss function is called on the raw compute value, before any shifting, scaling, or normalization.
deriv_mode ({"auto", "fwd", "rev"}) – Specify how to compute Jacobian matrix, either forward mode or reverse mode AD.
autoselects forward or reverse mode based on the size of the input and output of the objective. Has no effect onself.gradorself.hesswhich always use reverse mode and forward over reverse mode respectively.name (str, optional) – Name of the objective.
jac_chunk_size (int or
auto, optional) – Will calculate the Jacobianjac_chunk_sizecolumns at a time, instead of all at once. The memory usage of the Jacobian calculation is roughlymemory usage = m0+m1*jac_chunk_size: the smaller the chunk size, the less memory the Jacobian calculation will require (with some baseline memory usage). The time it takes to compute the Jacobian is roughlyt = t0+t1/jac_chunk_sizeso the larger thejac_chunk_size, the faster the calculation takes, at the cost of requiring more memory. IfNone, it will use the largest size i.eobj.dim_x. Can also help with Hessian computation memory, as Hessian is essentiallyjacfwd(jacrev(f)), and each of these operations may be chunked. Defaults tochunk_size=None. Note: When running on a CPU (not a GPU) on a HPC cluster, DESC is unable to accurately estimate the available device memory, so theautochunk_size option will yield a larger chunk size than may be needed. It is recommended to manually choose a chunk_size if an OOM error is experienced in this case.
Methods
build([use_jit, verbose])Build constant arrays.
compute(params_1[, params_2, constants])Compute plasma-surface distance.
compute_scalar(*args, **kwargs)Compute the scalar form of the objective.
compute_scaled(*args, **kwargs)Compute and apply weighting and normalization.
compute_scaled_error(*args, **kwargs)Compute and apply the target/bounds, weighting, and normalization.
compute_unscaled(*args, **kwargs)Compute the raw value of the objective.
copy([deepcopy])Return a (deep)copy of this object.
equiv(other)Compare equivalence between DESC objects.
grad(*args, **kwargs)Compute gradient vector of self.compute_scalar wrt x.
hess(*args, **kwargs)Compute Hessian matrix of self.compute_scalar wrt x.
jac_scaled(*args, **kwargs)Compute Jacobian matrix of self.compute_scaled wrt x.
jac_scaled_error(*args, **kwargs)Compute Jacobian matrix of self.compute_scaled_error wrt x.
jac_unscaled(*args, **kwargs)Compute Jacobian matrix of self.compute_unscaled wrt x.
jvp_scaled(v, x[, constants])Compute Jacobian-vector product of self.compute_scaled.
jvp_scaled_error(v, x[, constants])Compute Jacobian-vector product of self.compute_scaled_error.
jvp_unscaled(v, x[, constants])Compute Jacobian-vector product of self.compute_unscaled.
load(load_from[, file_format])Initialize from file.
print_value(args[, args0])Print the value of the objective and return a dict of values.
save(file_name[, file_format, file_mode])Save the object.
xs(*things)Return a tuple of args required by this objective from optimizable things.
Attributes
Lower and upper bounds of the objective.
Whether the transforms have been precomputed (or not).
Constant parameters such as transforms and profiles.
Number of objective equations.
Whether the objective fixes individual parameters (or linear combo).
Whether the objective is a linear function (or nonlinear).
Name of objective (str).
normalizing scale factor.
Whether default "compute" method is a scalar or vector.
Target value(s) of the objective.
Optimizable things that this objective is tied to.
Weighting to apply to the Objective, relative to other Objectives.