metricGet_WarpShellComoving

Description

Create the Warp Shell metric in a defined spacetime grid.

Warp Shell Metric

The Warp Shell uses a numerical solution that combines the lapse rate and spatial contraction of a regular matter shell with an Alcubeirre-like shift vector.

The shell metric is defined by an inner and outer radius with a total ADM mass parameter. For a definition of ADM mass see: https://arxiv.org/pdf/gr-qc/0609079

The shift vector is defined to exist on the interior at a constant value which transitions in the bubble region to zero by the outer bubble radius. The equation for the transition function S(r)S(r) is:

S(r)={1r<R1+Rb1f(r)R1+Rb<r<R2Rb0r>R2RbS(r) = \begin{cases} 1 & r < R_1 + R_b\\ 1 - f(r) & R_1 + R_b < r < R_2 - R_b \\ 0 & r > R_2 - R_b \end{cases}

where f(r)f(r)is given by:

f(r)=(exp[(R2R1)(1rR2+1rR1)]+1)1f(r) = \left(\exp\left[(R_2 - R_1)\left(\frac{1}{r - R_2} + \frac{1}{r - R_1}\right)\right] + 1\right)^{-1}

The metric lapse and spatial terms are solved numerically by considering a spherical solution with a constant density shell and enforced boundary of vacuum interior and exterior regions. The pressure is determined using the Tolman-Oppenheimer-Volkoff (TOV) equation, with the resulting pressure and density smoothed by an input smoothing factor to remove sharp-edged boundaries in the metric. These pressures and densities are then used to solve for the lapse and spatial terms of the metric in spherical coordinates. This spherical solution is translated into cartesian coordinates where the shift vector is then added.

The metric is defined in a comoving frame of a timelike observer that is comoving with the bubble.

For more details on the Warp Shell metric and its numerical process, please read:

Method

The metric is constructed using the parameters of ADM mass, shell radii, smoothing factor, and shift-vector. The metric relies on several helper functions that solve the necessary terms for the lapse and spatial contraction. Note that by setting the shift vector amount to zero this function will return a stable matter shell (or setting doWarp to 0).

This metric is only available in a comoving frame.

For the metric to satisfy the energy conditions, three important factors must be considered:

  1. The amount of shift vector, along with its spatial change, must be balanced by the total ADM mass parameter selected. Adding more shifts or sharp changes in the shift vectors' radial distribution will cause an increase in momentum flux that can exceed the positive energy density in that region supplied by the ADM mass parameter.

  2. The mass shell smoothing factor must be chosen to not cause energy violations on the inner boundary due to excessive pressures. Select the smoothing factors to adjust this amount, along with the inner and outer radius.

  3. The mass added into the region of the warp shell should not exceed the Schwarzchild radius limit to become a black hole.

See the Constant Velocity paper for a more detailed discussion of these aspects.

The code for the specific instance of the metric discussed in the Constant Velocity paper is provided in the example W1.

Syntax

[metric] = metricGet_WarpShellComoving(gridSize,worldCenter,M,R1,R2,Rbuff,sigma , smoothfactor ,v, doWarp, gridScale)

Input Arguments

blue are required inputs.

orange are optional inputs with native default values.

InputsFormatTypeDescription

gridSize

1x4 array

integer

The size of the world specified as:

[t,x,y,z][t, x, y, z]

worldCenter

1x4 array

double

The center of the world, which defines the center of rsr_s as a 4-vector, specified as:

[t,x,y,z][t,x,y,z]

M

1x1 array

double

The ADM mass of the shell

R1

1x1 array

double

Inner radius of the shell

R2

1x1 array

double

Outer radius of the shell

Rbuff

1x1 array

double

Defines the buffer between radii and the start of the sigmoid transition.

v

1x1 array

double

Speed of the warp drive, given as a factor of c. This sets the magnitude of shift on the inside of the bubble.

sigma

1x1 array

double

Transition factor for the sigmoid.

smoothfactor

1x1 array

double

The smoothing factor used by the solver to compute the lapse and spatial terms.

doWarp

1x1 array

double

Setting to apply shift vector to the metric. Has values of 0 or 1 The default value is 1

gridScale

1x4 array

double

Unit scaling factor of the grid dimensions defined relative to gridSize. This determines the resolution of the grid along each dimension. Specified as:

[tscale,xscale,yscale,zscale][t_{scale}, x_{scale}, y_{scale}, z_{scale}]

The default value is [1, 1, 1, 1].

Output Arguments

OutputsFormatTypeDescription

metric

struct

object

Warp Shell solution returned as the metric tensor object.

Last updated