Skip to content

Commit db02e0d

Browse files
committed
chore: descriptions
1 parent 6310fbd commit db02e0d

File tree

4 files changed

+61
-8
lines changed

4 files changed

+61
-8
lines changed

src/pages/tools/number/generic-calc/data/ohmsLaw.ts

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,24 @@ import type { GenericCalcType } from './types';
22

33
const ohmsLawCalc: GenericCalcType = {
44
icon: 'mdi:ohm',
5-
keywords: [],
6-
shortDescription: '',
5+
keywords: [
6+
'ohm',
7+
'voltage',
8+
'current',
9+
'resistance',
10+
'electrical',
11+
'circuit',
12+
'electronics',
13+
'power',
14+
'V=IR'
15+
],
16+
shortDescription:
17+
"Calculate voltage, current, or resistance in electrical circuits using Ohm's Law",
718
name: "Ohm's Law",
819
path: 'ohms-law',
920
description: 'Calculates voltage, current and resistance',
21+
longDescription:
22+
"This calculator applies Ohm's Law (V = I × R) to determine any of the three electrical parameters when the other two are known. Ohm's Law is a fundamental principle in electrical engineering that describes the relationship between voltage (V), current (I), and resistance (R). This tool is essential for electronics hobbyists, electrical engineers, and students working with circuits to quickly solve for unknown values in their electrical designs.",
1023
formula: 'V = I * R',
1124
presets: [],
1225
variables: [

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

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,24 @@ import type { GenericCalcType } from './types';
22

33
const areaSphere: GenericCalcType = {
44
icon: 'ph:sphere-duotone',
5-
keywords: [],
6-
shortDescription: '',
5+
keywords: [
6+
'sphere',
7+
'area',
8+
'surface area',
9+
'geometry',
10+
'mathematics',
11+
'radius',
12+
'calculation',
13+
'3D',
14+
'shape'
15+
],
16+
shortDescription:
17+
'Calculate the surface area of a sphere based on its radius',
718
name: 'Area of a Sphere',
819
path: 'area-sphere',
920
description: 'Area of a Sphere',
21+
longDescription:
22+
'This calculator determines the surface area of a sphere using the formula A = 4πr². You can either input the radius to find the surface area or enter the surface area to calculate the required radius. This tool is useful for students studying geometry, engineers working with spherical objects, and anyone needing to perform calculations involving spherical surfaces.',
1023
formula: 'A = 4 * pi * r**2',
1124
presets: [],
1225
variables: [

src/pages/tools/number/generic-calc/data/sphereVolume.ts

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,24 @@ import type { GenericCalcType } from './types';
22

33
const volumeSphere: GenericCalcType = {
44
icon: 'gravity-ui:sphere',
5-
keywords: [],
6-
shortDescription: '',
5+
keywords: [
6+
'sphere',
7+
'volume',
8+
'geometry',
9+
'mathematics',
10+
'radius',
11+
'diameter',
12+
'calculation',
13+
'3D',
14+
'shape',
15+
'capacity'
16+
],
17+
shortDescription: 'Calculate the volume of a sphere using radius or diameter',
718
name: 'Volume of a Sphere',
819
path: 'volume-sphere',
920
description: 'Volume of a Sphere',
21+
longDescription:
22+
'This calculator computes the volume of a sphere using the formula V = (4/3)πr³. You can input either the radius or diameter to find the volume, or enter the volume to determine the required radius. The tool is valuable for students, engineers, and professionals working with spherical objects in fields such as physics, engineering, and manufacturing.',
1023
formula: 'v = (4/3) * pi * r**3',
1124
presets: [],
1225
variables: [

src/pages/tools/number/generic-calc/data/voltageDropInWire.ts

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,27 @@ import wire_gauge from '../../../../../datatables/data/wire_gauge';
44

55
const voltageDropInWire: GenericCalcType = {
66
icon: 'simple-icons:wire',
7-
keywords: [],
8-
shortDescription: '',
7+
keywords: [
8+
'voltage drop',
9+
'cable',
10+
'wire',
11+
'electrical',
12+
'resistance',
13+
'power loss',
14+
'conductor',
15+
'resistivity',
16+
'AWG',
17+
'gauge'
18+
],
19+
shortDescription:
20+
'Calculate voltage drop and power loss in electrical cables based on length, material, and current',
921
name: 'Round trip voltage drop in cable',
1022
path: 'cable-voltage-drop',
1123
formula: 'x = (((p * L) / (A/10**6) ) *2) * I',
1224
description:
1325
'Calculates round trip voltage and power loss in a 2 conductor cable',
26+
longDescription:
27+
'This calculator helps determine the voltage drop and power loss in a two-conductor electrical cable. It takes into account the cable length, wire gauge (cross-sectional area), material resistivity, and current flow. The tool calculates the round-trip voltage drop, total resistance of the cable, and the power dissipated as heat. This is particularly useful for electrical engineers, electricians, and hobbyists when designing electrical systems to ensure voltage levels remain within acceptable limits at the load.',
1428
presets: [
1529
{
1630
title: 'Material',

0 commit comments

Comments
 (0)