dde272c4b8
i18n - Build Validation / Validate i18n Builds (24) (push) Has been cancelled
CI - Node.js / Lint (24) (push) Has been cancelled
CI - Node.js / Build (24) (push) Has been cancelled
CI - Node.js / Test (24) (push) Has been cancelled
CI - Node.js / Test - Upcoming Changes (24) (push) Has been cancelled
CI - Node.js / Test - i18n (italian, 24) (push) Has been cancelled
CI - Node.js / Test - i18n (portuguese, 24) (push) Has been cancelled
CD - Docker - GHCR Images / Build and Push Images (push) Has been cancelled
86 lines
2.2 KiB
Markdown
86 lines
2.2 KiB
Markdown
---
|
|
id: af4afb223120f7348cdfc9fd
|
|
title: Map the Debris
|
|
challengeType: 1
|
|
forumTopicId: 16021
|
|
dashedName: map-the-debris
|
|
---
|
|
|
|
# --description--
|
|
|
|
According to Kepler's Third Law, the orbital period $T$ of two point masses orbiting each other in a circular or elliptic orbit is:
|
|
|
|
$$
|
|
T = 2 \pi \sqrt{\frac{a^{3}}{\mu}}
|
|
$$
|
|
|
|
- $a$ is the orbit's semi-major axis
|
|
- $μ = GM$ is the standard gravitational parameter
|
|
- $G$ is the gravitational constant,
|
|
- $M$ is the mass of the more massive body.
|
|
|
|
Return a new array that transforms the elements' average altitude into their orbital periods (in seconds).
|
|
|
|
The array will contain objects in the format `{name: 'name', avgAlt: avgAlt}`.
|
|
|
|
The values should be rounded to the nearest whole number. The body being orbited is Earth.
|
|
|
|
The radius of the earth is 6367.4447 kilometers, and the GM value of earth is 398600.4418 km<sup>3</sup>s<sup>-2</sup>.
|
|
|
|
# --hints--
|
|
|
|
`orbitalPeriod([{name : "sputnik", avgAlt : 35873.5553}])` should return `[{name: "sputnik", orbitalPeriod: 86400}]`.
|
|
|
|
```js
|
|
assert.deepEqual(orbitalPeriod([{ name: 'sputnik', avgAlt: 35873.5553 }]), [
|
|
{ name: 'sputnik', orbitalPeriod: 86400 }
|
|
]);
|
|
```
|
|
|
|
`orbitalPeriod([{name: "iss", avgAlt: 413.6}, {name: "hubble", avgAlt: 556.7}, {name: "moon", avgAlt: 378632.553}])` should return `[{name : "iss", orbitalPeriod: 5557}, {name: "hubble", orbitalPeriod: 5734}, {name: "moon", orbitalPeriod: 2377399}]`.
|
|
|
|
```js
|
|
assert.deepEqual(
|
|
orbitalPeriod([
|
|
{ name: 'iss', avgAlt: 413.6 },
|
|
{ name: 'hubble', avgAlt: 556.7 },
|
|
{ name: 'moon', avgAlt: 378632.553 }
|
|
]),
|
|
[
|
|
{ name: 'iss', orbitalPeriod: 5557 },
|
|
{ name: 'hubble', orbitalPeriod: 5734 },
|
|
{ name: 'moon', orbitalPeriod: 2377399 }
|
|
]
|
|
);
|
|
```
|
|
|
|
# --seed--
|
|
|
|
## --seed-contents--
|
|
|
|
```js
|
|
function orbitalPeriod(arr) {
|
|
const GM = 398600.4418;
|
|
const earthRadius = 6367.4447;
|
|
return arr;
|
|
}
|
|
|
|
orbitalPeriod([{name : "sputnik", avgAlt : 35873.5553}]);
|
|
```
|
|
|
|
# --solutions--
|
|
|
|
```js
|
|
function orbitalPeriod(arr) {
|
|
const GM = 398600.4418;
|
|
const earthRadius = 6367.4447;
|
|
const TAU = 2 * Math.PI;
|
|
return arr.map(function(obj) {
|
|
return {
|
|
name: obj.name,
|
|
orbitalPeriod: Math.round(TAU * Math.sqrt(Math.pow(obj.avgAlt+earthRadius, 3)/GM))
|
|
};
|
|
});
|
|
}
|
|
```
|