calculate_tensor
Compute tensors from a specified metric using EinsteinPy's symbolic library. Supports tensor type selection and result simplification for streamlined symbolic algebra operations.
Instructions
Calculates a tensor from a metric using einsteinpy.symbolic.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
metric_key | Yes | ||
simplify_result | No | ||
tensor_type | Yes |
Input Schema (JSON Schema)
{
"properties": {
"metric_key": {
"title": "Metric Key",
"type": "string"
},
"simplify_result": {
"default": true,
"title": "Simplify Result",
"type": "boolean"
},
"tensor_type": {
"title": "Tensor Type",
"type": "string"
}
},
"required": [
"metric_key",
"tensor_type"
],
"title": "calculate_tensorArguments",
"type": "object"
}