From 0c0fa7ec12b379f0d08a44c65c515d2fd7378d78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=98rjan=20Aare=20J=C3=B8rgensen?= Date: Tue, 28 Jan 2025 13:59:18 +0100 Subject: [PATCH] fix: Replace the About dummy text with the real stuff --- .../InfoPageComponent.style.tsx | 6 +++ src/pages/About/About.tsx | 50 +++++++++++-------- 2 files changed, 36 insertions(+), 20 deletions(-) diff --git a/src/components/InfoPageComponent/InfoPageComponent.style.tsx b/src/components/InfoPageComponent/InfoPageComponent.style.tsx index 73ed6a45..7e3bc0cc 100644 --- a/src/components/InfoPageComponent/InfoPageComponent.style.tsx +++ b/src/components/InfoPageComponent/InfoPageComponent.style.tsx @@ -23,6 +23,7 @@ const InnerWrapper = styled.div` row-gap: ${spacings.LARGE}; width: 50%; + max-width: 60ch; /* Prevent text content being too wide and hard to read */ > a { display: flex; @@ -32,5 +33,10 @@ const InnerWrapper = styled.div` margin-left: ${spacings.SMALL}; } } + + ul { + margin: 0; + line-height: 1.5rem; + } `; export { InnerWrapper, StyledInforPage as Page }; diff --git a/src/pages/About/About.tsx b/src/pages/About/About.tsx index cbf68e47..4a23cff0 100644 --- a/src/pages/About/About.tsx +++ b/src/pages/About/About.tsx @@ -5,28 +5,38 @@ export const About = () => { return ( - It began with the forging of the Great Rings. Three were given to{' '} - - Norsk Regnesentral - - , immortal, wisest and fairest of all beings. Seven to the Dwarf-Lords, - great miners and craftsmen of the mountain halls. And nine, nine rings - were gifted to the race of Men, who above all else desire power. For - within these rings was bound the strength and the will to govern each - race. But they were all of them deceived, for another ring was made. - Deep in the land of Mordor, in the Fires of Mount Doom, the Dark Lord - Sauron forged a master ring, and into this ring he poured his cruelty, - his malice and his will to dominate all life. + PEPM is developed in collaboration with Equinor/Bouvet/Norwegian + Computing Center. - One ring to rule them all. - One by one, the free lands of Middle-Earth fell to the power of the - Ring, but there were some who resisted. A last alliance of men and elves - marched against the armies of Mordor, and on the very slopes of Mount - Doom, they fought for the freedom of Middle-Earth. Victory was near, but - the power of the ring could not be undone. It was in this moment, when - all hope had faded, that Isildur, son of the king, took up his father’s - sword. + The goal of the application is to extract reservoir modelling parameters + for object-based and variogram-based methods from digital geological + process models. The digital models are representative for various + outcrop analogues and subsurface reservoirs. PEPM will provide + geomodelling parameters on a scenario basis ready to be used in a FMU + (Fast Modelling Update) context. + + PEPM allows for + +
    +
  • + Import digital conceptual models from Delft3D-GT in .nc (NetCDF) + format +
  • +
  • + Assign metadata to the digital conceptual model related to + depositional environments, architectural elements and relevant + analogues and subsurface reservoir intervals +
  • +
  • Estimation of object size of architectural elements
  • +
  • + Estimation of variogram parameters for architectural elements, grain + size, porosity and permeability{' '} +
  • +
  • Make the results available through an API
  • +
  • Export results to an Excel spreadsheet
  • +
  • Export the model grid file in a RESQML format
  • +
);