Files
omni-tools/src/pages/tools/number/generic-calc/data/sphereArea.ts

29 lines
532 B
TypeScript
Raw Normal View History

2025-04-05 04:36:22 +00:00
import type { GenericCalcType } from './types';
const areaSphere: GenericCalcType = {
2025-04-17 08:03:18 +01:00
icon: 'ph:sphere-duotone',
keywords: [],
shortDescription: '',
name: 'Area of a Sphere',
path: 'area-sphere',
2025-04-05 04:36:22 +00:00
description: 'Area of a Sphere',
formula: 'A = 4 * pi * r**2',
presets: [],
variables: [
{
name: 'A',
title: 'Area',
unit: 'mm2'
},
{
name: 'r',
title: 'Radius',
formula: 'r = sqrt(A/pi) / 2',
unit: 'mm',
default: 1
}
]
};
export default areaSphere;