From e6a7627ad6acbea8324a6cd220b8ab96de52f7b3 Mon Sep 17 00:00:00 2001
From: Lars Bilke <lars.bilke@ufz.de>
Date: Wed, 16 May 2018 22:31:29 +0200
Subject: [PATCH] [web] Feature HPC added.

---
 web/content/_index.pandoc                    | 16 ++++++++++++++++
 web/content/features/HPC-DDC.png             |  3 +++
 web/layouts/partials/components/feature.html |  2 +-
 3 files changed, 20 insertions(+), 1 deletion(-)
 create mode 100644 web/content/features/HPC-DDC.png

diff --git a/web/content/_index.pandoc b/web/content/_index.pandoc
index 88da80b11b1..25c3f0917c2 100644
--- a/web/content/_index.pandoc
+++ b/web/content/_index.pandoc
@@ -10,6 +10,22 @@ hero:
   textline: OpenGeoSys (OGS) is a scientific [open source project](https://github.com/ufz/ogs) for the development of numerical methods for the simulation of thermo-hydro-mechanical-chemical (THMC) processes in porous and fractured media. It has been successfully applied in the fields of contaminant hydrology, water resources and waste management, geotechnical applications, geothermal energy systems and energy storage.
 
 features:
+- headline: High performance computing
+  textline: |
+    High performance computing (HPC) has became a necessity in the modelling of environmental and geotechnical problems for better characterization of the complexity of geo-systems as well as predicting their evolution in time. Parallel computing is the most efficient method in the high performance computing. In OGS, the parallalization of the finite element (FE) computation is based on the domain decomposition method (DDC).
+
+    Decomposed global matricies and vectors are handled by PETSc and the system of linear equations are solved by the performant PETSc solver. PETSc builds upon the Message Passing Interface (MPI) suitable for a wide variety of parallel computing architectures.
+
+    Parallelization is implemented for single processes as well problems with coupled processes which are using the same order of element for each process.
+  visual:
+    permalink: "/features/HPC-DDC.png"
+    alt: Domain decomposition for parallel processing
+    rounded: true
+  links:
+    - text: Learn more
+      url: "/features/hpc"
+  layout: left
+
 - headline: Comprehensive Pre-Processing Tools
   textline: |
     A wide range of helper tools exist to get your model up and running with OpenGeoSys.
diff --git a/web/content/features/HPC-DDC.png b/web/content/features/HPC-DDC.png
new file mode 100644
index 00000000000..01c2f05f75d
--- /dev/null
+++ b/web/content/features/HPC-DDC.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:34527fb50cddabbc9c934fdcf18e7cccd7902443b473cce2bdbf8c3e111ed7ac
+size 171839
diff --git a/web/layouts/partials/components/feature.html b/web/layouts/partials/components/feature.html
index 4941e13f377..cdd1858e8c6 100644
--- a/web/layouts/partials/components/feature.html
+++ b/web/layouts/partials/components/feature.html
@@ -15,7 +15,7 @@
         </div>
       </div>
       <div class="w-full md:w-1/2 md:px-4">
-        <img src="{{ .feature.visual.permalink }}">
+        <img class="{{ if .feature.visual.rounded }}rounded shadow-lg{{ end }}" src="{{ .feature.visual.permalink }}">
       </div>
       {{ partial "components/subfeatures" .feature.subfeatures }}
     </div>
-- 
GitLab