From 193ff03e15e6cfe83435e9af1929eab4bb99bf6f Mon Sep 17 00:00:00 2001 From: Feda Curic Date: Wed, 12 Jun 2024 10:22:40 +0200 Subject: [PATCH] Remove duplicate section regarding templates --- docs/reference/configuration/data_types.rst | 41 --------------------- 1 file changed, 41 deletions(-) diff --git a/docs/reference/configuration/data_types.rst b/docs/reference/configuration/data_types.rst index a8ffaeb4aa0..669fefa756c 100644 --- a/docs/reference/configuration/data_types.rst +++ b/docs/reference/configuration/data_types.rst @@ -590,47 +590,6 @@ The SURFACE keyword can be used to work with surface from RMS in the irap format. For detailed description and examples see :ref:`here `. -**Regarding templates:** - -You may supply the arguments TEMPLATE:/template/file and KEY:MaGiCKEY. The -template file is an arbitrary existing text file, and KEY is a magic string -found in this file. When ERT is running the magic string is replaced with -parameter data when the ECLIPSE_FILE is written to the directory where the -simulation is run from. Consider for example the following configuration: - -:: - - TEMPLATE:/some/file KEY:Magic123 - -The template file can look like this (only the Magic123 is special): - -:: - - Header line1 - Header line2 - ============ - Magic123 - ============ - Footer line1 - Footer line2 - -When ERT is running the string Magic123 is replaced with parameter values, and -the resulting file will look like this: - -:: - - Header line1 - Header line2 - ============ - 1.6723 - 5.9731 - 4.8881 - ..... - ============ - Footer line1 - Footer line2 - - Simulated data --------------