@jjlmoya/utils-science 1.47.0 → 1.48.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/category/index.ts +27 -27
package/package.json
CHANGED
package/src/category/index.ts
CHANGED
|
@@ -1,31 +1,31 @@
|
|
|
1
1
|
import type { ScienceCategoryEntry } from '../types';
|
|
2
|
-
import { colonyCounter } from '../tool/colony-counter/
|
|
3
|
-
import { asteroidImpact } from '../tool/asteroid-impact/
|
|
4
|
-
import { microwaveDetector } from '../tool/microwave-detector/
|
|
5
|
-
import { simulationProbability } from '../tool/simulation-probability/
|
|
6
|
-
import { cellularRenewal } from '../tool/cellular-renewal/
|
|
7
|
-
import { cosmicInflation } from '../tool/cosmic-inflation/
|
|
8
|
-
import { temperatureTimeline } from '../tool/temperature-timeline/
|
|
9
|
-
import { lorenzAttractor } from '../tool/lorenz-attractor/
|
|
10
|
-
import { stellarHabitabilityZone } from '../tool/stellar-habitability-zone/
|
|
11
|
-
import { radioactiveDecay } from '../tool/radioactive-decay/
|
|
12
|
-
import { naturalSelectionDrift } from '../tool/natural-selection-drift/
|
|
13
|
-
import { entropySecondLaw } from '../tool/entropy-second-law/
|
|
14
|
-
import { doubleSlitDecoherence } from '../tool/double-slit-decoherence/
|
|
15
|
-
import { phaseDiagramCriticalPoints } from '../tool/phase-diagram-critical-points/
|
|
16
|
-
import { twinParadoxVisualizer } from '../tool/twin-paradox-visualizer/
|
|
17
|
-
import { mandelbrotFractal } from '../tool/mandelbrot-fractal/
|
|
18
|
-
import { planetAtmosphereSurvival } from '../tool/planet-atmosphere-survival/
|
|
19
|
-
import { threeBodyProblem } from '../tool/three-body-problem/
|
|
20
|
-
import { rocheLimitSatelliteDisruption } from '../tool/roche-limit-satellite-disruption/
|
|
21
|
-
import { dysonSphereEnergyCapture } from '../tool/dyson-sphere-energy-capture/
|
|
22
|
-
import { globalAlbedoSnowballSimulator } from '../tool/global-albedo-snowball-simulator/
|
|
23
|
-
import { conwayLifeRuleLab } from '../tool/conway-life-rule-lab/
|
|
24
|
-
import { crystalLatticeStructureFinder } from '../tool/crystal-lattice-structure-finder/
|
|
25
|
-
import { fermiParadoxFilterLab } from '../tool/fermi-paradox-filter-lab/
|
|
26
|
-
import { epidemicSirSimulator } from '../tool/epidemic-sir-simulator/
|
|
27
|
-
import { blackHoleEventHorizonSimulator } from '../tool/black-hole-event-horizon-simulator/
|
|
28
|
-
import { exoplanetBiosignatureDetector } from '../tool/exoplanet-biosignature-detector/
|
|
2
|
+
import { colonyCounter } from '../tool/colony-counter/entry';
|
|
3
|
+
import { asteroidImpact } from '../tool/asteroid-impact/entry';
|
|
4
|
+
import { microwaveDetector } from '../tool/microwave-detector/entry';
|
|
5
|
+
import { simulationProbability } from '../tool/simulation-probability/entry';
|
|
6
|
+
import { cellularRenewal } from '../tool/cellular-renewal/entry';
|
|
7
|
+
import { cosmicInflation } from '../tool/cosmic-inflation/entry';
|
|
8
|
+
import { temperatureTimeline } from '../tool/temperature-timeline/entry';
|
|
9
|
+
import { lorenzAttractor } from '../tool/lorenz-attractor/entry';
|
|
10
|
+
import { stellarHabitabilityZone } from '../tool/stellar-habitability-zone/entry';
|
|
11
|
+
import { radioactiveDecay } from '../tool/radioactive-decay/entry';
|
|
12
|
+
import { naturalSelectionDrift } from '../tool/natural-selection-drift/entry';
|
|
13
|
+
import { entropySecondLaw } from '../tool/entropy-second-law/entry';
|
|
14
|
+
import { doubleSlitDecoherence } from '../tool/double-slit-decoherence/entry';
|
|
15
|
+
import { phaseDiagramCriticalPoints } from '../tool/phase-diagram-critical-points/entry';
|
|
16
|
+
import { twinParadoxVisualizer } from '../tool/twin-paradox-visualizer/entry';
|
|
17
|
+
import { mandelbrotFractal } from '../tool/mandelbrot-fractal/entry';
|
|
18
|
+
import { planetAtmosphereSurvival } from '../tool/planet-atmosphere-survival/entry';
|
|
19
|
+
import { threeBodyProblem } from '../tool/three-body-problem/entry';
|
|
20
|
+
import { rocheLimitSatelliteDisruption } from '../tool/roche-limit-satellite-disruption/entry';
|
|
21
|
+
import { dysonSphereEnergyCapture } from '../tool/dyson-sphere-energy-capture/entry';
|
|
22
|
+
import { globalAlbedoSnowballSimulator } from '../tool/global-albedo-snowball-simulator/entry';
|
|
23
|
+
import { conwayLifeRuleLab } from '../tool/conway-life-rule-lab/entry';
|
|
24
|
+
import { crystalLatticeStructureFinder } from '../tool/crystal-lattice-structure-finder/entry';
|
|
25
|
+
import { fermiParadoxFilterLab } from '../tool/fermi-paradox-filter-lab/entry';
|
|
26
|
+
import { epidemicSirSimulator } from '../tool/epidemic-sir-simulator/entry';
|
|
27
|
+
import { blackHoleEventHorizonSimulator } from '../tool/black-hole-event-horizon-simulator/entry';
|
|
28
|
+
import { exoplanetBiosignatureDetector } from '../tool/exoplanet-biosignature-detector/entry';
|
|
29
29
|
|
|
30
30
|
export const scienceCategory: ScienceCategoryEntry = {
|
|
31
31
|
icon: 'mdi:flask',
|