-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update: Mon 02 Dec 2024 08:34:14 AM CET
- Loading branch information
Showing
15 changed files
with
164 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<script lang="ts"> | ||
import { page } from '$app/stores'; | ||
import { goto } from '$app/navigation'; | ||
let $$param1.c$$ = $page.params.$$param1.k$$; | ||
</script> | ||
|
||
<div class="$$name.k$$"> | ||
Hello from $$name.k$$ | ||
</div> | ||
|
||
<style lang="scss"> | ||
@media (max-width: 800px) { | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#?: | ||
# This file is used by templify to generate new files from this template. | ||
# You can use the following variables in this file: | ||
|
||
# description: The description of the template | ||
# path: The path where the file should be generated based on the project root (you can also use placeholders here) | ||
# var: Define a variable placeholder that can be used in the file content | ||
|
||
# IMPORTANT: Lines starting with a . are auto generated and should not be changed. | ||
|
||
description:A new Route | ||
path:src/routes/$$name.k$$/$$sub-route.k$$/$$param1.k$$/$$param2.k$$ | ||
var:sub-route() | ||
var:param1() | ||
var:param2() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<script lang="ts"> | ||
import { goto } from '$app/navigation'; | ||
let { | ||
cls = '' | ||
}: { | ||
cls?: string; | ||
} = $props(); | ||
</script> | ||
|
||
<button | ||
class={cls} | ||
onclick={() => { | ||
goto('/'); | ||
}} | ||
> | ||
<i class="bi bi-house"></i> Home | ||
</button> | ||
|
||
<style lang="scss"> | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import Engine from '../../types/Engine'; | ||
import { EngineCycleUtils } from '../../types/EngineCycle'; | ||
import type EngineStats from '../../types/EngineStats'; | ||
import { PropellantUtils } from '../../types/Propellant'; | ||
import { Weight } from '../../types/units/Weight'; | ||
import { ISP } from '../../types/units/ISP'; | ||
import { Size } from '../../types/units/Size'; | ||
|
||
/** | ||
* @author cophilot | ||
*/ | ||
const RL10: EngineStats = { | ||
name: 'RL10', | ||
url: 'https://en.wikipedia.org/wiki/RL10', | ||
imageUrl: | ||
'https://upload.wikimedia.org/wikipedia/commons/8/8a/Common_Extensible_Cryogenic_Engine.jpg', | ||
schemanticUrl: 'https://farm9.staticflickr.com/8345/8201255231_4dac24eb93_z.jpg', | ||
propellant: PropellantUtils.HYDRO_LOX, | ||
cycle: EngineCycleUtils.EXPANDER, | ||
specificImpulseSeaLevel: null, | ||
specificImpulseVacuum: new ISP(465.5), | ||
height: new Size(4.15), | ||
diameter: new Size(2.15), | ||
massDry: new Weight(301) | ||
}; | ||
|
||
export default new Engine(RL10); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<script lang="ts"> | ||
import { page } from '$app/stores'; | ||
import { goto } from '$app/navigation'; | ||
import HomeButton from '../../../../components/HomeButton.svelte'; | ||
let engine1 = $page.params.engine1; | ||
let engine2 = $page.params.engine2; | ||
</script> | ||
|
||
<div class="compare">Hello from compare</div> | ||
|
||
<HomeButton /> | ||
|
||
<style lang="scss"> | ||
@media (max-width: 800px) { | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters