From 91d3e8f32a9df658af418a79a13ed13db5740192 Mon Sep 17 00:00:00 2001 From: Alvaro Date: Mon, 4 Nov 2024 17:52:24 +0100 Subject: [PATCH] Start section 2 --- src/app/case-study-energy/page.tsx | 2 + src/components/energy/section-2/index.tsx | 60 +++++++++++++++++++++++ src/components/energy/section-4/index.tsx | 1 - 3 files changed, 62 insertions(+), 1 deletion(-) create mode 100644 src/components/energy/section-2/index.tsx diff --git a/src/app/case-study-energy/page.tsx b/src/app/case-study-energy/page.tsx index f0788b0..5445adc 100644 --- a/src/app/case-study-energy/page.tsx +++ b/src/app/case-study-energy/page.tsx @@ -1,5 +1,6 @@ import Intro from '@/components/energy/intro'; import Section1 from '@/components/energy/section-1'; +import Section2 from '@/components/energy/section-2'; import Section3 from '@/components/energy/section-3'; import Section4 from '@/components/energy/section-4'; import Section5 from '@/components/energy/section-5'; @@ -11,6 +12,7 @@ export default function Energy() {
+ diff --git a/src/components/energy/section-2/index.tsx b/src/components/energy/section-2/index.tsx new file mode 100644 index 0000000..e9e3a05 --- /dev/null +++ b/src/components/energy/section-2/index.tsx @@ -0,0 +1,60 @@ +'use client'; + +import { useRef, useState } from 'react'; +import { AnimatePresence, motion } from "framer-motion"; +import ScrollStep from "@/components/scroll-step"; + +const transition = { duration: 0.2, ease: 'linear' }; + +export default function Section2() { + const scrollSectionRef = useRef(null); + const [step, setStep] = useState('section-2-step-2'); + + return ( +
+
+ +
+
+

Globe Video

+
+
+ + {step !== 'section-2-step-2' ? +
+ Digital twins are revolutionising the way to approach wind farm development and energy management. +
+

+ By allowing users to perform simulations that replicate real-world conditions, digital twins can help energy practitioners to map the wind potential of different regions, optimise the location of wind turbines, and predict energy generation. +

+

+ The energy output of a wind turbine depends on a variety of factors, the most important being the wind speed at the height at which the turbines are placed. Current state-of-the-art models only provide wind information at 10 metres, whereas wind turbines are normally placed at around 100 metres height, and this requires an interpolation to convert wind speed from 10 to 100 metres. +

+
: +

+ A wind turbine has a specific power curve that is provided by the manufacturer and depends on several factors (e.g. rotor diameter, rated wind speed, etc.). The measure of how much energy a turbine produces compared to its maximum theoretical output, over a certain period of time, is what is called capacity factor. This is a more meaningful variable to the energy industry than wind speed or energy density. Therefore, it is crucial for energy companies to get access to information about the capacity factor to be able to assess energy supply and meet the demand. +

+

+ Classic energy models require full time series to generate histograms of the capacity factor, which makes using the outputs of the digital twin challenging. However, a streaming setup allows histograms to be built on the fly. This functionality greatly facilitates the interactivity between the results from the climate models with impact model applications, such as applications used by the energy sector. +

+
} +
+
+
+ +
+
+ ); +}; diff --git a/src/components/energy/section-4/index.tsx b/src/components/energy/section-4/index.tsx index 31c99b0..4e3d656 100644 --- a/src/components/energy/section-4/index.tsx +++ b/src/components/energy/section-4/index.tsx @@ -1,6 +1,5 @@ 'use client'; -import { cn } from "@/lib/utils"; import { useRef, useState } from 'react'; import { AnimatePresence, motion, Variants } from "framer-motion"; import ScrollStep from "@/components/scroll-step";