CINXE.COM
Short Course Catalogue - eage.org
<!doctype html> <html lang="en-US" prefix="og: https://ogp.me/ns#"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="https://gmpg.org/xfn/11"> <style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style> <!-- Search Engine Optimization by Rank Math - https://rankmath.com/ --> <title>Short Course Catalogue - eage.org</title> <meta name="description" content="At EAGE we believe that it is vitally important for all Geoscientists to keep up-to-date on the latest developments in their fields. That's why our Education"/> <meta name="robots" content="follow, index, max-snippet:-1, max-video-preview:-1, max-image-preview:large"/> <link rel="canonical" href="https://eage.org/education/short-course-catalogue/" /> <meta property="og:locale" content="en_US" /> <meta property="og:type" content="article" /> <meta property="og:title" content="Short Course Catalogue - eage.org" /> <meta property="og:description" content="At EAGE we believe that it is vitally important for all Geoscientists to keep up-to-date on the latest developments in their fields. That's why our Education" /> <meta property="og:url" content="https://eage.org/education/short-course-catalogue/" /> <meta property="og:site_name" content="eage.org" /> <meta property="og:updated_time" content="2024-12-09T19:53:00+00:00" /> <meta property="og:image" content="https://eage.org/wp-content/uploads/2020/04/Template_RevSlider_BG.jpg" /> <meta property="og:image:secure_url" content="https://eage.org/wp-content/uploads/2020/04/Template_RevSlider_BG.jpg" /> <meta property="og:image:width" content="800" /> <meta property="og:image:height" content="217" /> <meta property="og:image:alt" content="Short Course Catalogue" /> <meta property="og:image:type" content="image/jpeg" /> <meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:title" content="Short Course Catalogue - eage.org" /> <meta name="twitter:description" content="At EAGE we believe that it is vitally important for all Geoscientists to keep up-to-date on the latest developments in their fields. That's why our Education" /> <meta name="twitter:image" content="https://eage.org/wp-content/uploads/2020/04/Template_RevSlider_BG.jpg" /> <!-- /Rank Math WordPress SEO plugin --> <link rel='dns-prefetch' href='//www.googletagmanager.com' /> <link rel='dns-prefetch' href='//stats.wp.com' /> <link rel='dns-prefetch' href='//pagead2.googlesyndication.com' /> <link rel="alternate" type="application/rss+xml" title="eage.org » Feed" href="https://eage.org/feed/" /> <link rel="alternate" type="application/rss+xml" title="eage.org » Comments Feed" href="https://eage.org/comments/feed/" /> <link rel="alternate" type="application/rss+xml" title="eage.org » Short Course Catalogue Comments Feed" href="https://eage.org/education/short-course-catalogue/feed/" /> <script type="text/javascript"> /* <![CDATA[ */ window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/eage.org\/wp-includes\/js\/wp-emoji.js?ver=6.7.2","twemoji":"https:\/\/eage.org\/wp-includes\/js\/twemoji.js?ver=6.7.2"}}; /** * @output wp-includes/js/wp-emoji-loader.js */ /** * Emoji Settings as exported in PHP via _print_emoji_detection_script(). * @typedef WPEmojiSettings * @type {object} * @property {?object} source * @property {?string} source.concatemoji * @property {?string} source.twemoji * @property {?string} source.wpemoji * @property {?boolean} DOMReady * @property {?Function} readyCallback */ /** * Support tests. * @typedef SupportTests * @type {object} * @property {?boolean} flag * @property {?boolean} emoji */ /** * IIFE to detect emoji support and load Twemoji if needed. * * @param {Window} window * @param {Document} document * @param {WPEmojiSettings} settings */ ( function wpEmojiLoader( window, document, settings ) { if ( typeof Promise === 'undefined' ) { return; } var sessionStorageKey = 'wpEmojiSettingsSupports'; var tests = [ 'flag', 'emoji' ]; /** * Checks whether the browser supports offloading to a Worker. * * @since 6.3.0 * * @private * * @returns {boolean} */ function supportsWorkerOffloading() { return ( typeof Worker !== 'undefined' && typeof OffscreenCanvas !== 'undefined' && typeof URL !== 'undefined' && URL.createObjectURL && typeof Blob !== 'undefined' ); } /** * @typedef SessionSupportTests * @type {object} * @property {number} timestamp * @property {SupportTests} supportTests */ /** * Get support tests from session. * * @since 6.3.0 * * @private * * @returns {?SupportTests} Support tests, or null if not set or older than 1 week. */ function getSessionSupportTests() { try { /** @type {SessionSupportTests} */ var item = JSON.parse( sessionStorage.getItem( sessionStorageKey ) ); if ( typeof item === 'object' && typeof item.timestamp === 'number' && new Date().valueOf() < item.timestamp + 604800 && // Note: Number is a week in seconds. typeof item.supportTests === 'object' ) { return item.supportTests; } } catch ( e ) {} return null; } /** * Persist the supports in session storage. * * @since 6.3.0 * * @private * * @param {SupportTests} supportTests Support tests. */ function setSessionSupportTests( supportTests ) { try { /** @type {SessionSupportTests} */ var item = { supportTests: supportTests, timestamp: new Date().valueOf() }; sessionStorage.setItem( sessionStorageKey, JSON.stringify( item ) ); } catch ( e ) {} } /** * Checks if two sets of Emoji characters render the same visually. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.9.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} set1 Set of Emoji to test. * @param {string} set2 Set of Emoji to test. * * @return {boolean} True if the two sets render the same. */ function emojiSetsRenderIdentically( context, set1, set2 ) { // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set1, 0, 0 ); var rendered1 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set2, 0, 0 ); var rendered2 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); return rendered1.every( function ( rendered2Data, index ) { return rendered2Data === rendered2[ index ]; } ); } /** * Determines if the browser properly renders Emoji that Twemoji can supplement. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.2.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} type Whether to test for support of "flag" or "emoji". * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {boolean} True if the browser can render emoji, false if it cannot. */ function browserSupportsEmoji( context, type, emojiSetsRenderIdentically ) { var isIdentical; switch ( type ) { case 'flag': /* * Test for Transgender flag compatibility. Added in Unicode 13. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (white flag emoji + transgender symbol). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDFF3\uFE0F\u200D\u26A7\uFE0F', // as a zero-width joiner sequence '\uD83C\uDFF3\uFE0F\u200B\u26A7\uFE0F' // separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for UN flag compatibility. This is the least supported of the letter locale flags, * so gives us an easy test for full support. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly ([U] + [N]). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDDFA\uD83C\uDDF3', // as the sequence of two code points '\uD83C\uDDFA\u200B\uD83C\uDDF3' // as the two code points separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for English flag compatibility. England is a country in the United Kingdom, it * does not have a two letter locale code but rather a five letter sub-division code. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]). */ isIdentical = emojiSetsRenderIdentically( context, // as the flag sequence '\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F', // with each code point separated by a zero-width space '\uD83C\uDFF4\u200B\uDB40\uDC67\u200B\uDB40\uDC62\u200B\uDB40\uDC65\u200B\uDB40\uDC6E\u200B\uDB40\uDC67\u200B\uDB40\uDC7F' ); return ! isIdentical; case 'emoji': /* * Four and twenty blackbirds baked in a pie. * * To test for Emoji 15.0 support, try to render a new emoji: Blackbird. * * The Blackbird is a ZWJ sequence combining 🐦 Bird and ⬛ large black square., * * 0x1F426 (\uD83D\uDC26) == Bird * 0x200D == Zero-Width Joiner (ZWJ) that links the code points for the new emoji or * 0x200B == Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji. * 0x2B1B == Large Black Square * * When updating this test for future Emoji releases, ensure that individual emoji that make up the * sequence come from older emoji standards. */ isIdentical = emojiSetsRenderIdentically( context, '\uD83D\uDC26\u200D\u2B1B', // as the zero-width joiner sequence '\uD83D\uDC26\u200B\u2B1B' // separated by a zero-width space ); return ! isIdentical; } return false; } /** * Checks emoji support tests. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 6.3.0 * * @private * * @param {string[]} tests Tests. * @param {Function} browserSupportsEmoji Reference to browserSupportsEmoji function, needed due to minification. * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {SupportTests} Support tests. */ function testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ) { var canvas; if ( typeof WorkerGlobalScope !== 'undefined' && self instanceof WorkerGlobalScope ) { canvas = new OffscreenCanvas( 300, 150 ); // Dimensions are default for HTMLCanvasElement. } else { canvas = document.createElement( 'canvas' ); } var context = canvas.getContext( '2d', { willReadFrequently: true } ); /* * Chrome on OS X added native emoji rendering in M41. Unfortunately, * it doesn't work when the font is bolder than 500 weight. So, we * check for bold rendering support to avoid invisible emoji in Chrome. */ context.textBaseline = 'top'; context.font = '600 32px Arial'; var supports = {}; tests.forEach( function ( test ) { supports[ test ] = browserSupportsEmoji( context, test, emojiSetsRenderIdentically ); } ); return supports; } /** * Adds a script to the head of the document. * * @ignore * * @since 4.2.0 * * @param {string} src The url where the script is located. * * @return {void} */ function addScript( src ) { var script = document.createElement( 'script' ); script.src = src; script.defer = true; document.head.appendChild( script ); } settings.supports = { everything: true, everythingExceptFlag: true }; // Create a promise for DOMContentLoaded since the worker logic may finish after the event has fired. var domReadyPromise = new Promise( function ( resolve ) { document.addEventListener( 'DOMContentLoaded', resolve, { once: true } ); } ); // Obtain the emoji support from the browser, asynchronously when possible. new Promise( function ( resolve ) { var supportTests = getSessionSupportTests(); if ( supportTests ) { resolve( supportTests ); return; } if ( supportsWorkerOffloading() ) { try { // Note that the functions are being passed as arguments due to minification. var workerScript = 'postMessage(' + testEmojiSupports.toString() + '(' + [ JSON.stringify( tests ), browserSupportsEmoji.toString(), emojiSetsRenderIdentically.toString() ].join( ',' ) + '));'; var blob = new Blob( [ workerScript ], { type: 'text/javascript' } ); var worker = new Worker( URL.createObjectURL( blob ), { name: 'wpTestEmojiSupports' } ); worker.onmessage = function ( event ) { supportTests = event.data; setSessionSupportTests( supportTests ); worker.terminate(); resolve( supportTests ); }; return; } catch ( e ) {} } supportTests = testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ); setSessionSupportTests( supportTests ); resolve( supportTests ); } ) // Once the browser emoji support has been obtained from the session, finalize the settings. .then( function ( supportTests ) { /* * Tests the browser support for flag emojis and other emojis, and adjusts the * support settings accordingly. */ for ( var test in supportTests ) { settings.supports[ test ] = supportTests[ test ]; settings.supports.everything = settings.supports.everything && settings.supports[ test ]; if ( 'flag' !== test ) { settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ test ]; } } settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && ! settings.supports.flag; // Sets DOMReady to false and assigns a ready function to settings. settings.DOMReady = false; settings.readyCallback = function () { settings.DOMReady = true; }; } ) .then( function () { return domReadyPromise; } ) .then( function () { // When the browser can not render everything we need to load a polyfill. if ( ! settings.supports.everything ) { settings.readyCallback(); var src = settings.source || {}; if ( src.concatemoji ) { addScript( src.concatemoji ); } else if ( src.wpemoji && src.twemoji ) { addScript( src.twemoji ); addScript( src.wpemoji ); } } } ); } )( window, document, window._wpemojiSettings ); /* ]]> */ </script> <style id='wp-emoji-styles-inline-css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='all-css-4' href='https://eage.org/_static/??-eJzTLy/QzcxLzilNSS3WzyrWz01NyUxMzUnNTc0rQeEU5CRWphbp5qSmJyZX6uVm5uklFxfr6OPTDpRD5oM02OfaGpobWxpZmhgbGwAAhN0tcg==' type='text/css' media='all' /> <style id='jetpack-sharing-buttons-style-inline-css'> .jetpack-sharing-buttons__services-list{display:flex;flex-direction:row;flex-wrap:wrap;gap:0;list-style-type:none;margin:5px;padding:0}.jetpack-sharing-buttons__services-list.has-small-icon-size{font-size:12px}.jetpack-sharing-buttons__services-list.has-normal-icon-size{font-size:16px}.jetpack-sharing-buttons__services-list.has-large-icon-size{font-size:24px}.jetpack-sharing-buttons__services-list.has-huge-icon-size{font-size:36px}@media print{.jetpack-sharing-buttons__services-list{display:none!important}}.editor-styles-wrapper .wp-block-jetpack-sharing-buttons{gap:0;padding-inline-start:0}ul.jetpack-sharing-buttons__services-list.has-background{padding:1.25em 2.375em} </style> <style id='rank-math-toc-block-style-inline-css'> .wp-block-rank-math-toc-block nav ol{counter-reset:item}.wp-block-rank-math-toc-block nav ol li{display:block}.wp-block-rank-math-toc-block nav ol li:before{content:counters(item, ".") ". ";counter-increment:item} </style> <style id='rank-math-rich-snippet-style-inline-css'> /*! * Plugin: Rank Math * URL: https://rankmath.com/wordpress/plugin/seo-suite/ * Name: rank-math-review-snippet.css */@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(-360deg)}}@keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(-360deg)}}@keyframes bounce{from{-webkit-transform:translateY(0px);transform:translateY(0px)}to{-webkit-transform:translateY(-5px);transform:translateY(-5px)}}@-webkit-keyframes bounce{from{-webkit-transform:translateY(0px);transform:translateY(0px)}to{-webkit-transform:translateY(-5px);transform:translateY(-5px)}}@-webkit-keyframes loading{0%{background-size:20% 50% ,20% 50% ,20% 50%}20%{background-size:20% 20% ,20% 50% ,20% 50%}40%{background-size:20% 100%,20% 20% ,20% 50%}60%{background-size:20% 50% ,20% 100%,20% 20%}80%{background-size:20% 50% ,20% 50% ,20% 100%}100%{background-size:20% 50% ,20% 50% ,20% 50%}}@keyframes loading{0%{background-size:20% 50% ,20% 50% ,20% 50%}20%{background-size:20% 20% ,20% 50% ,20% 50%}40%{background-size:20% 100%,20% 20% ,20% 50%}60%{background-size:20% 50% ,20% 100%,20% 20%}80%{background-size:20% 50% ,20% 50% ,20% 100%}100%{background-size:20% 50% ,20% 50% ,20% 50%}}:root{--rankmath-wp-adminbar-height: 0}#rank-math-rich-snippet-wrapper{overflow:hidden}#rank-math-rich-snippet-wrapper h5.rank-math-title{display:block;font-size:18px;line-height:1.4}#rank-math-rich-snippet-wrapper .rank-math-review-image{float:right;max-width:40%;margin-left:15px}#rank-math-rich-snippet-wrapper .rank-math-review-data{margin-bottom:15px}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper{width:100%;padding:0 0 20px 0;float:left;clear:both;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-total{border:0;display:block;margin:0;width:auto;float:left;text-align:left;padding:0;font-size:24px;line-height:1;font-weight:700;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star{float:left;margin-left:15px;margin-top:5px;position:relative;z-index:99;line-height:1}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star .rank-math-review-result-wrapper{display:inline-block;white-space:nowrap;position:relative;color:#e7e7e7}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star .rank-math-review-result-wrapper .rank-math-review-result{position:absolute;top:0;left:0;overflow:hidden;white-space:nowrap;color:#ffbe01}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star .rank-math-review-result-wrapper i{font-size:18px;-webkit-text-stroke-width:1px;font-style:normal;padding:0 2px;line-height:inherit}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star .rank-math-review-result-wrapper i:before{content:"\2605"}body.rtl #rank-math-rich-snippet-wrapper .rank-math-review-image{float:left;margin-left:0;margin-right:15px}body.rtl #rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-total{float:right}body.rtl #rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star{float:right;margin-left:0;margin-right:15px}body.rtl #rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star .rank-math-review-result{left:auto;right:0}@media screen and (max-width: 480px){#rank-math-rich-snippet-wrapper .rank-math-review-image{display:block;max-width:100%;width:100%;text-align:center;margin-right:0}#rank-math-rich-snippet-wrapper .rank-math-review-data{clear:both}}.clear{clear:both} </style> <style id='filebird-block-filebird-gallery-style-inline-css'> ul.filebird-block-filebird-gallery{margin:auto!important;padding:0!important;width:100%}ul.filebird-block-filebird-gallery.layout-grid{display:grid;grid-gap:20px;align-items:stretch;grid-template-columns:repeat(var(--columns),1fr);justify-items:stretch}ul.filebird-block-filebird-gallery.layout-grid li img{border:1px solid #ccc;box-shadow:2px 2px 6px 0 rgba(0,0,0,.3);height:100%;max-width:100%;-o-object-fit:cover;object-fit:cover;width:100%}ul.filebird-block-filebird-gallery.layout-masonry{-moz-column-count:var(--columns);-moz-column-gap:var(--space);column-gap:var(--space);-moz-column-width:var(--min-width);columns:var(--min-width) var(--columns);display:block;overflow:auto}ul.filebird-block-filebird-gallery.layout-masonry li{margin-bottom:var(--space)}ul.filebird-block-filebird-gallery li{list-style:none}ul.filebird-block-filebird-gallery li figure{height:100%;margin:0;padding:0;position:relative;width:100%}ul.filebird-block-filebird-gallery li figure figcaption{background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,transparent);bottom:0;box-sizing:border-box;color:#fff;font-size:.8em;margin:0;max-height:100%;overflow:auto;padding:3em .77em .7em;position:absolute;text-align:center;width:100%;z-index:2}ul.filebird-block-filebird-gallery li figure figcaption a{color:inherit} </style> <style id='classic-theme-styles-inline-css'> /** * These rules are needed for backwards compatibility. * They should match the button element rules in the base theme.json file. */ .wp-block-button__link { color: #ffffff; background-color: #32373c; border-radius: 9999px; /* 100% causes an oval, but any explicit but really high value retains the pill shape. */ /* This needs a low specificity so it won't override the rules from the button element if defined in theme.json. */ box-shadow: none; text-decoration: none; /* The extra 2px are added to size solids the same as the outline versions.*/ padding: calc(0.667em + 2px) calc(1.333em + 2px); font-size: 1.125em; } .wp-block-file__button { background: #32373c; color: #ffffff; text-decoration: none; } </style> <style id='global-styles-inline-css'> :root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} :where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;} :where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;} :root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;} </style> <link rel='stylesheet' id='all-css-16' href='https://eage.org/_static/??-eJylkt1OwzAMhV+I1IwJEBeIR0Fe4rWG/Cl2GHt70hYkkCir6E2UHNufjh3DKRubolJUyL72HAUw9qcMKEIqcGzB+TR4IkmBwMpPoQscuyZewSWYY9FZ6Q41Ok/di1yo5Gh9dQT03oLCqQUkl2ebfA1j0gweLWHkgLrGzXrmN3mZmc18NWILZ6UExzLluNnXiAPRc2t3G6MKFZMxkv8/yG+onUx8jXkbxQ5YdCPjINhZLKmNZWtTY0eF0RtHwv0f+7Pun9g4VMxsX6kss5wzQljsYDSZQLFCrgfPdiLxWyrnz/ivK60DBRIYyPtkyLdH1FQW9mwheZLH5KfwuLu/ebi9vtvt9h8gLI3O' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-frontend-css' href='https://eage.org/wp-content/uploads/elementor/css/custom-frontend.css?ver=1737636798' media='all' /> <link rel='stylesheet' id='all-css-18' href='https://eage.org/wp-content/plugins/elementor/assets/css/widget-image.min.css?m=1739269105g' type='text/css' media='all' /> <link rel='stylesheet' id='widget-nav-menu-css' href='https://eage.org/wp-content/uploads/elementor/css/custom-pro-widget-nav-menu.min.css?ver=1737636870' media='all' /> <link rel='stylesheet' id='all-css-20' href='https://eage.org/_static/??-eJylkkFuAjEMRS+EcaGihQXiLGnGTC0lcRQHArfHUw2IHTNlaef/F3/L2DJ4SZVSxRxOPSdFChStloJOlapi4B90iaOrLPau9RrIZPDoQV+kLb3qAqfytHGmguctmm2sphMGj4k6Hn53YRhmKgJykWdM466nCkqu+F84SonLyGlemKOJwDVSifQHHRpj/SZJJXA3bzH3RNl5W8isME/2SpcKZBuWmYzX15Il/y+ReHYB2Dx6n+kQ96vvz936a7f62NwA8ucRdw==' type='text/css' media='all' /> <link rel='stylesheet' id='e-apple-webkit-css' href='https://eage.org/wp-content/uploads/elementor/css/custom-apple-webkit.min.css?ver=1737636792' media='all' /> <link rel='stylesheet' id='all-css-22' href='https://eage.org/_static/??-eJyVy0sKgDAMANEL2cYPKl2IZykm1IBNi6n2+rrxAC5n4EHNZktSSArk4wosCnRQfDud4FWpKGyqUBkDFYN8M9JpI4t9dwM//U4eWcLn17h08+D6yXXt+ADFJDOw' type='text/css' media='all' /> <link rel='stylesheet' id='widget-icon-box-css' href='https://eage.org/wp-content/uploads/elementor/css/custom-widget-icon-box.min.css?ver=1737636810' media='all' /> <link rel='stylesheet' id='all-css-24' href='https://eage.org/_static/??-eJytz8EKwjAMBuAXcotTmOwgXrwIvkTtshFom7BkDN/eVhDBgyjsmD/JRwKLVJ6TYTKQMI+UFDBgzDVPlUwMThVNwavCQv2IVgmraR0p1TncwDfhtR3oBi5RdEac+2r3gAqD6/Hyg/J5Rx7sqUguKAjLLOtdc+ZlJemKg/0nIfmilBffvz+z4pzisTnsu13bNdv2Ac7np0c=' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-3378-css' href='https://eage.org/wp-content/uploads/elementor/css/post-3378.css?ver=1737636885' media='all' /> <link rel='stylesheet' id='all-css-26' href='https://eage.org/wp-content/plugins/powerpack-elements/assets/css/frontend.css?m=1729506112g' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-5056-css' href='https://eage.org/wp-content/uploads/elementor/css/post-5056.css?ver=1737639702' media='all' /> <link rel='stylesheet' id='elementor-post-147-css' href='https://eage.org/wp-content/uploads/elementor/css/post-147.css?ver=1737636783' media='all' /> <link rel='stylesheet' id='elementor-post-174-css' href='https://eage.org/wp-content/uploads/elementor/css/post-174.css?ver=1737636786' media='all' /> <link rel='stylesheet' id='elementor-post-3357-css' href='https://eage.org/wp-content/uploads/elementor/css/post-3357.css?ver=1737639520' media='all' /> <link rel='stylesheet' id='all-css-34' href='https://eage.org/wp-content/themes/hello-elementor/elementorRights.css?m=1729506113g' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-15640-css' href='https://eage.org/wp-content/uploads/elementor/css/post-15640.css?ver=1737636789' media='all' /> <link rel='stylesheet' id='elementor-post-14898-css' href='https://eage.org/wp-content/uploads/elementor/css/post-14898.css?ver=1737636792' media='all' /> <link rel='stylesheet' id='elementor-post-4198-css' href='https://eage.org/wp-content/uploads/elementor/css/post-4198.css?ver=1737636795' media='all' /> <link rel='stylesheet' id='elementor-post-1653-css' href='https://eage.org/wp-content/uploads/elementor/css/post-1653.css?ver=1737636795' media='all' /> <link rel='stylesheet' id='elementor-post-1650-css' href='https://eage.org/wp-content/uploads/elementor/css/post-1650.css?ver=1737636798' media='all' /> <link rel='stylesheet' id='elementor-post-1647-css' href='https://eage.org/wp-content/uploads/elementor/css/post-1647.css?ver=1737636801' media='all' /> <link rel='stylesheet' id='elementor-post-1644-css' href='https://eage.org/wp-content/uploads/elementor/css/post-1644.css?ver=1737636804' media='all' /> <link rel='stylesheet' id='elementor-post-1641-css' href='https://eage.org/wp-content/uploads/elementor/css/post-1641.css?ver=1737636808' media='all' /> <link rel='stylesheet' id='elementor-post-1588-css' href='https://eage.org/wp-content/uploads/elementor/css/post-1588.css?ver=1737636811' media='all' /> <link rel='stylesheet' id='elementor-post-1566-css' href='https://eage.org/wp-content/uploads/elementor/css/post-1566.css?ver=1737636811' media='all' /> <link rel='stylesheet' id='elementor-post-1137-css' href='https://eage.org/wp-content/uploads/elementor/css/post-1137.css?ver=1737636814' media='all' /> <link rel='stylesheet' id='all-css-56' href='https://eage.org/_static/??-eJytkTkSwjAMRS+EMTs0DGfxogQziuWxZJbbYxJSUEATCjdv/J80X/qWlKMoEEUnLG2IrMVYhJSBWbv6bAnotYfGFJR5JTP9O9SRLwgfYSOm/8BzW0Qo8mSPIyxdbAIK5FvwLch0ZxPu4M9gPOT/uIYlpy/GLhOimtRdxamGwxXUWOEXTUO51qmMpSKKz5TFkYdxuk7FYnBv8wsplscvXwzxYt5DtWGup+rTPR+wGqQvxak7LvfrzW67WG0PT5bsAYI=' type='text/css' media='all' /> <link rel='stylesheet' id='google-fonts-1-css' href='https://fonts.googleapis.com/css?family=Roboto%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&display=auto&ver=6.7.2' media='all' /> <link rel='stylesheet' id='all-css-58' href='https://eage.org/_static/??-eJydjFsKgCAUBTeUnQwq+ojWYnYTwRdexe1nW+hvBoZBS0LHUCgUJFeNDQxy5LvHDMVMheHshadHQjXi6AmaGZlMdSqPnQf8vlxZhZu/yekPuc37Mq1SyhctVzfp' type='text/css' media='all' /> <link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin><script type="text/javascript" id="jquery-core-js-extra"> /* <![CDATA[ */ var pp = {"ajax_url":"https:\/\/eage.org\/wp-admin\/admin-ajax.php"}; /* ]]> */ </script> <script type="text/javascript" id="thickbox-js-extra"> /* <![CDATA[ */ var thickboxL10n = {"next":"Next >","prev":"< Prev","image":"Image","of":"of","close":"Close","noiframes":"This feature requires inline frames. You have iframes disabled or your browser does not support them.","loadingAnimation":"https:\/\/eage.org\/wp-includes\/js\/thickbox\/loadingAnimation.gif"}; /* ]]> */ </script> <script type="text/javascript" id="ap_plugin_js_script-js-extra"> /* <![CDATA[ */ var bsa_object = {"ajax_url":"https:\/\/eage.org\/wp-admin\/admin-ajax.php"}; /* ]]> */ </script> <script type="text/javascript" src="https://eage.org/_static/??-eJydkU1uAyEMRi9UQtupFGVR9SwUuzOegk2xyc/tS6ZJlEXSRSQkDHrP/hB+VxxxTA1Q/dzXT8N6OG2rWZ/8f4DLNNZgeAajsCGbL6mNxOozcuu2K6J2lHPoh0x8jw887ooPqmjqAbdHJ8AWq5ESj7fy2ETx+1P2l+IW1BiwapSKq6vp14ROUi0KXJ4SoJNLZgQKrpUkAe7mLu6vdBorFUPxX3VhYGm+XD4oxynUR93TNyrlkg6dkJR6p4/8/rIeNq+bt2F4nn8BBMfA5g==" ></script> <!-- Google tag (gtag.js) snippet added by Site Kit --> <!-- Google Analytics snippet added by Site Kit --> <script type="text/javascript" src="https://www.googletagmanager.com/gtag/js?id=GT-PHPCHVB" id="google_gtagjs-js" async></script> <script type="text/javascript" id="google_gtagjs-js-after"> /* <![CDATA[ */ window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);} gtag("set","linker",{"domains":["eage.org"]}); gtag("js", new Date()); gtag("set", "developer_id.dZTNiMT", true); gtag("config", "GT-PHPCHVB"); /* ]]> */ </script> <!-- End Google tag (gtag.js) snippet added by Site Kit --> <link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://eage.org/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.7.2" /> <link rel='shortlink' href='https://eage.org/?p=5056' /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://eage.org/wp-json/oembed/1.0/embed?url=https%3A%2F%2Feage.org%2Feducation%2Fshort-course-catalogue%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://eage.org/wp-json/oembed/1.0/embed?url=https%3A%2F%2Feage.org%2Feducation%2Fshort-course-catalogue%2F&format=xml" /> <style> /* Custom BSA_PRO Styles */ /* fonts */ /* form */ .bsaProOrderingForm { } .bsaProInput input, .bsaProInput input[type='file'], .bsaProSelectSpace select, .bsaProInputsRight .bsaInputInner, .bsaProInputsRight .bsaInputInner label { } .bsaProPrice { } .bsaProDiscount { } .bsaProOrderingForm .bsaProSubmit, .bsaProOrderingForm .bsaProSubmit:hover, .bsaProOrderingForm .bsaProSubmit:active { } /* alerts */ .bsaProAlert, .bsaProAlert > a, .bsaProAlert > a:hover, .bsaProAlert > a:focus { } .bsaProAlertSuccess { } .bsaProAlertFailed { } /* stats */ .bsaStatsWrapper .ct-chart .ct-series.ct-series-b .ct-bar, .bsaStatsWrapper .ct-chart .ct-series.ct-series-b .ct-line, .bsaStatsWrapper .ct-chart .ct-series.ct-series-b .ct-point, .bsaStatsWrapper .ct-chart .ct-series.ct-series-b .ct-slice.ct-donut { stroke: #673AB7 !important; } .bsaStatsWrapper .ct-chart .ct-series.ct-series-a .ct-bar, .bsaStatsWrapper .ct-chart .ct-series.ct-series-a .ct-line, .bsaStatsWrapper .ct-chart .ct-series.ct-series-a .ct-point, .bsaStatsWrapper .ct-chart .ct-series.ct-series-a .ct-slice.ct-donut { stroke: #FBCD39 !important; } /* Custom CSS */ </style><meta name="generator" content="Site Kit by Google 1.146.0" /> <style>img#wpstats{display:none}</style> <script> (function(h,o,t,j,a,r){ h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)}; h._hjSettings={hjid:3431110,hjsv:5}; a=o.getElementsByTagName('head')[0]; r=o.createElement('script');r.async=1; r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv; a.appendChild(r); })(window,document,'//static.hotjar.com/c/hotjar-','.js?sv='); </script> <!-- Google AdSense meta tags added by Site Kit --> <meta name="google-adsense-platform-account" content="ca-host-pub-2644536267352236"> <meta name="google-adsense-platform-domain" content="sitekit.withgoogle.com"> <!-- End Google AdSense meta tags added by Site Kit --> <meta name="generator" content="Elementor 3.27.3; features: additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-auto"> <script id="Cookiebot" src="https://consent.cookiebot.com/uc.js" data-cbid="c57ea602-a439-4584-a2dd-45c9e1c9a468" data-blockingmode="auto" type="text/javascript"></script> <script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; let adSlot; // Declare adSlot at a scope accessible by the resize handler and manual refresh googletag.cmd.push(function() { var mapping1 = googletag.sizeMapping() //.addSize([1600, 0], [[1140, 140]]) .addSize([1380, 0], [[1000, 123]]) .addSize([1150, 0], [[728, 90]]) .addSize([1100, 0], [[500, 62]]) .build(); adSlot = googletag.defineSlot('/20287594127/WP_EAGE_leaderboard', [[500, 62], [1140, 140], [728, 90], [1000, 123], 'fluid'], 'div-gpt-ad-1724414516259-0') .defineSizeMapping(mapping1) .addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); let resizeTimer; window.addEventListener('resize', () => { console.log("Resize event triggered."); clearTimeout(resizeTimer); resizeTimer = setTimeout(() => { googletag.cmd.push(function() { console.log("Refreshing adSlot via resize."); googletag.pubads().refresh([adSlot]); }); }, 500); // Refresh the ad 500 ms after resizing stops }); </script> <script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; googletag.cmd.push(function() { googletag.defineSlot('/20287594127/WP_EAGE_skyscraper', [[310, 360], 'fluid'], 'div-gpt-ad-1736434310611-0').addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); </script> <script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; googletag.cmd.push(function() { googletag.defineSlot('/20287594127/WP_EAGE_leaderboard_Mobile', [[320, 180], 'fluid'], 'div-gpt-ad-1734681659043-0').addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); </script> <script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; googletag.cmd.push(function() { googletag.defineSlot('/20287594127/WP_EAGE_skyscraper-homepage', ['fluid', [152, 435]], 'div-gpt-ad-1721216397689-0').addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); </script> <script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; googletag.cmd.push(function() { googletag.defineSlot('/20287594127/WP_EAGE_skyscraper_Mobile-homepage', ['fluid', [310, 360]], 'div-gpt-ad-1721216479067-0').addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); </script> <script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; let adSlot; // Declare adSlot at a scope accessible by the resize handler and manual refresh googletag.cmd.push(function() { var mapping2 = googletag.sizeMapping() //.addSize([1600, 0], [[1140, 140]]) .addSize([1380, 0], [[1000, 123]]) .addSize([1150, 0], [[728, 90]]) .addSize([1100, 0], [[500, 62]]) .build(); adSlot = googletag.defineSlot('/20287594127/WP_EAGE_CR_leaderboard', [[1000, 123], [1140, 140], [500, 62], 'fluid', [728, 90]], 'div-gpt-ad-1724424183457-0') .defineSizeMapping(mapping2) .addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); let resizeTimer; window.addEventListener('resize', () => { console.log("Resize event triggered."); clearTimeout(resizeTimer); resizeTimer = setTimeout(() => { googletag.cmd.push(function() { console.log("Refreshing adSlot via resize."); googletag.pubads().refresh([adSlot]); }); }, 500); // Refresh the ad 500 ms after resizing stops }); </script> <script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; googletag.cmd.push(function() { googletag.defineSlot('/20287594127/WP_EAGE_CR_skyscraper', [[310, 360], 'fluid'], 'div-gpt-ad-1721216112322-0').addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); </script> <script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; googletag.cmd.push(function() { googletag.defineSlot('/20287594127/WP_EAGE_CR_leaderboard_Mobile', [[320, 180], 'fluid'], 'div-gpt-ad-1721216053156-0').addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); </script> <meta http-equiv="Content-type" content="text/html; charset=UTF-8"> <script src="https://www.google.com/recaptcha/api.js"></script> <script> function timestamp() { var response = document.getElementById("g-recaptcha-response"); if (response == null || response.value.trim() == "") {var elems = JSON.parse(document.getElementsByName("captcha_settings")[0].value);elems["ts"] = JSON.stringify(new Date().getTime());document.getElementsByName("captcha_settings")[0].value = JSON.stringify(elems); } } setInterval(timestamp, 500); </script> <script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; let adSlot; // Declare adSlot at a scope accessible by the resize handler and manual refresh googletag.cmd.push(function() { var mapping3 = googletag.sizeMapping() //.addSize([1600, 0], [[1140, 140]]) .addSize([1380, 0], [[1000, 123]]) .addSize([1150, 0], [[728, 90]]) .addSize([1100, 0], [[500, 62]]) .addSize([500, 180], [[320, 180]]) .build(); adSlot = googletag.defineSlot('/20287594127/allsizes_testing_for_mobile', [[500, 62], [1000, 123], 'fluid', [320, 180], [728, 90], [1140, 140]], 'div-gpt-ad-1737030555613-0') .defineSizeMapping(mapping3) .addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); let resizeTimer; window.addEventListener('resize', () => { console.log("Resize event triggered."); clearTimeout(resizeTimer); resizeTimer = setTimeout(() => { googletag.cmd.push(function() { console.log("Refreshing adSlot via resize."); googletag.pubads().refresh([adSlot]); }); }, 500); // Refresh the ad 500 ms after resizing stops }); </script> <style> .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } @media screen and (max-height: 1024px) { .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } @media screen and (max-height: 640px) { .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } </style> <!-- Google AdSense snippet added by Site Kit --> <script type="text/javascript" async="async" src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-9577946690838398&host=ca-host-pub-2644536267352236" crossorigin="anonymous"></script> <!-- End Google AdSense snippet added by Site Kit --> <meta name="generator" content="Powered by Slider Revolution 6.6.18 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." /> <!-- Ads on this site are served by Adning v1.6.2 - adning.com --> <style></style><!-- / Adning. --> <!-- CJT Global Block (288) - Google tag manager - START --> <!-- Google tag (gtag.js) --> <script type="text/plain" data-cookieconsent="statistics" src="https://www.googletagmanager.com/gtag/js?id=G-7TGFG8T62W"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-7TGFG8T62W'); </script> <!-- CJT Global Block (288) - Google tag manager - END --> <!-- CJT Global Block (1) - FAQ widget - START --> <script> window.fwSettings={ 'widget_id':25000000070 }; !function(){if("function"!=typeof window.FreshworksWidget){var n=function(){n.q.push(arguments)};n.q=[],window.FreshworksWidget=n}}() </script> <script type='text/javascript' src='https://widget.freshworks.com/widgets/25000000070.js' async defer></script> <!-- CJT Global Block (1) - FAQ widget - END --> <link rel="icon" href="https://eage.org/wp-content/uploads/2020/07/favicon.png?w=32" sizes="32x32" /> <link rel="icon" href="https://eage.org/wp-content/uploads/2020/07/favicon.png?w=192" sizes="192x192" /> <link rel="apple-touch-icon" href="https://eage.org/wp-content/uploads/2020/07/favicon.png?w=180" /> <meta name="msapplication-TileImage" content="https://eage.org/wp-content/uploads/2020/07/favicon.png?w=270" /> <script>function setREVStartSize(e){ //window.requestAnimationFrame(function() { window.RSIW = window.RSIW===undefined ? window.innerWidth : window.RSIW; window.RSIH = window.RSIH===undefined ? window.innerHeight : window.RSIH; try { var pw = document.getElementById(e.c).parentNode.offsetWidth, newh; pw = pw===0 || isNaN(pw) || (e.l=="fullwidth" || e.layout=="fullwidth") ? window.RSIW : pw; e.tabw = e.tabw===undefined ? 0 : parseInt(e.tabw); e.thumbw = e.thumbw===undefined ? 0 : parseInt(e.thumbw); e.tabh = e.tabh===undefined ? 0 : parseInt(e.tabh); e.thumbh = e.thumbh===undefined ? 0 : parseInt(e.thumbh); e.tabhide = e.tabhide===undefined ? 0 : parseInt(e.tabhide); e.thumbhide = e.thumbhide===undefined ? 0 : parseInt(e.thumbhide); e.mh = e.mh===undefined || e.mh=="" || e.mh==="auto" ? 0 : parseInt(e.mh,0); if(e.layout==="fullscreen" || e.l==="fullscreen") newh = Math.max(e.mh,window.RSIH); else{ e.gw = Array.isArray(e.gw) ? e.gw : [e.gw]; for (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===0) e.gw[i] = e.gw[i-1]; e.gh = e.el===undefined || e.el==="" || (Array.isArray(e.el) && e.el.length==0)? e.gh : e.el; e.gh = Array.isArray(e.gh) ? e.gh : [e.gh]; for (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===0) e.gh[i] = e.gh[i-1]; var nl = new Array(e.rl.length), ix = 0, sl; e.tabw = e.tabhide>=pw ? 0 : e.tabw; e.thumbw = e.thumbhide>=pw ? 0 : e.thumbw; e.tabh = e.tabhide>=pw ? 0 : e.tabh; e.thumbh = e.thumbhide>=pw ? 0 : e.thumbh; for (var i in e.rl) nl[i] = e.rl[i]<window.RSIW ? 0 : e.rl[i]; sl = nl[0]; for (var i in nl) if (sl>nl[i] && nl[i]>0) { sl = nl[i]; ix=i;} var m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? 1 : (pw-(e.tabw+e.thumbw)) / (e.gw[ix]); newh = (e.gh[ix] * m) + (e.tabh + e.thumbh); } var el = document.getElementById(e.c); if (el!==null && el) el.style.height = newh+"px"; el = document.getElementById(e.c+"_wrapper"); if (el!==null && el) { el.style.height = newh+"px"; el.style.display = "block"; } } catch(e){ console.log("Failure at Presize of Slider:" + e) } //}); };</script> <style id='ninja_table_custom_css_16186' type='text/css'> #footable_16186 { font-family: ; font-size: px; } /* ------------------ */ /* CALENDAR OF EVENTS */ /* ------------------ */ .form-group.footable-filtering-search { width: 100%!important; background:#D0D1D3; border-radius: 10px; } .form-group.footable-filtering-search .input-group { width: 50%!important; padding-top: 10px!important; padding-bottom: 10px!important; } .form-group.ninja-custom-filter.form-group-ninja_filter_0.ninja_custom_select_checkbox { width: 58%!important; } @media all and (max-width: 750px) { .form-group.ninja-custom-filter.form-group-ninja_filter_0.ninja_custom_select_checkbox { width: 100%!important; } } /* .ninja_table_wrapper table thead .footable-filtering .ninja_custom_radio>label, .ninja_table_wrapper table thead .footable-filtering .ninja_custom_select_checkbox>label { margin:0; } */ .hiddenRow { padding: 0 !important; } th { width:100%; background-color:green; } /* body { font-size: 0.7em; } */ /* body { font-size: 1.6em; } */ #footable_parent_16186 label { font-weight: 400; margin: 0 0 .5rem; } table#footable_16186 a:link, table#footable_16186 a:visited, table#footable_16186 a:hover, table#footable_16186 a:active { color: #0C738D; } table#footable_16186 a:hover { text-decoration: underline; } /* STANDARD COLOR */ .btn-eage, .btn-eage:visited, .btn-open, .btn-open:visited, .btn-late, .btn-late:visited, .btn-closingsoon, .btn-closingsoon:visited { color: #fff!important; background-color: #00737b!important; border-color: #00737b!important; text-decoration: none!important; } .btn-eage:hover, .btn-eage:focus, .btn-eage:active, .btn-open:hover, .btn-open:focus, .btn-open:active, .btn-late:hover, .btn-late:focus, .btn-late:active, .btn-closingsoon:hover, .btn-closingsoon:focus, .btn-closingsoon:active { color: #fff!important; background-color: #005b62!important; border-color: #005b62!important; /*set the color you want here*/ text-decoration: none!important; } /* INACTIVE COLOR */ .btn-openingsoon, .btn-openingsoon:visited, .btn-notopen, .btn-notopen:visited { color: #fff!important; background-color: #8c8c8c!important; border-color: #8c8c8c!important; cursor:default; text-decoration: none!important; } .btn-openingsoon:hover, .btn-openingsoon:focus, .btn-openingsoon:active, .btn-notopen:hover, .btn-notopen:focus, .btn-notopen:active { color: #fff!important; background-color: #8c8c8c!important; border-color: #8c8c8c!important; /*set the color you want here*/ cursor:default; text-decoration: none!important; } /* SPECIFIC COLOR */ .btn-closed, .btn-closed:visited { color: #fff!important; background-color: #f4898b!important; border-color: #f4898b!important; text-decoration: none!important; } .btn-closed:hover, .btn-closed:focus, .btn-closed:active { color: #fff!important; background-color: #f4898b!important; border-color: #f4898b!important; /*set the color you want here*/ text-decoration: none!important; } #footable_16186 tbody tr:nth-child(odd) { background-color:rgba(247, 247, 247, 1)!important; color: rgba(102, 102, 102, 1)!important; } #footable_16186 tbody tr:nth-child(even) { background-color: rgba(255, 255, 255, 1)!important; color: rgba(102, 102, 102, 1)!important; } /* .footable-first-visible { text-align: right!important; } */ .width-5 { width:5%; } .width-10 { width:10%; } .width-15 { width:15%; } .width-20 { width:20%; } .width-25 { width:25%; } .width-30 { width:30%; } .width-35 { width:35%; } .width-40 { width:40%; } .width-45 { width:45%; } .width-50 { width:50%; } .width-55 { width:55%; } .width-60 { width:60%; } .width-65 { width:65%; } .width-70 { width:70%; } .width-75 { width:75%; } .width-80 { width:80%; } .width-85 { width:85%; } .width-90 { width:90%; } .width-95 { width:95%; } .width-100 { width:100%; } .width-1em { width:1em; } .ninja_custom_radio, .ninja_custom_select_checkbox { display: grid !important; grid-template-columns: 33% 33% 33%!important; } .ninja_custom_select_checkbox { width:50%!important; } .ninja_custom_select { width:20%!important; } .footable-filtering-search { width:20%!important; } #footable_16186 > thead > tr.footable-filtering > th > form > div.form-group.footable-filtering-search > div { padding-top:38px; } .footable .pagination>.active>a { color:white!important; } /* ------------- */ /* MEDIA QUERIES */ /* ------------- */ @media all and (max-width: 1650px) { /*.ninja_custom_select_checkbox { background:orange;}*/ .ninja_custom_radio, .ninja_custom_select_checkbox { grid-template-columns: 60% 60%!important; } /*.form-inline>.form-group { width:100%!important; }*/ .ninja_custom_select { float: left!important; } .footable-filtering-search { width: 30%!important;} } @media all and (max-width: 960px) { /* .ninja_custom_select_checkbox { background:red; } */ .ninja_custom_radio, .ninja_custom_select_checkbox { grid-template-columns: 50% 50%!important; } .form-inline>.form-group { width:75%!important; } .ninja_custom_select { float: left!important; } .footable-filtering-search { width: 30%!important;} } @media all and (max-width: 790px) { /* .ninja_custom_select_checkbox { background:green; } */ .ninja_custom_radio, .ninja_custom_select_checkbox { grid-template-columns: 50% 50%!important; } .form-inline>.form-group { /*width:70%!important;*/ width:100%!important; } .ninja_custom_select { float: left!important; } .footable-filtering-search {} .table.COE_TABLE td table tbody tr th, #footable_16186 td table tbody tr th { width:10%!important; } /* .footable-details.table > tbody > tr > td, .footable-details.table > tbody > tr > th, .footable-details.table > tfoot > tr > td, .footable-details.table > tfoot > tr > th, .footable-details.table > thead > tr > td, .footable-details.table > thead > tr > th, .footable.table > tbody > tr > td, .footable.table > tbody > tr > th, .footable.table > tfoot > tr > td, .footable.table > tfoot > tr > th, .footable.table > thead > tr > td, .footable.table > thead > tr > th { border:none!important; }*/ #footable_16186 .footable-details { border: 1px solid rgba(34,36,38,.15) !important;; } table td, table th { border:none!important; } } @media all and (max-width: 750px) { .ninja_custom_radio, .ninja_custom_select_checkbox { grid-template-columns: 55% 55%!important; } .form-inline>.form-group { /*width:55%!important;*/ } .ninja_custom_select { float: left!important; } .footable-filtering-search {} } /* @media all and (max-width: 645px) {} @media all and (max-width: 462px) { .ninja_custom_select_checkbox { background:purple; } }*/ /* ----------- */ /* END QUERIES */ /* ----------- */ </style> </head> <body class="education-template-default single single-education postid-5056 single-format-standard viewable-enabled hello-elementor elementor-default elementor-template-full-width elementor-kit-3378 elementor-page elementor-page-5056 elementor-page-3357"> <a class="skip-link screen-reader-text" href="#content"> Skip to content</a> <div data-elementor-type="header" data-elementor-id="147" class="elementor elementor-147 elementor-location-header" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-a64099a elementor-hidden-mobile header_container elementor-hidden-tablet elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="a64099a" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-background-overlay"></div> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e09b592" data-id="e09b592" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-c7dbf89 elementor-absolute elementor-widget elementor-widget-image" data-id="c7dbf89" data-element_type="widget" data-settings="{"_position":"absolute"}" data-widget_type="image.default"> <div class="elementor-widget-container"> <a href="https://eage.org/"> <img fetchpriority="high" width="360" height="280" src="https://eage.org/wp-content/uploads/2020/03/eagelogo.png" class="attachment-full size-full wp-image-2743" alt="Logo EAGE" srcset="https://eage.org/wp-content/uploads/2020/03/eagelogo.png 360w, https://eage.org/wp-content/uploads/2020/03/eagelogo.png?resize=768,597 768w" sizes="(max-width: 360px) 100vw, 360px" /> </a> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-6ebdae5" data-id="6ebdae5" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-ae96cbf elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="ae96cbf" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-e4ad795" data-id="e4ad795" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-f03e66e elementor-widget__width-auto elementor-nav-menu--dropdown-mobile elementor-nav-menu__text-align-aside elementor-nav-menu--toggle elementor-nav-menu--burger elementor-widget elementor-widget-nav-menu" data-id="f03e66e" data-element_type="widget" data-settings="{"layout":"horizontal","submenu_icon":{"value":"<i class=\"fas fa-caret-down\"><\/i>","library":"fa-solid"},"toggle":"burger"}" data-widget_type="nav-menu.default"> <div class="elementor-widget-container"> <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-horizontal e--pointer-none"> <ul id="menu-1-f03e66e" class="elementor-nav-menu"><li class="hide_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-151"><a href="#" class="elementor-item elementor-item-anchor">Corporate Relations</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-152"><a href="https://www.firstbreak.org/" class="elementor-item">First Break</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-153"><a href="https://www.earthdoc.org/" class="elementor-item">EarthDoc</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-14370"><a href="https://learninggeoscience.org/" class="elementor-item">Learning Geoscience</a></li> </ul> </nav> <div class="elementor-menu-toggle" role="button" tabindex="0" aria-label="Menu Toggle" aria-expanded="false"> <i aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--open eicon-menu-bar"></i><i aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--close eicon-close"></i> </div> <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true"> <ul id="menu-2-f03e66e" class="elementor-nav-menu"><li class="hide_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-151"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Corporate Relations</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-152"><a href="https://www.firstbreak.org/" class="elementor-item" tabindex="-1">First Break</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-153"><a href="https://www.earthdoc.org/" class="elementor-item" tabindex="-1">EarthDoc</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-14370"><a href="https://learninggeoscience.org/" class="elementor-item" tabindex="-1">Learning Geoscience</a></li> </ul> </nav> </div> </div> <div class="elementor-element elementor-element-e578b89 elementor-align-right elementor-widget__width-auto elementor-widget elementor-widget-button" data-id="e578b89" data-element_type="widget" data-widget_type="button.default"> <div class="elementor-widget-container"> <div class="elementor-button-wrapper"> <a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-grow" href="https://eage.eventsair.com/eage-membership-module/sso" target="_blank"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-text">My EAGE</span> </span> </a> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-407aca5 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="407aca5" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <nav class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-e03fa9e" data-id="e03fa9e" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-0d0b11d elementor-widget__width-auto elementor-view-default elementor-widget elementor-widget-icon" data-id="0d0b11d" data-element_type="widget" data-widget_type="icon.default"> <div class="elementor-widget-container"> <div class="elementor-icon-wrapper"> <a class="elementor-icon" href="https://eage.org/"> <i aria-hidden="true" class="fas fa-home"></i> </a> </div> </div> </div> <div class="elementor-element elementor-element-bcaf978 elementor-hidden-phone elementor-widget__width-auto elementor-widget elementor-widget-wp-widget-nav_menu" data-id="bcaf978" data-element_type="widget" data-widget_type="wp-widget-nav_menu.default"> <div class="elementor-widget-container"> <div class="menu-eage-main-menu-desktop-container"><ul id="menu-eage-main-menu-desktop" class="menu"><li id="menu-item-1298" class="pop_abouteage menu-item menu-item-type-custom menu-item-object-custom menu-item-1298"><a href="#">About EAGE</a></li> <li id="menu-item-1300" class="pop_events menu-item menu-item-type-custom menu-item-object-custom menu-item-1300"><a href="#">Events</a></li> <li id="menu-item-1301" class="pop_membership menu-item menu-item-type-custom menu-item-object-custom menu-item-1301"><a href="#">Membership</a></li> <li id="menu-item-1302" class="pop_communities menu-item menu-item-type-custom menu-item-object-custom menu-item-1302"><a href="#">Communities</a></li> <li id="menu-item-1303" class="pop_students menu-item menu-item-type-custom menu-item-object-custom menu-item-1303"><a href="#">Students</a></li> <li id="menu-item-1304" class="pop_education menu-item menu-item-type-custom menu-item-object-custom menu-item-1304"><a href="#">Education</a></li> <li id="menu-item-1305" class="pop_media2 menu-item menu-item-type-custom menu-item-object-custom menu-item-1305"><a href="#">Media</a></li> </ul></div> </div> </div> </div> </nav> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-1182b96" data-id="1182b96" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-d444e1c menu-search elementor-widget elementor-widget-shortcode" data-id="d444e1c" data-element_type="widget" data-widget_type="shortcode.default"> <div class="elementor-widget-container"> <div class="elementor-shortcode"><form class="is-search-form is-form-style is-form-style-3 is-form-id-6048 " action="https://eage.org/" method="get" role="search" ><label for="is-search-input-6048"><span class="is-screen-reader-text">Search for:</span><input type="search" id="is-search-input-6048" name="s" value="" class="is-search-input" placeholder="Search here..." autocomplete=off /></label><button type="submit" class="is-search-submit"><span class="is-screen-reader-text">Search Button</span><span class="is-search-icon"><svg focusable="false" aria-label="Search" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24px"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"></path></svg></span></button><input type="hidden" name="id" value="6048" /></form></div> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-99d6739 elementor-hidden-mobile header_container elementor-hidden-desktop elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="99d6739" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-d041004" data-id="d041004" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-60d1405 elementor-absolute elementor-widget elementor-widget-image" data-id="60d1405" data-element_type="widget" data-settings="{"_position":"absolute"}" data-widget_type="image.default"> <div class="elementor-widget-container"> <a href="https://www.eage.org/"> <img fetchpriority="high" width="360" height="280" src="https://eage.org/wp-content/uploads/2020/03/eagelogo.png" class="attachment-full size-full wp-image-2743" alt="Logo EAGE" srcset="https://eage.org/wp-content/uploads/2020/03/eagelogo.png 360w, https://eage.org/wp-content/uploads/2020/03/eagelogo.png?resize=768,597 768w" sizes="(max-width: 360px) 100vw, 360px" /> </a> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e77b52a" data-id="e77b52a" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-d9d1a2b elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="d9d1a2b" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-0f7c7e6" data-id="0f7c7e6" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-e111f86 elementor-widget__width-auto elementor-nav-menu--dropdown-mobile elementor-nav-menu__text-align-aside elementor-nav-menu--toggle elementor-nav-menu--burger elementor-widget elementor-widget-nav-menu" data-id="e111f86" data-element_type="widget" data-settings="{"layout":"horizontal","submenu_icon":{"value":"<i class=\"fas fa-caret-down\"><\/i>","library":"fa-solid"},"toggle":"burger"}" data-widget_type="nav-menu.default"> <div class="elementor-widget-container"> <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-horizontal e--pointer-none"> <ul id="menu-1-e111f86" class="elementor-nav-menu"><li class="hide_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-151"><a href="#" class="elementor-item elementor-item-anchor">Corporate Relations</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-152"><a href="https://www.firstbreak.org/" class="elementor-item">First Break</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-153"><a href="https://www.earthdoc.org/" class="elementor-item">EarthDoc</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-14370"><a href="https://learninggeoscience.org/" class="elementor-item">Learning Geoscience</a></li> </ul> </nav> <div class="elementor-menu-toggle" role="button" tabindex="0" aria-label="Menu Toggle" aria-expanded="false"> <i aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--open eicon-menu-bar"></i><i aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--close eicon-close"></i> </div> <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true"> <ul id="menu-2-e111f86" class="elementor-nav-menu"><li class="hide_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-151"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Corporate Relations</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-152"><a href="https://www.firstbreak.org/" class="elementor-item" tabindex="-1">First Break</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-153"><a href="https://www.earthdoc.org/" class="elementor-item" tabindex="-1">EarthDoc</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-14370"><a href="https://learninggeoscience.org/" class="elementor-item" tabindex="-1">Learning Geoscience</a></li> </ul> </nav> </div> </div> <div class="elementor-element elementor-element-dfd2106 elementor-align-right elementor-widget__width-auto elementor-widget elementor-widget-button" data-id="dfd2106" data-element_type="widget" data-widget_type="button.default"> <div class="elementor-widget-container"> <div class="elementor-button-wrapper"> <a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-grow" href="https://eage.eventsair.com/eage-membership-module/sso" target="_blank"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-text">My EAGE</span> </span> </a> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-96e68d5 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="96e68d5" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-3ac397d" data-id="3ac397d" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <nav class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-75f8507" data-id="75f8507" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-3316de1 elementor-search-form--skin-classic elementor-search-form--button-type-icon elementor-search-form--icon-search elementor-widget elementor-widget-search-form" data-id="3316de1" data-element_type="widget" data-settings="{"skin":"classic"}" data-widget_type="search-form.default"> <div class="elementor-widget-container"> <search role="search"> <form class="elementor-search-form" action="https://eage.org" method="get"> <div class="elementor-search-form__container"> <label class="elementor-screen-only" for="elementor-search-form-3316de1">Search</label> <input id="elementor-search-form-3316de1" placeholder="Search..." class="elementor-search-form__input" type="search" name="s" value=""> <button class="elementor-search-form__submit" type="submit" aria-label="Search"> <i aria-hidden="true" class="fas fa-search"></i> </button> </div> </form> </search> </div> </div> </div> </nav> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-8759959" data-id="8759959" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-da90082 tablet_overlay_menu elementor-widget elementor-widget-image" data-id="da90082" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img src="https://eage.org/wp-content/uploads/2020/05/Mobile_MenuIcon_open.svg?w=150&h=150&crop=1" title="Mobile_MenuIcon_open" alt="Mobile_MenuIcon_open" loading="lazy" /> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-319dd42 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="319dd42" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-bd6b030" data-id="bd6b030" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-b4fba76 elementor-widget elementor-widget-spacer" data-id="b4fba76" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-4574d12 elementor-section-full_width mobile_menu_container elementor-hidden-desktop elementor-hidden-tablet elementor-section-height-default elementor-section-height-default" data-id="4574d12" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-background-overlay"></div> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1d1e04a" data-id="1d1e04a" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-d014211 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="d014211" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-d804c22" data-id="d804c22" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-a8f0ca8 elementor-widget elementor-widget-image" data-id="a8f0ca8" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <a href="http://www.eage.org"> <img src="https://eage.org/wp-content/uploads/2020/05/EAGE_logo_header.svg?w=800" title="EAGE_logo" alt="EAGE_logo" loading="lazy" /> </a> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-fceaa7e" data-id="fceaa7e" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-23ab4b2 pop_mobile elementor-widget elementor-widget-image" data-id="23ab4b2" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img src="https://eage.org/wp-content/uploads/2020/05/Mobile_MenuIcon_open.svg?w=150&h=150&crop=1" title="Mobile_MenuIcon_open" alt="Mobile_MenuIcon_open" loading="lazy" /> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-00edc04 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="00edc04" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-f6683e1" data-id="f6683e1" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-13410e6 mobile_top_menu elementor-widget elementor-widget-text-editor" data-id="13410e6" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p style="text-align: center;"><a href="https://www.firstbreak.org/">First Break</a> <a href="https://www.earthdoc.org/">EarthDoc</a> <a href="https://learninggeoscience.org/">Learning Geoscience</a></p> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> </div> <div data-elementor-type="single" data-elementor-id="3357" class="elementor elementor-3357 elementor-location-single post-5056 education type-education status-publish format-standard has-post-thumbnail hentry" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-74b3324 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="74b3324" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-be89078" data-id="be89078" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-24f84bd elementor-widget elementor-widget-template" data-id="24f84bd" data-element_type="widget" data-widget_type="template.default"> <div class="elementor-widget-container"> <div class="elementor-template"> <style id="elementor-post-dynamic-3293">.elementor-3293 .elementor-element.elementor-element-bb05a87:not(.elementor-motion-effects-element-type-background), .elementor-3293 .elementor-element.elementor-element-bb05a87 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://eage.org/wp-content/uploads/2020/04/Template_RevSlider_BG.jpg");}.elementor-3293 .elementor-element.elementor-element-57216984:not(.elementor-motion-effects-element-type-background), .elementor-3293 .elementor-element.elementor-element-57216984 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://eage.org/wp-content/uploads/2020/04/Template_RevSlider_BG.jpg");}@media(max-width:767px){.elementor-3293 .elementor-element.elementor-element-de92fe3:not(.elementor-motion-effects-element-type-background), .elementor-3293 .elementor-element.elementor-element-de92fe3 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://eage.org/wp-content/uploads/2020/04/Template_RevSlider_BG.jpg");}.elementor-3293 .elementor-element.elementor-element-75cdfcea:not(.elementor-motion-effects-element-type-background), .elementor-3293 .elementor-element.elementor-element-75cdfcea > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://eage.org/wp-content/uploads/2020/04/Template_RevSlider_BG.jpg");}}</style> <div data-elementor-type="single" data-elementor-id="3293" class="elementor elementor-3293 elementor-location-single post-5056 education type-education status-publish format-standard has-post-thumbnail hentry" data-elementor-post-type="elementor_library"> <div class="elementor-element elementor-element-bb05a87 elementor-hidden-mobile e-flex e-con-boxed e-con e-parent" data-id="bb05a87" data-element_type="container" data-settings="{"background_background":"classic"}"> <div class="e-con-inner"> <div class="elementor-element elementor-element-8134cbc e-con-full e-flex e-con e-child" data-id="8134cbc" data-element_type="container" data-settings="{"background_background":"classic"}"> </div> <div class="elementor-element elementor-element-b508911 e-con-full e-flex e-con e-child" data-id="b508911" data-element_type="container"> </div> </div> </div> <div class="elementor-element elementor-element-a83e5c5 elementor-hidden-mobile e-flex e-con-boxed e-con e-parent" data-id="a83e5c5" data-element_type="container" data-settings="{"background_background":"classic"}"> <div class="e-con-inner"> <div class="elementor-element elementor-element-2967be5 e-con-full pagetitle_container e-flex e-con e-child" data-id="2967be5" data-element_type="container" data-settings="{"background_background":"classic"}"> <div class="elementor-element elementor-element-56b283a elementor-widget elementor-widget-heading" data-id="56b283a" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Short Courses</h2> </div> </div> <div class="elementor-element elementor-element-5b995c4 elementor-widget elementor-widget-heading" data-id="5b995c4" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Short Course Catalogue</h2> </div> </div> <div class="elementor-element elementor-element-5123d4b elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="5123d4b" data-element_type="widget" data-widget_type="divider.default"> <div class="elementor-widget-container"> <div class="elementor-divider"> <span class="elementor-divider-separator"> </span> </div> </div> </div> </div> <div class="elementor-element elementor-element-64338ad e-con-full e-flex e-con e-child" data-id="64338ad" data-element_type="container"> </div> </div> </div> <div class="elementor-element elementor-element-de92fe3 elementor-hidden-desktop elementor-hidden-tablet e-flex e-con-boxed e-con e-parent" data-id="de92fe3" data-element_type="container" data-settings="{"background_background":"classic"}"> <div class="e-con-inner"> <div class="elementor-element elementor-element-c98cbc0 e-con-full e-flex e-con e-child" data-id="c98cbc0" data-element_type="container" data-settings="{"background_background":"classic"}"> <div class="elementor-element elementor-element-83d8532 elementor-widget elementor-widget-heading" data-id="83d8532" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Short Courses</h2> </div> </div> <div class="elementor-element elementor-element-ace1dbc elementor-widget elementor-widget-heading" data-id="ace1dbc" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Short Course Catalogue</h2> </div> </div> <div class="elementor-element elementor-element-fe0e3ba elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="fe0e3ba" data-element_type="widget" data-widget_type="divider.default"> <div class="elementor-widget-container"> <div class="elementor-divider"> <span class="elementor-divider-separator"> </span> </div> </div> </div> </div> </div> </div> <div class="elementor-element elementor-element-525e363 e-flex e-con-boxed e-con e-parent" data-id="525e363" data-element_type="container"> <div class="e-con-inner"> <div class="elementor-element elementor-element-ad0ea6f elementor-widget elementor-widget-spacer" data-id="ad0ea6f" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> </div> </div> <section class="elementor-section elementor-top-section elementor-element elementor-element-57216984 elementor-hidden-mobile elementor-section-full_width section-page-title-desktop elementor-hidden-desktop elementor-hidden-tablet elementor-section-height-default elementor-section-height-default" data-id="57216984" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-223d1cd9" data-id="223d1cd9" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-1031b76b PageTitle_InnerSection_1 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="1031b76b" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-5aedab8c" data-id="5aedab8c" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-background-overlay"></div> <div class="elementor-element elementor-element-2793141d elementor-widget elementor-widget-heading" data-id="2793141d" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h1 class="elementor-heading-title elementor-size-default">Short Courses</h1> </div> </div> <div class="elementor-element elementor-element-1d1391d6 elementor-widget elementor-widget-heading" data-id="1d1391d6" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Short Course Catalogue</h2> </div> </div> <div class="elementor-element elementor-element-610c0e4a elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="610c0e4a" data-element_type="widget" data-widget_type="divider.default"> <div class="elementor-widget-container"> <div class="elementor-divider"> <span class="elementor-divider-separator"> </span> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-72cbc049 elementor-hidden-phone" data-id="72cbc049" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-41a10f8a elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="41a10f8a" data-element_type="section"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-66 elementor-inner-column elementor-element elementor-element-efc45f4" data-id="efc45f4" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-51662483 elementor-widget elementor-widget-spacer" data-id="51662483" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-7148767b elementor-hidden-phone" data-id="7148767b" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> </div> </section> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-f86f455 elementor-hidden-mobile elementor-section-full_width section-page-title-desktop elementor-hidden-desktop elementor-hidden-tablet elementor-section-height-default elementor-section-height-default" data-id="f86f455" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1c76ff6" data-id="1c76ff6" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-ba3c70b PageTitle_InnerSection_1 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="ba3c70b" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-5e406bf" data-id="5e406bf" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-background-overlay"></div> <div class="elementor-element elementor-element-7a5ad6e elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="7a5ad6e" data-element_type="widget" data-widget_type="divider.default"> <div class="elementor-widget-container"> <div class="elementor-divider"> <span class="elementor-divider-separator"> </span> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-582d055 elementor-hidden-phone" data-id="582d055" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> </div> </section> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-75cdfcea elementor-section-full_width elementor-hidden-desktop elementor-hidden-tablet section-page-title-mobile elementor-hidden-mobile elementor-section-height-default elementor-section-height-default" data-id="75cdfcea" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-755066d6" data-id="755066d6" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-background-overlay"></div> <div class="elementor-element elementor-element-1c6edbed elementor-widget elementor-widget-heading" data-id="1c6edbed" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h1 class="elementor-heading-title elementor-size-default">Short Courses</h1> </div> </div> <div class="elementor-element elementor-element-20a84402 elementor-widget elementor-widget-heading" data-id="20a84402" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Short Course Catalogue</h2> </div> </div> <div class="elementor-element elementor-element-5a801f02 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="5a801f02" data-element_type="widget" data-widget_type="divider.default"> <div class="elementor-widget-container"> <div class="elementor-divider"> <span class="elementor-divider-separator"> </span> </div> </div> </div> </div> </div> </div> </section> </div> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-6497ae06 elementor-section-full_width elementor-section-height-min-height section-interesting-topic elementor-hidden-phone elementor-section-height-default elementor-section-items-middle" data-id="6497ae06" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4f74b0b2" data-id="4f74b0b2" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-f098f6d elementor-widget elementor-widget-text-editor" data-id="f098f6d" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <div id="topics-toolcontainer" class="hide-5"><ul id="topics-toolmenu" class="menu"><li id="menu-item-3680" class="topics_menu menu-item menu-item-type-custom menu-item-object-custom menu-item-3680"><a href="#">These topics might be interesting too.</a></li> <li id="menu-item-6212" class="topics_menu_sub menu-item menu-item-type-post_type menu-item-object-education menu-item-6212"><a href="https://eage.org/education/education-tours/">Education Tours</a></li> <li id="menu-item-5654" class="topics_menu_sub menu-item menu-item-type-post_type menu-item-object-education menu-item-5654"><a href="https://eage.org/education/interactive-online-short-courses/">Interactive Online Short Courses</a></li> <li id="menu-item-5653" class="topics_menu_sub menu-item menu-item-type-post_type menu-item-object-education menu-item-5653"><a href="https://eage.org/education/in-house-training/">In-House Training</a></li> <li id="menu-item-6211" class="topics_menu_sub menu-item menu-item-type-post_type menu-item-object-education menu-item-6211"><a href="https://eage.org/education/classroom-training/">Classroom Training</a></li> <li id="menu-item-6213" class="topics_menu_sub menu-item menu-item-type-post_type menu-item-object-education current-menu-item menu-item-6213"><a href="https://eage.org/education/short-course-catalogue/" aria-current="page">Short Course Catalogue</a></li> <li id="menu-item-3681" class="topics_last menu-item menu-item-type-custom menu-item-object-custom menu-item-3681"><a href="#">.</a></li> </ul></div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-43c2171 section-content elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="43c2171" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-088df78" data-id="088df78" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-d5ffd73 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="d5ffd73" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-dc2cf00" data-id="dc2cf00" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-ca4be98 elementor-hidden-mobile elementor-widget elementor-widget-html" data-id="ca4be98" data-element_type="widget" data-widget_type="html.default"> <div class="elementor-widget-container"> <!-- /20287594127/WP_EAGE_leaderboard --> <div id='div-gpt-ad-1724414516259-0' style='min-width: 500px; min-height: 62px;'> <script> googletag.cmd.push(function() { googletag.display('div-gpt-ad-1724414516259-0'); }); </script> </div> </div> </div> <div class="elementor-element elementor-element-7147bac elementor-hidden-desktop elementor-hidden-tablet elementor-widget elementor-widget-html" data-id="7147bac" data-element_type="widget" data-widget_type="html.default"> <div class="elementor-widget-container"> <!-- /20287594127/WP_EAGE_leaderboard_Mobile --> <div id='div-gpt-ad-1734681659043-0' style='min-width: 320px; min-height: 180px;'> <script> googletag.cmd.push(function() { googletag.display('div-gpt-ad-1734681659043-0'); }); </script> </div> </div> </div> <div class="elementor-element elementor-element-0ce36f6 elementor-hidden-mobile elementor-hidden-desktop elementor-hidden-tablet elementor-widget elementor-widget-html" data-id="0ce36f6" data-element_type="widget" data-widget_type="html.default"> <div class="elementor-widget-container"> <div style="max-width:1140px; width:100%; height:140px;"><iframe src="https://eage.org?_dnid=10520&t=1620652131" border="0" scrolling="no" allowtransparency="true" style="width:1px;min-width:100%;*width:100%;height:100%;border:0;"></iframe></div> </div> </div> <div class="elementor-element elementor-element-475184e elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-html" data-id="475184e" data-element_type="widget" data-widget_type="html.default"> <div class="elementor-widget-container"> <div style="max-width:320px; width:100%; height:180px;"><iframe src="https://eage.org?_dnid=10519&t=1620652216" border="0" scrolling="no" allowtransparency="true" style="width:1px;min-width:100%;*width:100%;height:100%;border:0;"></iframe></div> </div> </div> <div class="elementor-element elementor-element-ea90eb1 elementor-hidden-phone elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="ea90eb1" data-element_type="widget" data-widget_type="divider.default"> <div class="elementor-widget-container"> <div class="elementor-divider"> <span class="elementor-divider-separator"> </span> </div> </div> </div> </div> </div> </div> </section> <div class="elementor-element elementor-element-613e259 elementor-widget elementor-widget-heading" data-id="613e259" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Short Course Catalogue</h2> </div> </div> <div class="elementor-element elementor-element-3ecac76 elementor-widget elementor-widget-theme-post-content" data-id="3ecac76" data-element_type="widget" data-widget_type="theme-post-content.default"> <div class="elementor-widget-container"> <div data-elementor-type="wp-post" data-elementor-id="5056" class="elementor elementor-5056" data-elementor-post-type="education"> <section class="elementor-section elementor-top-section elementor-element elementor-element-5658f01e elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="5658f01e" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5807df34" data-id="5807df34" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-43a93b0 elementor-widget elementor-widget-text-editor" data-id="43a93b0" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p>At EAGE we believe that it is vitally important for all Geoscientists to keep <strong>up-to-date</strong> on the latest developments in their fields. That’s why our Education programmes feature multiple formats, which are accessible by professionals with different profiles, and an expert Education Committee revises courses periodically so that EAGE’s portfolio remains a concrete tool for your professional development.</p><p style="text-align: left"><a class="fasc-button fasc-size-medium fasc-type-flat fasc-rounded-medium ico-fa fasc-ico-after fa-angle-double-right" style="background-color: #009b7c;color: #ffffff" href="https://eage.org/wp-content/uploads/2024/12/finalsc_23486-SC24-Short-Course-Catalogue.pdf" target="_blank" rel="noopener">Course Catalogue</a></p> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-5a35cd7 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="5a35cd7" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-2e8516c" data-id="2e8516c" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-0f32f1b elementor-widget elementor-widget-shortcode" data-id="0f32f1b" data-element_type="widget" data-widget_type="shortcode.default"> <div class="elementor-widget-container"> <div class="elementor-shortcode"><div id="footable_parent_16186" class=" footable_parent ninja_table_wrapper loading_ninja_table wp_table_data_press_parent semantic_ui "> <table data-ninja_table_instance="ninja_table_instance_0" data-footable_id="16186" data-filter-delay="1000" aria-label="Online Short Course Catalogue" id="footable_16186" data-unique_identifier="ninja_table_unique_id_870904616_16186" class=" foo-table ninja_footable foo_table_16186 ninja_table_unique_id_870904616_16186 ui table nt_type_legacy_table selectable striped vertical_centered footable-paging-right ninja_table_pro ninja_table_afd_columns ninja_table_afcs_columns_3 ninja_table_afcl_new_line ninja_table_has_custom_filter"> <colgroup> <col class="ninja_column_0 "> <col class="ninja_column_1 "> <col class="ninja_column_2 "> <col class="ninja_column_3 "> <col class="ninja_column_4 "> <col class="ninja_column_5 hidden"> <col class="ninja_column_6 hidden"> <col class="ninja_column_7 hidden"> <col class="ninja_column_8 hidden"> <col class="ninja_column_9 hidden"> <col class="ninja_column_10 hidden"> <col class="ninja_column_11 hidden"> <col class="ninja_column_12 hidden"> </colgroup> <thead> <tr class="footable-header"> <th scope="col" class="ninja_column_0 ninja_clmn_nm_discipline width-10 ">Discipline</th><th scope="col" class="ninja_column_1 ninja_clmn_nm_subdiscipline width-10 ">Subdiscipline</th><th scope="col" class="ninja_column_2 ninja_clmn_nm_coursetitle width-20 ">Course Title</th><th scope="col" class="ninja_column_3 ninja_clmn_nm_instructor width-10 ">Instructor</th><th scope="col" class="ninja_column_4 ninja_clmn_nm_registration width-10 ">Registration</th><th scope="col" class="ninja_column_5 ninja_clmn_nm_keywords hidden">Keywords</th><th scope="col" class="ninja_column_6 ninja_clmn_nm_description hidden">Description</th><th scope="col" class="ninja_column_7 ninja_clmn_nm_availableasinhouse hidden">Available as In-House</th><th scope="col" class="ninja_column_8 ninja_clmn_nm_newcourse hidden">New Course</th><th scope="col" class="ninja_column_9 ninja_clmn_nm_hasabook hidden">Has a Book</th><th scope="col" class="ninja_column_10 ninja_clmn_nm_hasanelecture hidden">Has an E-Lecture</th><th scope="col" class="ninja_column_11 ninja_clmn_nm_energytransition hidden">Energy Transition</th><th scope="col" class="ninja_column_12 ninja_clmn_nm_registrationopen hidden">Registration Open</th></tr> </thead> <tbody> <tr data-row_id="0" class="ninja_table_row_0 nt_row_id_0"> <td>Data Science</td><td>Machine Learning</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=427" target="_blank" rel="noopener">Cloud Basics for Geosciences</a></b><br/><small><i>By Guy Holmes (TapeArk, Australia)</i></small></td><td>Guy Holmes</td><td></td><td>cloud high performance computing iot data management data processing</td><td>1. What is the cloud?A summary of what the cloud is including an introduction to thethree most popular clouds in use today in the industry. The summarywill include a breakdown of the tools available to cloud users andsome basic concepts about cost, and a few examples of workloadsthat you should consider using the cloud for.2. The difference between Public Clouds and Private Clouds.There are fundamental differences between clouds that are Privateand Public, and numerous misconceptions about which is best, moresecure, and the most scalable. Included a few real work examples ofsystems that are Private and Public and why one should consider theoptions carefully.3. What does the cloud enable –hy use it?The cloud is such an important part of our ecosystem now and willcontinue to be in the future. The key reasons why it should be usedwill include scalability, security, evergreening, reliability, cost, and thetools enabled by the cloud systems such as AI and ML.4. Cloud Security AwarenessThere are a lot of misconceptions about cloud security. We will lookat a few security breaches, why they occurred, how to prevent them,and the additional security features available to cloud users to helpprotect their data.5. The movement to Geophysics in “eal time”n the CloudWith the advance of the SpaceX constellation, real time data streamingin remote areas –ven high volume low latency –ill becomepossible. This is going to mean survey data can be looked at, QC’d,and used essentially in real time as it arrives in a cloud account. Thisis going to move the Geo closer to the data flows, and create a moredynamic exploration system that can make decision while the surveyis still being recorded, rather than far later.6. The movement to “ig Data”rom “mall Data”he oil sector has never in its history had the opportunity to haveaccess to all of their data, all of the time. Using small sample datasets, subsets of surveys, to explore will no longer be necessary as thecloud continues to grow. This change needs a change of mindset inthe industry to both understand why this is valuable, and how totake advantage of it.Course ObjectiveIn this course, you will learn to:•escribe the major public and private cloud providers and theirrelative strengths•nderstand the difference between public and private clouds•escribe the basic global infrastructure of the cloud•ompare and contrast conventional on-premise infrastructure tothat on offer in the cloud•e better prepared to think about problem solving in a new way -with the use cloud technology 1. What is the cloud?2. The difference between Public Clouds and Private Clouds.3. What does the cloud enable –hy use it?4. Fundamental concepts of cloud based compute, storage, database,and networking5. Cloud Security Awareness6. The movement to Geophysics in “eal time”n the cloud7. The movement to “ig Data”rom “mall Data”. The concepts behind Big Data Geoscientists of all skill levels that are seeking to better understandwhy the cloud is changing the industry and how the cloud can beused in their roles to improve project outcomes. Participants should have casual familiarity with linear algebra andcalculus.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="1" class="ninja_table_row_1 nt_row_id_1"> <td>Data Science</td><td>Machine Learning</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=421" target="_blank" rel="noopener">Machine Learning in Geosciences</a></b><br/><small><i>By Gerard Schuster (King Abdullah University of Science and Technology, Saudi Arabia)</i></small></td><td>Gerard Schuster</td><td></td><td>convolutional neural networks machine learning neural networks oil and gas semblance gathers support vector machine</td><td>Participants will learn the high-level principles of several importanttopics in machine learning: neural networks, convolutional neuralnetworks, and support vector machine. They will practice the executionof these methods on MATLAB codes (free for 30 days afterdownloading it from the MATLAB site) and Python-related codes(can be uploaded during the course). Applications include fracturedetection in photos, fault delineation in seismic images and pickingNMO velocities in semblance gathers. About 66% of the time will be for 50-minute lectures and the remainingtime will be devoted to lab exercises. The course is designed for geoscientists who have heard aboutMachine Learning and might know some details, but lack enoughknowledge to test ideas or make the next step in understanding. Thislimitation will be mitigated after a day of diligent attendance andeffort. A selective overview of important ML topics is provided andtheir practical understanding comes from MATLAB and Python-relatedexercises applied to geoscience problems. Participants should have casual familiarity with linear algebra andcalculus.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="2" class="ninja_table_row_2 nt_row_id_2"> <td>Data Science</td><td>Machine Learning</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=425" target="_blank" rel="noopener">New Applications of Machine Learning to Oil & Gas Exploration and Production</a></b><br/><small><i>By Dr Bernard Montaron (Fraimwork SAS, Malaysia)</i></small></td><td>Bernard Montaron</td><td></td><td>deep neural networks (dnn) exploration machine learning oil and gas</td><td>The course introduction will attempt to answer the question: Howwill A.I. change the way we work in the Oil and Gas industry inthe coming years? Looking at what is underway in other industriesand guessing what type of projects are under development in R&Ddepartments in our industry will help answer that question.Oil and Gas examples will be presented corresponding to each of theterms A.I., Machine Learning, and Deep Learning, allowing participantsto reach a clear understanding on how they differ.The course will then focus on Deep Learning (DL) and address all keyaspects of developing and applying the technology to Oil and Gasprojects.•hat is DL and how different is it from traditional neural networks?• peek at the mathematics behind Deep Neural Networks (DNN)•ypical workflow to design and develop a deep learning applicationin an E&P project•ommon challenges, difficulties, and pitfalls in deep learningprojects•oftware tools and hardware required + Cloud computing vs in-house solutions.This will be followed by live demonstrations of two DNN-based applicationsspecific to Oil and Gas upstream domains.First, we’l run software performing automatic fault identification onreleased seismic data from New Zealand basins to demonstrate howa DNN recognizes faults and how it differs from other algorithmssuch as ant tracking. Starting from default training, the DNN cangradually learn to recognize faults like the Geophysicist or StructuralGeologist. The training set constantly evolves incorporating feedbackfrom human experts.Second, the identification of resource opportunities in very largerepositories of text and image documents will be demonstrated. Thiswill be done with a deep learning application that performs contextualsearch and linguistic analysis. Unlike keyword search, contextualsearch extracts information based on its context, just like humansdo. And then linguistic analysis is run on the extracted information toidentify actionable opportunities. This list of opportunities can thenbe further evaluated by human experts.Finally, the course conclusion will summarize key learnings and answerany additional questions/queries from participants. Upon completion of the course, participants will have acquired detailedknowledge of what deep learning is exactly, how it works, andin which way it differs from traditional neural networks that havebeen used in the industry during the last 30 years. They will understandwhich domains this can be applied to and for what type ofapplications. And they will also understand what are the main challenges,difficulties, and pitfalls when developing new applications.Finally, they will have seen demonstrations of deep neural networksapplied to Exploration and Production disciplines and will be able toevaluate how useful the technology could be for their own domain. Morning session: 3 hours + breaks. Lunch break. Afternoon session:3 hours + breaks•ntroduction to the new A.I. world: What’ currently underway inR&D departments?•rtificial Intelligence, Machine Learning, and Deep Learning: howdo they differ and examples of O&G applications• closer look at Deep Learning:•hat is it and how different is it from traditional neural networks?• peek at the mathematics behind Deep Neural Networks (DNN)•ypical workflow to design and develop a deep learning applicationin an E&P project•ommon challenges, difficulties, and pitfalls in deep learningprojects•oftware tools and hardware required + Cloud computing vs in-house solutions.•pplication to Geophysics and Geology: automatic fault identificationwith a DNN (live)•pplication to Production Engineering: detecting oil & gas opportunitieswith a DNN (live)•onclusion - Key learnings The course is designed for geoscientists, petroleum engineers, andpetrophysicists from new ventures/basin, exploration, and development& production disciplines - from early career to senior, workingin oil & gas companies or service companies.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="3" class="ninja_table_row_3 nt_row_id_3"> <td>Data Science</td><td>Machine Learning</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=439" target="_blank" rel="noopener">Developing Deep Learning Applications for the Oilfield: From Theory to Real World Projects</a></b><br/><small><i>By Dr Bernard Montaron (Fraimwork SAS, Malaysia)</i></small></td><td>Bernard Montaron</td><td></td><td>deep neural networks (dnn) exploration machine learning oil and gas</td><td>This course starts with the story of AI from the 1950s to the AIrevolution of the 2010s. Today’ AI business landscape and what’happening in the oil and gas are reviewed. The basic concepts ofMachine Learning are introduced, followed by a detailed presentationof neural networks (NN). NN used 25 years ago in the oilfield arediscussed, then participants experiment a NN trained in 12 secondsto read handwritten digits. Deep convolutional NNs (DNN) are thenstudied and applications to salt mapping and fault detection in seismicdata discussed and demo’d. Finally, participant teams are askedto design DNNs and to define how to create the data sets for twooilfield projects: sweet spot detection in Bakken field, USA, and GWCprediction in seismic data of undrilled carbonate pinnacles offshoreCentral Luconia, Malaysia. Upon completion of the course, participants will have acquired detailedknowledge of what deep learning is exactly, how it works, andin which way it differs from traditional neural networks that havebeen used in the industry during the last 30 years. They will understandwhich domains this can be applied to and for what type ofapplications. And they will also understand what are the main challenges,difficulties, and pitfalls when developing new applications.Finally, they will have seen demonstrations of deep neural networksapplied to Exploration and Production disciplines and will be able toevaluate how useful the technology could be for their own domain. Part 1:• little history of artificial intelligence (A.I.)•he AI revolution in the last ten years•oday’ AI business landscape•AFAMs and free online AI software development tools•hat’ happening with AI in the Oil & Gas business?•inear Regression as an introduction to Machine LearningPart 2:• little more on linear regression•eural Network basics•ogic gates (NOT, OR, AND) as neural networks…nd implications•nderstanding ML buzz words: gradient descent, backpropagation,generalization, etc.•he mathematics of NNs and ML (linear algebra)•mage classification/pattern recognition with a neural network(NN-DIGITS)•N-DIGITS training demoPart 3:•iscussion on NN from the past in the oilfield industry, and handwrittendigit classification•he Deep Learning revolution: how did it happen?• very complex NN: the human eye and the visual cortex•ntroduction to deep convolutional NNs (CNNs)•ow CNNs make it possible to develop a micro-paleontology MLsoftware•ree download AI tools (ATOM, Keras, TensorFlow) running on agamer laptop PC•N/CNN demos with these tools using an online data set fromKagglePart 4:•iscussion on self-driving cars ML software, and adversarial attacks•dversarial examples for the human brain: optical illusions andperception errors•iscussion on the salt classification paper•mportant considerations on accuracy metric•eview of a CNN-based system for picking faults in seismic data•oftware demo of “yFault”•ntroduction to part-5 teamwork exercises: do your own ML projectPart 5:•eam exercises and presentations This course is intended for technical staff and managers interestedto understand what Deep Learning is and how it can be applied tooilfield projects (all disciplines).</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="4" class="ninja_table_row_4 nt_row_id_4"> <td>Data Science</td><td>Machine Learning</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=423" target="_blank" rel="noopener">Data Science for Geoscience</a></b><br/><small><i>By Prof. Dr Jef Caers (Stanford University, United States)</i></small></td><td>Jef Caers</td><td></td><td>case study climate correlation cross-plotting decomposition deposits earthquake environmental extrapolation facies flooding fourier geostatistics groundwater modeling uncertainty</td><td>This course provides an overview of the most relevant areas of datascience to address geoscientific challenges and questions as theypertain to the environment, earth resources & hazards. The focuslies on the methods that treat common characters of geoscientificdata: multivariate, multi-scale, compositional, geospatial and space-time. In addition, the course will treat those statistical method thatallow a quantification of the “uman dimension”y looking atquantifying impact on humans (e.g. hazards, contamination) andhow humans impact the environment (e.g. contamination, landuse). The course focuses on developing skills that are not covered intraditional statistics and machine learning courses.The material aims at exposure and application over in-depth methodologicalor theoretical development. Data science areas coveredare: extreme value statistics, multi-variate analysis, factor analysis,compositional data analysis, spatial information aggregation,spatial analysis and estimation, geostatistics and spatial uncertainty,treating data of different scales of observation, spatio-temporalmodeling. The focus lies on developing practical skills on real datasets, executing software and interpreting results. The objectives of this course are to:•iscover fields of data science typically not covered in traditionalcourses•dentify a combination of data science methods to address aspecific geoscientific question or challenge whether related tothe environment, earth resources or hazard, and its impact onhumans•se statistical software on real datasets and communicate theresults to a non-expert audience Part I: Extremes•tatistical analysis of skew data•xtreme value statistics•pplications: size and magnitude distributions (volcanoes,diamonds, earthquakes), extreme flooding, weather, climate.Part II Compositions•ompositional data analysis•pplications: geochemical data in Earth ResourcesPart III Causality•ultivariate analysis of compositional data•pplication: pollution, water quality, anomaly detection, EarthResources prospecting.Part IV Geospatial analysis•ayesian Aggregation of geospatial information•eights of Evidence method•ogistic regressionPart V spatial uncertainty•patial analysis, geostatistics & spatial uncertainty•pplication: interpolating remote sensing data, pollution data,groundwater/reservoir modeling•ariogram Analysis•riging•ultiple-point geostatistics Geoscientists and geo-engineers who wish to expand theirknowledge on data scientific methods specifcally applicable toearth science type data sets: skew data, compositional/multivariate,spatio-temporal.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="5" class="ninja_table_row_5 nt_row_id_5"> <td>Data Science</td><td>Machine Learning</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=449" target="_blank" rel="noopener">Geophysical Data Analysis in Julia, including Machine Learning</a></b><br/><small><i>By Dr Rajiv Kumar (Schlumberger, United Kingdom)</i></small></td><td>Rajiv Kumar</td><td></td><td>machine learning julia open source geophysics imaging inversion pre-processing denoising data visulalization quality control</td><td>The main objective of this course is to bridge the gap between R&Eand non-R&E people working in the industry together by providinga learning platform to non-R&E people where they can understandand develop their own research ideas and give them life. Even R&Epeople can learn the power of open source languages such asJULIA in testing and writing small prototypes while utilizing parallelcomputing capabilities. The audience will learn and develop smallresearch prototypes on seismic data processing concepts such asdenoising, interpolation, modelling and inversion. The secondobjective is to demonstrate to the audience that they can furtherexplore the world of machine learning in JULIA while connectingthe conventional and ML techniques to stay up-to-date with theadvancements in the field of signal processing. Upon completion of the course, participants will learn:•ow to build and test small research prototypes in JULIA forday-to-day task•o use and understand signal processing tools available in opensource and how to adapt these tools as per the research requirements•o perform parallel computing in JULIA to scale small researchprototypes to a large-scale problem The course is completely hands-on delivered through various jupyternotebooks with a couple of presentations in between.•ntroduction to JULIA- loading JULIA, IDE and various other environments- introduction to variables, types, functions, data structure,control flow- introduction to parallel computing in JULIA•arious data preprocessing tasks such as- loading LAS, Excel, text, SEGY format in JULIA,- organizing the data- cleaning and visualization•utorial on designing different seismic preprocessing tools such as- denoising- interpolation- deconvolution•sing Synthetic VSP dataset, setup and perform- full-waveform inversion- reverse time-migration•uilding machine learning model to perform denoising on VSPdatasets Geoscientists who are interested to create, design and learnprogramming to develop their ideas from imagination to real-worldsolutions. This course will demonstrate to them the power of opensource programming languages such as JULIA, and enable them touse it in there day to day tasks while testing it in real-time to furtherextend it to be ready to deploy on the production scale. The audience is expected to have prior knowledge of basic signalprocessing concepts such as correlation, deconvolution and Fouriertransforms and seismic processing background.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="6" class="ninja_table_row_6 nt_row_id_6"> <td>Data Science</td><td>Machine Learning</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=429" target="_blank" rel="noopener">Machine Learning for Geoscientists with Hands-on Coding</a></b><br/><small><i>By Dr Ehsan Naeini (United Kingdom)</i></small></td><td>Ehsan Naeini</td><td></td><td>case study data science facies classification fault detection machine learning rock physics wells</td><td>Machine learning has been around for decades or, depending onyour view, centuries. By applying machine learning to our workflows,e.g. petrophysics, rock physics, seismic processing and reservoircharacterization, we can bring speed, efficiency and consistency overtraditional methods of data analysis. In addition, we can implementa range of machine learning techniques together with optimizationalgorithms and statistics to identify new patterns and relationshipsin multi-dimensional datasets. This has the potential to enhance ourquantification and strengthen our interpretation of the subsurface;ultimately leading to a more accurate predictive outcome.In this course we attempt to layout the reality of artificial intelligence,machine learning, deep learning and big data. We cover the basicprinciples of machine learning and some of the most widely usedalgorithms. We continue by explaining a workflow for implementinga typical machine learning application in practice and to qualitycontrol and interpret the outcomes. Following this we shift focus toGeoscience and show various examples in which machine learningalgorithms have been implemented for well- and/or seismic-basedapplications. Given the hands-on coding nature of this course,trainees will code up a classification and a regression algorithm forlithology/facies and well log prediction correspondingly. Throughoutthese exercises the trainees will become familiar with the flexibilityof coding machine learning in Python (although we do not intend toteach Python in details in this course) as well as familiarization withpublicly available Python libraries for machine learning and analytics.The course is for entry level practitioners and involves hands-oncoding, hence having some Python skills is an advantage but notessential. 1. Use Python;2. Understand various machine learning algorithms, concepts andterminologies;3. Learn how to analyse data in big scales;4. QC for machine learning applications;5. Extend their newly learned knowledge to their day to day practiceand implement their own ideas. 1. Introduction;2. Machine Learning Principles;3. Machine Learning in Practice;4. Exercise 1: ML for classification;5. Exercise 2: ML for regression.6. Exercise 3: Application of ML on seismic data The course is designed for basically everyone, however, an introductorylevel of analytics expertise is useful. There are no prerequisites, but basic Python knowledge can be useful.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="7" class="ninja_table_row_7 nt_row_id_7"> <td>Data Science</td><td>Machine Learning</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=431" target="_blank" rel="noopener">Introduction to Machine Learning (ML) for Geophysical Applications</a></b><br/><small><i>By Dr Jaap C. Mondt (Breakaway, Netherlands)</i></small></td><td>Jaap C. Mondt</td><td></td><td>artificial intelligence classification clustering deep learning machine learning non-linear regression</td><td>Business contextMore and more Machine Learning (ML) will play a role not only insociety in general but also in the geosciences. ML resorts under theoverall heading of Artificial Intelligence. In this domain often theword “lgorithms”s used to indicate that computer algorithms areused to obtain results. Also, “ig Data”s often mentioned, indicatingthat these algorithms need an enormous amount of input datato produce useful results.Many scientists mention “et the data speak for itself”hen referringto machine learning, indicating that hidden or latent relationshipsbetween observations and classes of (desired) outcomes canbe derived using these algorithms. A clear example is in the fieldof Quantitative Interpretation. For clastics we have a reasonableunderstanding in which cases known rock properties expressed inequations can be used to predict say pore fluids. But for carbonatesit is often an enigma and we have to resort to statistical relationships.Then ML enters into the game. If we have many wells with knowndrilling results, the algorithms can derive non-linear relationshipsbetween seismic observations and the known well results (supervisedlearning). But sometimes it is already useful if an algorithm can defineseparate classes (say seismic facies), which then still need to beinterpreted (unsupervised learning).The courseThe aim of this 1-day course is to introduce how Machine Learning(ML) is used in geophysical applications. It will give an understandingof the “orkflows”sed in ML. The used algorithms can be studiedseparately using references. Power-point presentations will introducevarious aspects of ML, but the emphasis is on computer-based exercisesusing open-source software. The course concerns a genuinegeophysical issue: predicting lithology and pore fluids, including fluidsaturations. The input data are Acoustic and Shear Impedances, Vp/Vs ratios and AVA Intercept and Gradients. The exercises deal withpreconditioning the datasets (balancing the input classes, standardization& normalization of data) and applying several methodsto classify the data: Bayes, Logistic, Multilayer Perceptron, SupportVector, Nearest Neighbour, AdaBoost, Trees. This for supervised aswell as unsupervised applications. Non-linear Regression is used topredict fluid saturations. The objectives of this course are to:1. Have a good understanding on how and when MLcan be appliedeffectively in the geosciences;2. Realize the workflows that can be used in ML;3. Solve the main issue of ML, namely choosing the appropriatealgorithm and its parameters. This course is meant for all those who are interested in understandingthe impact Machine Learning will have on the Geosciences andthen specifically the impact on seismic and non-seismic data acquisition,processing and interpretation. Hence, geologists, geophysicistsand petroleum and reservoir engineers, involved in exploration anddevelopment of hydrocarbon fields, but also those working in shallow-surface geophysics.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="8" class="ninja_table_row_8 nt_row_id_8"> <td>Data Science</td><td>Machine Learning</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=753" target="_blank" rel="noopener">Data Visualization Principles for Scientists</a></b><br/><small><i>By Dr Steve Horne</i></small></td><td>Steve Horne</td><td></td><td></td><td>We begin the course with a motivation of why data visualization matters. I will show good, bad and ugly visualizations and we will dissect these to understand what makes a good data visualization and how some plots deceive - sometimes intentionally! Next, we will take a fast historical tour taking in pivotal plots from, among others, Florence Nightingale, William Playfair, John W. Tukey and Edward Tufte.Next, we will learn about human vision and how we can exploit our biology to efficiently process charts. We will have a deep dive into human colour perception to discuss issues around colour vision deficiencies and how we can reach a wider audience by a careful choice of colours. We continue on the theme of human visual perception by reviewing pre-attentive attributes and the Gesthalt principles and how these can be employed in our charts. We will pay particular attention to line charts, pie chart and why 3D effects should only be used with caution.Our last taught session will review typefaces (fonts), tables and file formats before we move to a practical session where participants will be asked to choose a plot, identify any shortcomings and then redesign it based on the principles we have learnt during the day.</td><td>in-house-true</td><td>new-course-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="9" class="ninja_table_row_9 nt_row_id_9"> <td>Data Science</td><td>Machine Learning</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=767" target="_blank" rel="noopener">Introduction to Python for Geoscientists</a></b><br/><small><i>By Claude Cavelius</i></small></td><td>Claude Cavelius</td><td></td><td></td><td>In today's data-driven world, the ability to analyze and visualize complex datasets is essential for geoscientists. This course is designed for geoscientists seeking to leverage the power of the Python programming language and enhance productivity in their daily work. Over three days, participants will gain foundational knowledge in Python, focusing on statistical analysis, data processing, and graphical visualization techniques tailored to the specific needs of the geoscience industry.The first two days of the course will introduce participants to the fundamentals of Python programming. We will begin with an overview of the Python programming language, including its importance and versatility in data analysis. Participants will learn how to set up their Python environment, including the installation of essential tools like Jupyter Notebook, which provides an interactive platform for coding. We will also cover an overview of useful Python libraries that are particularly relevant to geoscience, such as NumPy, Pandas, and Matplotlib. These libraries enable users to perform data manipulation, statistical analysis, and visualization tasks with ease.The hands-on coding sessions will include practical exercises using geological datasets. Participants will explore basic programming concepts such as importing functions, understanding variable types, and implementing loops. Additionally, we will delve into data structures like lists, dictionaries, and tuples, emphasizing their importance in organizing and manipulating geoscientific data. Participants will also learn how to navigate Python library documentation effectively, a crucial skill for any aspiring programmer.On the third day, we will shift our focus to data preparation and exploratory data analysis (EDA). Participants will learn how to load, filter, clean, and visualize data using key Python libraries specifically chosen for applications in geosciences. We will cover practical techniques for preparing datasets, ensuring they are ready for analysis.The course will explore various file formats commonly used, including CSV, LAS, SEG-Y, and shapefiles (SHP). Participants will engage in hands-on exercises to practice loading and cleaning these datasets, allowing them to apply the concepts learned in the previous sessions.Throughout the course, we will emphasize the importance of data visualization. Using libraries such as Matplotlib, Plotly, or Seaborn, participants will learn how to create compelling graphical representations of their data, facilitating better communication of findings and insights.By the end of this three-day course, participants will have a solid foundation in Python programming tailored to the geoscience field. They will possess the skills needed to analyze complex datasets efficiently, automate their workflows, and produce high-quality visualizations, ultimately enhancing their productivity and effectiveness in their geoscientific work.</td><td>in-house-true</td><td>new-course-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="10" class="ninja_table_row_10 nt_row_id_10"> <td>Energy Transition</td><td>Energy Transition</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=441" target="_blank" rel="noopener">Geophysical Monitoring of CO2 Storage</a></b><br/><small><i>By Prof. Martin Landrø (Norwegian University of Science & Technology, Norway)</i></small></td><td>Martin Landrø</td><td></td><td>4d acoustic electromagnetism flooding gravity inversion mapping rock physics saturation time-lapse</td><td>The course discusses various methods for monitoring subsurfaceinjection of CO2. Specifically, the following topics will be covered:•ock physics related to injection of CO2 into porous rock•ime-lapse seismic methods•ravity and electromagnetic methods•aturation and pressure effects•arly detection of leakage•apping overburden geology and identification of potentialweakness zones•ield examples•ell integrity issues•sing gas leakage as a proxy to study potential leakage of CO2•aboratory experiments of CO2 flooding including acoustic measurements Upon completion of the course, participants will be able to understandpossibilities and challenges related to geophysical monitoringof a CO2 injection process. The course is designed for geoscientists working in oil companies,service companies and research organizations. Participants should have knowledge of basic geophysics and somegeology.</td><td>in-house-true</td><td></td><td></td><td></td><td>energy-transition-true</td><td></td> </tr> <tr data-row_id="11" class="ninja_table_row_11 nt_row_id_11"> <td>Energy Transition</td><td>Energy Transition</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=739" target="_blank" rel="noopener">Exploration of subsurface natural geologic hydrogen and stimulation for its enhanced production</a></b><br/><small><i>By Dr Dariusz Strapoc</i></small></td><td>Dariusz Strapoc</td><td></td><td>basin analysis carbon neutrality case study climate change drilling energy energy transition geochemistry isotope analysis water wells workflows</td><td>The course will discuss and compare carbon footprint versus price of the full palette of different sources of hydrogen. Material includes comparison of energy output per mass and per volume among all major fuels with H2. All industrial (e.g., electrolysis) and natural sources and generating mechanisms (e.g., serpentinization, water radiolysis, etc.) and corresponding association with other gases (He, CO2, N2, CH4) as well as consumption fluxes (e.g., microbial utilization) will be described. Global occurrences and seepages of natural H2 will be presented along with worldwide ongoing and planned exploration activity. Geologic setting of the only H2 production field in Mali will be discussed. Series of challenges associated with natural H2 exploration and production will be discussed in detail, including: natural H2 systems differences and analogues to petroleum systems, drilling and logging associated challenges (i.e., degassing and analyzer techniques, drilling-induced artificial H2 generation), downhole sampling and transportation (e.g., steel embritlement), safety issues (flammability and explosivity), and finally storage capacity challenges (comparison to methane diffusivity and column height versus capillary force, salt caverns). The natural and stimulated H2 systems require novel reactive transport and geologic systems modeling efforts. Current status of such modeling adjustments for H2 will be also discussed. Further, strategies of stimulating natural hydrogen (orange H2) subsurface will be discussed. The enhancement of natural H2 generation and production rates include physical (various fracturing and production scheme methods) and chemical (e.g., catalysts, etc.). The main challenges associated with subsurface stimulation will be also presented, e.g., decay of reaction kinetics, fluid movement and removal of gaseous products. The landscape activity and research initiatives in the orange H2 space will be also updated. As related topic, helium exploration will be also touched upon, as in certain scenarios this gas can be associated with natural H2. </td><td>in-house-true</td><td>new-course-true</td><td></td><td></td><td>energy-transition-true</td><td></td> </tr> <tr data-row_id="12" class="ninja_table_row_12 nt_row_id_12"> <td>Energy Transition</td><td>Energy Transition</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=679" target="_blank" rel="noopener">Basics of Carbon Capture and Storage: a Course for Geologists, Geological Regulators, Policy Makers and Investors</a></b><br/><small><i>By Prof. Mike Stephenson</i></small></td><td>Mike Stephenson</td><td></td><td>co2 storage energy transition</td><td>This course is for geologists, environmental scientists, and geologicalregulators, policy makers and investors who are interested in carboncapture and storage. The course will cover: the role of CCS withindecarbonisation as an aspect of earth system science; why CCS isnecessary; how CO2 is captured in industrial processes and how itcan be used industrially; the factors affecting geological storage;how CO2 stores are monitored for leakage; how CCS will be regulated;how CCS will pay for itself; and the social licence for CCS. Thecourse will be delivered in simple non-technical language suitable fornon-specialists.The course I propose satisfies a part of the market that is not currentlycatered for – the wider science, risks, financing, planning andsocial licence aspects of CCS. These are issues that are as importantas the technical issues (in for example reservoir engineering), in thesense that any of these elements can be a show-stopper for CCS.Although the course will cover the technical geological and engineeringaspects of CCS, it will also consider how these technical,policy and science aspects affect planning, regulation and financingof CCS. There are geologists, planners, investors and policy makers incompanies, government natural resource and planning departments,investment banks and among NGOs that require this informationfrom an unbiassed technically well informed and up to date source.This course will provide that source.</td><td>in-house-true</td><td>new-course-true</td><td></td><td></td><td>energy-transition-true</td><td></td> </tr> <tr data-row_id="13" class="ninja_table_row_13 nt_row_id_13"> <td>Energy Transition</td><td>Energy Transition</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=741" target="_blank" rel="noopener">Python for Renewable Energy Data Processing: An Extensive Online Short Course for Geoscientists and Engineers</a></b><br/><small><i>By Dr Roderick Perez Altamar</i></small></td><td>Roderick Perez Altamar</td><td></td><td>python programming renewable energy data processing geoscientists engineers statistical analysis exploratory data analysis visualization hands-on exercises real-time webinars</td><td>Python for Renewable Energy Data Processing is a comprehensive and hands-on online short course designed specifically for geoscientists and engineers who are interested in harnessing the power of Python programming for renewable energy data analysis. This foundational course provides participants with the necessary knowledge and practical skills to process and analyze renewable energy data using Python. The course begins with an introduction to renewable energy sources such as hydroelectric, eolic, solar, and geothermal, allowing participants to understand the fundamental principles and applications of each. Next, participants are introduced to the Python programming language and its environment. They learn about essential data structures, functions, and modules, as well as explore popular libraries like Numpy, Pandas, and Matplotlib that are widely used in data analysis. Throughout the course, participants engage in hands-on exercises that gradually build their proficiency in Python. They apply their newly acquired skills to perform basic statistical analysis, conduct exploratory data analysis (EDA), and create visualizations using real- world energy datasets. Each topic is accompanied by informative videos and presentations with narration, ensuring a comprehensive learning experience. The course is divided into specific modules dedicated to different renewable energy sources. Participants delve into wind energy, hydroelectric energy, eolic energy, and geothermal energy. They learn how to load and visualize data related to each energy source using Python, gaining valuable insights into the unique characteristics and challenges associated with each type. To assess their understanding and progress, participants complete quizzes at the end of each chapter. These quizzes are automatically checked, providing immediate feedback on their performance. Additionally, practical assignments are provided, enabling participants to apply their knowledge and reinforce their skills. An essential aspect of this course is the dedicated sessions where participants can interact with the instructor in real-time webinars. This allows them to seek clarification, ask questions, and receive expert guidance on the practical application of Python programming in renewable energy data processing.</td><td>in-house-true</td><td>new-course-true</td><td></td><td></td><td>energy-transition-true</td><td></td> </tr> <tr data-row_id="14" class="ninja_table_row_14 nt_row_id_14"> <td>Energy Transition</td><td>Energy Transition</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=433" target="_blank" rel="noopener">An Introduction to Offshore Wind</a></b><br/><small><i>By Jeroen Godtschalk (BLIX Consultancy BV, Netherlands)</i></small></td><td>Jeroen Godtschalk</td><td></td><td>offshore wind energy transition geoscience renewables offshore</td><td>The purpose of this course, is to provide the participants with a comprehensiveintroduction into offshore wind, it’ development and therole of the geoscientist in this process.During the course, the participants are taken through all the basicbuilding blocks of the offshore wind development. We start thecourse with an introduction into the various options for renewableenergy and why offshore wind is often the preferred option. Weconclude this course by discussing the installation issues for offshorewind farms, but also touch upon maintenance issues. In between wecover all the basic steps of development, with a slight focus on themore geoscience related work such as site investigation work, settingthe correct parameters for the offshore campaign and foundationselection.After having completed the course, the participants should have abetter understanding of how offshore wind farms are being developedand what factors are influencing the design and the businesscase of such farms. The participant should than also have a clear ideaon what the role of the geoscientist in this process is. This should givehim/her also some possible guidance on the career opportunities inthis field, should he/she decided to move away from oil & gas andpursue a career in offshore wind.In order to participate in this course, no real knowledge of offshorewind is mandatory. A basic understanding of geophysical andgeotechnical methods will help, but the course can also easily befollowed with limited knowledge of these subjects.If required the course can be tailored to suit the needs of the group,with either more or less detailed presentations. We are happy todiscuss any preferences upfront. Upon completion of the course, the participants will be able to:1. Better understand the process and the steps of an offshore windfarm development.2. Have a clear understanding of the role of the geoscientist in thisproces.3. Understand what factors are determining the final design andlayout of an offshore wind farm.4. Have a good overall idea of offshore wind 1. Offshore wind basics•verview of renewable energies•hy offshore wind•he physics behind offshore wind•hat is needed for an offshore wind farm (how to decide on asuitable site)•equired permits2. Site selection•hat stakeholders do we have before site selection•eabed occupation/UXO•rid connection to shore•orts/logistics hub•eospatial issues•esktop studies on geology, archaeology, morphodynamics3. Data collection•etOcean Data –ind, waves and currento Methodologyo Why needed and how is it used•eophysical data –eabed and below seabaedo Methodologyo Why needed and how is it used•eotechnical data –eabed and below seabedo Methodologyo Why needed and how is it used•orphodynamics•ntegration into a ground model4. Foundation types•ifferent types of foundation•hich foundation suits which project and why•ro’ and Con’ for each foundation5. Transport & Installation•nstallation of different foundations•able installation•ypical issues for installation•aintenance The course is designed for anybody who wants to learn more aboutoffshore wind development and who is keen to learn to understandthe basic building blocks of offshore wind. A basic understanding of geophysical and geotechnical methodswill help, but the course can also easily be followed with limitedknowledge of these subjects. In addition, basic understanding ofphysics will help to understand the overall idea of wind energy andits associated issues.</td><td>in-house-true</td><td></td><td></td><td></td><td>energy-transition-true</td><td></td> </tr> <tr data-row_id="15" class="ninja_table_row_15 nt_row_id_15"> <td>Energy Transition</td><td>Energy Transition</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=437" target="_blank" rel="noopener">Geological History of CO2: Carbon Cycle and Natural Sequestration of CO2</a></b><br/><small><i>By Dr Alain-Yves Huc (UPMC - Paris VI University, France)</i></small></td><td>Alain-Yves Huc</td><td></td><td>carbonates climate environmental geochemistry geomorphology paleoclimate sediment weathering</td><td>With respect to the current genuine public concern regarding the anthropogenicincrease of Green-House gases, intensive research and technologydevelopment focus on the capture and underground storage of industrialquantities of CO2 concentrated in emissions from combustion sources. Atthe global scale, the withdrawal of the CO2 diluted in the atmosphere reliesessentially on natural bio-geological processes. As a complement to the studyof the involved factors in the modern terrestrial eco-system, the geologicalperspective provides the opportunity to investigate these processes and theirconsequences at different time scales.During Earth’ history the atmospheric CO2 has been subjected to extensivechanges in term of absolute quantity and relative concentration. From ageological perspective, the current anthropogenic driven alteration of theEarth’ atmosphere actually occurs during a period of low atmospheric CO2(Ice-House). A large part of the remaining time intervals of the Phanerozoicwere apparently dominated by Green-House conditions. The latter situationresulting from the high concentration of atmospheric CO2, due to volcanicand metamorphic degassing associated with the long term tectonic activity ofPhanerozoic megacycles. The subsequent decrease of atmospheric CO2 at theend of the megacycles is interpreted by a negative feedback involving the CO2driven silicate weathering which consumes CO2.Based on the CO2 sourcing(tectonic degassing) and CO2 sinking (sedimentation of carbonates and organicmatter), the most popular model depicting the change of atmospheric CO2during the Phanerozoic are based on the Berner’ GEOCARBSULF approach.The resulting curve which exhibits the long-term change is, to some extent,comforted by the comparison with the estimates of past PCO2 values providedby different indicative proxies.However some available data depart from the model and high resolution seriesof proxies suggest that high amplitude and high frequency changes in atmosphericCO2 were occurring at a much lower time scale. Implications include thepossibility to better explain short term climatic events such as the Late Ordoviciancontinental-wide glaciation, to reconsider the significance of brutal eventsof injection of CO2 in the atmosphere as a result of intra-plate volcanism andtheir environmental responses and geochemical record in oceanic sediments(e.g.the Permo-Trias Siberian traps), to revisit the so-called climatic optima suchas the Late Palaeocene and Early Eocene, and the necessity to improve ourassessment of the kinetics of the retroaction loops controlling the level of CO2in the atmosphere.The main reservoir of carbon is the Mantle. It is the likely repository of a largepart of the CO2 which was initially present in the primitive atmosphere of theEarth, following accretion and degassing, and from which it was probablyprogressively withdrawn through the process of subduction. The two othermajor reservoirs of carbon are the sedimentary carbonates and organic matter.The progressive build up of these reservoirs correspond to a long-term sinkfor around 80 bar of atmospheric CO2. It should be noted that for both ofthem the processes involved in the transformation of CO2 into carbonates andkerogen are biologically driven and that the efficiency of these processes tendsto increase as biological evolution proceeds Upon completion of the course, participants will be able to:•lace the current atmospheric CO2 concentration in a geological perspective;•rovide an overview of the methods used to approach the value of the pastatmospheric CO2 content;•eview the change in the carbon cycle throughout geological time: Evolutionof source and sink. •ools for monitoring changes in atmospheric CO2 throughout time.•he carbon cycle.•rocesses of natural sequestration of atmospheric CO2: the carbon sinks.•tmospheric CO2 change on planet Earth:- from Precambrian to Phanerozoic;- the Cenozoic;- the Pleistocene ice house an inaccurate analogue for the current CO2 depar-ture from natural values.•volution of carbon sinks, the instrumental role of biology. Anyone interested in the current atmospheric CO2 concern and the evolutionof the biogeochemistry of the Earth’ system. Basics geology and chemistry (biology).</td><td>in-house-true</td><td></td><td></td><td></td><td>energy-transition-true</td><td></td> </tr> <tr data-row_id="16" class="ninja_table_row_16 nt_row_id_16"> <td>Energy Transition</td><td>Energy Transition</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=435" target="_blank" rel="noopener">Geological CO2 Storage</a></b><br/><small><i>By Andreas Busch*, Eric Mackay*, Florian Doster* (*Heriot-Watt University, United Kingdom), Martin Landrø (NTNU, Norway), Philip Ringrose (Equinor & NTNU, Norway)</i></small></td><td>Andreas Busch, Eric Mackay, Florian Doster, Martin Landrø, Philip Ringrose</td><td></td><td>carbonates climate environmental geochemistry geomorphology paleoclimate sediment weathering</td><td>Module 1: Introduction to CCS to saline aquifer storage•O2 storage project designModule 2: Reservoir concepts and storage requirements•eservoir/seal systems for pore space storage•torage capacity•O2 PVTModule 3: Flow mechanics (part I)•ingle phase flow in porous media - Darcy•ingle phase flow in porous media - Mass conservation•wo-phase transport - Pore scale processesModule 4: Flow mechanics (part II)•wo-phase transport: Introduction to relative permeability, capillarypressure•wo phase transport: Non-linear processes•ink to dynamic reservoir modelling/simulationModule 5: Storage risks: Seals, assessment, geomechanics and geochemistry•eochemical requirements to safely store CO2•eomechanical requirements to safely store CO2•eal integrityModule 6: CCS monitoring and risk assessment•ell integrity and subsurface monitoring•eabed/shallow subsurface monitoring•Near) Surface and Marine monitoringModule 7: Public perception, policy and emerging/niche CO2 storageoptions•O2 for enhanced oil production•merging/niche options to store CO2•ublic perception and policy All those interested in the geoscience and engineering aspects orcarbon capture and storage.</td><td>in-house-true</td><td></td><td></td><td>has-e-lecture-true</td><td>energy-transition-true</td><td></td> </tr> <tr data-row_id="17" class="ninja_table_row_17 nt_row_id_17"> <td>Energy Transition</td><td>Energy Transition</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=455" target="_blank" rel="noopener">Value of Information in the Earth Sciences</a></b><br/><small><i>By Prof. Jo Eidsvik (Norwegian University of Science and Technology, Norway)</i></small></td><td>Jo Eidsvik</td><td></td><td>decision making geostatics inversion modeling monitoring noise reservoir characterization rock physics seismic attributes sensors signal processing uncertainty</td><td>We constantly use information to make decisions about utilizing andmanaging natural resources. How can we quantitatively analyze andevaluate different information sources in the Earth sciences? What isthe value of data and how much data is enough?The purpose of the course is to give participants an understandingof the multidisciplinary concepts required for conducting value ofinformation analysis in the Earth sciences. The value of information iscomputed before purchasing data. It is used to check if data is worthits price, and for comparing various experiments.The course will outline multivariate and spatial statistical models andmethods (Bayesian networks, Markov models, Gaussian processes,Multiple point geostatistics), and concepts from decision analysis (decisiontrees, influence diagrams), and then integrate spatial statisticalmodeling, geomodeling and decision analysis for the evaluation ofspatial information gathering schemes.Unlike the traditional value of information analysis, this course focuseson the spatial elements in alternatives, uncertainties and data.A coherent approach must account for these spatial elements, andclearly frame the decision situation - we demonstrate a workflow forconsistent integration and apply this in a series of examples. In thiscourse we discuss and show examples of the value of imperfect versusperfect information, where the likelihood model of geophysicalmeasurements is less accurate. We also discuss the value of total versuspartial information, where only a subset of the data are acquired. Upon completion of the course, participants will be able to:- Frame a spatial decision situation with alternatives, experimentsand spatial geomodelling;- Use a workflow to conduct value of information analysis in spatialsituations;- Interpret and compare the value of information of different spatialexperiments. •otivation for value of information analysis in the Earth sciences;•ecision analysis and the value of information;- decision making under uncertainty, value functions, utility, decisiontrees, influence diagrams, value of perfect information,value of imperfect information- run simple demo example / project on computer•tatistical modeling and spatial modeling;- Bayesian networks, Markov models, Gaussian processes,non-Gaussian spatial processes. An important element here isconditioning to data (Bayes rule) and the spatial design of experiments,which will be important for the value of informationanalysis later- run demo / project on computer•alue of information analysis for spatial models;- Framing of spatial decision situations and opportunities for spatialdata gathering- Partial and total spatial information / imperfect and perfect spatialinformation- Coupled or decoupled spatial value function- Develop a workflow for value of information analysis in spatialapplications- run demo / projects on computer•xamples of value of information analysis in various energy transitionapplications: petroleum, mining, CO2 sequestration, hydrology,groundwater and wind energy production;- Description of decision situations, statistical modeling, data gatheringopportunities- Run demo / project on computer The course is designed for students, researchers and industry professionalsin the Earth and enviromental sciences who has interestsin applied statistics and /or decision analysis techniques, and inparticular to those working in petroleum, mining or environmentalgeoscience applications.Participants should have knowledge of basic probability and statistics,and mathematical calculus. Although it is not essential, it helpsto know basic multivariate analysis and decision analysis or optimization.The participant must be willing learn statistical topics and earthscience applications, and appreciate the multidisciplinary approachto solving quantitative challenges.</td><td>in-house-true</td><td></td><td></td><td></td><td>energy-transition-true</td><td></td> </tr> <tr data-row_id="18" class="ninja_table_row_18 nt_row_id_18"> <td>Energy Transition</td><td>Energy Transition</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=463" target="_blank" rel="noopener">Medium and Low-Grade Geothermal Energy: Geoscience and Geomechanics</a></b><br/><small><i>By Grant Wach (Dalhousie University, Canada), Maurice Dusseault (University of Waterloo, Canada)</i></small></td><td>Grant Wach</td><td></td><td>energy climate change carbon neutrality basin analysis climate continental margin environmental geomechanics geothermal groundwater salt sequence stratigraphy</td><td>Globally, countries are striving to gain control of the climate crisisby achieving carbon neutrality through significant and sustainedreduction of fossil fuel based energy production. Access to energyremains vital however, so the importance of developing renewableenergy technologies is paramount. Geothermal energy is a keyopportunity to achieving the energy transition due to low carbonemissions, reliable energy production and relatively low operatingcosts. Determining the economic viability of geothermal energy iscontrolled by geographical and geological constraints, so thoroughinvestigation of the subsurface geology is necessary in the evaluationof geothermal energy potential.Steam-based geothermal systems have been well-studied and developedsince the first small successes in Lardarello in 1911. However,geothermal steam for direct power generation is a rarity around theworld, and extremely site-specific. The Iceland successes are well-known, as are fields such as Cerro Prieto and the Geysers, but >98%of the land mass of the world does not have High-T (steam) systems.In this course, we will discuss global energy challenges and the energytransition, geological influences on geothermal energy sources,and focus on medium and low-grade systems in permeable reservoirs,and in hot dry rock at depth. We will also discuss geothermalenergy storage, geothermal fluids, HOR stimulation, and relatedtopics. Our intent is to leave you with a broad understanding of thethermal energy beneath our feet, how we might exploit it, and howwe might even store heat in a “hermal Battery”or power generation,or for habitat heating. Geothermal energy may fit comfortablywith renewable energy sources (hydro, wind, sun) but integratingdifferent combustion-free energy sources required careful planningand good geological and mechanical engineering. 1) Understand basic geological concepts with influence geothermalenergy systems2) Discuss the viability of developing a geothermal energy system ina given area (exercise)3) Discuss the different types of geothermal systems4) Consider basic risks of geothermal system development in a givenarea5) Understand basic geomechanical/engineering considerations ofgeothermal energy systems 1. Introduction:a. Geothermal systems (petroleum system elements format):i. High-T Steam systems - dry steam, wet steam ii. SedHeatsystems - hot aqueous fluids in porous permeable strata iii.HOR systems - Hot (& warm) Dry Rock systems with minimalpermeabilityb. Low energy, high energy systems: i. Lowest energy systems aregeothermal gradient systems ii. Highest energy systems aresupercritical water systems at moderate depth iii. Intermediateenergy systems in hot areas of sedimentary basinsc. Temperate and Northern climates: i. Extreme need for heat insub-arctic and artic climate zones ii. Use of heat for power,habitats, agricultured. Tropical and Arid Environments: i. Extreme need for cooling inhot-dry and hot-humid climates ii. Combining geothermal andother renewable energy sources for cooling2. Clastic Reservoirs:a. Typical petrophysical properties (e.g. geopressured aquifers inthe GOM)b. Adequate flow and energy flux3. Carbonate Reservoirs:a. Carbonate systems, naturally fractured strata (dual porositysystems)b. Hot fluids from oil production4. HOR - Hot Dry Rock:a. EGS - Enhanced Geothermal Systemsb. Naturally fractured systems and stimulationc. Advective and conductive heat flux5. Saline Aquifers and Salt6. Data collection and requirementsa. Thermal information: T (z, t...), specific heats, porosities, thermalconductivities, etc.b. Fluid flux information: reservoir characteristics, well stimulationeffectsc. Geochemistry of fluids and scale potential in SedHeat andHigh-T systemsd. Microseismic surveillance, Deformation monitoring, Pressures...7. Geotechnical Constraints and Hazardsa. Fluids managementb. Hydraulic fracture stimulationc. Induced seismicity -11 T, b.p effects8. Energy Storagea. Heat storage in shallow geo-repositories (<1000 m)b. Heat storage in deep geothermal heat reservoirsc. Integrating geothermal energy with compressed air energystorage This course is designed for students and professionals in the geologicaland engineering fields who are interested in learning aboutthe fundamentals of geothermal energy systems and modern energychallenges. Participants should have prior knowlegde of basic geology and/orgeomechanics.</td><td>in-house-true</td><td></td><td></td><td></td><td>energy-transition-true</td><td></td> </tr> <tr data-row_id="19" class="ninja_table_row_19 nt_row_id_19"> <td>Energy Transition</td><td>Energy Transition</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=443" target="_blank" rel="noopener">Geology and Engineering of Carbon Capture and Storage</a></b><br/><small><i>By Grant Wach (Dalhousie University, Canada), Maurice Dusseault (University of Waterloo, Canada)</i></small></td><td>Grant Wach</td><td></td><td>ccs carbon reservoir storage co2 energy climate change carbon neutrality energy transition basin analysis climate environmental geomechanics engineering</td><td>Global leaders and decision-makers are well aware of the climatecrisis and many are taking action to mitigate the effects of climatechange by reducing CO2 emissions. However, the demand for energyremains high, especially in areas that require heating and cooling,and currently much of the world’ energy is derived from hydrocarbons.Discussion of the ‘nergy Transition’ which is the shift fromfossil-fuel based energy to renewable sources, seems ubiquitous inrecent years, the transition is not as simple as that. Ensuring reliableaccess to energy in all jurisdictions is crucial, as are economic considerations.Combining a switch to renewables with anemission-reduction measures such as Carbon Capture and Storage isnecessary in the path to carbon neutrality.Carbon Capture and Storage (CCS) refers to the capture of emittedCO2 from the atmosphere, transport, and eventual storage in geologicalstructures. The basic concept is simple, but the execution iscomplex; it requires the identification of high-emission sites, detailedbasin analysis to determine suitability and safety for carbon storage,engineering, economic analysis, and risk analysis before an informeddecision to develop a CCS site can be made. This course will overviewcurrent energy challenges (the WHY), and geological and engineeringbasics of CCS (the HOW). Students will leave with a betterunderstanding of this mitigation opportunity and how decisions canbe made to pursue CCS in a given area. Upon completion of this course, participants will be able to:1) Understand the need to reduce atmospheric CO2 and the effectsof climate change to the global climate system2) Understand the basic concepts involved in reservoir characterization3) Discuss suitability of developing CCS sites, considering proximityto emission source, geology and engineering4) Discuss social and economic considerations of CCS5) Discuss case studies of existing CCS operations PART 1: Geoscience1. Introduction: Anthropogenic Atmospheric CO2 and the Need toReduce Emissionsa. Radiative Forcing of CO2 & Climate Changeb. Energy Challenges and the Energy Transitionc. Carbon Capture and Storage (CCS): Concept Introd. The role of CCS in the path to Carbon Neutrality2. Geological Considerations: Basin Suitabilitya. Seismicityb. Depthc. Fault intensityd. Geothermal regimese. On vs. Offshore Basinsf. Accessibilityg. Existing Petroleum/ Coal Resourcesh. Industry Maturity3. Identifying a Prospective Sitea. Reservoir/Seal Criteria4. Detailed Site Characterizationa. Structural and Stratigraphic Modelsb. Injectivityc. Containmentd. Capacity5. Economic Evaluations6. Risk7. Monitoring8. Decision to Develop9. Types of CCS Facilitiesa. Case Study of operational CCS sites10. Wrap-Up and ExercisesPART 2: Engineering1. Introduction: The Engineering Context for CCSa. Sequestration Options: Carbon or CO2?b. The Behavior of CO2c. Capacity Estimationd. Injection Strategiese. Reservoir integrity Issuesf. Monitoring and Optimization2. Sequestration Optionsa. The Various Storage and Sequestration Mechanismsb. The Need for Interim Storage –alt Caverns, other…. CO2 as a Sequestration Mediumd. Direct Injection of Carbon-rich Solids –H4 Harvesting3. The Behavior of CO2a. The Various Phases of CO2 with Pressure and Temperatureb. Properties of CO2: Density, Viscosity, Solubility in H2Oc. Impure CO2 impacts4. Capacity Estimatesa. Pore Volume Access Conceptsb. Porous Media Flow InstabilitiesGravity instability, Capillary instability, Viscous fingering, Channelling5. Injection Strategies –ater-saturated Assumptionsa. Vertical Well and Horizontal Well Optionsb. Down dip or Up-dip injection? Gravity Effectsc. Pure? Pre-Mixed? Cyclic Water/CO2 Injection?6. Reservoir Integrity –ellbores, Abandoned Wellsa. Leakage Mechanisms, Corrosion…. Monitoring and Optimizationa. PVT & Q monitoringb. Deformation Monitoring –nSAR, Tilt, Othersc. Microseismic Monitoring This course is designed for students and professionals in the geologicaland engineering fields who are interested in learning about thefundamentals of carbon capture and storage and modern energychallenges. Participants should have prior knowledge of basic principles of geologyand/or engineering.</td><td>in-house-true</td><td></td><td></td><td></td><td>energy-transition-true</td><td></td> </tr> <tr data-row_id="20" class="ninja_table_row_20 nt_row_id_20"> <td>Energy Transition</td><td>Energy Transition</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=447" target="_blank" rel="noopener">Rock Physics, Geomechanics and Hazard of Fluid-Induced Seismicity</a></b><br/><small><i>By Prof. Serge Shapiro (Freie Universitaet Berlin, Germany)</i></small></td><td>Serge Shapiro</td><td></td><td>earthquake elasticity geothermal induced seismicity mechanics monitoring pore pressure sediment</td><td>Part 1 (20% of the course) includes: Rock physical and poroelasticfundamentals of fluid-induced seismicity (including microseosmicity):Elastic waves, Elastic Anisotropy, Poroelastic waves, Slow wave anddiffusion, Fluid flow in rocks, Seismic attenuation, Reservoir properties:permeability, porosity, fluid viscosity, fluid elasticity, rock elasticity.Part 2 (20% of the course) includes: Geomechanics and physicsof faulting and earthquakes and principles of the microsiesmicmonitoring method: faulting types, faulting criteria, tectonic stresses,rock criticality, detection, location, earthquake mechanisims,moment tensors and magnitudes of earthquakes, microseismiccommon receiver gathers, microseismic reflection imaging.Part 3 (40% of the course) includes: Various types of inducedseismicity: production-induced earthquakes, injection inducedearthquakes, geothermal systems, hydraulic fracturing, waste waterinjection and carbon sequestration; interpretation of microseismicdata for reservoir stimulation and hydraulic fracturing: types ofinduced seismicity, pressure diffusion, rt-plots, triggering fronts,back fronts, hydraulic diffusivity, event density, event rate, hydraulicanisotropy, hydraulic non-linearity, hydraulic fracturing, fracturepropagation, volume balance, fluid loss, stimulated volume, correlationswith hydrocarbon production, data quality control, estimationof hydraulic properties of rocks, fracture efficiency, enhancedpermeability, permeability of fracture, permeability of rocks.Part 4 (20% of the course) includes: Fundamentals of assessmentof induced-seismicity hazard (injection, post-injection and disposaloperations): Seismicty statistics, Gutenberg-Richter law, Intereventtimes, Seismogenic index, Rupture propagation, Bounds of magnitudefrequencies, Maximum expected magnitude, triggered andinduced earthquakes, factors controlling hazard and requirements formicroseismic monitoring; Hazard of various types of induced seismicity:hydraulic fracturing, geothermal systems, waste water injectionand carbon sequestration, hydrocarbon production, water reservoirs. •ock physics and geomechanics of induced seismicity:Poroelastic phenomena and seismic wavesStress, pore pressure and rock failureGeomechanics of tectonic and induced earthquakes•he method of microseismic monitoring:Observation systems, detection and location of (micro)earthquakesMicroseismic wavefields and imaging•eismicity, pressure diffusion and hydraulic fracturing:Various types of induced seismicityModeling of fluid-induced seismicitySeismicity during a fluid injectionSeismicity after a termination of a fluid injectionHydraulic properties of reservoirs and induced seismicityHydraulic fracturing of hydrocarbon reservoirsSeismicity induced by hydraulic fracturingNon-linear diffusion and seismicity in unconventional reservoirs•azard of induced seismicity:Rates and magnitudes of fluid-induced earthquakesSeismogenic indexStatistics of large magnitudesHazard of various types of induced seismicity The course is targeted to Geophysicists, Geologists, Petrophysicits,Reservoir Engineers, Graduate and Postgraduate Students, Researchers,Interpreters. Graduated (bachelor level) in geology, or geophysics, or physics, ormathematics, or petroleum engineering, or geosciences.</td><td>in-house-true</td><td></td><td></td><td></td><td>energy-transition-true</td><td></td> </tr> <tr data-row_id="21" class="ninja_table_row_21 nt_row_id_21"> <td>Energy Transition</td><td>Energy Transition</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=723" target="_blank" rel="noopener">Reservoir Engineering of Geothermal Energy Production</a></b><br/><small><i>By Dr Denis Voskov</i></small></td><td>Denis Voskov</td><td></td><td>basin analysis carbon neutrality case study climate change drilling energy energy transition geochemistry isotope analysis water wells workflows</td><td>The main purpose of the course is to familiarize students with basic definitions, main challenges, and practical implementation of geothermal energy production. The class will include lectures and practicals.In the first stage, we will present two lectures related to "Basics of geothermal energy production" and include the following outline:Short energy outlook,Heat transfer in geothermal systems,Classification of geothermal systems,Energy balance in geothermal systems,Dynamics of geothermal systems.Challenges.The second lecture will describe "Basics of reservoir simulation" relevant to geothermal engineering and include:Main principles of reservoir simulation.Simulation of energy transition applications.Connection list for different grids.Governing equations for geothermal applications.Delft Advanced Research Terra Simulator.Next, we will proceed to practical exercises in Jupyter Notebooks using the open-DARTS (open-source Delft Advanced Research Terra Simulator) framework. For details see darts.citg.tudelft.nl.The first exercise will explain the development of a basic geothermal model with all important gradients. It also will evaluate sensitivities to numerical and physical parameters relevant to geothermal applications.Next practical will explain several important aspects of geothermal energy production which includes the effect of overburden and realistic heterogeneity. We will evaluate their effects on energy production.The last exercise will introduce a fractured reservoir and explain how different parameters of fractured systems affect geothermal production. The course will conclude with a brief overview of learned concepts and describe practical challenges in real-world geothermal modeling.</td><td>in-house-true</td><td>new-course-true</td><td></td><td></td><td>energy-transition-true</td><td></td> </tr> <tr data-row_id="22" class="ninja_table_row_22 nt_row_id_22"> <td>Energy Transition</td><td>Energy Transition</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=735" target="_blank" rel="noopener">Risk assessment of CO<sub>2</sub> storage by understanding coupled thermo-hydro-chemical-mechanical processes</a></b><br/><small><i>By Andreas Busch and Eric Mackay</i></small></td><td>Andreas Busch and Eric Mackay</td><td></td><td></td><td>In this course we will explain coupled phenomena in terms of i) reservoir conformance and ii) storage integrity by discussing the principles of coupled processes affected mainly by changes in pressure (effective stress), temperature and geochemistry in subsurface storage and sealing formations. These changes will affect flow and transport as well as geomechanical stability and impact the long-term predictability of conformance and containment.There is a general understanding of the mechanisms that pose a certain risk to conformance and containment, however, depending on the specific case study, this can be at a certain likelihood and severity (according to classical risk matrices), but one key aspect that is often not well understood is the influence of time (short, medium, long term risks).We will address these processes for reservoir conformance (1 day) and reservoir containment (1 day) by using basic principles applied to real-world case studies that are available through published literature and reports. Generate an understanding of the coupled processes in CO2 storage reservoirs to make an assessment of short to long-term risks for reservoir conformance prediction.Generate an understanding of coupled processes in geological sealing units (caprocks, faults) to make an assessment of short to long-term risks for reservoir containment.Obtain an introduction into the fundamental coupled processes expected to occur in subsurface CO2 storage formations and associated seals.Learn how coupled processes are implemented in real-world CO2 storage projects to assess related risks.</td><td>in-house-true</td><td>new-course-true</td><td></td><td></td><td>energy-transition-true</td><td></td> </tr> <tr data-row_id="23" class="ninja_table_row_23 nt_row_id_23"> <td>Energy Transition</td><td>Energy Transition</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=737" target="_blank" rel="noopener">CO<sub>2</sub> Storage Project Design and Optimization (Saline Aquifers)</a></b><br/><small><i>By Prof. Phil Ringrose</i></small></td><td>Phil Ringrose</td><td></td><td></td><td>The course will explain the overall design of CO2 storage projects, focusing on sandstone (siliciclastic) saline aquifer systems, and covering:The project timelineSite characterisation needsTrapping mechanismsThe main fluid dynamical controlsMethods for storage capacity estimationWell design and placement Basics of CO2 transport and managementInjectivity, geomechanical and pressure managementOverview of monitoring methodsApproaches for long-term storage assuranceCourse ObjectivesUpon completion of the course, participants will gain a rounded understanding of the design of CO2 storage projects covering the full timeline – before, during and after the operational phase.The course is designed for geoscientists and engineers working in the emerging low-carbon energy sector, the oil and gas sector, technical service companies and research organizations.Participants should have basic knowledge of geology, geophysics and reservoir engineering.</td><td>in-house-true</td><td>new-course-true</td><td></td><td></td><td>energy-transition-true</td><td></td> </tr> <tr data-row_id="24" class="ninja_table_row_24 nt_row_id_24"> <td>Energy Transition</td><td>Energy Transition</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=743" target="_blank" rel="noopener">Flow Mechanics for Geological CO<sub>2</sub> Storage</a></b><br/><small><i>By Florian Doster</i></small></td><td>Florian Doster</td><td></td><td></td><td>This one-day course covers the fundamentals of flow in porous media, essential for the safe and efficient planning and operation of geological CO2 storage. After completing the course you will be able to explain why fluids move in a reservoir and how these movements can be modelled with the help of Darcy’s law and the principle of mass conservation. You will be able to discuss what controls the pressure diffusion through a reservoir. Further you will be able to describe the physical phenomena that control the dynamics at the pore-scale when CO2 displaces resident fluids in the reservoir and how these processes impact the dynamics of CO2 over the large volumes and timescales that are needed for geological CO2 storage. Last, you will be able to apply models and simple simulators to investigate dynamic storage capacities, pressure build up and leakage risks.</td><td>in-house-true</td><td>new-course-true</td><td></td><td></td><td>energy-transition-true</td><td></td> </tr> <tr data-row_id="25" class="ninja_table_row_25 nt_row_id_25"> <td>Energy Transition</td><td>Energy Transition</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=757" target="_blank" rel="noopener">Geoscience Communication and Public Engagement</a></b><br/><small><i>By Prof. Iain Stewart</i></small></td><td>Iain Stewart</td><td></td><td></td><td>Geological issues are increasingly intruding on the everyday lives of ordinary people. Whether it is the onshore extraction of oil and gas, the subsurface injection of waters for geothermal power or the deep storage of waste products, communities across the world are being confronted with controversial geological interventions beneath their backyards. Communicating these complex scientific and technical issues is made more challenging by the general public’s unfamiliarity with the geological realm. To address these challenges, geoscientists need to design and develop new strategies to engage dissonant publics.Those strategies will require geoscientists to engage more effectively with journalists and the wider media, to target their messaging at those audiences most able to effect change, and to establish trusted relationships with the end-user communities they are working with. But at the heart of the communication challenge is how geoscientists can be better communicators.With that in mind, the course will provide practical experience in creating more compelling, impactful messages and to get those messages out more effectively. Building on a better understanding of the media landscape and working with journalists and media professionals, the session will help develop practical learning on how to use story-telling, visual imagery and social media channels to create more engaging geoscience media content. Practical insights from story-telling, film-making, and visualisation offer ways to improve the impact of our technical and scientific communications (research papers, conference presentations), facilitate the interchange of ideas with different disciplines (e.g. with engineers, management), ease our interaction with journalists and other external stakeholder groups, and showcase what we do more widely to the public.But better scientific storytelling alone is unlikely to persuade publics and policy makers about technically complex and socially contested geoscientific arguments. For that, geoscientists need to have a more informed grounding in the cognitive heuristics and behavioural traits that guide people in making decisions in circumstances of deep uncertainty. Drawing from psychology and the social sciences, the course will explore how geoscientists can better ‘sense’ target audiences and ‘respond’ with appropriate messaging, as well as having an appreciation of how to deal with community outrage around controversial geoscientific topics. The course highlights how policy and decision making at local or community level requires building relationships with non-geoscience stakeholders within and across sectors. Partnership building involves a suite of skills not normally encountered in conventional communications training, notably interpersonal skills (empathy, listening, reflexivity) and participatory skills (negotiation, conciliation, facilitation).</td><td>in-house-true</td><td>new-course-true</td><td></td><td></td><td>energy-transition-true</td><td></td> </tr> <tr data-row_id="26" class="ninja_table_row_26 nt_row_id_26"> <td>Energy Transition</td><td>Energy Transition</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=765" target="_blank" rel="noopener">Reservoir Engineering for Hydrogen Storage in Subsurface Porous Media</a></b><br/><small><i>By Dr Gang Wang</i></small></td><td>Gang Wang</td><td></td><td></td><td>The central objective of this course is to provide participants with a clear understanding of the key challenges and opportunities related to large-scale hydrogen adoption, with a particular focus on hydrogen storage in subsurface porous media. This one-day course presents an overview of the hydrogen value chain, covering production, transportation, and storage, while also addressing the policy and economic factors shaping the hydrogen economy. Participants will explore key physical processes involved in subsurface environments and their implications for underground hydrogen storage. Real-world case studies are demonstrated to enable participants to assess and develop hydrogen storage solutions from a reservoir engineering perspective. The course is structured in three core sections, progressing from an overview of the hydrogen economy to the specific challenges and solutions of subsurface hydrogen storage in geological formations.Overview of the Hydrogen Value Chain:This section offers a comprehensive overview of the hydrogen economy, focusing on the hydrogen value chain alongside key policy frameworks and economic considerations. Participants will explore the current state of each component of the value chain—production, transportation, and storage—gaining insights into their strengths and the challenges of scaling these technologies for widespread adoption. Particular emphasis is placed on the strategic importance of subsurface storage as a cornerstone for enabling large-scale hydrogen deployment and achieving global energy transition goals.Fundamentals of Modelling Hydrogen Storage in Subsurface Porous Media:This section introduces participants to the physical processes governing hydrogen storage in subsurface porous media and their implications for practical technical decisions. Participants will gain an overview of modelling approaches used to simulate flow dynamics, equipping them with foundational knowledge and skills for assessing and developing subsurface hydrogen storage systems. From a reservoir engineering perspective, the session provides a comparative analysis of subsurface hydrogen storage alongside other gas storage applications, such as:Carbon capture and storage (CCS)Natural gas storageThis comparison highlights differences in flow behaviour, storage capacity, operational requirements, and risk factors unique to hydrogen.Practical Insights from Real-World Case Studies:This section engages participants in detailed discussions centred on real-life case studies. Participants will explore a variety of reservoir types, including:Depleted gas reservoirsSaline aquifersNatural hydrogen reservoirsThe focus will be on the key technical and operational considerations required to develop and optimise these sites for hydrogen storage. Key topics include:Reservoir engineering strategies such as cushion gas selectionInjection and production schedulesFlow rate optimisationThrough these case studies, participants will gain practical insights into the challenges and solutions involved in scaling hydrogen storage technologies.</td><td>in-house-true</td><td>new-course-true</td><td></td><td></td><td>energy-transition-true</td><td></td> </tr> <tr data-row_id="27" class="ninja_table_row_27 nt_row_id_27"> <td>Energy Transition</td><td>Energy Transition</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=777" target="_blank" rel="noopener">Underground Hydrogen Storage in Rocks: Pore-to-core Scale Flow Processes, X-ray Imaging and Modelling</a></b><br/><small><i>By Dr Kamaljit Singh</i></small></td><td>Kamaljit Singh</td><td></td><td>hydrogen storage rock physics imaging</td><td>With the growing importance of hydrogen (H2) as a sustainable energy source, underground hydrogen storage (UHS) in porous rocks is emerging as a critical technology for storing large volumes of hydrogen. This course is designed to provide a fundamental understanding of the key physical and microbial processes occurring at the pore-to-core scale during UHS in rocks. Participants will first go through basic concepts related to porous media and flow processes, followed by an examination of multiphase flow in rocks and wettability concepts. The course will then focus on applying this knowledge to UHS processes. Recent advances in UHS research, including challenges associated with cyclic injection, H2 entrapment, dissolution and microbial interactions will be discussed in detail. Additionally, the course will introduce 3D and 4D (i.e., time-resolved 3D) X-ray imaging and pore-scale modelling techniques, and their applications to UHS processes. Participants will be introduced to image processing tools and engage in tutorials on multiphase flow phenomena related to UHS in rocks.</td><td>in-house-true</td><td>new-course-true</td><td></td><td></td><td>energy-transition-true</td><td></td> </tr> <tr data-row_id="28" class="ninja_table_row_28 nt_row_id_28"> <td>Engineering</td><td>Petroleum Engineering</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=445" target="_blank" rel="noopener">Basic Well Test Analysis</a></b><br/><small><i>By Saad Ibrahim (Petro Management Group Ltd., Canada)</i></small></td><td>Saad Ibrahim</td><td></td><td>basin analysis case study clay core correlation cross-plotting decision making deconvolution fractures horizontal wells hydrates injection permeability production workflows</td><td>Well testing of oil, gas, and water wells is the technology that hasbeen effectively used since the start of the oil business over centuryago. Well test analysis/interpretation is considered one of the mosteffective reservoir management tool to help in maximizing well prodivity,enhance the expexted ultimate recovery of hydrocarbons, andalso in devicing the fileds development plans. This courses offers thefoundation of this techniques which covers the theory in a concisefashion and the emphases is on the practical applications using numeriousactual well tests data and the application of the analysisresults (using commercial software) for field development. 1. Provide good understanding of what goes on inside the black box(software) before starting well testing.2. Provide apprecaition of well test design before commencing withtesting to ensure conclusive results are ontained.3. Offering step-by-step on how to analyze various types of welltesting with emphasis on understanding data quality4. Well test analysis is a mix of science and art which is foundationof well test interpretation •eview of the flow equations: Equation of state, Darcy and continuityequation; Common flow geometry•imensionless parameters: definitions and Type Curve use/applications•oundary conditions: infinite, Pseudo- steady state and steadystate•olution of the diffusivity equation: (class problem)•uild-up test analysis: Principle of Superposition, Horner Plot; averagereservoir pressure (MBH) method (class problem); Reservoirboundaries and channel analysis•ellbore skin factor and partial penetration (class problem)•ellbore storage: use of type curves and (class problem)•raw-down testing: Application and test analysis and equivalenttime; Reservoir Limit Testing (case study - fractured basement)•ydraulically fractured wells•racture characterization (frac. Half-length, conductivity and orientation) Engineers and geologists who are or will get involved in well testingand its applications for field development. All levels are welcome Some background in reservoir and production engineering will behelpful.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="29" class="ninja_table_row_29 nt_row_id_29"> <td>Engineering</td><td>Petroleum Engineering</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=475" target="_blank" rel="noopener">Introduction to Heavy Oil: Genesis, Properties, Distribution, Recovery Technologies and Upgrading</a></b><br/><small><i>By Dr Ali Shafiei (Nazarbayev University, Kazakhstan)</i></small></td><td>Ali Shafiei</td><td></td><td>geomechanics heavy oil offshore viscous oil</td><td>The course explores heavy oil, extra heavy oil, and bitumen, alsoknown as viscous oil (VO), resource development including itsgenesis, physical and chemical properties, resources, reserves, geographicaldistribution, production, transport, upgrading, refining,future technology developments, and environmental impacts. Thereare over 9 trillion barrels of heavy oil, extra heavy oil, and bitumenoil known to exist in the world. By comparison, originally there wereabout 4.7 trillion barrels of conventional oil of which almost 1.2trillion barrels have been processed to date. Canada and Venezuelaalone possess over 30% of the world endowment. Since 1990 theVO in situ production industry has seen a number of startling advances.New production technologies, combined with developments inwaste management, upgrading, monitoring and transportation havechanged expectations. Now, it is a widely held view that 15-20% ofthe world’ VO resource base can be profitably produced with currenttechnology; this ratio will rise as further technological advances areimplemented. By 2030, VO’ contribution to the daily oil productionwill be about 17%. These figures show the importance of VO developmentsin the near future to fulfill a major part of the growingglobal demand for fossil fuels.A summary of the main topics along with a brief description of theviscous oil resource, its size, production technology advances duringthe last few decades and environmental issues related to developmentof this vast resource. The terminology used herein, includingterms alluding to VO physical properties (e.g. tar sands, heavy oil, extra-heavy oil, bitumen) and terms used to classify VO into categoriessuch as known or assumed resources (OOIP), technical reserves, andproven, probable or possible reserves are defined. Chemical compositionand physical properties play crucial roles in production technologyselection as well as upgrading and refining technology selection.Chemical and physical properties of some VO’ are presented andthe differences are discussed. Some of the proposed mechanisms forVO emplacement, followed by the genesis, physical and chemicalproperties and reservoir characteristics of the some major VO fieldsin several countries are outlined. The nature and development ofdifferent in situ production technologies including scientific and engineeringchallenges such as understanding geomechanics impactson production or finding other heat sources for steam generation areaddressed. Upgrading, refining techniques and transportation usedin the VO industry is also highlighted. The environmental sustainabilityof VO development is also discussed. Upon successful completion of the course the attendants will be ableto:•escribe genesis, physical, and chemical characteristics, and geographicaldistribution of heavy oil resources around the world;•xplain the major commercialized and emerging heavy oil recoverytechnologies;•ecall some examples of heavy oil recovery operations;•escribe major heavy oil upgrading technologies. This course deals with:•enesis, physical, and chemical characteristics;•eographical distribution of heavy oil resources around the world;•ajor heavy oil recovery technologies and recovery mechanisms;•eomechanics effects;•xamples of heavy oil recovery operations;•eavy oil upgrading technologies;•nvironmental issues;•echnological challenges.The course has foundation level, but is comprehensive. A more detailedoutline can be provided on request (depending on level andduration of the course and also background of the course participants).The course can be delivered in 1-2 days or in 4-7 days withmore details including problem solving sessions. The course is intended for engineers, geoscientists, and technologistsactive in E&P industry involved in exploration, production, transportation,upgrading and environmental management. Knowledge of the oil industry and a good sense of physics and chemistrywill be valuable.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="30" class="ninja_table_row_30 nt_row_id_30"> <td>Engineering</td><td>Petroleum Engineering</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=451" target="_blank" rel="noopener">Petroleum Engineering for Non-engineers</a></b><br/><small><i>By Mr Saad Ibrahim (Petro Management Group Ltd., Canada)</i></small></td><td>Saad Ibrahim</td><td></td><td>2d 3d and 4d case study decision making drilling economics faults flooding fluid geophones horizontal wells injection lithology marine seismic monitoring mwd offshore oil and gas reservoir characterization reservoir engineering reservoir modeling sandstone shale time-lapse</td><td>This course is designed to provide non-engineering petroleum industrytechnical professionals with a thorough overview of most keyaspects of petroleum engineering technology and its applications forupstream, midstream, and downstream stages. surprisingly, nearly70% of the staff of the oil companies are non-engineers (supportstaff) that have limited knowledge of what goes on the operation ofexploration, development, and production. The course will allow thesupport staff to understand the tasks performed by the engineersand how to improve cooperation and efficiency of the operation.The course addresses engineering issues ranging from initial involvementwith explorationists, discovery evaluation and field development,production optimization, and all the aspects of well drilling.The use of seismic survey in the exploration stage will be explainedhow to locate oil and gas prospects and estimate expected reserves.The step-by-step process of drilling a well is discussed for onshoreand offshore operations. The sessions will focus on relevant andpractical issues; including real case studies and presenting video clipsto illustrate the process of decision making and the risks involvedin each operational step. The impact of drilling for oil and gas andhydraulic fracturing on the environment and to mitigate risks will bediscussed, which has been a concern in many parts of the world.A group discussion on this subject is usually of great interest tothe attendees. During the production history of oil and gas fields,operational problems are frequently expected. It is the responsibilityof the engineers to use proper diagnostic tools to define the causeof the problems and to device the remedial actions. The applicationof horizontal wells including Multi-stage Fracturing and the latestindustry techniques of applications will be illustrated. Another tool tomaximize production is the use of artificial lift (down-hole pumps). Areview of the different methods of artificial methods and applicationswill be discussed. Also, the techniques of Enhanced Oil Recovery(EOR) will discussed, including the screening of various EOR schemesand how it will be executed. The cost and benefits for EOR applicationswill be discussed. Well and field decommissioning, when operationis no longer profitable and described for onshore and offshore.It is critical that no negative impact on the environment as a resultof decommissioning. Finally, the process of economic evaluation isdiscussed including related risks (technical, economical, and political)and uncertainty for various projects. Upon successful completion of the course the attendants will havelearned:•bout an overview of the industry and how the roles of differentprofessional disciplines are integrated to generate developmentplans•ow a well is drilled and completed to have save operation andwell control•bout production problems; diagnoses and remedy•bout economic evaluation to justify field development Day 1:- Overview; role of petroleum engineers and the main componentsof field development- Reservoir Geology•ypes of reservoir rocks•ain elements of petroleum reservoirs- The Drilling Rig; equipment and operation (onshore and offshore)Video clip- Well completion techniques including Hz wells- Formation evaluation techniques•ud logging, coring, and open hole logging•ock and fluid propertiesDay 2:- Porosity and permeability definitions & measurements and fluidsampling- Oil and gas reserves determination•olumetric and material balance methods•ecline analysis and empirical methods- Reservoir delineation & development•ield development considerations (case study)•ypes and applications of artificial lift•orizontal well applications- Production operations and optimization•ell performance and well testing (video clips)•perational problems; diagnoses and remedy- Enhanced Recovery Mechanism•ypes of EOR schemes (video clips)•lanning and designing of waterflood projects- Unconventional Oil and Gas•ight formations and the application of Multi-stage Frac of HzWells (MFHW’) –ideo clips- Decommissioning and Related Environmental Matters•ow wells are abandoned; on-offer and off-shore•ase studies/video clips- Economic evaluation•nput data for economic analysis; risks and uncertainty This course is aimed at non-engineering professionals and most supportstaff involved in the oil industry and also for junior exploitationengineers/technologists, and geologists. No prerequisites are required.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="31" class="ninja_table_row_31 nt_row_id_31"> <td>Engineering</td><td>Reservoir Management</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=457" target="_blank" rel="noopener">Uncertainty in Reservoir Management</a></b><br/><small><i>By Prof. Peter King (Imperial College London, United Kingdom)</i></small></td><td>Peter King</td><td></td><td>algorithm production reservoir reservoir modeling sand uncertainty</td><td>The course will provide an introduction into many of the conceptsbehind uncertainty in reservoir modelling. It will start with a descriptionof the origins of uncertainty with a mixture of heuristictreatments and more formal mathematical approaches. It will thendevelop the appropriate mathematical ideas and tools for estimatinguncertainty in practical reservoir modelling. Finally, some ideas forhow uncertainty can be managed will be explored. The aim of this course is to provide some of the basic statistical toolsfor quantifying uncertainty and some simple strategies for dealingwith it. The course will be given by formal lectures and some simple exercises. The course is primarily addressed to reservoir engineers involved inbuilding reservoir models but could also be of interest to productionengineers who have to deal with the consequences of uncertainty inreservoir performance.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="32" class="ninja_table_row_32 nt_row_id_32"> <td>Engineering</td><td>Reservoir Management</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=453" target="_blank" rel="noopener">Reservoir Management for Unconventional Oil and Gas Resources</a></b><br/><small><i>By Prof. I. Yucel Akkutlu (Texas A&M University United States)</i></small></td><td>I. Yucel Akkutlu</td><td></td><td>anisotropy fractures geochemistry reservoir modeling shale unconventional</td><td>The field of reservoir characterization and engineering has beenevolving quite fast during the last 10 years. This has been due toincreasing interest in the unconventional resources in North America.New tools and analysis techniques have been developed. This courseintroduces unconventional oil and gas resources as a reservoir to thepracticing engineers. The emphasis is on the tight gas/oil formationsand organic-rich source rocks, in particular shale.The course provides in-depth discussions on fluids storage, phasechange, and transport for reservoir evaluation and development.New discussions related to nano-confined fluids will be included, newreservoir storage mechanisms as sorbed gas and capillary-condensedfluids will be introduced. Hydrocarbon in-place calculations are presented,including new-pore-scale considerations. A new method isintroduced to assess the liquid potential of the source rocks.Laboratory techniques are discussed for the characterization of unconventionalformations. The course will help engineers understandtransient flow regimes associated with horizontal wells completedwith hydraulic fractures, and analyze the production data using variousanalytical and simulation methods.A new production history-matching and optimization method willbe introduced using a real shale gas well production data. Field casestudies will be introduced to discuss the field development includingeconomic and environmental evaluation of horizontal wells withmulti-stage fracturing.Environmental considerations during the development of an unconventionalfield will be discussed including issues related to groundwaterprotection. The need for the utilization of large volumes ofwater for drilling and hydraulic fracturing will be discussed. Wastewater disposal operations in USA and the induced seismicity will bediscussed.The course helps students understand the unconventional reservoirphysics and improve their business performance by developing moreaccurate reservoir models. The aim of this course is to:1. Assess, characterize and classify unconventional resources;2. Predict the petro-physical and geochemical quantities relevant tounconventional resources assessment;3. Predict hydrocarbon in-place including gas, wet-gas, condensateand oil windows;4. Evaluate the relative accuracies of unconventional reserve estimates;5. Perform rate-transient and pressure transient analysis for horizontalwells with hydraulic fractures and predict effective fracturedimensions contributing to production;6. Formulate a field development plan for an unconventional resources. Introduction•nconventional oil and gas resources: Tight gas/oil and sourcerock (CBM, organic-rich shale) characteristics;•nconventional resources in North America, their oil/gas productiontrends and reserves;•hat is shale, and what makes shale a hydrocarbon resource?;•esource-reservoir duality and the concept of reservoir creation.Fundamentals•ource rock burial, diagenesis, catagenesis;•ulti-scale pore structure development in source rocks;•ffective porosity in unconventional resources;•ulti-scale oil/gas storage mechanisms in shale;•ccurrences of hydrocarbons in organic and inorganic pore networksin source rocks;•hase change and capillarity in organic nanopores;•olumetric calculations for shale: gas, wet-gas, condensate andoil;•aterial balance calculations for source rocks;•low and other mass transport mechanisms for shale gas and oilreservoirs;•tress-dependent shale permeability and its modeling;•low calculations for shale using Wasaki’ permeability model fororganic-rich shale;•ulti-phase flow considerations in source rocks.Reservoir Evaluation and Characterization for Unconventional Resources•outine core analysis;•pecial core analysis;•rganic matter classification: bitumen vs. kerogen;•erogen type and maturity;•ydrocarbons recovery potential from kerogen;•ntegration of core-data and log-data- TOC estimation- Free and sorbed-phase fraction analysis;•xamples on shale core measurement data and analysis;•xercise on predicting shale gas and shale oil permeability;Pre-frac Injection Test•ressure fall-off (or DFIT) Test Analysis and Interpretation;- Typical pressure transient and its signatures;- Breakdown pressure, instantaneous shut-in pressure, fractureclosure pressure;- Analysis of the pressure fall-off data for flow capacity, leak-offtype and presence of fractures;•xample calculation of the breakdown pressure;•xample calculation of the overburden stress using Eaton’ equation.Geomechanics•racture evolution in ductile and brittle formations;•riffith’ theory of brittle rock failure;•aboratory measurements;•tress-strain diagrams;•opular geo-mechanical concepts for stimulation decisions;•xample decision making on vertical locations for perforations incased-cemented hole;•xercise calculation of the four elastic moduli using uniaxial testdata.Transient Flow Regimes and Production Analysis•eservoir flow regimes and flow patterns;•ressure evolution during transient flow;•roduction rate transient signatures in flow patterns:- Vertical wells with hydraulic fracture- Horizontal wells with and without hydraulic fracture- Horizontal well with multiple hydraulic fractures;•roduction rate transient analysis (RTA) methodsType-curves- Straight line methods, A√ method- Flow simulation requirements for the unconventional reservoirs- Empirical methods, e.g., Arps, Duong, stretched exponentialdecline;•otal fracture surface area calculation using RTA with dynamicmatrix permeability;•orkflow for engineering analysis of horizontal wells with hydraulicfractures;•xample type-curve analysis.Unconventional Field Case Studies•ingle-well fracture interference study using Barnett data;•ingle well fracture surface area calculations using RTA;•istory-matching Marcellus shale gas well- Impact of the number of transverse fractures on future recovery;•istory-matching Eagle Ford shale gas well;•istory-matching Bakken shale oil well;• shale gas well completion optimization- Procedure of calculating hydraulic fracture economics: NPV, IRR,DROI- Number of fracture stages/clusters- Transverse fracture spacing- Fracture propped-length;• tight gas field case study in Canada. The course is designed for reservoir engineers and earth scientistswho would like to learn the unconventional reservoir engineeringconcepts, terminology and analysis tools.Participants should have a geology, geophysics, or petroleum engineeringbackground.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="33" class="ninja_table_row_33 nt_row_id_33"> <td>Engineering</td><td>Reservoir Management</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=467" target="_blank" rel="noopener">Fundamentals of Petroleum Reserves under PRMS 2018</a></b><br/><small><i>By Victor Alexei Huerta Quiñones (Universidad Nacional de Ingeniería, Peru)</i></small></td><td>Victor Alexei Huerta Quiñones</td><td></td><td>analogy decision making decline curve analysis eur material balance reserves resources</td><td>This course allows an in-depth look at the framework, classifications,categorization and applications of Petroleum Resources ManagementSystem (PRMS). Participants will gain a solid understandingof this valuable resources management tool, including insight intothe latest updated version (PRMS 2018), as well as, the use of someindicators to reserves management.In addition, this course will provide training in production forecastingand reserves estimation for conventional and unconventional reservoirs,by diverse methods such as field and reservoir analogy, volumetricestimations, material balance equation and rapidly applieddecline models favored by the industry for routine forecasting.Recommended methodology will be based on the resolution anddiscussion of some case studies to illustrate and clarify definitions. The aim of this course is to:1. Enhance background, criteria and technical skills of participantsto classify, categorize and estimate reserves and resources in oiland gas assets;2. Make a brief and concise review and keep up with the latestdefinitions and regulations of reserves and resources definitions;3. Provide some guidelines and “ules of thumb”or a quick assessmentof an oil and gas assets;4. Show that PRMS is a powerful management tool that is widelyused in the industry. Part I: PRMS Project Framework•RMS project background•ajor principles and key guidelines in PRMS•ow PRMS captures risk and uncertainty•ssessing and reporting unconventional resourcesPart II: Classification and Categorization of Reserves and Resources•018 Petroleum Resources Management System (PRMS)•omparison of SEC and PRMS guidelines•efinitions of Prospective and Contingent Resources•eserves Categories: Proved, Probable y Possible•ncremental vs. cumulative approach•ndicators of Reserves ManagementPART III: Overview of Reserves and Resources Estimates in Conventionaland Unconventional Reservoirs•ell / Field Analogy Applications•olumetric Estimations•aterial Balance Applications•orecasting performance with traditional decline-curve analysis(DCA) and allied tools (Numerical Reservoir Simulation) and understandtheir relative strengths•mpirical and semi-theoretical decline models including Arps, Fetkovich’,Stretched Exponential, Power-Law, Transient Linear Flow,and Duong.Part IV: Production Forecasts and Reserves Estimates in UnconventionalReservoirs•raditional vs Modern Decline Curve Analysis•mpirical and semi-theoretical decline models including Arps, Fetkovich’,Stretched Exponential, Power-Law, Transient Linear Flow,and Duong•iagnostic plots for flow regime identification, pressure normalizationof rate data, recommended workflow for pressure-rate-timeproduction data analysis•eveloping Probabilistic Production Type Well curves•pplications for tight oil and gas reservoirsPart V: Oil and Gas Assets Value and Decision Analysis•raditional Deterministic Cash Flow Analysis: NPV, IRR, Pay Out, PIR•ecision trees concepts and calculation of expected monetaryvalue (EMV)•onte Carlo simulation in estimating profitability indicators: ExpectedNPV and Financial Risk estimation This course is intended for technical staff, including managers, whoare or will be responsible for reserve/resource estimation, or who willbe responsible for the reporting of reserves and other resources tosenior levels within the company or externally. Technical disciplinesmay include:•eservoir Engineers•eoscientists•roduction Engineers Participants should have a prior knowledge of basic concept ofreservoir engineering, reservoir characterization and reservoir management.Recommended reading1. J. Lee. Notes Course PETE 652: Deterministic Reserves Evaluation.2. John D. Wright. Oil and Gas Property Evaluation, John D. Wright,Thompson-Wright, LLC, August 20153. R. Weijermars. Notes Course PETE 664: Petroleum Project Evaluationand Management.4. C. Cronquist. Estimation and Classification of Reserves of CrudeOil, Natural Gas and Condensate.5. J. Lee. Oil and Gas Reserves: The New SEC Reporting Rules6. J. Etherington & R. Seager. Managing your Business using PRMSand SEC Standards7. Securities and Exchange Commission: Modernization of Oil andGas Reporting; Final Rule8. Oil and Gas Reserves Committee SPE. 2018 Petroleum ResourcesManagement System (PRMS)9. SPE/WPC/AAPG. Guidelines for the Evaluation of PetroleumReserves and Resources10. T. Ahmed. Reservoir Engineering Handbook11. G. Rojas. Ingenierí de Gas y Gas Condensado12. C. Smith, G. Tracy & R. Farrar. Applied Reservoir Engineering,Vol. I y II13. L. Dake. The practice of Reservoir Engineering14. B. Craft & M. Hawkins. Applied Petroleum Reservoir Engineering15. M. Economides. Petroleum Production Systems16. M. Carlson. Practical Reservoir Simulation17. R. Lee & D. Katz. Natural Gas Engineering: Production and Storage18. H. Beggs. Gas Production Operations</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="34" class="ninja_table_row_34 nt_row_id_34"> <td>Engineering</td><td>Reservoir Management</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=459" target="_blank" rel="noopener">Upscaling and Artificial Intelligence Based Proxies for Uncertainty Assessment of Reservoir Production</a></b><br/><small><i>By Prof. Dr Dominique Guérillot (Texas A&M University, Qatar)</i></small></td><td>Dominique Guérillot</td><td></td><td>3d anisotropy capillary pressure carbonates case study facies flooding fluid fractures geocellular geostatistics groundwater history-matching oil and gas permeability reservoir characterization reservoir engineering reservoir modeling uncertainty workflows</td><td>The aim of the course is to recap main techniques required to buildan integrated reservoir model and to explain different potentialworkflows for field development and/or history matching processes.This course will include explanations of upscaling techniques and theuse of proxies for uncertainty assessment of production forecasts.All these methods will be illustrated and applied to the Brugge case. Upon completion of the course, participants will be able to:•nderstand the fundamentals of Geostatistics and Spatial Modeling•alculate a variogram•now what are the principal of Kriging•now the main methods of Geostatistical Simulations for modelingheterogenous and fractured reservoirs•e familiar with the main Upscaling technics used in reservoirsimulators•now how to use proxy models for assessing Uncertainty in ProductionForecasts•pplication to the Brugge field will be given to illustrate the methodology. Integrated Geological Modeling and Reservoir SimulationGeostatistics and Spatial ModelingVariogramKrigingHistory Matching PrinciplesGeostatistical SimulationsLimitations of KrigingGeostatistical SimulationWhat do we want from a simulation?Principles of stochastic modelingPixel based modelObject based modelSequential Gaussian Simulation (SGS)Random CharacterProperties of SGSScaleCell Sizes & RangesIndicator FormalismSequential Indicator SimulationUpscalingWhy Upscaling is Needed?Orders of magnitudes for the Geological Model and the ReservoirSimulatorsIs it necessary to take into account all heterogeneities ?Impact on CPU costCan we replace heterogeneities by homogeneity?Is it right to call “quivalent”he upscaled permeabilities?The upscaling problems considered hereUpscaled Values Depends on FlowUpscaling of Geo-cellular ModelsUpscaling in Integrated StudiesUpscaling of porosityUpscaling of absolute permeabilityDifferences between additive and non additive variablesSingle phaseDarcy’ lawSingle Phase Flow around WellsWhat happenS in 1 D?Arithmetic AverageHarmonic AverageGeometric AverageWeighted Arithmetic AverageWeighted Harmonic AverageWhat happens for a layer cake model?Upscaling generates anisotropyHow to handle barriers & faults?How to handle fractures?Uncertainty Assessment in Production ForecastIntuitive WorkflowRecommended WorkflowArtificial Neural Network as ProxyApplications on case studiesApplication to Brugge field The course is primarily addressed to reservoir geologists and reservoirengineers involved in building reservoir models but could also be ofinterest to production engineers who have to deal with the consequencesof uncertainty in reservoir performance. Darcy’ law, basic probability and statistics.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="35" class="ninja_table_row_35 nt_row_id_35"> <td>Engineering</td><td>IOR/EOR</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=461" target="_blank" rel="noopener">Introduction to Waterflood Management</a></b><br/><small><i>By Ibrahim Saad (Petro Management Group Ltd., Canada)</i></small></td><td>Ibrahim Saad</td><td></td><td>eor reservoir characterization rock wettability bubble point pressure reservoir drives injection requirements waterflood stages rcovery factor sweep efficiency numerical modeling</td><td>This course provides a complete review of all aspects of waterfloodschemes being the most proven, lowest cost, and applicable to varioustypes of reservoirs to EOR. A group exercise will be offered Classproblems which will be offered to the course attendees to emphasizethe technical concepts taught. Upon completion, participants will be able to:1. Understand data acquisition required to properly evaluate waterfloodpotential2. Evaluate geological and engineering risks to implement waterfloodprojects3. Establish the knowledge to present the cost and the benefit of thewaterflood project to obtain managerial and regulatory agencies4. Learn how to estimate the Expected Ultimate Recovery (EUR) ofthe waterflood project and prepare production forecast 1: Introduction to Waterflooding and E.O.R2: Reservoir Characterization3: Reservoir Drives and Reserves Estimate4: Waterflood planning and Design Engineers and geologists who are or will get involved in designingand monitoring waterflood projects. Technical level from junior andsenior staff. Some background in reservoir engineering will be helpful.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="36" class="ninja_table_row_36 nt_row_id_36"> <td>Geology</td><td>Carbonate Geology</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=479" target="_blank" rel="noopener">An Overview of Carbonate Diagenesis: The Good, The Bad, and The Ugly of Carbonate Reservoir Quality</a></b><br/><small><i>By Dr Dave L. Cantrell (Cantrell GeoLogic and Stanford University, United States)</i></small></td><td>Dave L. Cantrell</td><td></td><td>carbonates case study diagenesis integration interpretation lithology permeability reservoir characterization sequence stratigraphy thin section</td><td>Diagenesis includes all chemical, physical and biological changes, modificationsor transformations undergone by a sediment after its depositionand during and after its lithification (AGI Glossary of Geology), exclusiveof metamorphism. Carbonate rocks and sediments are especially susceptibleto post-depositional modifications because of the high chemicalreactivity of carbonate minerals; these carbonate minerals react quicklywith natural waters in order to bring the water into equilibrium with thehost carbonate sediments and rocks (Moore 1989). These rock-waterinteractions can have a dramatic effect on the original (depositional)reservoir quality framework of a sediment, and can either create, modify,or completely destroy reservoir quality. Given that these alterations canoccur at any time during the history of the sediment, understanding andpredicting carbonate diagenesis and its impact on reservoir quality canbe a very challenging - and at times frustrating! - process.While the full gamut of carbonate diagenetic processes is extensive,a simplified list of the most commonly encountered processesincludes: cementation, dissolution, dolomitization, compaction(including pressure solution and stylolitization), fracturing, and thein situ growth of other minerals in the sediment. These processescan be considered within a context of diagenetic environments,including the marine environment, the mixing zone, the meteoricenvironment, and the burial environment. A consideration of thetypical conditions, processes and products for each of these diageneticenvironments provides a method for both understanding andpredicting carbonate diagenesis.The relationship between reservoir quality and diagenesis is complexand variable, and at times the various diagenetic processes work incomplementary and overlapping ways. For example, movement ofundersaturated water through a sediment may partially dissolve thesediment to create or enhance porosity; as dissolution continues,however, waters may become saturated to the point where they cementporosity in adjacent sediments, to produce a tightly cementedcarbonate rock with abundant moldic porosity but little permeability.Likewise dolomitization may occlude, redistribute, create or enhanceporosity, based on a number of different factors.This workshop provides an in-depth overview of the nature andextent of common diagenetic alterations in carbonates and theirimpact on reservoir quality; it then uses a series of case studies to illustratehow the principles described in this workshop can be appliedto understand and predict reservoir quality in several outcrop andsubsurface examples. Upon completion of the course, participants will be able to:•dentify common diagenetic products in carbonate rocks andsediments•nderstand the processes that gave rise to these products•redict the likely location and effect of diagenesis in the subsurface•ppreciate the role that diagenesis plays in producing final reservoirquality IntroductionDiagenesis in Carbonate Rocks and Sediments –hat is it, and whyshould you care?Aspects of Diagenesis: Recognition of Processes and Products•ementation•issolution•olomitization•ompaction and Pressure Solution•racturing and OthersOrganizing PrinciplesDiagenesis in Time and Space - the Importance of Diagenetic EnvironmentsImplications for Reservoir QualityCase History #1: Dolomitization in Middle Eastern Carbonate RocksCase History #2: Introduction to Karst Systems and ReservoirsCase History #3: An Introduction to Microporosity in Middle EasternCarbonate RocksConclusions The course is designed for geoscientists and engineers looking toenhance their understanding of and ability to predict carbonatediagenesis. Some knowledge of carbonates and the main challenges of reservoirquality prediction and modeling in carbonates would be helpful.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="37" class="ninja_table_row_37 nt_row_id_37"> <td>Geology</td><td>Carbonate Geology</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=465" target="_blank" rel="noopener">Sedimentological Characterization of Carbonate Rocks</a></b><br/><small><i>By Laura Galluccio, Catherine Breislin (Badley Ashton, United Kingdom)</i></small></td><td>Laura Galluccio and Catherine Breislin</td><td></td><td>carbonates reservoir characterization sedimentology stratigraphy</td><td>More than 60% of the world’ oil and 40% of the world’ gas reservesare held within carbonate rocks. An understanding of thesewill ultimately help improve sedimentological facies and reservoirquality prediction while reducing uncertainties with respect to reserveestimates and potential oil/gas recovery. The first part of thiscourse provides an understanding of the fundamentals of carbonatesedimentology, together with the skills required to characterize andinterpret carbonate rocks, in order to establish an understandingof their depositional environment and implications for reservoir geometryand extents. In detail, the course offers an insight into theenvironmental, biological, physical, chemical and climatic controlson the carbonate factory, enabling facies analysis. In addition, sequencestratigraphical methods and their application will be coveredin the second part of the course to provide all the tools needed toreconstruct the sedimentological architecture at the field scale. Thesefactors help reduce uncertainties associated with the prediction ofgeometries and lateral heterogeneity within carbonate reservoirs.Part A: in order to appreciate the evolution and development ofcarbonate sediments, a basic understanding of the chemical, biologicaland physical processes involved in their formation is essential.The first part of this course outlines the controls on carbonateproduction (the carbonate factory), and the impact of carbonateproducers on carbonate accumulation and hence implications forcarbonate body geometries. It considers the key textural (Dunhamclassification), mineralogical, compositional and fabric/sedimentarystructure observations necessary to help evaluate and interpret carbonaterocks. Carbonate deposition is controlled by a wide rangeof internal and external factors, including the light, temperature,energy levels, salinity and nutrient availability. Understanding thesefactors provides a better perspective on the nature and distributionof carbonate sediments, and thus, enhances reservoir descriptionand the subsequent construction of more robust depositionalmodels. The effects of the environmental controls on carbonateproduction, wherever possible, will be illustrated with observationsfrom modern day analogues.Part B: To fully understand carbonate systems, it is necessary toappreciate the larger scale depositional settings within which theydevelop. An understanding of the tectonic setting and the depositionalgeometry of a carbonate platform is vital in developingaccurate depositional models. These aspects, together with thetypes of carbonate accumulations and their applications, will befully addressed in this course. Finally, the principles of sequencestratigraphy, its importance in subsurface carbonate reservoircharacterisation and the tools and techniques required for the applicationof sequence stratigraphy will all be covered. Overall, thesefactors aid in the prediction of the sedimentological heterogeneityexpected at the large-scale, and hence, the interpretation of thereservoir architecture. Upon completion of the course, participants will have:• good understanding of a carbonate system, including the majorcontrols on carbonate production;•n appreciation of the heterogeneous nature of carbonate sedimentsand how this may impact predictability variations withinthe subsurface;•n understanding of the techniques used to apply a sequencestratigraphic framework in a typical carbonate succession, andhence the impact on reservoir quality prediction. The course will be organised into two sessions:Part A: The carbonate system - “arbonates are born not made”•he mineralogy of carbonates;•he composition of carbonate rocks: skeletal vs non-skeletal allochems;•lassification of carbonate rocks;•he controls on carbonate production;•he carbonate factory - the impact of carbonate producers on thecarbonate accumulation geometry;•ypes of carbonate accumulations;•pplied carbonate facies analysis;•ypical carbonate facies observed in core and thin-sections;•he key to identifying carbonate depositional environments.Part B: Sequence stratigraphy applied to carbonate reservoirs•ntroduction to the basic concepts of sequence stratigraphy;•arbonate record and sea level;•ethods used to establish a sequence stratigraphic framework;•rediction of the sedimentological heterogeneity and interpretationof the sedimentological reservoir architecture.Each section will be accompanied by example case histories andexercises. This course is designed for petroleum geologists, geoscientists,petrophysicists and engineers involved in exploration and productionof carbonate plays. Although previous knowledge on carbonate sedimentology is notnecessarily required, participants should have some knowledge ofgeology.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="38" class="ninja_table_row_38 nt_row_id_38"> <td>Geology</td><td>Carbonate Geology</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=473" target="_blank" rel="noopener">Carbonate Reservoir Characterization</a></b><br/><small><i>By Laura Galluccio, Catherine Breislin (Badley Ashton, United Kingdom)</i></small></td><td>Laura Galluccio and Catherine Breislin</td><td></td><td>carbonates reservoir characterization sedimentology stratigraphy</td><td>This carbonate reservoir characterization course focuses on theanalysis of carbonate depositional textures and the subsequentdiagenetic modifications as the main controls on the pore systemevolution, heterogeneity and complexity. The intricate inter-relationshipof the depositional and burial history can be unravelled toallow the prediction of reservoir facies, and hence, aid reconstructionand development of three-dimensional reservoir models. This coursedemonstrates the value of understanding pore system evolution as apart of large-scale volumetric assessments and the development ofcarbonate reservoirs.Reservoir quality in carbonate successions is often defined by thestorage capacity, flow potential (ie. porosity and permeability respectively,measurements that are often acquired during conventionalcore analysis) and connectivity of pores (recorded as the pore-throatradius distributions during special core analysis). The interplay betweenthese quantifiable factors (including sample-scale heterogeneities)is inevitably linked to the original depositional characteristicsof the carbonate sediments, together with their susceptibility topost-depositional diagenetic alteration, which results in the ultimatelycomplex pore system. Therefore, the classification of individualpore types will be detailed in this course, with their primary depositionalor secondary diagenetic origin being discussed in contextwith sedimentological and stratigraphic models in order to underpintheir spatial relationships and potential connectivity. In addition, thecharacterization of micrite textures will be discussed to illustrate theirimpact on the microporosity, factors that are particularly important toconsider in tight unconventional reservoirs.The depositional controls on reservoir properties that will be takeninto consideration in this course include the texture, grain size, clayand matrix content as well as the type and quantity of allochems. Therelationship between dissolution processes that result in an enhancementof the pore system, cementation processes that reduce thepore volume and the resultant connectivity and fluid flow pathwayswill be assessed to constrain the dominant diagenetic controls on thereservoir properties. In addition to this, the process of dolomitisationwill be scrutinised in order to determine if and how this process enhancesand/or reduces reservoir properties.Integrating the key controls on reservoir quality within the sedimentologicalframework enables the establishment of a conceptualreservoir architecture model, which can be used to assess and predictthe vertical and lateral variations in porosity and permeability at thereservoir and/or field scale. This course outlines how to conceptuallybuild a reservoir architecture model, which in turn can be used to aidreservoir modelling.This course will be accompanied by a series of in-class exercises, whichwill emphasize the integration of the various datasets, providingparticipants with experience in carbonate reservoir characterization. Upon completion of the course, participants will be able to:•dentify the different pore types, their interconnectivity and hencethe impact on permeability;•etermine how specific sedimentological parameters and diageneticprocess impact reservoir quality;•nderstand sample heterogeneity and its impact on reservoirquality data;•pscaling of reservoir quality data to aid prediction at the field scale. The course will be organised into three sessions:Part A: Reservoir quality analysis - What it is and how to approach it•efinition of reservoir quality;•ow to characterise reservoirs.Part B: Pore types and connectivity•oncepts and definitions;•he carbonate pore type classification(s);•ermeability and pore-throat radius distributions;•anipulating reservoir quality data;•ntroduction to advanced reservoir quality tools.Part C: Controls on reservoir quality•ample heterogeneity;•edimentological controls;•iagenetic controls;•eservoir architecture construction.Each section will be accompanied by examples from case historyexercises. This course is designed for petroleum geologists, geoscientists,petrophysicists and engineers involved in exploration and productionof carbonate plays. Although previous knowledge on carbonate sedimentology is notnecessarily required, participants should have some knowledge ofgeology.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="39" class="ninja_table_row_39 nt_row_id_39"> <td>Geology</td><td>Carbonate Geology</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=469" target="_blank" rel="noopener">Carbonate Reservoirs – Sedimentology, Diagenesis and Reservoir Quality Evaluation</a></b><br/><small><i>By Laura Galluccio, Catherine Breislin (Badley Ashton, United Kingdom)</i></small></td><td>Laura Galluccio and Catherine Breislin</td><td></td><td>carbonates reservoir characterization sedimentology stratigraphy</td><td>An understanding of the depositional origin, together with thepost-depositional modifications, is imperative to the successful explorationand production of carbonate sediments, which hold morethan 60% of the world’ oil and 40% of the world’ gas reserves.Although carbonate rocks present complexity, this course is designedto understand the basic principles of carbonate sedimentology,diagenesis and reservoir characterization while making it straightforwardto grasp and integrate the information.The first part of this course is designed to develop skills in characterizingcarbonate rocks and identifying and interpreting theirdepositional settings. This includes an insight into the controls onthe carbonate factory (such as environmental, biological, physical,chemical and climatic controls), an in-depth examination of the classificationof carbonate textures and gives an understanding of thelarger scale tectonic setting and depositional geometry of carbonateplatforms. The principles of sequence stratigraphy and its importancein the subsurface characterization of carbonate reservoirs will also bediscussed. All these factors are crucial in predicting the geometry ofcarbonate reservoirs in the subsurface and developing accurate depositionalmodels, which in turn will have an impact on the predictionof the reservoir architecture.The second session of the course will focus on the diagenetic processesand products that have an impact on carbonate reservoirs.This will encompass the identification of the products and processesinvolved within meteoric, marine and burial diagenetic environments,using both petrographical and geochemical analytical techniques,while taking into consideration their implications on the resultantreservoir properties. In addition to this, the process of dolomitisationand the proposed models of dolomite formation (including expectedbody geometries) will be discussed, illustrating whether this processbenefits or hinders reservoir quality. This section will also review thevarious analytical techniques utilised in identifying the origin of thediagenetic phases and thereby aiding the prediction of their potentialvertical and lateral extent.The third and final part of the course will analyse the pore systemevolution, integrating the intricate link between sedimentology anddiagenesis to aid prediction of reservoir properties at the field scale.The classification of pore types will be discussed, with their primarydepositional or secondary diagenetic origin being determined inorder to understand their spatial relationships relative to the sedimentologicalframework and hence their potential connectivity. Thecharacterization of micrite textures will also be discussed to illustratetheir impact on microporosity, an important factor to consider whencharacterizing unconventional tight reservoirs. This course outlineshow to conceptually build a reservoir architecture model by integratingthe key controls on reservoir quality within the sedimentologicalframework, which in turn can be used to assess and predict thelateral and vertical variations in porosity and permeability at the largescale.This course will be accompanied by a series of in-class exercises, whichwill emphasize the integration of the various datasets, providingparticipants with experience in carbonate reservoir characterization. Upon completion of the course, participants will be able to:•nderstand a carbonate system, including the major controls oncarbonate production, describe carbonate sediments and theirassociated heterogeneity, and understand the techniques used toapply a sequence stratigraphic framework in a typical carbonatesuccession;•nderstand the various diagenetic processes that carbonatesediments are predisposed to and how to identify the origin ofresultant products and hence their impact on reservoir quality.Knowledge on the analytical techniques used to characterize diageneticproducts will also be gained;•etermine how sedimentological parameters and diagenetic processimpact reservoir quality in order to aid prediction at the fieldscale. Sedimentology and sequence stratigraphy - Days 1-2Part A: The carbonate system - “arbonates are born not made”•ineralogy, composition and classification of carbonate rocks;•he carbonate factory and controls on carbonate production;•pplied carbonate facies analysis with core-based and thin-sectionexamples;•he key to identifying carbonate depositional environments;Part B: Sequence stratigraphy applied to carbonate reservoirs•ntroduction to the basic concepts of sequence stratigraphy;•he carbonate record and sea level variations;•ow to establish a sequence stratigraphic framework;•rediction of the sedimentological heterogeneity and interpretationof the sedimentological architecture.Diagenesis - Day 3Part A: The diagenetic realm•ntroduction to diagenetic processes;•iagenetic environments;•olomites and evaporites;•uilding a paragenetic sequence;Part B: Analytical techniques•dvanced microscopy analyses including cathodoluminescenceand scanning electron microscopy;•eochemical analyses such as trace elements, stable isotopes andfluid inclusion thermometry.Reservoir quality assessment - Days 4-5Part A: Reservoir quality analysis - what it is and how to approach it•efinition of reservoir quality;•ow to characterize reservoirs.Part B: Pore types and connectivity•oncepts and definitions;•he carbonate pore type classification(s);•ermeability and pore-throat radius distributions;•anipulating reservoir quality data. The course is targeted at all geoscientists, including petroleum geologists,petrophysicists and petroleum engineers involved in explorationand production of carbonate plays. Although previous knowledge on carbonate sedimentology is notnecessarily required, participants should have some knowledge ofgeology.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="40" class="ninja_table_row_40 nt_row_id_40"> <td>Geology</td><td>Stratigraphy</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=681" target="_blank" rel="noopener">Palynology for Geologists</a></b><br/><small><i>By Prof. Mike Stephenson</i></small></td><td>Mike Stephenson</td><td></td><td>3d basin analysis case study co2 storage correlation energy transition facieskerogen oil and gas paleontology reservoir characterization sedimentsshale stratigraphy</td><td>The purpose of this course is to provide succinct information andinsight into palynological data and techniques through instilling anunderstanding of the main palynomorph groups, their uses, advantagesand disadvantages and what they can and cannot do. This willaid the non-specialist geologist to get the most out of her palynologicaldata. It will do this by providing simple jargon-free informationon palynomorph groups, and real-world case studies of the ways inwhich these have been used in geological problem solving coveringthe whole of the Phanerozoic and all major palynomorph groups.The course will be supported by high quality PowerPoint resourcesand a set of open access reports and published papers that illustrateconcepts and techniques. The course will also provide workedthroughexamples and simple exercises in palynology in explorationincluding examples of palynology used alongside logs and seismic,palynology calibrated against other fossil groups, palynology calibratedagainst radiometric dates and Sr isotope values, palynologyto create time slices, palynology to fingerprint individual sands andmudstone layers, palynofacies characterisation of mudstone organicmatter, and use of palynological assemblages in paleoenvironmentalinvestigation. These worked examples and simple exercises will besupported by high quality resources including real data, images,photographs and sections.</td><td>in-house-true</td><td>new-course-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="41" class="ninja_table_row_41 nt_row_id_41"> <td>Geology</td><td>Stratigraphy</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=471" target="_blank" rel="noopener">Integrated Methods for Deep-Water Reservoir Characterization</a></b><br/><small><i>By Dr Jon R. Rotzien (Basin Dynamics, LLC, United States)</i></small></td><td>Jon R. Rotzien</td><td></td><td>deposits facies gravity marine outcrop sedimentology sequence stratigraphy shallow</td><td>Deep-water depositional systems form some of the largest petroleum reservoirson Earth and represent the frontier of oil and gas exploration. However,deep-water depositional systems remain the least well understood becausesediment gravity flows, including turbidity currents and hybrid and debrisflows, are both infrequent and difficult to predict and monitor, setting themapart from sediment transport processes occurring on mountain tops andshallow marine settings. Therefore, modern seismic data and, in particular,deep-water outcrops provide prime sources of stratigraphic data used to riskdrilling targets and build reservoir models at every phase in the upstream explorationand production process. This course focuses on sub-bed-scale andfield-scale architectural elements in deep-water depositional systems and howthey affect the main risks in deep-water E&P across the value chain: reservoirpresence, deliverability, seal and trap. The course has three main themes:•ediment gravity flows, sedimentation mechanics and resulting bed configuration.•epositional elements in the core, outcrop, and seismic scale.•pplication and interpretation of risk and uncertainty from new ventures tofield development and EOR.The impact of deep-water reservoir architecture on field success will be investigatedthrough modeling theory, to derive strategies for optimal outcomesover a range of uncertainty. Case studies will be used to illustrate each topicand determine appealing workflows. This course will alternate between inclusivelectures, hands-on technical demonstrations, and collaborative exercisesinvolving practical application of cores, outcrops, logs, and seismic data. Thecourse starts with an overview of how sediment is transported and depositedfrom shelf to bathyal depths and focuses on the broad range of sedimentaryprocesses and depositional environments. Individual and team exercisesinvolving core and outcrop samples allow participants to describe samples andinterpret their mechanism of deposition and their range of possible depositionalenvironments. Next, a deeper dive into depositional environments illustratesthe types of facies, as well as depositional and stratigraphic architecture, likelyto be found along the deep-water depositional system from submarine canyonto basin plain. Collaborative exercises using core, outcrop, and seismicexamples highlight the range of deep-water depositional environments andtheir effect on reservoir architecture and development. The skills of core descriptionand integration, reservoir characterization, and sequence stratigraphyare emphasized. Core-log-seismic exercises will show modern techniques onhow to predict variations in reservoir architecture in deep-water depositionalsystems. This course will conclude with a discussion summarizing modernadvancements in the prediction of sedimentary deposits, facies, and reservoirdevelopment in a variety of different settings. This course will give participants an understanding of the broad scope ofmarine siliciclastic depositional systems. Upon completion of the course, participantswill be able to:•escribe transport and depositional processes of deep-water strata includingturbidites, debrites, and transitional to hybrid flow type deposits•nderstand the different types of marine depositional environments (deltaicand outer shelf environments and those of submarine fans —anyon,channel, levee, splay, overbank) and their implications to petroleum reservoirarchitecture and reservoir quality•nderstand and interpret modern and ancient marine depositional systems•haracterize marine stratigraphy and build relationships with depositionalenvironments using outcrop, core, and other oil and gas industry data•se lithofacies and stratigraphic architecture to understand variations indeep-water reservoir properties pertaining to petroleum reservoir presence,quality, and seal presence•onceptualize and apply source-to-sink transport and sequence stratigraphicmethods to marine and deep-water sediment delivery•pply skills in seismic interpretation, reservoir characterization, core analysis,geophysical log interpretation, sequence stratigraphy, play fairway mapping,risk and uncertainty analysis, gross depositional environment mapping, andoil and gas exploration methods 1. Introduction to marine depositional systems with a focus on deep-waterdepositional systems•ignificance of deep-water petroleum reservoirs to the global oil and gasindustry•cientific and economic drivers for understanding sediment gravity flowsand their deposits•ediment gravity flows in action - historic sediment gravity flows from Canada,France, Norway, and United States2. Reservoir prediction: Transport and sedimentation processes of sedimentgravity flows•ypes of mass movement and deep-water deposits•hysics of sediment gravity flows and rheology, and steady vs uniform flows•redictive attributes of deep-water sedimentation to reservoir and seal presence,and reservoir quality3. Basic building blocks of clastic petroleum reservoirs: The range and variabilityof deep-water sedimentation units•igh- and low-density turbidity currents and their impacts on petroleumreservoir development•ouma and Lowe turbidite models and their application to reservoir characterization•ebris flows and their impact on submarine fan sedimentation•ransitional flows, slurry flows, and hybrid events and their classifications - M& H divisions and their impact on reservoir quality•ass-transport deposits (MTD) and review of other sediment remobilizationprocesses, including contour currents and contourite deposits4. Source-to-sink concepts and impact on reservoir quality•ource-to-sink method application to oil and gas exploration and production•aralic and shallow-marine processes of sedimentation•acies models and reservoir characterization for shallow-marine environments•iver-, tide-, and wave-dominated deltas, and fan deltas•hat are the different types of clinoforms observed in seismic data, andwhat is their role in sediment delivery to deep-water basins?•ncised valleys as prospective oil and gas targets•chnofacies of terrigenous, shallow-marine, and deep-marine depositionalenvironments5. The five main deep-water depositional environments according to•D and 3D seismic, outcrop, core, and log data•anyons•hannels•evees•obes (splays), with an introduction to deep-water braided channel and lobesystems•verbank6. Scales of petroleum reservoir heterogeneity: Architectural elements•hat are the various methods of stratigraphic interpretation and geneticelement classification in reservoir characterization?•ub-bed scale architecture and Turbidite Ratios7. Active margins vs. passive margins: Deep-water sedimentary basins and theirfacies models•hat are the effects of tectonic setting, shelf geometry, climate, and othercritical factors on deep-water sedimentation?•ifts•ange and variability in passive margin facies models•alt and its effects on sediment transport and deposition•hat are typical facies models for active margins? Discuss strike-slip andconvergent margins, and hybrid basins associated with active margins•ntracratonic basins•oreland basins•orearc and hybrid basins8. Large-scale drivers of continental margin sedimentation and application ofsequence stratigraphic methods to exploration and appraisal•ow was sequence stratigraphy developed by Grabau, Sloss, Mitchum, Vail,Thompson, Hubbard, Van Wagoner, and others? How is it applied? What arethe strengths and limitations of a sequence stratigraphic approach?•IGR model•rovenance and source-to-sink methods to understand sediment transferand application to reservoir presence and reservoir quality•ow do you know you’e in a deep-water depositional system? A review ofkey similarities and differences with deep-water systems and other systemsincluding fluvial and shallow-marine environments•onclusions and recent advancements in deep-water petroleum reservoirs The course is designed for employees of natural resource companies intechnical and management positions. Industry professionals will receive anunderstanding of deep-water sedimentary </td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="42" class="ninja_table_row_42 nt_row_id_42"> <td>Geology</td><td>Geological Modelling</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=483" target="_blank" rel="noopener">Petroleum Exploration Strategy</a></b><br/><small><i>By Jean-Jacques Biteau (Total Energies Professor Associate, France)</i></small></td><td>Jean-Jacques Biteau</td><td></td><td>block contract economy environmental exploration extrapolation license oil and gas ps resources risk sec uncertainty</td><td>This course is set up as follows:Chapter 1: Introduction;Chapter 2: Definitions, elements of strategy, partnerships•eserves and costs•pstream actions, elements of strategy and petroleum partnershipChapter 3: Evaluation of Exploration projects;•a Working sequence and costs•b The prospect Evaluation sheet or ‘iche Objective’•c Economic criteria•d Economic studies in exploration / appraisalChapter 4: Partnerships, Contracts and mining acreage;•a Partnerships•b The main petroleum contract typesChapter 5: Missions and role of the Geoscience / Exploration Managerin affiliates / Manager Career, a mixt of experiences;Chapter 6: Practical case study. Upon completion of the course, participants will be able to:•dentify the pillars of exploration;•nderstand resources, risk, uncertainty and value. The course is designed for professionals with a geoscience background.Students should have at least Master’ degree.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="43" class="ninja_table_row_43 nt_row_id_43"> <td>Geology</td><td>Geological Modelling</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=481" target="_blank" rel="noopener">3D Reservoir Modeling of Naturally Fractured Reservoirs</a></b><br/><small><i>By Dr Tim Wynn (TRACS International Ltd, United Kingdom)</i></small></td><td>Tim Wynn</td><td></td><td>density fractures geocellular integration porosity production reservoir characterization wells workflows</td><td>Reservoir modeling for field development planning is a well-acceptedprocess but its application to fractured reservoirs requires specificconsiderations that are less commonly known. This course describesa practical methodology for building 3D static (‘eocellular’ reservoirmodels for naturally fractured reservoirs using standard modelingsoftware, covering such considerations.The issues addressed include the integration of log, core and seismicdata, the process of defining and building the static reservoir modelitself and the creation of output in a form appropriate for dynamicmodeling using dual porosity reservoir simulators where appropriate.More complex workflows using discrete fracture networks will alsobe summarized, as will general issues of fracture description, uncertainty-handling and developing and managing fractured reservoirs. Upon completion of the course, participants will:•e aware of practical workflows for modelling naturally fracturedreservoirs using standard industry software;•nderstand the data-gathering requirements and methodologyfor characterizing fractured reservoirs;•ppreciate the special distinction of naturally fractured reservoirmodels compared to standard single-porosity models. •rigins and distributions of natural fracturing•escribing and quantifying fractures from well data•stimating fracture system characteristics away from wells•eological model building workflow for implicit fracture representation•rief introduction to discrete fracture networks•asic fractured reservoir simulation model construction•ractured reservoir development and management considerations Geoscientists and petroleum engineers newly working in naturallyfractured reservoirs where they need to provide or receive outputfrom fractured reservoir models. Participants should have and in depth understanding of the oilbusiness and a good understanding of conventional reservoir characterizationand modelling techniques. No software will be usedinteractively during the day and no hands-on modelling experience istherefore required. However, it would be beneficial.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="44" class="ninja_table_row_44 nt_row_id_44"> <td>Geology</td><td>Geological Modelling</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=523" target="_blank" rel="noopener">Deepwater Reservoirs: Exploration and Production Concepts</a></b><br/><small><i>By Prof. Dorrik Stow (Heriot-Watt University, United Kingdom)</i></small></td><td>Dorrik Stow</td><td></td><td>continental margin drilling facies marine sand sandstone sequence stratigraphy shale turbidite</td><td>Sandstones deposited in deep marine environments form importanthydrocarbon reservoirs in many basins around the world. Interbeddedmudstones can be important as source rocks, as well as actingas barriers, baffles and seals. Deepwater reservoirs are currently theprincipal target for oil and gas exploration, with over 1600 existingturbidite fields and plays. Driven by technological advances andmuch improved scientific understanding, the pace of exploration anddiscovery in this realm is fast accelerating. Keeping pace with thesedevelopments and with the new knowledge base is essential for allthose involved in deepwater systems. What began as the turbiditereservoir has matured into the more varied deepwater play of the21st century that no company can afford to ignore.This course is designed to provide the participant with a state-of-the-art review and update, thereby providing an overall understandingof the complexity of the deep marine system. It will outline the processesand facies and how they evolve on the slope and in the openocean; discuss how these facies build into distinctive architecturalelements and how they can be recognized in the subsurface. Thecourse also covers analysis and interpretation of seismic records,sea floor images, well logs (including borehole image logs), corematerials and outcrop characteristics of the component elements ofdeepwater reservoirs, emphasizing internal architecture as relatedto reservoir performance. Examples from different deepwater playsaround the world will be used to further illustrate their exploration,appraisal, development and reservoir management. Day 1 : Deepwater Overview, Building Blocks & ArchitectureGLOBAL OVERVIEW•lobal and historical perspectives, technologies and current trends•eepwater systems with hydrocarbons or hydrocarbon potential•ncient and modern analogues of deepwater systems•rocess-facies overview and state-of-the-artDOWNSLOPE SYSTEMS•ass transport processes and facies: slides, slumps, debris flows•urbidity currents: massive sands and thin-bedded turbidites•yperpycnal flows: new deepwater models•ubsurface recognition, examples and reservoir characteristicsALONGSLOPE SYSTEMS•ontour (bottom) currents: processes and facies•eepwater tides, waves and other bottom currents•ubsurface recognition, examples and reservoir characteristicsOPEN-OCEAN SYSTEMS•elagic-hemipelagic processes and facies•eepwater black shales: nature, occurrence and examples•etroleum perspective: barriers, baffles and source rocksARCHITECTURE: CHANNEL STYLE AND GEOMETRY•verview of deepwater architectural elements•hannel style, geometry fill characteristics•ass transport complexes in channels and basins•ubsurface wireline logs and reservoir examplesARCHITECTURE: LOBES, MOUNDS AND SHEETS•urbidite lobes and sheets•ontourite drifts and sheets•ubsurface wireline logs and reservoir examplesDay 2 : Seismic/Sequence Stratigraphy and Deepwater PlaysSUBSURFACE MODELS•ynthesis of deepwater models and their features•eismic characteristics of deepwater elements and systems•ireline log characteristics and borehole image logs•ea-level, tectonic, sediment supply and other controls•equence stratigraphy and depositional modelsDEEPWATER MASSIVE SANDS•ase studies: modern, ancient and subsurface examples•eservoir size, homogeneity and connectivity•eliberate search for the perfect deepwater reservoirTHIN-BEDDED TURBIDITES•ase studies: modern, ancient and subsurface examples•eservoir potential and development issues•he problem of shales and shale dimensionsDEEPWATER DRILLING•pecial issues for drilling in deepwater•lope instability and hazard mapping•urbidity currents and bottom currents: potential hazardDEEPWATER PLAYS WORKSHOP•essons from established turbidite plays: North Sea, California,Bohai and others•essons from current deepwater provinces: Gulf of Mexico, WestAfrica, NW UK Continental Margin, Brazil, North Slope Alaska, NileDelta and others•nteractive discussion session to consider implications for exploration,appraisal, development and reservoir management; toshare and discuss individual datasets, experience, questions andproblems•he new frontiers…urrent targets and expectation•ourse summary and take-home lessons All geologists, geophysicists and petroleum engineers involved in explorationand development of the deepwater play. Project managersfor deepwater plays and reservoir production. Participants should have basic knowledge of stratigraphy and sedimentology.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="45" class="ninja_table_row_45 nt_row_id_45"> <td>Geology</td><td>Geological Modelling</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=497" target="_blank" rel="noopener">New Tools and Approaches in Reservoir Quality Prediction</a></b><br/><small><i>By Dr Dave L. Cantrell (Cantrell GeoLogic and Stanford University, United States)</i></small></td><td>Dave L. Cantrell</td><td></td><td>basin analysis case study deposits diagenesis facies integration mapping porosity reservoir characterization reservoir modeling sediment sequence stratigraphy sparse data</td><td>Reservoir quality prediction has historically been the “oly grail”f reservoir geologists, yet few have been completely successful atachieving this in a truly quantitative fashion. Most oil companieshave traditionally based their reservoir quality prediction efforts ongeostatistical models that are primarily driven by well and seismicdata, usually with some input from qualitative studies of outcrop andobservations of modern sedimentary processes. Prediction resultsfrom such studies are often less than optimal, especially in areaswhere data quality is poor and/or data coverage is sparse.The sheer complexity of factors controlling reservoir quality in thesubsurface makes prediction challenging, especially in carbonates.These factors include primary depositional texture and composition,as well as a wide variety of post-depositional modifications that occurto the sediment during and after burial. Developing quantitativetools that allow the prediction of reservoir quality ahead of the bit,and ideally pre-drill, can provide enormous benefits for both explorationand development drilling by reducing the risk associated withexploitation of heterogeneous intervals.Reservoir quality prediction means different things to different people;this workshop outlines an approach that’ based on an understandingof the geological processes that control reservoir quality, andwhich allows the quantitative prediction of reservoir quality (porosityand permeability) ahead of the bit. To accomplish this, this workshopfirst provides an overview of the main controls on reservoir quality inboth clastic and carbonate rocks, and then presents a new approachto pre-drill reservoir quality prediction that involves the integration ofa variety of modelling techniques to understand, quantify and predictthe geological processes that control reservoir quality. Since the initialreservoir quality framework is established at the time of depositionby a variety of depositional controls, this workflow uses numericalprocess models to predict initial reservoir quality; results from thesemodels are then modified via a series of other modeling technologies(compaction models, kinetic cementation models, reaction transportmodels, etc.) to quantify and predict various diagenetic modificationsthat have significantly affected reservoir quality in the intervalof interest. This approach successfully integrates these two differenttechnologies into one workflow that holistically predicts reservoirquality. Several case histories will be shown in which this approachhas been successfully applied. Upon completion of the course, participants will be able to understand:•he main controls on reservoir quality, for both clastics and carbonates•he main principals behind a geologically process-based approachto reservoir quality prediction•he quality and power of geologically based predictions, as well assome of the inherent limitations•ow geological process models can be used to assess uncertaintyin prediction results. Introduction to reservoir quality•ontrols on reservoir quality in clastic and in carbonate rocksIntroduction to geological process based modeling•hat is process modeling and how does it work?•ow process based modeling fits into an overall reservoir qualityprediction framework•hat differentiates process modeling from other types of geologicalmodeling•ey input parameters in process modelingOverview of process modeling in siliciclasticsCase History #1 : Modeling a Paleozoic sandstone reservoirs in theMiddle EastOverview of process modeling in carbonates•istinctive aspects of carbonatesCase History #2 : Modeling a carbonate reservoir in the Middle EastConclusions The course is designed for geologists, reservoir engineers and technicalmanagers - and for all others looking to enhance their understandingand ability to predict reservoir quality. Some knowledge of geology, geological processes, and the mainchallenges of reservoir quality prediction would be helpful.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="46" class="ninja_table_row_46 nt_row_id_46"> <td>Geology</td><td>Geological Modelling</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=489" target="_blank" rel="noopener">Well Logs and Borehole Image</a></b><br/><small><i>By Prof. Dr Michael Poppelreiter (Shell, Kuwait)</i></small></td><td>Michael Poppelreiter</td><td></td><td>cross-plotting density interpretation oil and gas resistivity sonic water well log wells</td><td>The most universal, comprehensive and concise descriptive documentson oil and gas wells are well logs. They impact the work ofalmost every oil field group from geologists to roustabouts to bankers.Familiarity with the applications of well logs is therefore essentialfor people forging their careers in the oil business.The instructor uses a core-based approach to help participants developa good grounding in understanding and applying well loggingtechniques. General principles of physics are presented to explainthe functioning of modern logging tools. Wherever possible, thephysics of logging measurements is related to everyday tools andapplications. Cross-plotting and reconnaissance techniques quicklyand efficiently discriminate between water, oil and gas. Error minimizationtechniques, applicable only to computerized log analysis,produce optimal results. Participants benefit from realistic experienceby working in teams on a comprehensive log interpretation exercise. Upon completion of the course, participants will be able to:•nderstand geological application of the most commonly run welllogs, i.e., caliper, gamma ray, sonic (velocity), resistivity, density,neutron, photoelectric factor, borehole images;•ead log headers to understand which tool was run in whichborehole environment;•uality control the logs;•lock logs in geologically meaningful intervals;•dentify lithologies using various techniques such as commoncross-plots;•alculate net-to-gross ratio and identify pay zones;•nterpret the depositional environment. The course is designed for geologists, petrophysicists and stratigraphers. Basic understanding of geology and petrophysics is desirable, alongwith knowledge of the principles of geoscientific data management.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="47" class="ninja_table_row_47 nt_row_id_47"> <td>Geology</td><td>Geological Modelling</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=485" target="_blank" rel="noopener">Reservoir Model Design: How to Build Good Reservoir Models</a></b><br/><small><i>By Dr Mark Bentley (AGR TRACS International, United Kingdom) and Prof. Philip Ringrose (Equinor and NTNU, Norway)</i></small></td><td>Mark Bentley and Philip Ringrose</td><td></td><td>3d carbonates depositional system geostatistics integration permeability rock physics sediment</td><td>This short course will provide an introduction to reservoir model design,covering the following main design elements:•odel purpose;•he rock model;•he property model;•odel scaling;•andling uncertainty.In this course, Mark Bentley and Philip Ringrose share their insightsinto building geological reservoir models, covering clastic andcarbonate sedimentary depositional systems, as well as fracturedreservoirs. The connection between geology and fluid flow is developedwith a focus on designing fit-for-purpose models with theconsideration of implications for single-phase and multiphase flowand with examples of application to oil and gas reservoirs and to CO2storage. Integration of seismic data, well data and dynamic data withassociated uncertainties are integral to the workflows and methodsdiscussed. This is a shorter version of a 5-day course and so is intendedas an introduction to the main concepts. Know how to approach a reservoir modelling task and assess the keydesign elements –istinguish between ‘ood’nd ‘ad’ 1. Introduction: Model Purpose (45 mins);2. Designing the Rock Model (60 mins);3. Property Model issues, Permeability and NTG vs TPM (90 mins);4. Model Scaling (45 mins);5. Handling Uncertainty (45 mins);6. Summing up: the Design Template. Geologists, geophysicists, petrophysicists, or reservoir engineers whohave or wish to work in multi-disciplinary teams on reservoir developmentprojects. Participants should have good knowledge of at least one componentof multi-disciplinary reservoir modeling: e.g., geological modeling,geostatistics, petrophysics, rock physics, or reservoir simulation.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="48" class="ninja_table_row_48 nt_row_id_48"> <td>Geology</td><td>Geological Modelling</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=499" target="_blank" rel="noopener">Challenges and Solutions in Stochastic Reservoir Modelling – Geostatistics, Machine Learning, Uncertainty Prediction</a></b><br/><small><i>By Prof. Vasily Demyanov (Heriot-Watt University, United Kingdom)</i></small></td><td>Vasily Demyanov</td><td></td><td>geology geological modelling cross discipline reservoir characterization reservoir management</td><td>Reservoir prediction modelling is subject to many uncertainties associatedwith the knowledge about the reservoir and the way theyare incorporated into the model. Modern reservoir modelling workflows,which are commonly based on geostatistical algorithms, aimto support development decisions by providing adequate reservoirdescription and predict its performance. Uncertainty about reservoirdescription needs to be accounted for in modelling workflows toquantify the spread of reservoir predictions and its impact developmentdecisions.The course aims to build awareness of the impact the modellingchoices on the reservoir predictions and their relation to the wayuncertainty is incorporated into reservoir modelling workflows. Thecourse addresses the problem of tying the workflow with the expectedgeological vision of a reservoir subject to uncertainty. This is associatedwith one of the common issues, when standard assumptionsof a workflow are not consistent with the model geology or do notreflect possible variations due to existing uncertainty.The course demonstrates the implementation of geostatisticalconcepts and algorithms in geomodelling workflows and the waysuncertainty is accounted for in reservoir description and predictions.The course includes an overview of the state-of-the art conventionaltechniques and some more novel approaches, in particular machinelearning for reservoir description.Machine learning provides new opportunities in data integrationand the model control to tackle the modelling challenges related tonon-stationary multi-scale correlation structure and complex connectivitypatterns in reservoirs. Novel machine learning techniques aregood at capturing dependencies from data, when their parametricdescription is difficult; and controlling the impact of noisy and ad-hocdata. The objectives of the course are:•rovide a practical overview of geostatistical concepts used inmodelling workflows and their impact on reservoir models.•xplain how uncertainty is accounted for and propagated throughgeomodelling workflows.•ntroduce some machine learning approaches in geomodellingthrough a series of case studies.•emonstrate integration of geomodelling techniques for uncertaintyquantification of reservoir predictions.The outcome of the course is the practical understanding the keygeostatistical concepts, their implementation in reservoir modelling,principles of machine learning and its application in reservoir modelling.The course participants will get familiar with a variety of conventionaland advanced stochastic modelling algorithms and becomeaware of the impact from different modelling assumptions. •oncepts and assumptions of geostatistics•tochastic simulation vs interpolation•ncertainty quantification workflow for reservoir predication•achine learning techniques for spatial reservoir modelling- Classification - lithofacies- Regression –L geomodelling- Dynamic model update through learning from data•ata driven integration of relevant data and knowledge The course is designed for a wide audience of reservoir modellers,geologists and engineers with range of experience from novices toexperienced practitioners. Participants should have a basic knowledge of reservoir modellingand numerical analysis.</td><td>in-house-true</td><td></td><td>has-book-true</td><td></td><td></td><td></td> </tr> <tr data-row_id="49" class="ninja_table_row_49 nt_row_id_49"> <td>Geology</td><td>Geological Modelling</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=487" target="_blank" rel="noopener">Construction of Fractured Reservoir Models for Flow Simulation Incorporating Geology, Geophysics, and Geomechanics</a></b><br/><small><i>By Reinaldo Michelena (SeisPetro Geoconsulting, United States), Chris Zahm (UT Austin, United States), James Gilman (iReservoir, United States)</i></small></td><td>Reinaldo Michelena, Chris Zahm, James Gilman</td><td></td><td>anisotropy flow simulation fractures geomechanics history-matching inversion outcrop reservoir characterization reservoir engineering reservoir modeling unconventional</td><td>Flow models have the purpose of explaining and forecasting reservoirperformance that can help plan the development and exploitationof the resource. This class explains the steps needed to buildfractured reservoir models using sound stratigraphic and structuralframeworks, calibrated 3D seismic attributes, and geomechanicalinformation. Models and concepts are examined in the context ofhow they impact fluid flow, reservoir simulation results, field production,and forecast in conventional and unconventional reservoirs.This 2-day course presents workflows along with conceptual andspreadsheet-based exercises to solidify concepts. The course providesin-depth presentations and discussions of the models presented. •ighlight geologic concepts that control natural fracture developmentin conventional and unconventional reservoirs.•alue characterization methods that incorporate the use of 3Dseismic data for improved mapping of mechanical facies and fractureproperties•iscuss workflows that combine geologic and geomechanicsconcepts, petrophysical properties, and seismic attributes withingeological models in preparation for reservoir simulation.•uantify the combined effect of fracture properties and geomechanicalproperties in effective flow properties of simple fracturescenarios.•nderstand the need of combining multiple disciplines and datasources to develop an adequate flow model.•nderstand that fracture models are not platform- or software-specific,but utilize and blend all available data and relevant analogs.•nderstand that consistently developed continuum and discretefracture models can yield very similar results.•odel effective fracture permeabilities in a cell of a geologic modeland understand the parameters that control such permeability. Session 1•atural fractured reservoirs: overview and concepts•mpact of natural fractures on reservoir performance: overview•ight unconventional reservoirs: mechanical stratigraphy in core,well logs, and seismic•ight unconventional reservoirs: use and value of outcrop analogs•ight carbonate mechanical stratigraphy interpretation•eservoir engineering data for of naturally fractured reservoirsSession 2•ight unconventional reservoirs: seismic properties for fracturecharacterization•iscrete vs continuum natural fracture descriptions for simulationin fractured reservoirs•ight unconventional reservoirs: geomechanics review•ffective fracture permeability·ession 3•ight unconventional reservoirs: modeling perm of reactivatedfractures•ressure transient response time•onventional fractured reservoirs: overview and concepts•onceptual integrated fault damage zone model•alue of outcrop analogs in fracture modeling•onventional fractured reservoirs: facies, rock properties in coreand well logsSession 4•onventional fractured reservoirs: rock properties from 3D seismic•alibration of effective fracture permeabilities•pecial considerations for flow simulation in fractured reservoirs•utting it all together: Integration of outcrop, core, well logs, andseismic for improved reservoir models Due to its multidisciplinary nature, this class is designed for all levelsfrom entry to advanced. None</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="50" class="ninja_table_row_50 nt_row_id_50"> <td>Geology</td><td>Sedimentology</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=491" target="_blank" rel="noopener">Sedimentary Rocks and Depositional Environments</a></b><br/><small><i>By Prof. Dorrik Stow (Heriot Watt University, United Kingdom)</i></small></td><td>Dorrik Stow</td><td></td><td>basin analysis continental margin cores lithology outcrop reservoir characterization sandstone sediments shale thin section turbidite</td><td>Sedimentary rocks and their depositional environments are fundamentalto all aspects of petroleum geoscience, including evaluationof the petroleum system, exploration, field appraisal, reservoir characterisationand development, and solving production issues. Equally,they are fundamental to the study of stratigraphy, mineral resources,water resources and global environmental change.Sediments deposited in rivers and deserts, deltas and deep-seafans, coasts, shelves and contourite drifts, bioherms and carbonateplatforms, all differ significantly in their rock properties, diageneticcharacter, heterogeneity and architecture. Such differences are key tounderstanding their behaviour as source rocks, migration pathways,reservoir rocks and seals, in both conventional and unconventionalhydrocarbon systems.This course is designed to give the participant a succinct, state-of-the-art, overview of sediments, sedimentary rocks and their principalcharacteristics, thereby providing a broad understanding of therange of sedimentary environments and the rocks they comprise. Itcovers clastic, carbonate, evaporite and volcaniclastic sediments, andthe full range of settings in which they are deposited –ncludingcontinental, shallow marine and deepwater depositional environments.Careful consideration is given to the principal diagnosticfeatures of sediments from the main environments –n the field, incores/boreholes, and in modern systems. Rock features include sedimentarystructures, ichnofacies, textures, composition, petrophysicalcharacteristics, and biogenic/organic content. For each environment,selected wireline logs will be examined, and the overall rock geometryor architectural elements discussed. A series of case studies willillustrate a range of hydrocarbon fields and plays from each of themain depositional environments.The presentations are fully illustrated with high quality colour imagesof sediments and sedimentary rocks from a wide range of modern,ancient and subsurface examples. Where possible the course can berun in conjunction with examination of cores in the lab, and/or withfield work, in order to better illustrate key features.The course will build on the handbook Sedimentary Rocks in the Field(Stow, 2005) and the new edition in preparation, Sedimentary Rocksin the Field and Core (Stow and Gerard, 2021). Each participant willreceive a copy of the latest revised edition of this book as well as afull set of the PowerPoint presentations. Upon completion of the course, participants will be able to:•NDERSTAND the economic and environmental significance ofsedimentary rocks•PPRECIATE the full range of sedimentary rocks and their keydifferences•ECOGNISE the nature and origin of the principal sediment characteristics•ISTINGUISH between types of sedimentary rocks –odern, ancientand subsurface•VALUATE sediments in terms of the processes and environmentsof deposition•SSESS and interpret facies associations, sequences and architecturalelements•OCUS on source, reservoir and seal properties of different sedimenttypes•ESOLVE clearly and simply between different depositional environmentsin the subsurface•AIN an astute understanding of what questions to ask and whatanalyses to make•ECOME a better 21st century sedimentologist Unit 1: Introduction and Overview.•ourse aims and content•lassification and properties of sedimentary rocks•nterpretation of depositional environments•ethods of study: field, core and laboratory•ignificance: resources, water and the environmental recordUnit 2: Principal characteristics of sedimentary rocks.•ntroduction and facies concept•edding and lamination•rimary structures: erosional and depositional•econdary structures: post-depositional deformation & dewatering•iogenic structures: trace fossils, bioturbation, ichnofabrics andichnofacies•hemogenic sedimentary structures•ediment texture and fabric: grain size, sorting, grain fabric•ediment composition and colour•rincipal diagenetic changes: physical and chemicalUnit 3: Siliciclastic sedimentary rocks•onglomerates: definition, types, characteristics, classification,occurrence•andstones: definition, types, characteristics, classification, occurrence•udrocks: definition, types, characteristics, classification, occurrence•ydrocarbon significance: source, reservoir and sealUnit 4: Biogenic sedimentary rocks•arbonate rocks: definition, types, characteristics, classification,occurrence•herts and siliceous sediments: definition, types, characteristics,classification, occurrence•hosphorites: definition, types, characteristics, classification, occurrence•oal: definition, types, characteristics, classification, occurrence•ydrocarbon significance: source, reservoir and sealUnit 5: Chemogenic sedimentary rocks•vaporites: definition, types, characteristics, classification, occurrence•ronstones: definition, types, characteristics, classification, occurrence•oils, paleosols and duricrusts: definition, types, characteristics,classification, occurrenceUnit 6: Volcaniclastic sedimentary rocks•efinition, range of types and classification•rincipal sedimentary characteristics and occurrence•ydrocarbon significance: source, reservoir, seal and correlationUnit 7: Interpretations and depositional environments•uilding blocks: facies characteristics and models•ertical sequences and cycles, wireline log characteristics•ateral trends and geometry•rchitectural elements and facies associations•equence stratigraphy and bounding surfaces•ontrols, rates and preservationUnit 8: Depositional environments summary•rincipal characteristics of each of the main depositional environments•ydrocarbon case studies from each of the main depositionalenvironments•ase studies and exercises throughout course•ptional special topics –o be discussed in advance•otentila for core session in core lab and/or for complementaryfield work•ach participant will receive a full set of the PowerPoint presentations•ach participant will receive a copy of the latest revised edition ofthe instructor’ book:- Stow, 2005, Sedimentary Rocks in the Field, CRC Taylor & FrancisGroup The course is designed for all geologists, geophysicists and petroleumengineers involved in exploration and development. Project managersand senior management would also benefit from such a courseas a refresher.Recommended reading•oggs S, 2009 (Second edition). Petrology of Sedimentary Rocks,Prentice Hall•eeder MR, 2011 (Second edition). Sedimentology and SedimentaryBasins: From Turbulence to Tectonics, Blackwell Science•aynard JB, Potter PE, Depetris PJ, 2005. Mud and Mudstones:Introduction and Overview, Springer•eading HG, editor, 1996 (3rd edition) Sedimentary Environmentsand Facies, Blackwell•elley RC, 2000. Applied Sedimentology, Academic Press, SanDiego.•tow DAV, 2005. Sedimentary Rocks in the Field, CRC Taylor &Francis Group</td><td>in-house-true</td><td></td><td>has-book-true</td><td></td><td></td><td></td> </tr> <tr data-row_id="51" class="ninja_table_row_51 nt_row_id_51"> <td>Geophysics</td><td>Seismic Acquisition</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=493" target="_blank" rel="noopener">Advanced Marine Seismic Acquisition Techniques</a></b><br/><small><i>By Dr Mike Branston (WesternGeco, United Kingdom)</i></small></td><td>Mike Branston</td><td></td><td>3d obc p-wave prm reservoir engineering simultaneous source wide azimuth</td><td>The course is designed to familiarize the student with the latestdevelopments in Marine Seismic Acquisition including Wide-Azimuthwith its many geometry variants, Broadband techniques(boosting the high and low frequencies), seabed receivers forboth P-wave and Converted-wave recording, simultaneoussource acquisition, and methodologies to improve efficiency.The course starts with an overview of conventional 3D towed streamerseismic acquisition and then concentrates on recent advances thathave enabled dramatic improvements in seismic data quality andinterpretability. While the development of 3D marine seismic acquisitionsince the 1980s has been arguably the single most effectivetechnique in improved drilling success, the recent addition of “rue3D”r “ide-azimuth”echniques has led to improved sub-surfaceillumination and imaging. In addition to improved imaging, improvedresolution has been achieved through so-called broadbandtechniques achieved through novel source and streamer geometriesand multi-component receivers. The course compares wide-azimuthtowed streamer seismic acquisition as well as sea-bed seismic acquisition,ocean bottom cable (OBC) and ocean bottom node (OBN).Design and practical implementation considerations are reviewed;together with relative cost-benefits. In the case of sea-bed seismic,the value of multi-component recording is reviewed. Broadband seismictechniques are explained in terms of source and receiver design,practical implementation and interpretational benefits. The coursereviews the latest developments in simultaneous source technology,which are attempting to improve the data density and / or operationalefficiency of seismic acquisition. Finally the course reviewsthe other operational methodologies and designs that have beendeveloped to improve acquisition efficiency. A practical approach is adopted and is designed to provide the studentwith an up-to-date understanding of recent developments inmarine seismic acquisition technology. At the end of the course thestudent will be able to understand why and where these new technologiesare applicable, understand what studies are required to designnew surveys and understand the relative costs of acquiring andprocessing the seismic data compared to conventional acquisition. The course is designed for geophysicists and explorationists who wishto gain an overview of recent developments in 3D marine seismicacquisition. Participants are assumed to have a working knowledgeof conventional seismic acquisition techniques and their use in explorationand development of hydrocarbon resources. Participants should have a working knowledge of conventionalseismic acquisition techniques and their use in exploration and developmentof hydrocarbon resources.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="52" class="ninja_table_row_52 nt_row_id_52"> <td>Geophysics</td><td>Seismic Acquisition</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=495" target="_blank" rel="noopener">The Benefit of Broadband Technology for Reservoir Characterization and Imaging – The End-User Value</a></b><br/><small><i>By Dr Cyrille Reiser (Petroleum Geo-Services, United Kingdom)</i></small></td><td>Cyrille Reiser</td><td></td><td>appraisal broadband case study interpretation inversion marine acquisition offshore reservoir sediment</td><td>The main aim of this course is to provide a very accessible overviewof the many concepts behind broadband seismic (primarily offshore)and its implication for the reservoir focused asset based geoscientist.This will be done through the a very comprehensive set of case studymaterial from all regions of the world and for various stages of theexploration, appraisal and development asset life cycle. The courseaims to objectively discuss the various broadband seismic technologiesand commercial offerings available today and their respectivemerits with regards to quantitative reservoir characterization andreservoir imaging using real world application examples. The coursewill further attempt to identify possible pitfalls and issues with regardsto the treatment of broadband data that might lead to flawedor erroneous QI. Upon completion of the course, participants will be able to understandthe value of broader bandwidth seismic data in general and forquantitative reservoir analysis from interpretation to rock propertyestimation in particular. The course is intended to be very appliedand hands on and will only review the very basic concepts of inversionbased rock property analysis and quantitative interpretation butwill otherwise focus on examples to illustrate the benefit of extendedbandwidth seismic. Course schedule:•hat is broadband seismic?•otential benefits•xploration case studies•ppraisal development case studies•hat next? The course is designed for geoscientists with a basic level of geophysicalknowledge, including a general knowledge of towed streameracquisition and processing methods but the content is designed to beaccessible for most geoscientists working with or interested in usingbroadband seismic in their day-to-day working life. In other words,definitely no requirement for expert knowledge.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="53" class="ninja_table_row_53 nt_row_id_53"> <td>Geophysics</td><td>Seismic Acquisition</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=503" target="_blank" rel="noopener">Time-Lapse Seismic: A Multidisciplinary Tool for Effective Reservoir Management</a></b><br/><small><i>By Cedric Fayemendy (Equinor, Norway)</i></small></td><td>Cedric Fayemendy</td><td></td><td>4d fluid grm injection monitoring oil and gas prm production workflows</td><td>Geophysical Reservoir Monitoring (GRM) of reservoirs relies on frequenttime-lapse observations with high-survey repeatability. Thistechnology is a key enabler for maximizing the oil recovery of oiland gas fields. The GRM technology aims at understanding andupdating the knowledge of producing reservoirs. This is achievedthrough mapping the movement of fluid and pressure fronts andfluid contacts during production and injection. The combination ofproduction monitoring with repeated seismic acquisition and geologicaland reservoir information provides reliable estimates of staticand dynamic reservoir parameters. The lecture will first review thegeophysical reservoir monitoring history at Equinor. We will shareour experience with 4D processes, resources allocation and theoverall monitoring strategy. The lecture will also cover challenges inunderstanding the 4D responses and value creation. Finally, we willlook at how we push the GRM technology towards higher use ofquantitative results. The purpose of this course is to provide an overview of the importanceand the benefit of time-lapse seismic. •heory of time lapse monitoring•ow do we plan for time lapse seismic?•he value of acquiring time lapse data.•ow are time-lapse data managed by the asset and integrated inthe reservoir management process.•n overview of the latest developments in time-lapse monitoringin Equinor including PRM. This course should be of interest to managers, geoscientists, reservoirand petroleum engineers with an interest in reservoir managementand monitoring using time-lapse seismic.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="54" class="ninja_table_row_54 nt_row_id_54"> <td>Geophysics</td><td>Seismic Acquisition</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=501" target="_blank" rel="noopener">Land Seismic on New Technological Level</a></b><br/><small><i>By Dr Anatoly Cherepovskiy (Independent Consultant, Russia)</i></small></td><td>Anatoly Cherepovskiy</td><td></td><td>3d broadband full azimuth multicomponent refraction reservoir characterization statics survey design vibroseis</td><td>This course will provide information related to recent trends and advances inland seismic data acquisition technology, equipment and the methodologiesthat are being utilized to improve seismic imaging quality and productivity of3D acquisition with an emphasize on the high-end surveys as performed inopen areas. The course will not cover the fundamentals of 3D and multicomponentseismic survey design, although there will be a section that will give areview of recent survey design approaches and principles. The purpose of this course is to:•rovide an overview of trends in 3D land seismic and achievements;•nderstand trade-offs in modern field technologies;•nderstand the ways to improve seismic imaging and data conditioning forbetter reservoir characterization. 1. Introduction2. The revolutions and trends in 3D land seismic and evolution in surveydesign, field equipment, and acquisition techniques. The criteria of fielddata quality. The role of global positioning systems. Arrays versus pointreceivers and point sources Intra-array statics (synthetic and field-dataexamples), non-vertical ray emergence, and other factors degradinghigh-frequency content of acquired data and distorting amplitudes andAVO effects. Is there a compromise between high-frequency preservationand S/N ratio improvement? Digital array forming.3. Wide-azimuth and high-density surveysBreakthrough in seismic imaging with HD and WAZ data. More receiversor more sources? New types of attributes extracted from HD and WAZdata to better characterize complex and fractured reservoirs.4. Excitation and recording of wideband seismic signalsWhy do we need broadband signals? Types of velocimeters and accelerometers.Low-dwell and other nonlinear sweeps. Field data examples.5. 3C sensors and multi-component seismicAdvantages of 3C single sensors from operational and geophysical pointsof view. Multicomponent seismic with MEMS accelerometers: expectationsand practical achievements. Ray-tracing and finite-difference modelingstudies.6. Multiple-fleet and high-productivity vibroseis techniquesNew paradigm in seismic exploration: better sampling of noise and signal.The issues of data and equipment QC in high-productivity vibroseis.7. Diversity stack in noisy areas8. Cableless recording systemsInnovative technologies enabling a new generation of recording systemswithout cables and radio: the importance of GPS in the evolution of landseismic acquisition techniques. Where cableless systems are applicable?Full cableless and infill modes. Testing of autonomous (nodal) andreal-time recording systems in Russia.9. ConclusionsNot all acquisition techniques are equal (status in Russia vs. Middle Eastand North America)What will be high-end land 3D surveys in the future: point 3C acquisition?A mix of cable and cableless, very dense and very noisy data? The course is appropriate not only for geophysicists involved in land survey design,acquisition, and modeling, but also for those involved in data processingand interpretation who wish to better understand the potential improvementsthat can be made. The course assumes familiarity with basic seismic acquisition techniques andequipment. No mathematical background is required, since physical conceptsare graphically illustrated. A comprehensive list of references is given in the book.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="55" class="ninja_table_row_55 nt_row_id_55"> <td>Geophysics</td><td>Seismic Acquisition</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=505" target="_blank" rel="noopener">Land Seismic Survey Design</a></b><br/><small><i>By Paul Ras (SD2I Geophysical Consulting, Netherlands)</i></small></td><td>Paul Ras</td><td></td><td>3d broadband imaging integration inversion land seismic modeling noise sensors signal processing simultaneous source vibroseis wide azimuth</td><td>This course presents an integrated approach to modern land 3D seismic surveydesign as it has a key role in the seismic value chain going from acquisition toprocessing, imaging and inversion & characterization. It will describe the maintechnology advances in land seismic acquisition: high-channel count single sensor(point receiver), simultaneous source high-productivity vibroseis, broadband andwireless nodal systems. New acquisition technology has in turn inspired progressin processing, imaging and inversion & characterization. Seismic survey designshave changed accordingly, wide azimuth high-density surveys are now the normin many environments. And the survey design workflow now includes singlesensor, single source, simultaneous source, broadband, symmetric sampling, cross-spreads, spatial continuity and more powerful 5D interpolation methods. It hasalso become more integrated, with requirements from processing, imaging andinversion & characterization feeding back to the design and hence acquisition. The purpose of this course is to understand:•he main parameters related to land survey design;•he generic land seismic survey design workflow;•he impact of the new acquisition technology on survey design;•ow design and acquisition affects processing, imaging and inversion andcharacterization. 1. Introduction: setting the stage discussing the survey design process as part ofthe seismic value chain and from the perspective of integrated project design;2. Survey design workflow: generic survey design workflow introducing thebasic design parameters and explaining how they are estimated. Amongother things this involves survey objectives, resolution, signal and noise. Inthe next sections, we will show the impact of the new technologies;3. The advent of high-channel count systems has enabled single sensor (or pointreceiver) recording. This can provide unaliased sampling of signal and noiseenabling easy removal of in particular near surface source generated noise;4. Simultaneous source hi-productivity vibroseis: acquiring data from multiple(groups or single) vibrators simultaneously from different source locations, whichcan improve spatial sampling and reduce cost by increasing productivity;5. Broadband: driven by imaging and inversion requirements, there has beena major technology effort to increase bandwidth, mostly on the low butalso on the high frequency side of the spectrum;6. Wireless nodal systems significantly improve operational flexibility inrestricted areas; increasingly being used with single sensors. Nodaltechnology is developing fast with higher channel counts while improvingWifi & Bluetooth technology enables better QC;7. The impact of survey design at the data processing stage includes receiversampling for adequate noise suppression, improved source sampling forwell sampled gathers (cross-spread, source, receiver) and fold (trace density).When we design the survey, we can for instance ensure well interpolated& regularized input to imaging, understanding of multiple behaviour, andenable good surface wave inversion for near surface modeling;8. At the imaging stage we should ensure spatial continuity, good spatialsampling (CMP bin), trace density, azimuth/offset sampling for azimuthpreserving OVT migration, sufficient migration aperture and bandwidth. Wecan model for good illumination;9. To ensure optimum inversion –n particular pre-stack and AVOAz –ndreservoir characterization, wide azimuth, high-density survey designscan provide good azimuth/offset sampling and S/N. Low frequency data(broadband) will reduce the dependency on well data, high frequency dataand good spatial sampling will optimize resolution;10. Finally, there will be a quick look at some future developments likeongoing research efforts in the area of vibroseis sources, simultaneoussources and wavefield interpolation. Acquisition geophysicists who are naturally involved in survey design but alsoprocessing geophysicists and interpreters who wish to understand how acquisitionprogrammes can be tailored to tackle their problems. The course may alsobe beneficial to geoscience (geophysics and geology) students. Participants are assumed to have basic knowledge of seismic acquisition andprocessing techniques.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="56" class="ninja_table_row_56 nt_row_id_56"> <td>Geophysics</td><td>Seismic Acquisition</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=511" target="_blank" rel="noopener">Integrated Seismic Acquisition and Processing</a></b><br/><small><i>By Jack Bouska (Independent Consultant, Canada)</i></small></td><td>Jack Bouska</td><td></td><td>3d dense surveys dynamite imaging interpretation land seismic mapping migration near surface obc offshore onshore sand sensors sparse data survey design vibroseis wave propagation</td><td>A significant transformation is sweeping the seismic industry. The maturingof simultaneous source shooting, the introduction of ultra-small-lightweightautonomous recorders, along with the complimentary development of anew generation of highly portable, miniaturized impulsive seismic sources,all represent a true revolution in seismic acquisition technology. These newinventions are not only reducing the cost of conventional seismic, but are enablingultra high-quality 3D’ with mega-dense spatial sampling, in ways thatwere unimaginable only a decade ago. To truly take full advantage of theserecent innovations in source and recording technology requires abandoningsome outdated survey design and data processing practices in favor of moreappropriate methods tailored to modern seismic surveys. This course covers thefull breadth of knowledge and tools required to select and adjust survey designparameters for optimum imaging of the subsurface target, while honoringequipment limits and surface constraints. Students will learn a practical setof survey design techniques, using a combination of both presentations andin-class exercises, which are reinforced using specific examples of cutting-edgeseismic acquisition projects from around the globe. Each participant will gain exposure to the core principals of seismic 3D surveydesign, along with practice in selecting a balanced set of 3D acquisition geometryparameters for both optimum field implementation and competent dataprocessing. Students will also learn how those parameter choices directly affectacquisition operations, data processing and the quality of the final image volume. •oundations of seismic system integration and subsurface mapping;•ethods of acquiring seismic data, to image the subsurface;•ptimum processing of wide azimuth seismic data, to image the subsurface;•ntroduction to the survey design study, a data driven investigation intosurvey objectives, mapping requirements and geographic constraints;•he survey design procedure, techniques for selecting a balanced set of 3Dgeometry parameters;•ffshore Ocean Bottom Seismic 3D survey design, with worked examples;•nshore 3D seismic surveys using explosive sources, with worked examples;•nshore 3D seismic surveys using Vibroseis sources, with SimultaneousSource examples. The course is designed for:1. Seismic acquisition specialists who wish to learn more about designing cost-effectiveacquisition programmes, that are well matched to state-of-the-artprocessing and imaging techniques, along with strategies to exploit the futureof high channel count crews in order to create ultra-high quality images;2. Seismic processing specialists who wish to learn about how acquisitiongeometry parameter choice directly affects the ability to attenuate noise,and image the subsurface, in the context of a modern processing scheme3. Seismic interpreters with a desire to know more about both of the above. Participants are assumed to possess a working knowledge of the reflectionseismic method and its use in exploration and reservoir management.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="57" class="ninja_table_row_57 nt_row_id_57"> <td>Geophysics</td><td>Seismic Acquisition</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=507" target="_blank" rel="noopener">Seismic Acquisition Project Essentials: from Concept to Completion and Beyond</a></b><br/><small><i>By Jan de Bruin (Independent Consultant)</i></small></td><td>Jan de Bruin</td><td></td><td>finance hse procurement project management scouting seismic survey</td><td>Existing courses and books with the title ‘eismic acquisition’ypicallydeal with designing seismic surveys, and sometimes also with processingand evaluation of the acquired data.Design : Although I treat design in a somewhat less conventionalway, it is an important part of this course too, but other equallyimportant subjects receive equal attention. These are: Clients : Weneed to know who our clients are and understand what they wantand why they want it. Without them and their support we won’have a project, and there will be no point designing a seismic survey.Finance : It would be unfortunate to have the best possible design inthe world that will achieve your clients’bjectives and find out thatit is too expensive and the company will not set a budget aside for it.Procurement : A seismic survey is usually not bought “ff the shelf”We need to identify companies that can carry out the seismic surveyaccording to our design and our HSE requirements. We need to sign acontract with the company that we select to do the work. The coursewill also look at this from the perspective of seismic companies.Scouting : In order to come up with a good design that is not tooexpensive it is essential to scout the area where seismic data is to beacquired. Scouting costs relatively little and helps to avoid unpleasantand expensive surprises during execution.Communities : For the duration of the survey, and in case of successfor many years thereafter, we will be co-habitants of the area togetherwith the people who have lived there for generations. Thosepeople can and often will have a significant influence on the projectand can make it impossible to complete it.Execution : Even with good preparation, unexpected things will happenwhen the work in the field starts, making life more complex andmore interesting. When a crew of 1000 people is at work or a 10streamer vessel is acquiring data there is little room for mistakes andnot much time to decide what to do.Equipment : Equipment changes faster than any of the other elementsin this course. Ever since the beginning of seismic acquisitionthese changes have been towards larger quantities, better qualityand lower prices for seismic sources and receivers. This process isexpected to continue and the equipment used today may be verydifferent from equipment that will be used in the seismic industry 10years from now.Project management and Safety : These are the two pillars on whichany good project rests. Good project management includes goodsafety management. One could even argue that the two are largelythe same. Seismic acquisition is an industry where significant hazardsexist and serious accidents still happen. These can and must beavoided. To make seismic acquisition projects more successful.This is done by:•etter understanding the goals of clients of seismic surveys•etter preparing for a seismic survey, through scouting•aking a better design of the survey (design is also covered inother courses)•earning how to improve relations with people living in the area ofthe seismic survey•etter managing the financial aspects of a seismic survey 1. Introduction2. Clients3. Scouting4. Design5. Procurement6. Safety7. Communities8. Execution9. Finance10. Equipment11. Project management12. Outro This course suits professionals who want to understand why their lastseismic survey was not as successful as they expected.If you are either a client of seismic survey, in procurement, providingfinance support or in an HSE supporting or policing role related toseismic acquisition, then this course will be of interest to you.This course will be of interest for employees of seismic companieswho want to have a better understanding of how seismic surveysare conceived, initiated and managed in oil companies. More detailabout the exact reasons why oil companies want to acquire seismicdata and how they go about this will also be a focus.If you live in an area where a seismic survey will be conducted or ifyou are with an NGO in need of understanding more about seismicacquisition, then this course is for you. This course is essential for Geophysicists and staff in other disciplineswho are or will be involved in planning and executing seismic surveys.The course also contains important knowledge for those whoare providing support during the planning and execution of thesesurveys such as people in HSE, Procurement, and Finance. The coursewill be beneficial for those whose task it is to get the highest possiblevalue out of the data delivered by seismic surveys, for example Geologistsand Reservoir Engineers. It is only in the section about designthat some geophysical background will be helpful but this should notstop anyone subscribing. Regardless of their experience and education,those whose main task is to make important contributions tothe success of seismic surveys will benefit from this course. Partiallythis is because the project (the seismic survey) will benefit when allthose involved have a good understanding of what the others aredoing</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="58" class="ninja_table_row_58 nt_row_id_58"> <td>Geophysics</td><td>Seismic Acquisition</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=509" target="_blank" rel="noopener">Basic Geophysical Data Acquisition and Processing</a></b><br/><small><i>By Dr Jaap C. Mondt (Breakaway, Netherlands)</i></small></td><td>Jaap C. Mondt</td><td></td><td>2d 3d 4d seismic electrical surveying gpr gravity surveying imaging magnetics surveying result in depth rock properties shallow retraction signal-to-noise ratio value of information wave propagation</td><td>This course treats various geophysical methods, from gravity tomagnetics, electrical, electro-magnetic, refraction and reflectionseismic. It will be taught not only by explaining and discussing themethods, but above all by applying the theory in mainly Excel basedassignments.Various kinds of geophysical data are available. They are usually separatedinto Non-seismic and Seismic data. Non-seismic data (gravity,magnetics, electrical, electromagnetics, spectral, etc.) is the maindata used in shallow subsurface applications (engineering, mappingpollution, archaeology, etc.) and at the early exploration stage in thesearch for oil, gas or minerals. Seismic is the main subsurface evaluationtool for the EP industry, but it has its limitations. Therefore,non-seismic methods are used successfully as complementary toolsat the more mature exploration stages and even for production.In combination with seismic data they can significantly reduce theuncertainty of subsurface models as they measure different physicalproperties of the subsurface. Controlled Source EM, for example,responds to reservoir resistivity and can thus be used to differentiatebetween hydrocarbons and brine in a geological structure mappedby seismic.The main topics covered by the programme are:•ravity surveying•agnetics surveying•lectrical surveying•lectro-Magnetic surveying, including Ground Penetrating Radar•cquisition of shallow refraction seismic data•cquisition of reflection seismic data•hen to use 2D, 3D and 4D seismic / non-seismic•rinciples of wave propagation•asic designs of 2D and 3D seismic acquisition•rocessing of seismic and GPR data with the objectives ofimproving signal-to-noise ratio, vertical and lateral resolution•rom simple migration to Imaging•esult in depth (Time-to-Depth conversion)•hat to spend on a new survey, be-it a new survey or a reprocessingor re-interpretation project. Hence, to determine whetherthe expected reward (increase in value) is higher than the cost ofthe project. In short, what is the value of the new informationobtained (VOI: Value Of Information) At the end of the course, participants will have a good understandingof what information various geophysical data can give and forwhat purposes it can be used. This will enable them to specify therequirements for a survey or a reprocessing or interpretation project,either done in-house or by a specialised service provider.Other benefits include:•lace and value geophysical activities in a multi-disciplinarycontext•udge the merits of various geophysical techniques•etter liaise and collaborate with staff in related disciplines•ecognise artefacts and direct hydrocarbon indications on seismic•alue novel developments such as time lapse methods forhydrocarbon reservoir monitoring or pollution control. •art 1: The principles and limitations of Geophysical methods•art 2: Gravity surveying, Magnetic surveying, Electrical surveying•art 3: Electro-Magnetic surveying•art 4: Seismic Refraction surveying•art 5: Seismic Reflection surveying•art 6: Value of undertaking a new project (VOI) The course is designed for Geologists, Geophysicists and PetroleumEngineers involved in exploration and development of oil and gasfields and for those involved in projects related to the shallowsubsurface (monitoring pollution). In addition, it would be useful forthose dealing with the effects of production of a field (subsidence,earth tremors). A reasonable level of understanding of mathematics and physics isassumed.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="59" class="ninja_table_row_59 nt_row_id_59"> <td>Geophysics</td><td>Seismic Acquisition</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=513" target="_blank" rel="noopener">Advanced Seismic Data Acquisition and Processing</a></b><br/><small><i>By Dr Jaap C. Mondt (Breakaway, Netherlands)</i></small></td><td>Jaap C. Mondt</td><td></td><td>acquisition strategy migration nmo correction noise spread permeability porosity processing strategy reservoir rocks rock properties signal processing source rocks spacial aliasing symmetric sampling time-to-depth conversion value of information velocity model</td><td>The course deals with advanced methods of seismic acquisition andprocessing. It will be taught not only by explaining the methods,but above all by applying the theory in mainly Excel based assignments.Seismic data is one of the main sources of information on thesubsurface. We not only need to obtain the structure that couldcontain hydrocarbons, but also the rock properties so we candecide on whether we are dealing with reservoir rocks (sandstone,carbonates, even shales), sealing rocks (shales, salt) or source rocks(shales, coal). It is not only important to know what type of rock ispresent, but also what its porosity and permeability is: how easy dothe hydrocarbons flow through the rocks. To obtain the best imageof the subsurface we first need optimum acquisition. Optimummeans fit for purpose. There are several criteria that need to besatisfied. First of all, the area covered during acquisition should bethe prospect area extended sufficiently to provide fold-fold andfully migrated data. An acquisition principle that should be adheredto as much as possible is symmetric sampling, which means equalshot and receiver spacing and equal in-line and cross-line distances(for a 3D). A noise spread (trial acquisition with closely spacedreceivers and shots) is acquired in each new area to determine theneeded shot and receiver intervals, the bandwidth, etc. The shotand receiver station spacing should be such that no spatial aliasingof the data occurs. Surface and subsurface diagrams are useful tosee what CMP spacing and offsets in each CMP gather result fromthe surface geometry of shots and receivers. The data recorded isthe ground motion which gives a continuous (analogue) signal intime which needs to be digitized for the processing. This digitizationneeds to be done so that neither temporal nor spatial aliasingoccurs. Namely, by aliasing information will be lost. Hence, thecomplete wave-field which arrives at the surface must be faithfullyrepresented by the discrete/digital data.Although all the information is present in the so-called shot orfield records, processing is needed to make them accessible forinterpretation. In interpretation, we try to obtain a true image ofthe “eology”f the subsurface. Processing can be divided into a)signal processing steps and b) wave propagation based processingsteps. Signal processing steps are, for example, static corrections,removal of shot-generated noise by velocity filtering, shorteningof the wavelet by de-convolution, NMO correction, etc. Thewave-propagation part consists of migration or imaging. For wavepropagation we need, in principle, to use equations describingfull elastic wave propagation in an inhomogeneous, anisotropic,visco-elastic earth (as that is what really happens in the subsurface).However, these equations would lead to very complicated andcomputer intensive processing algorithms. So, we usually simplifyour description of the wave propagation. What we do is to use, asphrased by Ian Jones and others, "appropriate approximations".The one most commonly used is the one-way acoustic waveequation which describes only a single reflection per reflectionray-path and ignores density. It only uses a velocity depth modeland only considers P-wave propagation. This will provide us, forexample, with migration algorithms/operators (for time- as well asdepth migration) that will still do a reasonably correct summationof acquired data. It will give a migration output that still shows,maybe not correctly, the results of anisotropy, attenuation, waveconversions, shear velocities, etc. Despite the use of this acousticapproximation in our processing, amplitudes can be used (canthey?) to determine pore-fluids and pre-stack migrated data thatcan be used in AVA analysis for deriving shear wave properties.But note that if we model, as in inversion, a synthetic geophysicalquantity, say related to amplitudes, such as the reflection coefficientwe need (do we?) to include densities across the interface and forAVA we need to include density and shear velocity to interpret thepre-stack seismic amplitudes (as the effect of these properties iscontained in the observed data).All of this will be treated in this course. At the end of the course participants will have a good understandingof what information seismic data can give and for whatpurposes in Exploration and Production it can be used. This willenable them to specify the requirements for a survey, either done bythemselves of by a special service provider.Other benefits include:•lace and value geophysical activities in a multi-disciplinarycontext•udge the merits of various seismic geophysical techniques•etter liaise and collaborate with staff in related disciplines•ecognise artefacts and direct hydrocarbon indications on seismic•alue novel developments such as time lapse methods forhydrocarbon reservoir monitoring •art 1: The role of seismic in the Exploration and Production ofHydrocarbons•art 2: Seismic Acquisition Strategies•art 3: Seismic processing Strategies•art 4: Time-to-Depth conversion, Direct Hydrocarbon Indicators•art 5: Value of Information: How much to spend on new acquisitionand/or new processing The course is designed for geophysicists involved in designingand supervising seismic acquisition and processing, and for thoseinvolved in specifying/supervising the acquisition and processingdone by service companies. Participants should have a basic understanding of seismic acquisitionand processing and general knowledge of the role of seismic inexploration and production of hydrocarbons.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="60" class="ninja_table_row_60 nt_row_id_60"> <td>Geophysics</td><td>Seismic Acquisition</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=759" target="_blank" rel="noopener">Compressive Sensing: Explained and Challenged</a></b><br/><small><i>By Jan de Bruin</i></small></td><td>Jan de Bruin</td><td></td><td></td><td>This course will, after all the euphoria about Compressive Sensing (CS), serve to get our feet back on the ground by taking a fresh and objective view. What works and what doesn’t? Which promises are realistic and which are less so? To decide whether or not to use CS we should not mainly, or solely, rely on mathematicians telling us that it works, with no recourse to any challenge of that viewpoint. A fair amount of understanding is necessary before challenging CS is possible, appropriate, and has a chance to succeed. This course provides that understanding.Course OutlineBelow are fifteen topics in the order in which they will be presented.IntroductionThe dataSignal and noise, coherent and incoherentThe Measurement domain and the sparse domainDictionaries and atomsSparse or CompressibleOther areas where CS is usedDynamic rangeResolutionRandomization and sparsificationAdaptive and non-adaptiveReconstructionThresholdingAnalysis of some published examplesThe theory</td><td>in-house-true</td><td>new-course-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="61" class="ninja_table_row_61 nt_row_id_61"> <td>Geophysics</td><td>Seismic Processing</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=517" target="_blank" rel="noopener">Introduction to Data Analysis: Concepts and Examples</a></b><br/><small><i>By Dr Robert Godfrey (Robert Godfrey Geophysics Inc., Canada)</i></small></td><td>Robert Godfrey</td><td></td><td>4d avo depth migration fractures imaging impedance reflection reservoir characterization rock physics signal processing time lapse tomography</td><td>The course covers a range of advanced data analysis topics includingnovel signal processing techniques, pre-stack depth migration, reservoircharacterization, time lapse analysis and the road ahead.The free on-line books by Jon F. Claerbout, material from SEG Wikiand papers published in Geophysics, The Leading Edge and SEGExpanded Abstracts are used to provide technical background forthe course topics. 1. Suggest acquisition strategies toa. broaden spectrum (both low and high)b. reduce acquisition cost where appropriatec. provide superior illumination andd. improve conventional wave imaging using shear waves tohighlight faults/fractures, low compressional wave impedancecontrasts and gas-effected areas.2. Advise and recommend key steps in data processing workflows.3. Choose appropriate pre-stack depth migration algorithms to imageexpected dip range (e.g. Kirchhoff, Beam, RTM).4. Advise on velocity-depth model building workflows (e.g. GridTomography or FWI).5. Decide on the applicability of applying AVO and what elasticattributes to estimate.6. Define optimal petrophysical parameters to be estimated usingelastic attributes and an associated workflow including probabilityanalysis if appropriate. 1. Signal Processing2. Novel Seismic Acquisition3. Multiple Attenuation4. Pre-Stack Depth Migration5. AVO & Rock Physics6. Quantitative Interpretation7. Time-Lapse Seismic8. The Road Ahead The intended audiences for this course are geoscientists-in-training,seismic data processors, petroleum geologists, seismic interpretersand operational geophysicists who are seeking to expand theirknowledge base on modern concepts in geophysical data analysis. Participants are expected to have a basic knowledge of the fundamentalsof data processing and some experience in interpretation.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="62" class="ninja_table_row_62 nt_row_id_62"> <td>Geophysics</td><td>Seismic Processing</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=525" target="_blank" rel="noopener">Velocities, Imaging, and Waveform Inversion – The Evolution of Characterizing the Earth’s Subsurface</a></b><br/><small><i>By Dr Ian Jones (Brightskies Geoscience, United Kingdom)</i></small></td><td>Ian Jones</td><td></td><td>4d avo deconvolution inversion migration multiple elimination noise cancellation signal processing static corrections velocity analysis</td><td>In using sound waves to characterise the Earth’ subsurface, we canemploy ray-theory and/or wave-theory, and both migration algorithmsand velocity estimation schemes employ one or other of thesetheoretical descriptions. In this course, we’l review the evolution ofthe industry’ approaches to building earth models via velocity estimationand imaging, outlining the evolution from ray tomography tofull waveform inversion, and look towards the emerging possibilitiesfor replacing imaging techniques with direct subsurface parameterinversion methods.The approach will be non-mathematical, concentrating on an intuitiveunderstanding of the principles, demonstrating them via casehistories.The course will commence with a brief overview of different migrationschemes, and cover the motivations for building detailedvelocity models, and briefly discuss the inherent limitations on ourability to build a detailed model. Current-day practice will be covered,exemplified via several case-studies, and we will then discussthe newer techniques such as waveform inversion and least-squaresmigration. The approach will not be mathematical, but rather willtry to concentrate on an intuitive understanding of the principles,and demonstrate them via case histories. The course schedule will bedivided into the following sections:•hy do we need a detailed velocity model? Including a brief reviewof migration schemes.•ow accurate can we make an image and how detailed can weget? We’l discus the sources of uncertainty, non-uniqueness andambiguity, as well as the intrinsic limits on resolution•urrent industrial practice: Iterative model update with both ray-based tomography and waveform methods in order to achieve‘rue amplitude’ubsurface information.•hat might come next? Discussing direct inversion of subsurfaceparameters as an alternative to simply migrating data.Following this course, participants should ideally understand howmigration works, in terms of the approximations involved, and howthis relates to the geology to be imaged. They should appreciate thelimitations of current and future imaging and velocity estimationtechnology, so as to be able to decide what model building techniqueshould be employed to image a given geological objective.And finally, to appreciate the potential for a radical change in currentindustrial practise, moving from a sequential imaging route (via migratedimages) to a closed-loop inversion route (directly deliveringsubsurface attributes). Upon completion of the course, participants will be able to:•nderstand how migration works, in terms of the approximationsinvolved, and how this relates to the geology to be imaged.•ppreciate the limitations of current and future imaging andvelocity estimation technology, so as to be able to decide whatmodel building technique should be employed to image a givengeological objective.•ppreciate the potential for a radical change in current industrialpractise, moving from and imaging route (via migrated images) toan inversions route (delivering subsurface attributes) The course will cover the building detailed velocity models for imaging,and briefly discuss the inherent limitations on our ability to builda detailed model. Current-day practice will be covered, exemplifiedvia case-studies, and we will then discuss the newer techniques suchas waveform inversion and least-squares migration. The approachwill not be mathematical, but rather will concentrate on an intuitiveunderstanding of the principles, demonstrated via case histories.The schedule includes:•hy do we need a detailed velocity model?(Review of migration schemes)•ow accurate does an image need to be and how detailed canwe get?(Sources of uncertainty, non-uniqueness and ambiguity, limits onresolution)•urrent industrial practice: Iterative model update(ray-based tomography and waveform inversion methods)•hat might come next?(direct inversion of subsurface parameters) The course is designed for:practising geoscientists who desire to better understand the principlesand limitations of both current and emerging technologiesinvolved in subsurface parameter estimation and imaging, and geosciencestudents. A general knowledge of geophysics.</td><td>in-house-true</td><td></td><td>has-book-true</td><td></td><td></td><td></td> </tr> <tr data-row_id="63" class="ninja_table_row_63 nt_row_id_63"> <td>Geophysics</td><td>Seismic Processing</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=515" target="_blank" rel="noopener">A Comprehensive Overview of Seismic Data Processing Steps</a></b><br/><small><i>By Piet Gerritsma (Gerritsma Geophysical Training and Consultancy, Netherlands)</i></small></td><td>Piet Gerritsma</td><td></td><td>4d avo deconvolution inversion migration multiple elimination noise cancellation signal processing static corrections velocity analysis</td><td>Seismic data processing can be characterized by the application of asequence of processes, where for each of these processes there are anumber of different approaches. This course provides a comprehensiveoverview of the steps that are commonly applied in seismic dataprocessing and discusses for each step the alternative implementationstogether with their inherent assumptions and strengths andweaknesses. This course provides the participants with a workingknowledge of the different processing methods and enables themto assess the quality of a processing result. It can serve as a startingpoint for further study and/or enable them to be a member of aprocessing and/or multidisciplinary team. At the end of the course the participants will have obtained anunderstanding and appreciation of the many alternative processingapproaches that are representative for the practice of current seismicdata processing. The course emphasizes for each process the variousexisting underlying geophysical models. Many examples will beshown to illustrate the material; theory with references will be included;a handout that covers all course material will be made available. The following steps in seismic data processing will be discussed:1. Introduction to data acquisition practises2. Static corrections3. Velocity analysis4. Deconvolution5. Signal-to-noise enhancement techniques6. Multiple elimination7. Stacking8. Migration: time migration and depth migration9. Velocity model building10. Introduction to AVO, 4D Seismic, and Seismic Inversion Students, starting geophysicists, interpreters and geologists, petrophysicistsand reservoir engineers who wish to understand seismicdata processing either as an introduction for further study and/or asa knowledgeable member of a multidisciplinary team. Course participants should be interested in seismic data processing;a background in science will be sufficient.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="64" class="ninja_table_row_64 nt_row_id_64"> <td>Geophysics</td><td>Seismic Processing</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=527" target="_blank" rel="noopener">An Introduction to Velocity Model Building</a></b><br/><small><i>By Dr Ian Jones (Brightskies Geoscience, United Kingdom)</i></small></td><td>Ian Jones</td><td></td><td>3d anisotropy depth migration imaging inversion rtm time migration tomography vsp</td><td>The course will commence with an overview of different migrationschemes, and cover the motivations for building detailed velocitymodels, and briefly discuss the inherent limitations on our ability tobuild a detailed model.Current-day practice will be covered, exemplified via many case-studies,and we will briefly discuss the less well known and emergingtechniques. The approach will mostly be non-mathematical, andwill rather try to concentrate on an intuitive understanding of theprinciples, and demonstrate them via case histories. The bias in thiscourse is towards those techniques that have seen widespread industrialuse over the past 40 years. Unfortunately, some topics willnot be covered, in-part due to the time constraints: these omissionswill include consideration of VSP and multi-component data, andMarchenko imaging. The course objective is to provide the participants a firm understandingof the processes and assumptions involved in buildingvelocity-depth models and of the limitations of various migrationalgorithms For the topics listed below, real data examples will be used to demonstratethe application and limitation of each technique.Why do we need a detailed velocity model?•eview of migration schemes•he limitations of time migration and benefits of depth migration•nell’ law and how to ignore it•ow does depth migration differ from time migration?•s depth migration always necessary?•igration using ray methods (Kirchhoff, beam, CRAM, etc.)•igrating using wavefield extrapolation methods (WEM, RTM,etc.)•ne-way versus two-way propagation•reating gathers in wavefield extrapolation methods•re-processing considerations for RTMHow detailed can we get?•ources of uncertainty•on-uniqueness and ambiguity•imits on resolutionResolving short-scale-length velocity anomalies:•nisotropy versus heterogeneity (and other higher order moveouteffects)•he mechanics of tomographic inversion with ray theory•arametric versus non-parametric picking of residual moveout•tructural constraints, MAZ, OVT, and Q tomography•he mechanics of tomographic inversion with wavefield extrapolationtheory (FWI)Examples of current industrial practice for various geological settings(time permitting):•esolving near-surface velocity anomalies•eismic response to strong vertical velocity change (e.g. chalk,basalt, salt)•eismic response to strong lateral velocity change (e.g. salt walls,lateral terminations)•omparisons of ray tomographic and FWI models for specificcase studiesThe Future: emerging R&D directions (time permitting)•aveform inversion developments•east squares migration•igrating multiples•ull wavefield imaging•cattered wavefield imaging•‘daptive optical imaging’•ayesian uncertainty estimation (putting error bars on images) Geophysicists with an interest in migration and velocity model buildingand geologists (with a basic knowledge of data processing) whowish to understand a bit more about how the images they look atare created. The course is designed to be followed by anyone with a broad geosciencebackground: no specific detailed foreknowledge is required,although a familiarity with geophysical terminology will be useful.</td><td>in-house-true</td><td></td><td>has-book-true</td><td></td><td></td><td></td> </tr> <tr data-row_id="65" class="ninja_table_row_65 nt_row_id_65"> <td>Geophysics</td><td>Seismic Processing</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=521" target="_blank" rel="noopener">Seismic Multiple Removal Techniques: Past, Present and Future</a></b><br/><small><i>By Dr Eric Verschuur (Delft University of Technology, Netherlands)</i></small></td><td>Eric Verschuur</td><td></td><td>3d deconvolution extrapolation filtering fourier imaging interpolation inversion migration radon transform</td><td>The main objective of this course is to provide the audience with anoverview of the techniques in seismic multiple removal, starting withthe deconvolution-based methods from the 1960s, via the move-out discrimination techniques of the 1980s and ending up withwave-equation based methods from the 1990s and their 3D extensionsas developed in the 2000s. Furthermore, the current challengesin multiple removal and their relation with seismic imaging and inversionare treated. A secondary objective is to discuss more generalprocessing concepts such as high-resolution seismic data transforms(Fourier, Radon), adaptive filtering techniques, wave-equation basedforward and inverse wave propagation and the processing of seismicdata in different transform domains. For each method some briefdescription of the theory in terms of mathematics is given. However,the emphasis in this course is not to thoroughly treat the mathematicsbut to present some understanding of the workings of eachmethod. At the end of each lecture, a list of relevant articles in the open literaturewill be specified. The course is subdivided in 10 lectures, eachof them being approximately 30-45 minutes. Within each lecture,examples of the described concepts on synthetic and field data willplay an important role.Lecture 1: Multiples ... what’ the problem?•lassification of multiple reflections•haracteristics of multiples•mpact on seismic imaging and interpretation•ategories of multiple removal methodsLecture 2: Multiple removal based on move-out and dip discrimination•rinciple of multiple removal by move-out discrimination•-K and Radon transforms•ultiple removal by filtering in the FK or Radon domain•owards high-resolution Radon transforms•imitations of multiple removal by move-out discrimination•ultiple removal by target-oriented dip filteringLecture 3: Predictive deconvolution•onvolution and correlation concept•esigning adaptive filters by least-squares optimisation•redictive deconvolution basics•xtending the predictive deconvolution conceptLecture 4: Multiple removal by wave field extrapolation•orward and inverse wave field extrapolation•ultiple prediction by wave field extrapolation•pplication in the wave number and linear Radon domainLecture 5: Principles of surface-related multiple elimination•erivation of SRME for the 1D situation•ncluding the source characteristics•terative implementation of SRME•ormulation of SRME for the 2D and 3D situation•elation between multiple prediction and subtraction methodsLecture 6: Practical considerations for surface-related multiple elimination•ffect of missing data on SRME•nterpolation of missing near offsets•pplication of SRME in different data domains•hallow water multiple removal strategyLecture 7: Adaptive subtraction of predicted multiples•east squares and L1-norm subtraction•attern recognition and other multiple subtraction techniquesLecture 8: Towards 3D multiple removal•ultiples in complex 3D environments•D SRME: theory and practice•D SRME: solutions via data interpolationLecture 9: Internal multiple removal•nternal multiple removal by move-out discrimination•xtending the SRME concept to internal multiples•nternal multiple removal by inverse scatteringLecture 10: Removing or using multiples?•ransforming multiple into primaries•stimation of primaries by sparse inversion•ncluding multiples in the migration process•ncluding multiples in the inversion processFor the 2-days course , especially the second part of the course, willbe more elaborated with extra topics being:•ore elaborate discussion on adaptive subtraction techniques(Lecture 7)•ore extensive explanation on internal multiple removal (Lecture 9)•ncluding the recently developed EPSI (Estimation of Primaries bySpares Inversion) methodology (Lecture 10)•ncluding an extensive discussion on using surface multiples inImaging (Lecture 10) The target audience is composed of people involved in seismic processing,imaging and inversion. The mathematical content is kept toa minimum level with a strong link to the involved physical concepts,amplified by graphical illustrations. The audience is expected to haveprior knowledge at a B.Sc./M.Sc. level on processing concepts suchas convolution, correlation and Fourier transforms and some basicknowledge on wave theory. Participants should have a basic knowledge of:•asic signal processing (convolution, correlation, Fourier transform);•asic seismic processing (preprocessing, imaging);•asic knowledge on the acoustic wave equation and wave propagation.</td><td>in-house-true</td><td></td><td>has-book-true</td><td>has-e-lecture-true</td><td>energy-transition-true</td><td></td> </tr> <tr data-row_id="66" class="ninja_table_row_66 nt_row_id_66"> <td>Geophysics</td><td>Seismic Processing</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=519" target="_blank" rel="noopener">Understanding Seismic Anisotropy in Exploration and Exploitation: Hands On</a></b><br/><small><i>By Dr Leon Thomsen (Delta Geophysics, United States)</i></small></td><td>Leon Thomsen</td><td></td><td>avo depth conversion fractures imaging multicomponent p-wave pore pressure reciprocity reservoir characterization rock physics s-wave wide azimuth</td><td>This course covers all areas of applied seismic anisotropy, with classexercises and ample time for full discussion. Because anisotropy issuch a fundamental concept, it covers topics in seismic acquisition,processing, imaging and interpretation, all based on seismic rockphysics. This is not a “ethods course”ut rather a “oncept course” familiarizingthe students with essential concepts, enabling them to askthe right questions in future conversations, rather than to operateparticular software packages. 1. Physical principles2. P-waves: imaging3. P-waves: characterization4. S-waves5. C-waves6. Epilogue Geophysicists should attend who have a working knowledge of conventionalexploration geophysics and wonder how it can be that weuse isotropic concepts to acquire and analyze data that come fromrocks that, after only brief thoughtful consideration, must clearly beanisotropic.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="67" class="ninja_table_row_67 nt_row_id_67"> <td>Geophysics</td><td>Seismic Processing</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=529" target="_blank" rel="noopener">Borehole Seismic Fundamentals and Introduction to Advanced Techniques</a></b><br/><small><i>By Allan Campbell (VSP Consultants LLC, United States)</i></small></td><td>Allan Campbell</td><td></td><td>2d 3d 4d anisotropy attenuation avo borehole geophysics case study fractures full wavefield imaging kirchhoff land seismic marine seismic offshore oil and gas rtm time-lapse tomography traveltime velocities vsp vti</td><td>This course has 6 sections. The course moves from giving a basicunderstanding of the most common surveys towards the newesttechniques being developed to solve modern problems.1. Introduction to Vertical Seismic ProfilingThe VSP techniques used in industry are introduced. Basics ofwireline acquisition, and an introduction to fiber based acquisitionare covered. This section gives a brief overview of the value of allthe commonly used borehole seismic techniques, from checkshotthrough to 3D VSP.2. The BasicsCheckshot (velocity survey) and zero-offset VSPs are widely used, aresimple to acquire and process, and have huge value. This section willdescribe acquisition, processing and interpretation of these basic, butpossibly the most important, surveys.3. 2D and 3D ImagingThis section will focus on designing and interpreting walkaway VSPand 3D VSP surveys. Down-hole receivers create the opportunity forhigher resolution images than surface seismic can provide, and canprovide images in poor seismic imaging areas, or images where surfaceaccess is difficult. Advanced processing techniques will be discussed.Specifics of survey planning and acquisition will be covered.4. Anisotropy and MoreThe anisotropy module will focus on extracting VTI and HTI anisotropyparameters from walkaway VSP and 3D VSP surveys. Seismic maybe improperly imaged due to poor anisotropy assumptions. Stressand fracturing information may be deduced from seismic and validatedwith VSP. Having receivers down-hole and sources at the surfacecreates an ideal opportunity to measure anisotropy in-situ. Groundtruth measurement of AVO can be made with receivers downhole,this section describes the various VSP AVO techniques in commonuse. Downhole arrays are also ideal for locating multiple generatorsand measuring Q which we cover in this section.5. Reservoir Monitoring and Reservoir PropertiesThis section focuses on time-lapse 3D VSP, which can observe reservoirchanges with a greater precision than is possible with surfaceseismic. There is an overview of fracture detection and orientationwith VSPs. Elastic FWI is being developed to measure the reservoir’elastic properties, and will be briefly covered. A discussion on veryhigh resolution imaging and tomography with Crosswell seismicfinishes the module.6. Advanced AcquisitionTechnology marches forward as limitations are reached in wireline acquisition.Putting the receivers in the drill string to get real-time VSPs(while drilling) is becoming routine. Optical fiber (DAS) recording isan emerging technology which enables efficient, fit-for-purpose VSPsurveys with cost benefits over traditional wireline technology. Upon completion of the course, participants will know the basics ofacquiring and processing borehole seismic data. They will also befamiliar with the latest borehole seismic techniques in:•igh resolution imaging using 2D and 3D VSP surveys;•nisotropy determination and fracture analysis;•eservoir monitoring using time lapse VSP and crosswell seismic;•lternative acquisition schemes such as SWD and DAS.Participants will have a better understanding of the role of boreholeseismic techniques in hydrocarbon exploration and production. Theywill be able to more knowledgeably participate in the design, planningand execution of advanced surveys and be comfortable with theinterpretation of these surveys. The course will contain the following modules:1. Introduction to Vertical Seismic Profiling (1.5hrs)2. The Basics (2 hrs)a. Checkshot VSPb. Zero Offset VSP3. VSP Imaging: 2D and 3D Techniques (2 hrs)a. Survey design and modelingb. Processing- model building, tomography, imaging techniques (Kirchhoff,RTM)c. 2D imaging- Offset VSP, Walkaway VSPd. 3D imaging4. Anisotropy and More (3 hrs)a. Measuring anisotropy with walkaway and 3D VSPs-VTI and HTI, fracturesb. AVO Analysisc. Techniques to locate multiple generators with VSP datad. Q estimation and Q compensation with VSP data5. Reservoir Monitoring and Reservoir Properties (1.5 hrs)a. Time Lapse 3D VSP for reservoir monitoringb. Elastic FWI (VSP Inversion)6. Advanced Acquisition (1.5hrs)a. Seismic while drillingb. Distributed Acoustic SensingTiming of sections may change. The course is targeted toward those who have a basic understandingof surface seismic acquisition and processing, but only limited knowledgeof borehole seismic. The course is designed to help participantsidentify borehole seismic solutions to common seismic interpretationproblems. It is also be useful for those geophysicists needing higherresolution images than surface seismic can provide, and those geophysicistswho need to validate seismic processing parameters andimaging models using borehole seismic. Lastly, the course is relevantfor geophysicists wanting to learn how to use borehole seismic as acost-effective reservoir monitoring tool. Participants are assumed to have knowledge of seismic responseto earth reflectivity. Participants should be aware of common welllogging services.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="68" class="ninja_table_row_68 nt_row_id_68"> <td>Geophysics</td><td>Seismic Processing</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=755" target="_blank" rel="noopener">A Guided Tour of Seismic Processing of Multiples: Concepts, Applications, Trends</a></b><br/><small><i>By Dr Clément Kostov</i></small></td><td>Clément Kostov</td><td></td><td></td><td>An outline of the ten stops on this guided tour of the topic of multiples in seismic data processing is as follows:First session:Examples of multiples in seismic data, definitions of multiples, numerical modeling, synthetics datasets.Multiple scattering at different scales in acoustic experiments (VSP, sonic, sea-bed profiling, crosswell, sonic).Using VSP and sonic data to gain understanding of multiples in surface seismic data.Multiples in model building and imaging seismic data processing workflows. Multiples as noise or as signal.Prediction methods for free-surface multiples and analysis of their properties; data-driven and model-based approaches.Adaptive subtractions and results assessmentSecond session:Signal processing transforms and their applications to multiplesUp-down deconvolution and inversion methods for sea-bed and streamer dataPrediction methods for internal multiples; perspectives from Marchenko and Inverse Scattering Series theories.Case study examples: deep-water marine, shallow-water marine, land (based on published case studies).Wrap-up: historical developments, trends, emerging technologies.For each of the ten topics above, there will be 20 min allocated, for a short presentation and time for questions and discussion. A handout and a reading list for each topic will be part of the material distributed before the class.</td><td>in-house-true</td><td>new-course-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="69" class="ninja_table_row_69 nt_row_id_69"> <td>Geophysics</td><td>Surface Imaging</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=683" target="_blank" rel="noopener">The Interpreter’s Guide to Depth Imaging</a></b><br/><small><i>By Dr Scott MacKay</i></small></td><td>Scott MacKay</td><td></td><td>3d anisotropy depth migration interpretation inversion kirchhoffmarine seismic rtm seismic attributes seismograms workflows</td><td>An intuitive approach to understanding the interpretive aspects ofdepth imaging, and the risk of using time migration. The coursereviews depth-conversion goals and compares time and depth migrationusing case histories. Next is an overview of depth migrationalgorithms in common use, Kirchhoff (ray) versus RTM (wave). Industrymethodologies are presented for tomographic velocity updatesand full-waveform inversion. This course demonstrates intuitive QCsand provides spreadsheet analysis tools for planning and ensuringrealistic velocity-resolution goals and stable imaging solutions. Theimportance of defining the polarity and phase of the seismic is presentedas part of the database-validation process used to identify andremove inconsistencies between interpreted surfaces and well topsbefore deriving anisotropic parameters. The course continues witha robust approach to well-top calibration of the final depth-imagingdeliverables. Freeware is provided to provide a statistical method ofdepth calibration and estimating depth uncertainty. Finally, there is areview of using attributes from depth imaging for azimuthal stressdefinition and implementing machine learning for classification andestimation.</td><td>in-house-true</td><td>new-course-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="70" class="ninja_table_row_70 nt_row_id_70"> <td>Geophysics</td><td>Surface Imaging</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=543" target="_blank" rel="noopener">Full-Waveform Inversion: Where are the Anisotropic Parameters Hiding?</a></b><br/><small><i>By Prof. Tariq Alkhalifah (KAUST, Saudi Arabia)</i></small></td><td>Tariq Alkhalifah</td><td></td><td>anisotropy imaging isotropy migration minerals oil and gas velocities wave equation wave propagation</td><td>The course starts by introducing the fundamentals of full-waveforminversion (FWI) starting from its basic definition. It focuses on themodel update issues and provides analysis of its probable success inconverging to a plausible model. In the course we will discuss themany challenges we face in applying FWI on seismic data and introducemodern day proposed solutions to these challenges. The focusof the course will be on FWI applied to anisotropic media. As a result,the course will also introduce anisotropy, its optimal parametrizationand wavefield simulation in such media. Practical multi-parameterinversion for anisotropic parameters requires an optimal FWI setup.We will discuss such a setup, which includes the proper parametrizationof the medium and data access scheme necessary for a potentialconvergence to a plausible anisotropic model. Upon completion of the course, participants will be able to understand:•he scientific foundation behind full-waveform inversion;•WI challenges;•ave propagation in anisotropic media;•nisotropy + migration velocity analysis;•nisotropy + FWI. I - Introduction to seismic inversion:1. What is inversion?2. What do we mean by full waveform inversion?3. The Algorithm.II - The elements of seismic waveform inversion:1. Model and data.2. The objective function.3. The update.4. The sensitivity kernel.5. The non-linear issue.6. Examples.III - Seismic anisotropy:1. Definition and parameters.2. The acoustic anisotropic wave equation.3. Fundamental issues.IV - FWI and anisotropy:1. Multi-parameter inversion.2. The right set of parameters.3. The anisotropic sensitivity kernels.4. Getting an initial model.5. Anisotropy and MVA. The course is designed for geophysics, mathematicians and physicistsworking on problems related to seismic imaging of the Earth andbuilding the necessary velocity models to do so. Participants should have some knowledge on the physics of seismicwave propagation.</td><td>in-house-true</td><td></td><td>has-book-true</td><td></td><td></td><td></td> </tr> <tr data-row_id="71" class="ninja_table_row_71 nt_row_id_71"> <td>Geophysics</td><td>Surface Imaging</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=531" target="_blank" rel="noopener">Applied Depth Imaging</a></b><br/><small><i>By Dr Ruben Martinez (Reservoir Geoscience, United States)</i></small></td><td>Ruben Martinez</td><td></td><td>3d anisotropy depth migration full wavefield interpretation modeling near surface rtm salt shale traveltime water wide azimuth</td><td>Hydrocarbons are increasingly more difficult to find because reservoirsare often located in geologically complex areas. This geologicalcomplexity has motivated a significant paradigm shift from timeimaging towards the extensive use of seismic depth imaging. Depthimaging improves the definition of the structural and stratigraphicframeworks and provides a better assessment and mitigation of riskin E&P.The goal of this course is for the participant to gain an understandingof the basic concepts and practical aspects used in building velocitymodels and seismic images in the depth domain in an intuitive manner.The participant will also be exposed to depth imaging practicescurrently in use by geophysicists and geoscientists through the descriptionof workflows illustrated with synthetic and field data examples.The practical aspects are emphasized throughout the course.At the end of the course, the emerging depth imaging technologiesare reviewed for the participant to make informed decisions aboutwhat technology to use in future E&P projects. The aim of this course is focused on depth imaging concepts andapplications for complex geology areas. At the end of the course, theparticipant will be able to:1. Understand the fundamentals of seismic migration;2. Explain the pitfalls of time imaging;3. Describe the differences between time and depth seismic imagingfor simple and complex geological structures and stratigraphy;4. Discuss basic seismic acquisition parameters influencing the qualityof the seismic images in complex geology areas;5. Understand the strengths and weaknesses of the most popularprestack depth migration methods;6. Recognize the limitations of the seismic data to produce optimumseismic images for complex structural and stratigraphic frameworks;7. Describe velocity estimation methods required for specific explorationand field development scenarios;8. Explain the impact of velocity anisotropy on the quality of depthimages and its effect on the spatial positioning of geologicalstructures and well ties;9. Define and/ or choose depth imaging workflows for specific E&Pscenarios such as sub-salt, pre-salt, thrust belt, sub-basalt, complexcarbonates and clastics;10. Judge the quality of seismic depth images for a geologic interpretation;11. Interpret depth-imaged data;12. Make informed decisions to choose depth imaging workflowsand technologies to be used in a given exploration or field developmentproject;13. Effectively communicate about emerging depth imaging methodsand technology. 1. Introduction to the course.2. Seismic migration fundamentals.3. Understanding seismic velocities.4. Practical understanding of velocity anisotropy.5. Review of velocity estimation methods used for depth imaging.6. Seismic data conditioning for depth imaging.7. Isotropic and anisotropic velocity model building and imaging inpractice.8. Optimization of seismic images for a more reliable geologic interpretation.9. Overview of emerging velocity model building and imaging methods. This course is designed for geophysicists, geoscientists and timeprocessing and interpretation specialists seeking a practical understandingof depth velocity model building and imaging. It is desirable that the participants have a basic knowledge aboutseismic acquisition, processing and interpretation. Some basics ofstructural geology, stratigraphy and well logging are also desirablebut not required.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="72" class="ninja_table_row_72 nt_row_id_72"> <td>Geophysics</td><td>Surface Imaging</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=537" target="_blank" rel="noopener">Beyond Conventional Seismic Imaging</a></b><br/><small><i>By Prof. Evgeny Landa (Tel Aviv University, Israel)</i></small></td><td>Evgeny Landa</td><td></td><td>depth migration diffraction faults fractures full wavefield imaging inversion stacking time migration traveltime uncertainty unconventional velocities wave propagation</td><td>I. Wavefield Data AnalysisTime images usually provide sufficient information for a variety ofsubsurface models of moderate complexity and facilitate the estimationof the model for depth migration. Improving the quality of timesections remains the focus of intensive research. In particular, a lotof efforts are directed towards improving the accuracy of moveoutcorrection. The proposed course discusses time imaging proceduressuch as Multifocusing and Common Reflection Surface when eachimage trace is constructed by stacking traces which need not belongto the same CMP gather. In this case a new and more general moveoutcorrection is requested. These new methods open a way forreliable wavefield analysis and wavefront parameters estimation. Thelatest represents a basis for different applications including signal enhancement,velocity model building, statics correction, AVO analysis.II. Seismic DiffractionCurrently applied seismic processing and imaging are almost exclusivelybased on seismic reflection. The latest is the response tocontinuity in the subsurface. At the same time accurate and reliableimaging of small scale geological elements and discontinuities of thesubsurface such as faults, unconformity, fractures etc. are a key toimprove seismic resolution. In unconventional reservoirs the mainobjective is detection of fracture corridors. Small scale objects giverise to a diffraction response. Use of seismic diffraction is a rapidlyemerging technology which has tremendous potential to reduceexploration and production risks and increase oil and gas recovery.The course integrates elements of the theory of wave propagation,diffraction modeling and imaging, and interpretation. The main objectivesare: understanding the role of small and medium scale subsurfaceobjects and elements in forming the total seismic wavefieldand using diffraction for imaging.III. Imaging without precise knowledge of the subsurfacevelocity modelIn the proposed course I introduce a way to look at model-independentseismic imaging using the quantum mechanics concept. CanFeynman’ path-integral idea be used for seismic imaging? We canconstruct the seismic image by summation over the contributionsof elementary signals propagated along a representative sample ofpossible paths between the source and receiver points. When the velocitymodel is estimated with uncertainties, a single stationary pathdoes not produce a correctly focused subsurface image. In contrary,quantum imaging uses all possible trajectories accounts for multiplestationary paths and takes into account model uncertainties.IV. Pitfalls and challenges of seismic inversionProposed solutions are usually based on the criterion of the best fitbetween calculated and observed data. But it is well understood thatby itself, a good fit does not guarantee that an inverted model iscorrect. Seismic inversion may lead to construction of several subsurfacemodels with significantly different geological meaning, all ofwhich fit the observed data equally well. The ill-posedness of seismicinverse problems is fundamental and does not depend on a particulartype of algorithm or on the approach underlying the algorithms. Inthis course, I formulate a number of fundamental questions whichshould be addressed to make the inverse problems a mature sciencerather than a set of recipes.V. Time Reversal in SeismicTime Reversal (TR) plays an important role in seismic. It is directly connectedto reverse time migration, interferometry and virtual sourcemethods. Recently time reversal is proposed to localize subsurfacesources in passive seismic and scatterers in active seismic surveys.Unlike in conventional migration, time reversal approach, in principle,does not require application of imaging condition. Numericalimplementation of the time reversal method uses back propagationof the time-reversed recorded wavefield followed by an analysis of itsobtained focusing. The physical implementation of TR, called TimeReversal Mirror (TRM), is used in various applications: underwateracoustics, telecommunication, cancer therapy, lithotripsy, nondestructivetesting, etc. I demonstrate physical implementation of theTRM in seismic. Results of the field experiment show very promisingresults. I discuss possible applications of the method in seismic explorationand production. Upon completion of the course, participants will be able to:1. Understand the role of time and depth imaging withing the generalexploration work-flow.2. Understand the differences between several prestack data analysisapproaches, in particular CMP, CRS andincrease MF.3. Appreciate importance and potential of seismic diffraction forincrease resolution and reliability of seismic imaging.4. Understand the uncertain nature of seismic velocity model andacquaintance to a way of taking the uncertainties into account.5. Understand and admit fundamental problems of seismic inversionincluding FWI. Introduction•rom statistics to determinism•vercoming uncertaintiesI. Non CMP-based methods for data analysis and imaging•ime versus depth imaging•hy CMP method works?•on-hyperbolic moveout•hy CMP method fails?•on-CMP based moveout: principles•avefront parameter estimation: Multifocusing and CommonReflection Stack•pplications: signal enhancement, statics correction, multipleattenuation, stack, migrationII. Seismic Diffraction•eflections versus difraction•istory•odeling•iffraction imaging•avefield separation•ase studiesIII. Imaging without precise velocity model: Quantum seismic imaging•eynman “ath-summation”icture of the world•ath-summation seismic imagingIV. Pitfalls and challenges of seismic inversion•nversion –hinking backward•on-uniqueness of geophysical inversion•WI: the present statusV. Time Reversal in Seismic Participants should have a basic knowledge of seismic data acquisitionand processing, static correction, CMP stacking for zero-offsetapproximation, normal moveout (NMO) correction, velocity analysis,semblance coherency measure, ray theory. Basic knowledge of seismic data acquisition and processing. staticcorrection, CMP stacking for zero-offset approximation, normalmoveout (NMO) correction, velocity analysis, semblance coherencymeasure, dip moveout. Basic knowledge in ray theory.</td><td>in-house-true</td><td></td><td>has-book-true</td><td></td><td></td><td></td> </tr> <tr data-row_id="73" class="ninja_table_row_73 nt_row_id_73"> <td>Geophysics</td><td>Surface Imaging</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=535" target="_blank" rel="noopener">Migration and Velocity Model Building</a></b><br/><small><i>By Piet Gerritsma (Gerritsma Geophysical Training and Consultancy, Netherlands)</i></small></td><td>Piet Gerritsma</td><td></td><td>depth migration imaging inversion time migration tomography traveltime velocities wave equation</td><td>The process of migration, whereby a proper image in time or depth ofthe subsurface is obtained, is directly related with the velocity modelthat both serves as input for the migration process as well as is the resultof such a migration. Therefore migration and velocity model buildingare intimately related processes. The implementation of migration ischaracterized by a multitude of methods and algorithms; there is also agreat variety of methods to build a velocity model. This course providesan overview of the migration principles, methods and algorithms andan overview of velocity model building principles and methods andalgorithms. Examples and case studies will conclude this course. At the end of the course the participants will have obtained a completeoverview and thorough understanding of the many alternativemethods and algorithms that are currently in use in imaging andvelocity model building.The course emphasizes for each method the underlying geophysicalmodel together with its assumptions and strengths and weaknesses;many examples will be shown to illustrate the material; theory withreferences will be included; a handout that covers all course materialwill be made available. The following steps in Migration, DMO and Velocity Model Buildingwill be discussed:1. Migration or imaging•igration, modelling and inversion•eometric approach to migration•xamples•esolution before and after migration•liasing•ay definitions•he Dix equations•efinition of time migration and depth migration•he acoustic wave equation•actorization of the wave equation•orward and inverse wavefield extrapolation in depth•igration principles; the imaging conditions•igration of various data sets:- Shot profile migration- Survey sinking or redatuming- Zero-offset data migration•xtended imaging conditions (time-shift and/or space-shift)•igration algorithms:- k,f)-migration (Stolt)- Phase-shift migration (Gazdag)- Phase-shift-plus-interpolation (PSPI) migration- Split-step-Fourier (SSF) migration- Extended split-step Fourier (ESSF) migration•he Kirchhoff integral, the Rayleigh integral and Green’ functions•irchhoff (= summation or diffraction stack) migration•igration by double focused array synthesis•aussian beam migration•everse time migration —TM•igration and demigration2. Velocity model building•inimal data sets and common image gathers —IG’•terative velocity model building with CIG’•he migration conditions•igration and traveltime inversion•igration and demigration•ormal incidence wavefront curvature and stacking velocity•elocity model parameterization•elocity model building methods:- coherency inversion or model based stack- map migration- dynamic map migration (DMM) or curvature inversion- stereotomography- traveltime inversion (TTI)- traveltime inversion in the migrated domain (TIMD)- common focus panel (CFP) analysis- tomographic velocity model building- depth focusing analysis (DFA)- WEMVA: wave-equation migration velocity analysis- differential semblance optimization (DSO)- full waveform inversion (FWI)4. Case studies —xamples•omography•ull Wave Inversion•elocity Model Building•arametric Velocity Estimation ocessing and interpretation ` geologists and petrophysicists who wishto understand how the various types of velocity information can bederived from seismic data and who wish to understand how subsurfaceimages are generated.As the material covers the theory and practical implementations ofpresent day practices, this course is relevant for those who are freshfrom university as well as for those who wish to be updated on thenewest developments. Participants should have a basic understandingof seismic acquisition and processing practices. Course participants should have a basic understanding of seismicacquisition and processing practices.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="74" class="ninja_table_row_74 nt_row_id_74"> <td>Geophysics</td><td>Surface Imaging</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=761" target="_blank" rel="noopener">Satellite InSAR Data – Surface Deformation Monitoring from Space</a></b><br/><small><i>By Alessandro Ferretti</i></small></td><td>Alessandro Ferretti</td><td></td><td></td><td>Satellite radar data are revolutionizing how we monitor and understand surface deformation. From mapping earthquake impacts with routinely generated co-seismic deformation maps to ensuring compliance with evolving environmental regulations, radar measurements are proving indispensable across a wide range of applications. This is because radar technology offers the unparalleled ability to remotely measure tiny surface displacements – down to millimeters – across vast areas and over extended periods, eliminating the need for costly and time-consuming ground-based monitoring. However, many geoscientists and engineers are unfamiliar with how radar sensors orbiting the Earth can measure ground displacements of a fraction of a centimeter. This course bridges that gap, providing a step-by-step introduction to satellite radar sensors, SAR imagery, SAR interferometry (InSAR), and advanced InSAR techniques.Course OutlineHere’s a glimpse into the applications you’ll explore:Subsidence Monitoring: From identifying subtle ground sinking in coastal regions and urban centers to monitoring the stability of critical infrastructure like dams and bridges, InSAR provides crucial insights for risk assessment and mitigation.Landslide Mapping and Monitoring: Learn how InSAR can detect subtle ground movements, enabling proactive hazard mapping and monitoring of unstable slopes.Energy Applications: Discover how InSAR contributes to safer and more sustainable energy practices. Monitor caprock integrity in carbon storage sites (CCS), track ground deformation related to underground gas storage (UGS), and provide useful information in geothermal energy projects.Oil and Gas Reservoir Monitoring: Explore how InSAR data can be used to monitor reservoir dynamics, track fluid extraction and injection processes, identify potential subsidence or uplift, and assess risks to well integrity.Mining Area Monitoring: InSAR plays a crucial role in ensuring the safety and sustainability of mining operations. It helps monitor surface deformation around open-pit mines and underground workings, assess the stability of tailings dams and waste piles, and mitigate risks associated with subsidence and slope instability.Beyond the fundamentals, this course delves into:Historical InSAR Archives: it will be shown how extensive archives of SAR imagery, dating back to 1992, can enable the investigation of long-term deformation trends and historical ground behavior.The Future of InSAR: you will get a glimpse into the latest advancements in InSAR technology, including new satellite missionswith enhanced capabilities and cutting-edge data integration and visualization techniques.</td><td>in-house-true</td><td>new-course-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="75" class="ninja_table_row_75 nt_row_id_75"> <td>Geophysics</td><td>Surface Imaging</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=763" target="_blank" rel="noopener">State of the Art in Full Waveform Inversion</a></b><br/><small><i>By Ian F. Jones (Independent consultant)</i></small></td><td>Ian F. Jones</td><td></td><td></td><td>Over the past ten years, full waveform inversion (FWI) as emerged and developed to the point that is now the main technique of choice for detailed model building and reflectivity estimation for complex geological environments. In this review, I will outline the underlying principles involved in FWI, detailing the use of RTM to estimate the location of subsurface parameter error, and introduce the many and varied ‘flavors’ of FWI, noting their limitations and benefits. Use of FWI for model estimation, reflectivity generation, and pre-sack attribute analysis (AVA) will be covered, and demonstrated with field data examples.Course OutlineFor the topics listed below, real data examples will be used to demonstrate the application and limitation of each technique.Why do we need a detailed velocity model?Migration using wavefield extrapolation methods (WEM, RTM, etc.)One-way versus two-way propagationResolving short-scale-length velocity anomaliesThe mechanics of tomographic inversion with wavefield extrapolation theory (FWI)The scattering limitRefraction versus reflectionDifferent ‘norms’ (dynamic versus kinematic: least-squares, travel time, phase, optimal transport)Examples of current industrial practice for various geological settings</td><td>in-house-true</td><td>new-course-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="76" class="ninja_table_row_76 nt_row_id_76"> <td>Geophysics</td><td>Integrated Geophysics</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=539" target="_blank" rel="noopener">Seismic Diffraction – Modeling, Imaging and Applications</a></b><br/><small><i>By Dr Tijmen Jan Moser (Moser Geophysical Services, Netherlands)</i></small></td><td>Tijmen Jan Moser</td><td></td><td>diffraction high-resolution imaging full illumination structural and stratigraphic interpretation channels fluid-escape pipes faults fractures carbonates well planning case study</td><td>The application of seismic diffraction imaging (DI) in the E&P industryhas rapidly accelerated in recent years and is now positioned to makea major impact as a routine method combined with PSTM and PSDM.This is because the uplift in resolution and detectability of small scalefeatures offered through the imaging of the diffracted wavefield isfundamentally superior to attributes derived from post-processing ofthe reflection image. Applications cover a very wide range of objectivessuch as faults, fractures, karsts, stratigraphic edges, channels,fluid escape pipes, volcanic pipes, injectites.This course covers both the forward and inverse problem of seismicdiffraction. The coverage of the forward problem extends from thediscovery of the phenomenon of diffraction and the basic formulationsof Fresnel and Kirchhoff to the evolution of modern seismicdiffraction modeling. Diffraction imaging will be covered from theearly works in the 1970s up to the present state of the art. Casestudies will be presented covering examples for both structural andstratigraphic targets.The course will put emphasis on key components for successful DIcase studies:•ull integration of all available data, such as well data, legacy seismic,prior interpretation•ptimal focusing during pre-processing, model building and migration•alibration of DI by Fresnel zone sampling to identify differentcomponents of the wavefield offering different interpretationperspectives•alidation of DI by forward modeling exercises at various scales(elementary conceptual models, bespoke models, full-detail scenarios)•ustomization to interpretation throughout the workflow Upon completion of this course, the participants will:•ave a detailed and up-to-date understanding of the physics ofdiffraction, diffraction modeling and imaging•e able to effectively communicate the key aspects of diffractiontechnology with other professionals•ave a good understanding of the added value that seismic diffractionbrings to current exploration and production projects First day (4 hrs)1. Introduction•otivation, basic ideas and concepts•eflection versus diffraction•pplications of diffraction analysis and imaging•nterpretation value2. History•iscovery and founding years (1650-1820): Grimaldi, Huygens,Newton, Young, Fresnel, Poisson, Arago•calar diffraction: mathematical foundation —9th century:Green, Helmholtz, Kirchhoff, Sommerfeld•owards Geometrical Theory of Diffraction —arly 20th century:Maggi, Rubinowicz, Keller•owards Modern Theory: Trorey, Klem-Musatov3. Diffraction Modeling•otivation, definitions, objectives•hysical modeling•umerical modeling: integral methods, boundary layer methods,surface and caustic diffraction, finite differences, time-lapse, scatteringmethodsSecond day (4 hrs)4. Imaging•otivation, definitions, objectives•natomy of diffraction•iffraction and standard processing•etection of diffracted waves•eparation of diffracted waves•nversion of diffracted waves•maging•ommon Reflection Surface/Multifocusing•ocusing and velocity estimation•racture detection•odel-based diffraction imaging•llumination: edge and tip diffraction imaging•esolution and super-resolution•mage processing and diffraction imagingThird day (4 hrs)5. Applications/case studies•arbonate Shales, Carbonate Ridges•aults And Fractures, Fault Detection, Reservoir Fault Interpretation,Fractured reservoirs, Basement Fractures•luid Escape Features, Volcanic Pipes, Vertically Aligned Objects•hannels•round-Penetrating Radar Case Study The course is designed for a general audience of geophysicists, geologistsand reservoir engineers. Prerequisites are a basic knowledge of seismic processing and imagingand a very elementary mathematical background.Recommended readingKlem-Musatov K., Hoeber H.C., Moser T.J. and Pelissier M.A. (editors)2016. Classical and Modern Diffraction Theory, GeophysicalReprint Series Nr 29, SEG.Klem-Musatov K., Hoeber H.C., Moser T.J. and Pelissier M.A. (editors)2016. Seismic Diffraction, Geophysical Reprint Series Nr 30, SEG.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="77" class="ninja_table_row_77 nt_row_id_77"> <td>Geophysics</td><td>Integrated Geophysics</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=551" target="_blank" rel="noopener">Integrated Reservoir Modeling</a></b><br/><small><i>By Prof. Dr Michael Poppelreiter (Shell, Kuwait)</i></small></td><td>Michael Poppelreiter</td><td></td><td>3d carbonates correlation geostatistics integration reservoir characterization well log</td><td>This outcrop-based course provides participants with an overview ofthe integrated reservoir modeling process, tools and tasks. The dataset is from a Tertiary carbonate reservoir. It exposes participants tohands-on integrated reservoir modeling.A conceptual reservoir model and a digital reservoir model areconstructed on paper and digitally. Common sedimentologicaltechniques such as section logging, gamma ray measurements andinterpretation of aspect ratios from photo panels and maps will bedemonstrated and practiced.All data required to build models are actual industry data. The uncertaintyof all data sets is assessed. Alternative models are constructed.QC of data versus interpretation is an integral part of the course.A strong emphasis is put on stratigraphic correlation frameworkand structural model building. Property modeling and volumetricsare carried out interactively as a team exercise. Team interaction is afundamental component of this course. Upon completion of the course, participants will be familiar with:•eservoir modeling workflow;•tructural model building;•onstruction of a stratigraphic framework;•cquisition and modeling of reservoir body dimensions on a regionaland local scale;•cquisition, measurement and application of petrophysical properties;•ntegration of data at different scales: thin sections, cores, outcroppanels, petrophysical data and regional geological informationdepositional system of Tertiary age;•ell exposed and exceptionally well-studied on a local and a regionalscale. •ntroduction•eview of statistical analysis and probability•art 1: Sources of uncertainty in geophysics and reservoir modeling•art 2: Modeling uncertainty in seismic reservoir characterization•art 3: Geostatistics and spatial uncertainty•art 4: Uncertainty and data integration•art 5: Structural uncertainty•art 6: Uncertainty in reservoir dynamic modeling•art 7: Visualizing uncertainty•art 8: Value of Information and decision making The course is designed for geologists, geophysicists, engineers,petrophysicists or others involved in reservoir modeling. Participants should have knowledge of geology and petrophysics.Students are expected to have a clear understanding of how to usePetrel software as well as some comprehension of the principles ofgeology and log analysis.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="78" class="ninja_table_row_78 nt_row_id_78"> <td>Geophysics</td><td>Integrated Geophysics</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=561" target="_blank" rel="noopener">Seismic Attributes and Their Applications in Seismic Interpretation</a></b><br/><small><i>By Dr Behzad Alaei (Earth Science Analytics, Norway)</i></small></td><td>Behzad Alaei</td><td></td><td>decomposition faults integration noise workflows</td><td>Seismic attributes have been increasingly used in both explorationand reservoir characterization and has been integrated in the seismicinterpretation process. Seismic attribute analysis can extractinformation from seismic data that is otherwise hidden and havebeen used to identify prospects, ascertain depositional environments(e.g. fluvial or deep water channels, carbonate buildups),detect and enhance faults and fracture sets to unravel structuralhistory, and even provide direct hydrocarbon indicators. They haveproven to be useful in different geological settings such as clastic,carbonate, and salt related basins as well as different tectonic regimesincluding extensional, strike-slip, and compressional. Developmentsin digital recording and modern visualization techniqueshad great impact on the growth of seismic attributes in the pastdecades. The purpose of this course is to introduce seismic attributeswith their applications in seismic interpretation using examplesfrom different sedimentary basins and also through certain attributeworkflows. It is aimed to provide geoscientists with the minimumrequired theory of how each attribute is generated, with agreater emphasis on the application in the exploration and reservoircharacterization.The course is divided into two parts: attributes review/applicationsand workflows. The first part starts with a review of seismic attributesand discusses the noise (random and coherent) reduction asone essential step of all attribute studies. The number of seismicattributes has recently increased dramatically causing confusionfor geoscientists to select appropriate ones. In this course, trace-based attributes, volumetric dip and azimuth, fault detection andenhancement attributes, volumetric curvature, and frequencydecomposition are presented using examples from different geologicalsettings. Frequency decomposition is briefly presentedwith different decomposition methods such as wavelet transform,Fourier transform and matching pursuit analysis. Examples illustratethe interpretation challenges associated with frequency decompositiondata interpretation. The concept of multi-attributes andgeobody extraction is introduced at the end of the first part of thecourse with examples on combinations of amplitude, phase, discontinuityand frequency attributes to visualize different geologicalobjects.In the second part of the course stratigraphic and structural workflowsare presented. The workflows (and the elements for their planning)aim to show the integration of several attributes for specific interpretationpurposes, with examples of stratigraphic (fluvial/shallowmarine clastic systems, attribute expressions of deep water turbiditesand carbonate settings) and structural imaging workflows. Lastly, thecourse analyses the importance of the integration of seismic attributeanalysis processes with the other seismic interpretation (qualitative orquantitative) workflows. Upon completion, participants will be familiar with a range ofrelevant attributes used in seismic exploration and reservoir characterization.They will know the basics of how those attributes werecalculated and will gain understanding of their applications in seismicinterpretation. They will be able to plan some attribute workflowsand they will know how to integrate attribute analysis with otherdisciplines of qualitative/quantitative seismic interpretation. Part I: Seismic Attributes•ntroduction:- Definition and historical review- Structure of the short course•nput data cleaning:- Noise reduction applications with examples- Workflow oriented noise removal process- Focus on structurally oriented edge preserving methods to removenoise- Mean and median filters for noise removal•race-based attributes:- Complex trace analysis and the elementary attributes of envelope(reflection strength), instantaneous phase, instantaneousfrequency, and cosine of phase attributes- Simple examples with interpretation applications•ip and Azimuth volumes:•uantitative estimate of dip and azimuth through seismic volumesto map morphology of seismic texture•ntroduction and theory•ip and Azimuth calculation methods including:- Calculating temporal and spatial derivatives of the phase estimatedusing complex trace analysis- Explicit dip scan to find the most coherent reflector- Gradient structure tensor•xamples with applications for both structural and stratigraphicinterpretation aspects.5. Coherence (Measurements of the similarity of seismic waveform)•ntroduction•ifferent approaches including:- Cross correlation- Semblance- Variance- Eigenstructure- Gradient structure Tensor-based coherence•ole of dip and azimuth steering volumes on coherence calculation•everal examples and interpretation criteria6. Fault attributes, attribute enhancement approaches:•dentify objects representing faults from background noise.•pply filters to enhance already detected faults from backgroundnoise.•lan different filter sizes to enhance faults with different scales(regional to small scale).7. Curvature attribute:•efinition and background theory•urface and volume curvature measurements•nterpretation applications using some examples8. Frequency decomposition:•ntroduction and mathematics of spectral decomposition usinggraphic illustrations•eview of decomposition methods:- DFT (discrete Fourier transform)- CWT (continuous wavelet transform)- MPD (matching pursuit decomposition)•xamples and applications in layer thickness estimation, stratigraphicvariations (seismic facies) and Direct Hydrocarbon detection•on-uniqueness will be addressed together with resultant challengesin interpretation of frequency decomposed data9. Multi attributes, geobody extraction, and iso proportional slicing:•ome attribute blending methods such as RGB blending, andopacity blending•eological object identification•achine learning examples of multi attributes•election of appropriate attributes•uantitative extraction of certain attribute volumes•so proportional slicing as an important interpretation toolPart II: Workflows•eismic attribute analysis workflow planning:- Stratigraphic, structural, reservoir characterization- Factors controlling the seismic attribute workflow planning•orkflow examples: fault imaging, carbonate imaging•ntegration of attribute analysis with other disciplines of seismicinterpretation The course addresses geoscientists involved in exploration andproduction projects where seismic studies play a role and who wishto learn the basic theory of the main seismic attributes used in explorationand production, as well as their applications and how tointegrate them in exploration and reservoir characterization studies. Participants should have knowledge of seismic interpretation. Mathematicalconcepts of attributes are presented with minimum requiredequations and graphic illustrations. Some basic knowledge of seismicexploration may help.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="79" class="ninja_table_row_79 nt_row_id_79"> <td>Geophysics</td><td>Integrated Geophysics</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=549" target="_blank" rel="noopener">Sub-Surface Uncertainty Evaluation (SUE)</a></b><br/><small><i>By Manish Agarwal (Applied Geoscience Pty Ltd, Australia)</i></small></td><td>Manish Agarwal</td><td></td><td>anisotropy interpretation reservoir modeling tomography uncertainty wells workflows</td><td>INTRODUCTION TO SEISMIC UNCERTAINTY EVALUATION1. Sources of Uncertainties (Data Acquisition, processing & Interpretation).2. Validation with data examples on assessment/quantification &qualifications following standard industry practices. Introductionto new learning techniques/technology.3. Value addition on how the course will benefit an interpreter, geologist,and a Reservoir Engineer.SEISMIC UNCERTAINTY ASSESSMENT1. Geological factors influence on Velocities2. Review and evaluate various types of velocity (Average, RMS,Stacking, Migration, Pseudo, P&S).SEISMIC UNCERTAINTY QUANTIFICATIONS1. Construct geologically reasonable velocity models from the data(include synthetic seismograph creations and concept of geological/geophysical well markers).Hard and soft approaches.2. Map migration, structural modelling & stochastic depth conversion.3. Advance WCT(Well Constrained Tomography) workflows to constructgeologically plausible models.SEISMIC UNCERTAINTY QUALIFICATIONS1. Quantifications to qualification stage: Blind well analysis,equiprobable model, multiple regression models..2. Update depth conversion models adaptable to local geology andtest them through amplitude shut-offs and closure maps3. Evaluate structural uncertainties by performing Monte Carlo simulationon best reference depth maps4. Evaluate the products from the multiple realizations: Probabilitydistribution maps, multi-seed structures, amplitude conformance Seismic Uncertainty Analysis is a three fold approach to support wellplanning:•ssessment, Quantification & Qualification•ata Analytics is a must to understand data leading to decision(Data2Decision)•earn to qualify and quantify your seismic uncertainties: Determinsiticand Stochastic•eploy Equiprobable models for Uncertainty assessments andqualifications•onte Carlo regression engine provides a relatively optimum P10/P50/P90 Volumetric ranges•ncertainty reporting and well planning Day 1 -4HRSSEISMIC UNCERTAINTIES ASSESSMENT•tandard practices to evaluate and estimate the Seismic DepthUncertainties•isk and Myths•hy Quantification & Qualification of seismic depth uncertaintiesis important in E&P?QUANTIFICATION OF UNCERTAINTIES (SEIS2WELLS)•eterministic Depth Conversion–ard And Soft Approaches•robabilistic Depth Conversion –ariogram & uncertainty modelling•dditional Techniques : Map Migration, Equiprobable modelsADVANCED RAY BASED DEPTH CALIBRATION (WELL TOMO)•omography Approach For Geological Plausible Velocity Models :Vertical Ray Tomography•hy it is better de-risking model? Predictions away from the harddataQUANTIFICATION TO QUALIFICATION•lind Well Analysis to test the best technical cases•ultiple regression models•quiprobable modellingDay 2 -4HRSQUALIFICATION OF UNCERTAINTIES: DRILL READY SEISMIC (DRS)•tructural Flexing To Compute Probabilistic Volumetrics•pill Point Control And Amplitude Conformance Volumetrics•ingle And Multi-Seed Closures•robability And Iso-Probability Closure Maps•tacked Reservoir VolumetricsDEPTH RISKING SCORECARD•ncertainty Risking Scorecard•epth Uncertainty Communication•ell Planning and Decision Making from the Uncertainty Cube•ITFALLS & GENERAL DISCUSSIONS•ase Studies•&A The course is designed for Geologist, Geophysicist, drilling Engineersand Reservoir Engineers. Participants require a working knowledge on basic exploration cycle.Recommended reading•ntegration of geology with depth conversion using Well-ConstrainedTomography, EAGE April 2016•anaging uncertainty to deliver complex development wells,AEGC September 2019•epth conversion and seismic inversion of the Scarborough gasfield, ASEG December 2019</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="80" class="ninja_table_row_80 nt_row_id_80"> <td>Geophysics</td><td>Mineral Exploration</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=557" target="_blank" rel="noopener">Geological Interpretation of Geophysical Data for Mineral Exploration</a></b><br/><small><i>By Prof. Michael Dentith (The University of Western Australia, Australia)</i></small></td><td>Michael Dentith</td><td></td><td>electromagnetism gravity induced seismicity magnetics minerals polarisation radiometrics resistivity</td><td>The purpose of this course is to provide training in how to usegeophysical methods in mineral exploration. Designed for industry,government and student geologists seeking to understand how touse geophysical datasets to explore and map, and geophysicists seekingto include more geology in to their interpretations, this courseteaches participants to integrate geological and geophysical data ina mineral exploration context.Core topics include the basic principles of the main geophysicalexploration methods used in mineral exploration including the importanceof optimal processing and display of these data and thestrengths and limitations of the various methods. Particular attentionis paid to extracting the maximum amount of geological informationfrom the data, recognising noise-related artifacts in interpretationproducts and how to deal with the ambiguity when interpretinggeophysical datasets.The course includes practical exploration exercises involving realexploration data. On completion of the course participants will:•nderstand how to integrate geological and geophysical informationduring mineral exploration•ave the ability to solve exploration challenges using geophysicalmethods•e familiar with state-of-the-methods for analysing petrophysicaldata•nderstand the capabilities and limitations of the various geophysicaldata types•e aware of the importance of geophysics in the future of mineralexploration The course comprises modules, the inclusion of which depends onits duration.2 day course:1. Introduction to geophysics•. Geophysical methods used in mineral exploration•. Geophysical anomalies and their sources;•. Ambiguity•. Geophysical exploration practice•. Cost of geophysics2. Acquisition to display•. Signal and noise•. Sampling and survey design•. Data display3. Data enhancement•. Wavelength-based enhancement•. gradient-based enhancements;•. Amplitude-based enhancements4. Gravity and magnetic methods•. Basic principles of gravity and magnetism•. Reduction of gravity data –he influence of terrain•. Reduction of magnetic data –he importance of levelling•. Enhancing gravity and magnetic data (derivative-based enhancements,continuation, reduction to the pole)5. Qualitative interpretation•. Understanding petrophysics•. Beyond ‘eological pattern recognition’n image interpretation•. Geophysical expressions of common geological features•. Common pitfalls6. Quantitative interpretation•. Representing the sub-surface with a geophysical mode•. Forward modelling•. Inverse modelling•. Analysing a modelling result7. Electrical and electromagnetic methods•. Basic principles of electricity•. Electrical properties of rocks•. Resistivity method•. Induced polarisation method•. Basic principles of electromagnetism•. Electromagnetic data acquisition and interpretation5 day course:1. Introduction to geophysics•. Geophysical methods used in mineral exploration•. Geophysical anomalies and their sources•. Ambiguity•. Geophysical exploration practice•. Cost of geophysics2. Practical exercise 1 –eophysical anomalies and exploration strategy3. Acquisition to display•. Signal and noise•. Sampling and survey design•. Data display4. Practical exercise 2a - Data display5. Data enhancement•. Wavelength-based enhancement•. Gradient-based enhancements•. Amplitude-based enhancements6. Practical exercise 2b –ata enhancement7. Gravity and magnetic methods•. Basic principles of gravity and magnetism•. Reduction of gravity data –he influence of terrain•. Reduction of magnetic data –he importance of levelling•. Enhancing gravity and magnetic data (derivative-based enhancements,continuation, reduction to the pole, pseudogravity)8. Practical exercise 3a –nhancing gravity and magnetic data9. Petrophysics•. Best practice in data collection and analysis•. Rock and mineral density and magnetism•. Physical properties and common geological processes10. Practical exercise 3b –nalysis of petrophysical data11. Qualitative interpretation•. Beyond ‘eological pattern recognition’n image interpretation•. Geophysical expressions of common geological features•. Common pitfalls12. Practical exercise 3c –nterpretation of gravity and magneticmaps for exploration targeting13. Quantitative interpretation•. Representing the sub-surface with a geophysical model•. Regional-residual separation•. Forward modelling•. Inverse modelling•. Analysing a modelling result14. Practical exercise 3d –odelling magnetic anomalies for explorationtargeting15. Radiometric data•. Basic principles of radioactivity•. Measuring natural gamma radiation•. Processing and displaying radiometric data•. Geology and geological processes and their effects on gammaradiation16. Practical exercise 4 –nterpreting radiometric data for explorationtargeting17. Electrical and electromagnetic methods•. Basic principles of electricity•. Electrical properties of rocks•. Resistivity method•. Induced polarisation method•. Basic principles of electromagnetism•. Electromagnetic data acquisition and interpretation18. Practical exercise 5 –nterpreting electrical and electromagneticdata for exploration targeting19. Seismic reflection method•. Seismic waves•. Geological causes of variation in seismic properties•. Processing and interpretation of seismic data The course is designed for:•ndustry, government and student geologists seeking to understandhow to use geophysical datasets to explore for minerals•eophysicists seeking to improve the integration of geology in totheir interpretations Participants should have a basic understanding of the geology ofmineral deposits and mineral exploration practice. They should alsobe familiar with MS Excel.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="81" class="ninja_table_row_81 nt_row_id_81"> <td>Geophysics</td><td>Mineral Exploration</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=573" target="_blank" rel="noopener">Exploring for Minerals Using Geophysics: A Mineral System-Based Approach</a></b><br/><small><i>By Prof. Michael Dentith (The University of Western Australia, Australia)</i></small></td><td>Michael Dentith</td><td></td><td>electromagnetism gravity induced seismicity magnetics minerals polarisation radiometrics resistivity</td><td>The purpose of this course is to familiarise mineral exploration geoscientistswith the very latest developments in our understanding ofthe geophysical responses of mineral systems. The course revises themineral system concept and considers these ideas in a geophysicalcontext. New targets, in additional to traditional deposit-scale targetsare proposed, e.g. fluid/metal source zones, fluid conduits andpalaeo-reservoirs.The geophysical responses of key mineral system components areconsidered from first principles. Physical property contrasts expectedto be associated with different components are described and newmethods of analysing petrophysical data are demonstrated. The usein mineral exploration of deep penetrating ‘cademic’eophysicalmethods is also described. Methods covered include the magnetotelluricmethod, deep seismic reflection profiling and teleseismic andambient noise passive seismic methods.Finally exploring for mineral systems using geophysical methods isdemonstrated using examples from three important deposit styles:carbonate-hosted base metals, magmatic Ni-Cu deposits in mafic/ultramafic rocks and hydrothermal (orogenic) gold. On completion of the course participants will:•nderstand the mineral system concept and its implications for geophysicalexploration, especially when exploring for blind targets•now how to recognise responses from components of mineralsystem in their geophysical datasets•e aware of recent developments in the use of deep-penetratinggeophysical methods for mineral exploration•nderstand how to use analyse petrophysical data to predict geophysicalresponses of mineral system components•e familiar with the geophysical characteristics of common mineralsystem components, including the components of selectedmagmatic, sedimentary-basin-hosted and hydrothermal mineralsystems. 1. Introduction: mineral exploration in 2017•. current exploration practice/strategy,•. declining discovery rates, rising discovery costs•. implications of going ‘nder cover’•. government exploration incentive schemes/public domain data2. Mineral systems•. Description of the concept and implications for mineral exploration•. Mineral system classification schemes•. The importance of geographically widespread data and deeppenetrating geophysical methods•. New targets suggested by the mineral systems concept: source,reservoirs, pathways and the importance of associated alteration3. Petrophysics•. A new conceptual framework for petrophysical data: bulk-grain-texture•. Importance of proper sampling•. Importance of analysing the data in a geochemical/petrological/geological framework•. Workflow for petrophysical data in a mineral systems context:analysis in context of lithology, stratigraphy, metamorphism/alteration,location4. Large scale and deep penetrating geophysical methods•. Key mineral systems targets (major faults, craton margins, mantlemetasomatism, fluid reservoirs, major magma chambers) andtheir geophysical expression•. Potential field data (responses from mineral system components)•. Magnetotelluric data (responses from mineral system components)•. Active source seismic methods - deep reflection, refraction data(responses from mineral system components)•. Passive seismic methods - teleseismic, ambient noise methods(responses from mineral system components)5. Geophysics of selected mineral systems•. Sedimentary basin-hosted system: Carbonate-hosted base metals(Mississippi Valley-type, Irish style)•. Magmatic system: Ni-Cu in mafic/ultramafic intrusions•. Hydrothermal system: orogenic gold The course is designed for:•ndustry, government and student geoscientists who are usingthe mineral system concept to guide exploration and wish to understandhow geophysical methods can be integrated in to theirexploration strategy•eoscientists with a basic understanding of geophysical data setsseeking to be innovative in their use of geophysical explorationmethods Participants should have a basic understanding of the geology ofmineral deposits and mineral exploration practice.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="82" class="ninja_table_row_82 nt_row_id_82"> <td>Geophysics</td><td>Reservoir Characterization</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=555" target="_blank" rel="noopener">Microseismic Monitoring for the Energy Industry</a></b><br/><small><i>By Dr Leo Eisner (Seismik, Czech Republic)</i></small></td><td>Leo Eisner</td><td></td><td>anisotropy earthquake geophones induced seismicity isotropy p-wave polarisation s-wave geothermal ccs</td><td>This newly revised programme explaines the principles of microseismicmonitoring ranging from single monitoring borehole to surface andnear surface networks. The applications cover from conventional tounconventional production, through geothermal energy extractionto CO2 sequestration. We will focus on understanding the measurementsmade in passive seismic, their use and their uncertainties.The course will also discuss the latest developments in microseismicityfrom DAS monitoring systems, source mechanisms, tomography andanisotropy to reservoir simulations. Finally, we will discuss social andscientific aspects of (induced) seismicity related to oil and gas reservoir,hydraulic fracturing and unconventional production. Upon completion of the course, participants will be able to:•elect the right type of microseismic monitoring array to meet thegoals that need to be monitored;•esign an optimal array for passive seismic (surface or downhole)monitoring, estimate in it uncertainties of locations for microseismicevents;•rient downhole geophones from a perforation or calibrationshot, estimate approximate distance and depth of a recordedmicroseismic event;•alibrate velocity model;•dentify shear wave splitting in downhole microseismic datasets;•itigate hazards associated with induced seismicity by fluid injection;•etermine epicenter from the surface monitoring array and estimatesource mechanisms of visible microseismic events;•etermine if the seismicity in the vicinity of an oilfield is related toinjection or extraction of fluids. 1. Introduction: Definitions, a brief review of microseismicity outsideof oil industry: water reservoirs, mining, geothermal, CO2 sequestration.Microseismicity and induced seismicity by reservoir production.Historical review of microseismicity in energy industry with focus onhydraulic fracturing (Basel, Soultz, M-site, Cotton Valley, Barnett,etc). Principles of the hydraulic fracturing and geomechanics. Goal ofmicroseismic monitoring and options to meet them.2. Earthquake seismology: number of unknowns, differences betweenactive and passive seismic. Receivers - how to select optimaltype of sensors to meet our goals. Absolute location, relative location.P- and S-wave polarizations. Frequency content of microseismicdata. Finite source. Earthquake magnitudes.3. Downhole monitoring: single well monitoring technique - S-Pwave time + P-wave polarization technique location. Horizontalmonitoring borehole. Picking strategies for downhole monotoring.Optimal design of downhole monitoring array. Orientation of downholegeophones. Velocity model building and calibration. Inclined/dual and multi well monitoring.4. Surface monitoring: P-wave location from surface: depth vs. origintime. Detection uncertainty and signal-to-noise ratio. Frequencycontent, attenuation and detection. Design of surface monitoringarray. Calibration and velocity model building. Relative locations:using S-waves recorded at the surface monitoring array. Case studycomparing the downhole and surface locations. Why surface microseismicmonitoring works, near surface attenuation.5. Source mechanisms: concept of source mechanism, definition ofdip, strike and rake for shear source. Description of shear, tensile,volumetric, CLVD components of source mechanism. Inversion forsource mechanisms from single monitoring borehole, multiplemonitoring boreholes surface P-wave only data. Radiation patternof source mechanisms frequently seen in microseismic monitoring.Source mechanisms and stress orientation.6. Advanced source parametrization: Magnitude: definition and determination,seismic energy, b-values and magnitude of completness,physical liminations of b-values, stress drop, source dimensions.7. Anisotropy: Introduction to anisotropy. Effect of anisotropic mediaon S-waves: shear wave splitting. Shear wave splitting observedin microseismic data. Inversion of anisotropic media from P- andS-waves using microseismic events, time lapse changes. Anisotropyand surface monitoring of microseismic events.8. Reservoir simulations: Current use of microseismicity in oil industryand implementation of microseismicity into modeling. Diffusionmodel for pressure triggering of microseismic events. Non-lineardiffussion and mass balance. Discrete Fracture Networks constrainedby microseismicity. Reservoir simulations and history matching.9. Seismicity in the vicinity of energy exploration. History of feltseismicity related to oil and gas industry. Differentiation of naturaland induced seismicity. Seismic moment and total injected volume.Blackpool case study as an example of induced seismicity. Oklahomaand DFW seismicity - natural seismicity? Hazard assesment and mitigation.Social aspects related to development of shale gas.10. Review of recent reserch effort and case studies in microseismicity.Models of relationship between microseismicity and hydraulicfracturing. Most important things to remember about microseismicity. The course is designed for users and practitioners in microseismicmonitoring. No requirements prior to the course are needed, although knowledgeof seismology and hydraulic fracturing would be beneficial.</td><td>in-house-true</td><td></td><td></td><td></td><td>energy-transition-true</td><td></td> </tr> <tr data-row_id="83" class="ninja_table_row_83 nt_row_id_83"> <td>Geophysics</td><td>Reservoir Characterization</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=553" target="_blank" rel="noopener">Seismic Fracture Characterization: Concepts and Practical Applications</a></b><br/><small><i>By Dr Enru Liu (ExxonMobil, United States)</i></small></td><td>Enru Liu</td><td></td><td>3d anisotropy carbonates mechanics multicomponent p-wave rock physics seismic attributes unconventional</td><td>The ability to identify fracture clusters and corridors and their prevalentdirections within many carbonates and unconventional resources(shale gas, tight gas and tight oil reservoirs) can have a significantimpact on field development planning as well as on the placement ofindividual wells. The characterization of natural fractures is difficultand cannot be achieved by any single discipline or single measurement.Geophysics can identify spatial distributions of fractures andfracture corridors between wells and seismically-derived fracture informationto complement (not compete with) other measurements,such as outcrops, core, FMI, cross-dipole and other fracture information.This course is an introduction to the fundamental concepts ofseismic fracture characterization by introducing seismic anisotropy,equivalent-medium representation theories of fractured rock andmethodologies for extracting fracture parameters from seismic data.With a focus on practical applications, three case studies are presentedto demonstrate the applicability, workflow and limitations ofthis technology: a physical laboratory 3D experiment where fracturedistributions are known, a Middle East fractured carbonate reservoirand a fractured tight gas reservoir. Upon completion of the course, participants will be able to:•nderstand key geological aspects of fractures and their roles inhydrocarbon exploration and production;•nderstand the fundamental concept of seismic anisotropy andthe equivalent medium representation of fractured rock;•nderstand the principal methodologies of seismic fracture characterizationusing shear-wave splitting and azimuthal variation ofseismic attributes;•nderstand the basic data requirement, assumptions, limitationsand applicability of seismic fracture prediction technology;•pply practical workflow introduced in this course to real seismicdata;•nterpret and integrate seismically-derived fractures with othermeasurements. •ntroduction: key geological elements•undamental seismic anisotropy•quivalent medium representation of fractured rock•racture characterization using P-wave data•hear-waves and applications of multicomponent seismology•ase study 1: 3D Physical laboratory data•ase study 2: An example from offshore Middle East carbonatereservoir•ase study 3: An example from tight gas reservoir•ummary and road ahead The integrated nature of this subject means that the book and theassociated course are purposely designed for individuals from all subsurfacedisciplines including geophysics, geomechanics, rock physics,petrophysics, geology, reservoir modeling and reservoir engineering. None. Students as well as experienced geoscientists and engineersshould benefit from this course.</td><td>in-house-true</td><td></td><td>has-book-true</td><td></td><td></td><td></td> </tr> <tr data-row_id="84" class="ninja_table_row_84 nt_row_id_84"> <td>Geophysics</td><td>Reservoir Characterization</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=563" target="_blank" rel="noopener">Seismic Surveillance for Reservoir Delivery</a></b><br/><small><i>By Olav Inge Barkved (Petoro, Norway)</i></small></td><td>Olav Inge Barkved</td><td></td><td>4d integration interpretation marine monitoring seismicity shelf time-lapse</td><td>Time-lapse seismic surveys or 4D seismic provide snapshots of aproducing hydrocarbon reservoir and its surroundings. The benefitof the technology in monitoring fluid and pressure changes and topoint out bypassed oil or un-drained compartments has been welldocumented over the last 10–5 years. Still the technology is undergoingrapid development. One of the recent focuses has beenthe use of permanent seismic installation allowing for cost- effectivefrequent surveying, and an added benefit of providing additionalrecordings that would not be available without the permanent array.In addition, recent case studies have helped raise the awareness ofhow seismic monitoring techniques can be used to understand possibleproduction induced effects outside the reservoir, often linked togeo-mechanical changes.This course will provide some context on what is driving the dynamicchanges linked to producing a hydrocarbon reservoir and what weshould expect to observe using seismic technologies in a varied geologicalsetting. It will address key issues that impact the feasibilityof time-lapse seismic and evaluate established methods. However,the focus will be on ‘ew’echnologies, use of a permanent array,frequent seismic surveying and integration of the data.Examples from the Valhall field will be used extensively to illustratethe potential of seismic data and to articulate issues related to interpretationand integration. This will include data examples frommarine towed 4D, frequent surveying using permanently installedsensors, in-well recordings and analysis of passive data, includingmicro seismicity. Use of seismic surveillance information to supportreservoir management, new well delivery and base management willbe a central part of the presentation. In the course we will aim at addressing:•hat type of fields and mechanism are candidates for seismicsurveillance?•n overview over available technologies for seismic surveillance ofproducing reservoirs, with a primary focus on time lapse methodsand permanent systems•D seismic and linkage to geo-mechanics•pplication and Integration across the disciplines; challenges andbenefits•ase stories•ow we value the seismic surveillance•ow recent example of emerging technologies can tell us whatthe future will bring This course is of interest to managers, geoscientists and reservoir andpetroleum engineers who aim for integrating time-lapse seismic datainto the next level of technical and business decisions and anyoneelse who sees the benefit of tracking changes in the subsurface in awider sense. The intention is to inspire, educate and possibly entertainindividuals on how to embark on a seismic surveillance projectand stimulate new ideas for those with some experience in the topic.The course will be biased towards marine seismic applications butthis should not prohibit possible usage on land. Participants should have a basic appreciation of geosciences andpetroleum technical principles linked to producing hydrocarbon.</td><td>in-house-true</td><td></td><td>has-book-true</td><td></td><td></td><td></td> </tr> <tr data-row_id="85" class="ninja_table_row_85 nt_row_id_85"> <td>Geophysics</td><td>Reservoir Characterization</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=559" target="_blank" rel="noopener">Seismic Reservoir Characterization: An Earth Modeling Perspective</a></b><br/><small><i>By Dr Philippe Doyen (Independent Consultant, United Kingdom)</i></small></td><td>Philippe Doyen</td><td></td><td>carbonates geostatistics integration interpolation interpretation inversion lithology rock physics sediment</td><td>Three-dimensional numerical earth models play an increasinglyimportant role in the petroleum industry to improve reservoir managementand optimize hydrocarbon recovery. A key challenge forreservoir geoscientists is the quantitative integration of 3D and 4Dseismic data into static and dynamic earth modeling workflows.Using a combination of theory and illustrations from real field studies,this two-day course reviews best practices and challenges forconstraining earth models with seismic information and quantifyingsubsurface uncertainty. The course objectives of the course are to:•rovide a practical introduction to techniques and workflowscombining geostatistics and rock physics for the construction ofseismic-constrained earth models;•xplain how to integrate quantitatively seismic and well data inearth modelling workflows and evaluate the associated geo-modeluncertainty;•escribe the assumptions and technical limitations of currentseismic-based geo-modeling techniques, thus helping reduce theblack-box application of software tools;•ighlight the technical challenges and the road ahead for quantitativeseismic interpretation. The two-days course is divided into 7 modules, which provide anoverview of basic concepts and their application to a number of casestudy examples involving both clastic, carbonate and unconventionalreservoirs.•odule 1 —ntroduction to geostatistics and earth modellingfrom seismic data.•odule 2 —eostatistical interpolation techniques for seismic-guided 3-D earth models.•odule 3 —tochastic simulation with seismic constraints.•odule 4 —eismic lithology and fluid prediction using statisticaltechniques.•odule 5 —tochastic inversion.•odule 6 —tatistical rock physics.•odule 7 —imulator-to-Seismic workflow using 4-D earth models. The course is aimed at geoscientists and engineers who are involvedin the construction of earth models and who wish to learn aboutpractical techniques for seismic data integration, combined use ofseismic rock physics and geostatistics, uncertainty modeling andquantitative 4D interpretation. The course comes at a time whenseismic-based earth modeling has become a key activity for integratedasset teams in the E&P industry. It should therefore be of interestto a broad audience, including technical specialists and managers,who are actively involved or supervise seismic-to-simulator activities.Basic knowledge of seismic inversion techniques and geostatistics isdesirable. Basic knowledge of seismic inversion techniques ad geostatistics isdesirable</td><td>in-house-true</td><td></td><td>has-book-true</td><td></td><td></td><td></td> </tr> <tr data-row_id="86" class="ninja_table_row_86 nt_row_id_86"> <td>Geophysics</td><td>Reservoir Characterization</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=565" target="_blank" rel="noopener">Geostatistical Reservoir Modeling and Uncertainty Quantification</a></b><br/><small><i>By Dr Dario Grana (University of Wyoming, United States)</i></small></td><td>Dario Grana</td><td></td><td>elasticity geostatistics integration inversion modeling monitoring noise rock physics time-lapse</td><td>Reservoir modeling provides a set of techniques to create three-dimensionalnumerical earth models in terms of elastic, petrophysicaland dynamic properties of reservoir rocks. Mathematical/physicalmodels of the reservoir are generally uncertain due to the lack ofinformation, noise in data measurements, approximations and assumptions.The course focuses on geostatistical methods for reservoirmodeling and uncertainty quantification techniques for reservoirpredictions.It is divided into four main parts: Geostatistical methods for interpolationand simulation; Rock physics modeling; Geophysical inverseproblems; Uncertainty quantification.Uncertainty propagation from measured data, through physical modelsto model predictions will be studied with a focus on seismic datainversion, static reservoir characterization, structural modeling, dynamicfluid simulation, and time-lapse monitoring. Real case studieswill be presented for each topic to illustrate the proposed workflows. Upon completion of the course, participants will be able to:•enerate multiple reservoir models;•nderstand physical relations between reservoir and geophysicalparameters;•valuate the uncertainty of model predictions. The one-day short course will have the following schedule:Introduction•art 1: Review of statistical analysis and probability•art 2: Geostatistics and spatial uncertainty•art 3: Rock physics•art 4: Geostatistics and spatial uncertainty•art 5: Seismic inversion•art 6: Uncertainty quantification•art 7: Visualizing uncertaintyCase studies will be presented for each section. The course is designed for employees of oil companies in geophysicsand reservoir modeling. Participants should have knowledge of basic reservoir modeling conceptsand of common geophysical data.</td><td>in-house-true</td><td></td><td>has-book-true</td><td></td><td></td><td></td> </tr> <tr data-row_id="87" class="ninja_table_row_87 nt_row_id_87"> <td>Geophysics</td><td>Reservoir Characterization</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=569" target="_blank" rel="noopener">Operational Geomechanics: Characterization of Rock Stress, Rock Fractures and Rock Stability for Energy, Environmental, and Engineering Industrial Operations in the Lithosphere</a></b><br/><small><i>By Dr Mohammed S. Ameen (Geomechanics and Rock Fractures Expert, United Kingdom, retired from Saudi Aramco)</i></small></td><td>Mohammed S. Ameen</td><td></td><td>geomechanical stress isotropy anisotropy rock fractures rock stability lithosphere geothermal water reservoirs nuclear waste geohazards hydrofracture stymulation in-situ stress hydraulic fracturing borehole scale</td><td>This EAGE Education Tour (EET) course starts by introducingdefinitions of fundamental concepts such as force, stress and strain;which are the building blocks of natural and operationally inducedgeomechanical failure, both at deep and shallow zones of the Earthlithosphere. In that context natural rock and lithospheric stresshomogeneity vs heterogeneity, and isotropy vs anisotropy are alsodiscussed. The course goes on to address and illustrate naturallyoccurring rock fractures. Natural fractures’tatistical, geometric, andkinematic categories, and structural habitats are also discussed.Subsequently, the course presents the impact of natural fractures onfluid transmissivity /permeability and fluid storativity/effective porosityof rock masses which are crucial in many aspects such as hydrocarbonassets (both conventional and unconventional reservoirs),geothermal, and water reservoirs and nuclear waste repositories, capseal and fault seal integrity and seismic hazards.The high-resolution detection, measurement, and diagnosis offractures and stress indicators on drill bore scale (e.g. oil and gaswells, geothermal wells, site investigation boring in environmental,and geotechnical engineering projects like nuclear waste repositories,dam sites etc) are a starting point to any effective geomechanicalassessment of rocks. These are presented focusing particularly(amongst other tools) on borehole image logs like resistivity andultrasonic images and rock samples such as full diameter drill core,side wall plugs, and cuttings. Quality control on logs- and core-baseddata is an essential step in assuring reliability of their interpretationand subsequent decision-making. Therefore, the course covers theuncertainties associated with such tools (e.g. natural versus inducedfractures; borehole deformation phenomena and their stress/strengthimplications etc).Current day Earth stresses are the driving engine for any ongoingnatural and artificially induced rock deformation and failure. Operationalgeomechanics’orkflows used for the assessment of in situstress magnitude and the in-situ stress orientation are introduced anddiscussed. Uncertainty sources in such workflows are also considered.The application areas of operational geomechanics with a particularattention to borehole instability and other engineering infrastructureintegrity risks are then illustrated.The course will also discuss the concept of rock-based mechanicalanisotropy and heterogeneity and how they affect our operationalpractices. In that context it will discuss the impact on areas such as:hydrofracture stimulation; rock mass stability in deep and shallowenvironments including tunnels and dams, deep oil and gas boreholesand the seismic stability of existing faults in response to human madeactivities such as hydraulic fracturing and other operational activities. The course will cover the principles, and tools relevant to operationalgeomechanics with specific attention to borehole-scale characterization.The following aspects are covered:1. Introduction to force, stress and strain;2. Natural rock fractures: their causes, statistical, geometric, andkinematic categories;3. Borehole-scale geomechanical tools:3.1 Borehole images3.2 Borehole rock samples (whole core, plugs, cuttings)3.3 Sonic logs and supplementary open hole logs;4. Rock mechanical characterization based on rock samples and logs;5. In-Situ Stress Characterization based on rock samples, logs, andspecial field tests:5.1 Assessment of in situ stress magnitude5.2 Assessment of in situ stress orientation;6. Assessment of rock mechanical and in-situ stress anisotropy;7. Application areas of operational geomechanics. The course is designed for geologists, geophysicists, and engineersworking on and managers concerned with natural fractures andin-situ stresses characterization and instability risks of rock masses.The course is relevant to:1. Oil and gas conventional and unconventional exploration,development and production;2. Reservoir stimulation (e.g. hydrofracturing);3. Assessment of geomechanical impact on fluid flow or sealingcapacity of rocks (e.g. sealing faults; cap rock integrity etc);4. Geothermal reservoirs;5. Nuclear waste repository site investigation;6. Geotechnical/engineering projects like tunnels, dams foundation,highways etc. Participants should have a basic knowledge of geology and aperception of the definition of rock porosity, permeability, androck mass texture and structure. No software will be utilized in thecourse.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="88" class="ninja_table_row_88 nt_row_id_88"> <td>Near Surface</td><td>Environmental Geophysics</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=571" target="_blank" rel="noopener">Near-Surface Geoscience</a></b><br/><small><i>By Dr Andreas Laake (Schlumberger, United States)</i></small></td><td>Andreas Laake</td><td></td><td>acoustic drilling geomorphology hazards integration interpretation noise remote sensing shallow</td><td>This course covers the geological and geophysical concepts governingthe near-surface. Methods for investigating and characterizingthe near-surface such as remote sensing and surface geophysicalmethods are presented. The different measurements are archivedand integrated in a geographical information system (GIS). The finalintegration reveals geological information about the near-surfaceand provides geophysical information for corrections in seismic dataprocessing. The course introduces geomorphology as a concept to understandthe geological and geophysical characteristics of the near-surface,enabling the students to extract structural and lithological information.This information can be used on one hand for the prediction ofshallow drilling hazards and outlining deeper structures and on theother hand for the correction of near-surface effects in seismic dataprocessing. 1. Geomorphology and the near-surface2. Methods for investigation3. Near-surface characterization4. Impact of geomorphology on geophysical data5. Representation and integration in GIS6. Interpretation of near-surface geoscientific data Geophysicists and geologists who are working in exploration and arecurious to understand the impact of the near-surface on subsurfacegeophysical data and who wish to understand what the surface geomorphologycan tell them about subsurface structures. Participants should have a basic knowledge of geophysics and geology.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="89" class="ninja_table_row_89 nt_row_id_89"> <td>Near Surface</td><td>Non-Seismic Methods</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=567" target="_blank" rel="noopener">Subsurface Utility Engineering Detection & Mapping of Subsurface Utilities</a></b><br/><small><i>By Dr Sanjay Rana (AF Academy - Aqua Foundation, India)</i></small></td><td>Sanjay Rana</td><td></td><td>subsurface utility engineering sue induction locators gpr gps hazards mapping wave propagation signal processing</td><td>Having accurate knowledge of subsurface/ underground/ buriedutilities (pipes/ cables/ drains etc.) is critical for any infrastructureproject. The successful detection and mapping of buried utilitiesinvolves the combination of several techniques, the results of whichare synthesized down to a single interpreted plot. The techniquesand methodologies used will primarily depend upon the requiredoutcome for the survey, the site conditions and the type of pipesor cables being targeted. Subsurface Utility Engineering (SUE) is anupcoming field dealing with procedure and standards for detectionand mapping of underground utilities. The course comprehensivelycovers all the aspects related to conducting a successful undergroundutility detection and mapping project. Upon completion of the course, participants will be able to:•earn how to detect and map buried pipes and cables (metallic &non-metallic) without digging•earn Ground Penetrating Radar•earn Induction Locators (cable & pipe locators/ radio locators)•nderstand quality levels of SUE (Subsurface Utility Engineering)•dvanced data processing of Ground Penetrating Radar data•void accidents/ damage to underground utilities during construction •ntroduction to Subsurface Utility Engineering (SUE)•tility Quality Level Attributes•teps and procedures for QL-D data collection•urvey procedures for collecting QL-C data (including use of totalstation, DGPS, etc.)•ield Procedure and Approaches for GPR Surveys•ata Processing of GPR data•ata interpretation of GPR data•ield Procedure and Approaches for EPL Surveys•UE map preparation guidelines, including plan, L section etc. This course will help professionals, engineers and managers fromentire spectrum of construction, infrastructure and municipal sector. None</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="90" class="ninja_table_row_90 nt_row_id_90"> <td>Near Surface</td><td>Non-Seismic Methods</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=575" target="_blank" rel="noopener">A Gentle Introduction to Electromagnetics (EM) in Geophysics</a></b><br/><small><i>By Dr Jaap C. Mondt (Breakaway, Netherlands)</i></small></td><td>Jaap C. Mondt</td><td></td><td>anisotropy electromagnetism electromagnetism gpr resistivity</td><td>Although in the search for hydrocarbons seismic plays the dominantrole, complementary data can be very useful. A clear example is thatseismic can clearly determine reservoir geometries based on acousticimpedance changes but is less sensitive to the pore-fluids. Electromagneticmeasurements, such as Controlled Source EM (CSEM)measures resistivity directly and hence can discriminate betweenbrine and hydrocarbon fill.You might wonder about the poorer resolution of EM compared withseismic. Indeed, that is the case, but by combining the two independentsources of information, then seismic will give the structure(container) which then can be used as a constraint for the inversionof EM. Another application is in the realm of determining the shapeof allochthone salt bodies below which hydrocarbons can be present.Numerous applications can be mentioned in relation to shallow seismic.An obvious one is the use of Ground Penetrating Radar (GPR)for investigating archaeological sites or determining the depth toupwelling deep salt-water due to severe pumping of fresh water forirrigation.This course is unique in its hands-on exercises and its use of an open-source software Apps developed at UBC. Upon completion of this course, participants will be able to:1. Interpret heuristically the basic equations governing EM phenomena;2. Explain that EM characteristics/properties and uses depend on thefrequency of the electromagnetic “ave”3. Define the realms of EM diffusion and EM wave propagation;4. Understand how EM can be used in the search for hydrocarbons,investigating the shallow subsurface for the extend of pollution orsalt water penetration;5. Relate Induced Polarization to the presence of a working hydrocarbonsystem in the deeper subsurface. All those who are interested in understanding the use of Electromagnetic(EM) methods in Geophysical Applications. These are thegeoscientists working in hydrocarbon exploration and exploitationas well as those applying shallow surface geophysics for detectingore bodies, determining the extend of shallow pollution, foundationengineering, etc. Prerequisite is an intermediate level of understanding of physics andgeophysics in the context of exploration and production of hydrocarbonsand mitigation of pollution, including the issue of salt waterpenetration.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="91" class="ninja_table_row_91 nt_row_id_91"> <td>Near Surface</td><td>Non-Seismic Methods</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=579" target="_blank" rel="noopener">Non-Seismic Data Acquisition and Processing: Gravity & Magnetics</a></b><br/><small><i>By Dr Jaap C. Mondt (Breakaway, Netherlands)</i></small></td><td>Jaap C. Mondt</td><td></td><td>anisotropy electromagnetism electromagnetism gpr resistivity</td><td>Non-Seismic methods such as gravity and magnetics provide valuablecomplementary information about the subsurface that is not providedby Seismic methods. In this course you will learn about thesetechniques and their use in the search for hydrocarbons, ores, salt-fresh water boundaries, etc. Upon completion of this course, participants will be able to understandthe use of gravity and magnetics data, how they are acquired,the benefits of employing them in geophysical acquisition projectsand how to decide how much money to spend on a Non-SeismicProject. Part 1: Gravity•eophysical Methods•ravity Anomaly•epth Estimation•ravity Response•nversion of Gravity Data•ravity ResolutionPart 2: Magnetics•eo-Mag Signatures•agnetic Modelling•agnetic Anomaly•nversion of Magnetic Data•ravity and Magnetic Response•eomodel Inversion The course assumes a reasonable understanding of Physics.Recommended readingPhilip Kearey, Michael Brooks, Ian Hill, An Introduction to GeophysicalExploration, John Wiley & Sons, April 2013.J. D. Fairhead, Advances in Gravity and Magnetic processing andInterpretation, EAGE ISBN 978-94-6282-175-0.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="92" class="ninja_table_row_92 nt_row_id_92"> <td>Near Surface</td><td>Non-Seismic Methods</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=577" target="_blank" rel="noopener">Gravity and Magnetic Methods for Oil & Gas and Mineral Exploration and Production</a></b><br/><small><i>By Dr Yaoguo Li (Colorado School of Mines, United States)</i></small></td><td>Yaoguo Li</td><td></td><td>3d density groundwater interpretation inversion magnetic survey magnetics time-lapse water</td><td>Gravity and magnetic data are among the oldest geophysical data acquiredfor the purpose of resource exploration and exploitation. Theycurrently also have the widest areal coverage on the Earth, span agreat range of scales and play important roles in mineral, energy andgroundwater arenas. The interpretation methods have evolved fromdata map-based visual inspection, various map enhancements anddepth estimation, to quantitative interpretations based on inversionsand integrated modeling. In particular, 3D inversion techniques haveemerged as a major component in this evolution. The availability of3D inversion techniques has advanced potential-field interpretationfrom ‘nomaly bump hunting’o 3D imaging of the subsurface byreconstructing the distribution of density or magnetic properties invarious geological units and, thereby, have shifted interpretationsfrom the data domain to the model domain. Similarly, inversion techniquesare also poised to make major contributions to integratedmodeling and interpretation, as well as to differentiating and characterizinggeology, geological processes and reservoir dynamics. Thiscourse will focus on the methodology, numerical computation, solutionstrategy and applications of 3D physical property inversions ofgravity and magnetic data sets. The course is designed to have twotracks in order to meet the different needs of the EAGE communityin mineral exploration and in oil & gas exploration and production.We achieve this by dividing the course into two parts: methodologiescommon in potential-field methods in Part I and discussion of toolsand applications specific to mineral exploration or oil & gas reservoirmonitoring in Part II. Part I: Common concepts and methodologies1. Fundamentals of potential-field data observed in gravity, gravitygradiometry, and magnetic surveys.2. Data processing methods based on equivalent source techniqueand inverse formulation.3. 3D gravity and magnetic inversions and the practical strategies fortheir efficient solution and applications to large-scale problems.4. Binary inversion potential-field data in 3D.5. Gravity gradiometry.(option) Part II: Mineral exploration track1. Inversion and interpretation of magnetic data affected by remanentmagnetization.2. Case histories from mineral exploration.(option) Part II: Oil & gas track1. Time-lapse monitoring of oil and gas reservoirs.2. Inversion of time-lapse gravity data for reservoir properties. Participants are expected to have a basic background in appliedgeophysics and some knowledge of potential-field methods. Weanticipate the geoscientists in the following areas will benefit fromthe course:•otential-field methods•ineral exploration•ntegrate interpretation•eservoir monitoring•roundwater hydrology</td><td>in-house-true</td><td></td><td>has-book-true</td><td></td><td></td><td></td> </tr> <tr data-row_id="93" class="ninja_table_row_93 nt_row_id_93"> <td>Near Surface</td><td>Non-Seismic Methods</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=595" target="_blank" rel="noopener">Satellite InSAR Data: Reservoir Monitoring from Space</a></b><br/><small><i>By Dr Alessandro Ferretti (TRE ALTAMIRA, Italy)</i></small></td><td>Alessandro Ferretti</td><td></td><td>deformation displacement gps interferometry remote sensing sensors sequestration time-lapse environment</td><td>Satellite radar data for surface deformation monitoring are gainingincreasing attention and not only within the oil and gas community.Co-seismic deformation maps are routinely generated using satelliteimages acquired before and after an earthquake and radar measurementsare now becoming mandatory to be compliant with newenvironmental regulations. Radar data provide a powerful tool forremotely measuring extremely small surface displacements over largeareas and long periods of time, without requiring the installation ofin-situ equipment. However, apart from remote sensing and radarspecialists, only a relatively small number of geoscientists and engineersunderstand how a radar sensor orbiting the Earth can actuallymeasure ground displacements of a fraction of a centimetre. Thiscourse provides a step-by-step introduction to satellite radar sensors,SAR imagery, SAR interferometry and advanced InSAR techniques.Rather than a tutorial for remote sensing specialists, the course startsfrom very basic concepts and explains in plain language the mostimportant ideas related to SAR data processing and why geoscientistsand engineers should take a vested interest in this new informationsource. Instead of providing a thorough analysis of InSAR algorithms,the main aim of the course is to diffuse the news about the potentialimpact of InSAR results on many real-life applications, highlightingwhere and when they can provide effective solutions. Participants willlearn that InSAR is not only an information source for research anddevelopment activities, but also a reliable tool that can be appliedsuccessfully to many different applications, some of them related tothe so-called “nergy transition”nd the need to run “nvironmentalfriendly”nergy projects. Special attention is paid to oil and gasapplications where surface deformation data can provide valuableconstraints on reservoir dynamics, enabling time-lapse monitoring ofvolumetric strains at depth. Volume changes in the reservoir inducedby fluid extraction and injection can induce both subsidence anduplift. Stress changes may then trigger the reactivation of faults andthreaten well integrity. Depending on the depth of the reservoir andthe characteristics of the cap rock, deformation may also be detectableat the surface. After demonstrating case studies focusing onsecondary and tertiary oil recovery, Carbon Capture and Sequestration(CCS) and Underground Gas Storage (UGS), the course describesthe available historical archives of SAR images, allowing, even if notat full worldwide coverage, the estimation of surface deformationphenomena since 1992. The course concludes with a brief discussionof the new satellite sensors to be launched in the next few years andthe new trends in data integration and visualization. Upon completion of the course, participants will be able to:•nderstand the key interest of InSAR for geoscientists and engineers;•nderstand the basic concepts behind Synthetic Aperture Radar(SAR) sensors;•ppreciate the main differences between SAR and optical images;•nderstand the basic data requirements, assumptions, limitationsand applicability of SAR interferometry (InSAR);•iscover advantages and limitations of advanced InSAR techniquesfor estimating sub-centimetre surface deformation phenomenafrom space;•ealize why InSAR data are becoming a standard tool for surfacedeformation monitoring;•ompare InSAR data with in situ measurements, such as: GPS andtiltmeters;•nderstand how surface deformation can be related to geophysicalparameters at depth;•ee how InSAR data are an effective tool for monitoring subsidencephenomena;•nderstand the importance of surface deformation monitoring inCabon Capture and Sequestration (CCS) and Underground GasStorage (UGS) projects;•nderstand why InSAR data can be used as a cost-effective tool forreservoir management, as well as a risk mitigation tool;•tart thinking about future applications of satellite radar data,possibly in synergy with other in-situ observations. 1. Introduction: why are satellite radar data relevant?2. Synthetic Aperture Radar (SAR) sensors: acquisition geometry andimage formation.3. Measuring range variations: the magic of SAR interferometry(InSAR).4. A tool for digital elevation model reconstruction and surfacedeformation analysis.5. Advanced InSAR techniques: from qualitative to quantitative data.6. From surface deformation to volume and pressure changes atdepth.7. Overview of possible applications: subsidence monitoring, fault characterization,calibration of geological models, reservoir monitoring.8. Time-lapse data for Carbon Capture and Sequestration (CCS),Underground Gas Storage (UGS), secondary and tertiary (EOR) oilrecovery projects.9. Available data sources and historical archives of SAR data. A quickoverview of other InSAR applications.10. Summary and future trends. The course is designed for anyone who would like to understandhow satellite sensors can measure surface displacements to a fractionof a centimetre from space. It is not a course for radar specialists.Reservoir engineers, geophysicists, geodesists, geologists should allbe interested in this new tool for surface deformation monitoringthat is becoming more and more a standard. Radar data are stilllargely unknown but their impact on oil & gas and civil protectionapplications can be huge. Rather than a strong background in remote sensing, geophysics andcalculus, curiosity is probably the most important prerequisite. Thecourse can be understood by geoscientists and engineers with amoderate mathematical background.</td><td>in-house-true</td><td></td><td>has-book-true</td><td>has-e-lecture-true</td><td>energy-transition-true</td><td></td> </tr> <tr data-row_id="94" class="ninja_table_row_94 nt_row_id_94"> <td>Near Surface</td><td>Seismic Methods</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=685" target="_blank" rel="noopener">Near Surface Modeling for Static Corrections</a></b><br/><small><i>By Ralph Bridle</i></small></td><td>Ralph Bridle</td><td></td><td>velocity layer modelling upholes refraction staticsdelay-time tomography</td><td>Throughout the class there are two persistent themes, the near-surfaceis complex and any single method does not work everywhere. Thepresentations start with the geomorphology of the near-surface whichis examined, in terms of processes and environments. The physics ofraypath propagation is explained. There are assumptions for the wholecourse: Corrections are not dynamic, physical ground conditions areisotropic and elastic modeling and time domain seismic data processing.A single layer from surface to datum is the initial near-surface model.This is also known as field statics a simple solution supplied byacquisition field crews and often applied as a “first look”. The firstaugmentation of the basic model is from extra information obtainedfrom uphole survey. The upholes are the only direct measurementof the near-surface depth and velocity layers. The multiple layermodel creates improved static corrections over the initial model.Furthermore the uphole interpretation and multiple layer model canadequately define the regional time structure.Refraction statics, of increasing complexity, does provide modelswhich improve the short wavelength focusing of the seismichorizons. The course will describe the theory and assumptions ofintercept-time, plus-minus and generalized linear inversion refractiontechniques. Reduced travel time analysis is shown to infill the delaytime distribution. The modeling culminates with an introduction torefraction tomography.</td><td>in-house-true</td><td>new-course-true</td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="95" class="ninja_table_row_95 nt_row_id_95"> <td>Near Surface</td><td>Seismic Methods</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=581" target="_blank" rel="noopener">The Use of Surface Waves for Near Surface Velocity Model Building</a></b><br/><small><i>By Dr Laura Valentina Socco (Politecnico di Torino, Italy)</i></small></td><td>Laura Valentina Socco</td><td></td><td>2d 3d algorithm dispersion inversion passive sampling shear wave spectral analysis wave propagation</td><td>The use of surface wave analysis for near-surface characterizationhas dramatically increased in the last decade thanks to the possibilityoffered by this technique for shear wave velocity estimation. Newtools and approaches have been developed for surface wave dataacquisition and analysis to make the method robust and suitable tocomplex systems. The course will supply an overview of the methodstarting from surface wave propagation and dealing with acquisition,processing and inversion of surface wave data. Advantages andweaknesses of different approaches as well as requirements for dataacquisition and analysis will be discussed. Recent developments willbe presented with example of results and applications to differentnear-surface problems. The course will provide the participants with a wide overview ofthe main steps of the surface wave method: acquisition, processingand inversion. Different approaches with their potentialities andlimitations will be discussed through many practical examples to enablethe participants to acquire knowledge about the requirementsand design of data acquisition, processing methods and inversionalgorithms for different applications from small-scale engineeringproblems towards large-scale exploration. •urface wave propagation in homogeneous and layered media;•eometrical dispersion, modal curves and their properties;•he use of surface wave for near surface characterisation: themethod outline;•ata acquisition: on purpose acquired active data, other activedata, passive data;•rocessing: from raw data to dispersion curves;•nversion: stochastic methods, linearized methods (1D, pseudo-2d/3D), higher modes•he final results: resolution and uncertainties•he requirements for acquisition, processing and inversion. Near-surface geophysicists and exploration geophysicists interestedin near-surface velocity models. Participants should have basic knowledge of sampling principles,spectral analysis and inversion of seismic data.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="96" class="ninja_table_row_96 nt_row_id_96"> <td>Reservoir Characterization</td><td>Rock Physics</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=587" target="_blank" rel="noopener">Rock Physics for Quantitative Seismic Reservoir Characterization</a></b><br/><small><i>By Prof. Tapan Mukerji (Stanford University, United States)</i></small></td><td>Tapan Mukerji</td><td></td><td>elasticity integration interpretation lithology modeling offshore oil and gas porosity reservoir characterization rock physics sandstone saturation shale uncertainty workflows</td><td>The purpose of the course is to give an overview of rock physicsobservations and models relating reservoir properties such as saturation,lithology, clay content, and pore pressure and their seismic signatures.Understanding this relation can help to improve quantitativeseismic interpretation. The course covers fundamentals of Rock Physicsranging from basic laboratory and theoretical results to practical“ecipes”hat can be immediately applied in the field. Applicationof quantitative tools for understanding and predicting the effects oflithology, pore fluid types and saturation, saturation scales, stress,pore pressure and temperature, and fractures on seismic velocity.Use of rock physics models requires understanding the assumptionsand pitfalls of each model and the uncertainties associated withthe interpretations using these models. Analysis of case studies andstrategies for quantitative seismic interpretation using statistical rockphysics work flows, and suggestions for more effectively employingseismic-to-rock properties transforms in Bayesian machine learningfor reservoir characterization and monitoring, with emphasis on seismicinterpretation and uncertainty quantification for lithology andsubsurface fluid detection. On completion of the course, participants will be able to:•se rock physics models with a better understanding of assumptionsand pitfalls;•ombine statistical rock physics in quantitative seismic interpretationworkflows;•elect appropriate rock physics models for reservoir characterization;•se rock physics models to build appropriate training sets forBayesian machine learning applications in quantitative seismicinterpretation. •ntroduction to Rock Physics, motivation, introductory examples•arameters that influence seismic velocities - conceptual overview•ffects of fluids, stress, pore pressure, temperature, porosity, fractures•ounding methods for robust modeling of seismic velocities•ffective media models for elastic properties of rocks•assmann Fluid substitution –ses, abuses, and pitfalls•erivation, recipe and examples, useful approximations•artial saturation and the relation of velocities to reservoir processes•he importance of saturation scales and their effect on seismicvelocity•haly sands and their seismic signatures•ranular media models, unconsolidated sand model, cementedsand model•elocity dispersion and attenuation; Velocity Upscaling•ock Physics of AVO interpretation and Vp/Vs relations•uantitative seismic interpretation and rock physics templates•tatistical rock physics, Bayesian machine learning and uncertaintyquantification•ock physics modeling to augment deep learning training data•xample case studies using AVO and seismic impedance for quantitativereservoir characterization The course is recommended for all geophysicists, reservoir geologists,seismic interpreters, and engineers concerned with reservoir characterization,reservoir delineation, hydrocarbon detection, reservoirdevelopment and recovery monitoring. No specific prerequisites needed.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="97" class="ninja_table_row_97 nt_row_id_97"> <td>Reservoir Characterization</td><td>Rock Physics</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=599" target="_blank" rel="noopener">3D Printing Geological Models For Education, Research, and Technical Communication – 3D Printing as an Emerging Technology in Geosciences</a></b><br/><small><i>By Prof. Dr Franciszek Hasiuk (Iowa State University, United States) and Dr Sergey Ishutov (University of Alberta, Canada)</i></small></td><td>Franciszek Hasiuk and Sergey Ishutov</td><td></td><td>carbonates fractures modeling permeability porosity reservoir characterization rock physics sandstone tomography</td><td>3D printing is an emerging technology in the geosciences that providesa fast, cost-effective way to transform digital designs into tangiblemodels. These tangible models enable a physical representationof 3D geometries and enhance communication among researchers,students, technical management, and non-experts. Whereas digitalmodels can be viewed only on a screen, a 3D printed model can beexperienced with other senses: it can be viewed at different lightangles and manipulated. For research purposes, 3D-printed modelscan be experimented with in the laboratory to validate numericalpredictions of rock properties.The course is designed in two days to cover broad topics related tovarious 3D printing applications. Day 1 provides an overview of different3D printing techniques that use both rock-like materials (e.g.,sand, gypsum, clay) and polymers (e.g., plastics, resins). While thesecost-effective methods are shaping the future of manufacturing,3D printing geological media requires profound understanding ofcapabilities and limitations of each technique and its material properties.Day 1 includes a module on how to digitally design and 3Dprint models for use in reservoir rock analysis, geomorphology, andpaleontology. For reservoir rock analysis, 3D printing of near-identicalrock proxies provides an approach to conduct repeatable laboratoryexperiments without destroying natural rock samples. The coursealso discusses case studies of 3D printing applications in the geoscienceand engineering research as well as in the petroleum industry.Participants will learn how to deploy 3D-printed models to improvetechnical communication to diverse audiences (e.g., engineers, managers,community stakeholders). The integration of digital data setswith 3D-printed surface and subsurface features will help participantto learn about communication for societal objectives. Discussion of3D printing as a teaching tool will help students and educators tounderstand the practical approaches of using 3D-printed models inexplaining complex concepts and 3D data. The course will provideinsights on future implementation of 3D printing techniques ingeosciences, including reduced costs of 3D printers, open-sourcesoftware, and free access to digital model repositories.Day 2 involves practical components of using 3D printing for characterizationof reservoir rocks and geomorphic features. 3D-printedporous and fracture models are used to investigate fundamentalresearch questions in the areas of single and multiphase fluid flowas well as reactive transport in reservoir sandstones and carbonaterocks. Participants will design 3D-printable models containing poreand fracture networks using CAD and computed tomography data.They will have an opportunity to manufacture their models with local3D printing shops. In addition, participants will be provided withpre-printed replicas equivalent to their digital models to investigatethe fidelity of 3D printing techniques and materials. Participants willlearn how 3D-printed models can be used in destructive and non-destructiveanalyses to study geomechanical and transport properties(e.g., porosity, pore sizes, grain sizes, fracture apertures, connectivityof pore and fracture networks). Participants will also gain experiencewith TouchTerrain app that allows to generate 3D-printable terrainmodels with no CAD or GIS software. On completion of the course, participants will be able to:•nderstand capabilities and limitations of different 3D printingtechniques;•emonstrate how to digitally design 3D-printable models usingCAD software or computed tomography data;•rovide the assessment of digital models and their relative3D-printed replicas;•haracterize how 3D printing can increase the effectiveness ofcommunicating geoscience data;•pply 3D printing in current or future research and teaching. Day 1: Introduction to 3D printing and review of its current applications•ecture “verview of 3D printing technlogy”- Brief history of 3D printing- Common 3D printing techniques- Materials used and their physical and chemical properties- Current and future advances of 3D printing•ctivity “ethods of transforming digital models into 3D-printedobjects”- Which geoscience data are 3D-printable- Which 3D printer and material fit digital model parameters•ecture “pplications of 3D printing in the geoscience and engineeringresearch”- Use of 3D printing in petroleum industry- 3D printing as a tool in reservoir rock analysis- Scaling in geomorphology, geomechanics, and groundwaterstudies•ctivity “D printing as a communication tool for”- Technical management- Community stakeholders- Researchers presenting their technical studies to both experts andnon-experts•ctivity “D printing as a teaching tool for”- Students learning new 3D concepts and models- Researchers involved in data exchange•ive demonstration of 3D printing rock, fossil, and terrain modelsin the course of day 1Day 2: Application of 3D printing in modeling porous media andgeomorphic features•ractical exercise “igital design of 3D-printable models”- With CAD (idealized porous models)- From computed tomography data (reservoir rock samples)- Using TouchTerrain app (terrain models)•ctivity “ssessment of accuracy of 3D-printed models”- Success or failure of external and internal features- Post-processing efficiency and precision•ecture “alidation of flow properties in reservoir rock models”- Advantages of destructive tests- Limitations of non-destructive tests- Value of adding 3D printing into reservoir characterization workflow•D printing models in coordination with local 3D printing servicecompanies•ive demonstration of 3D printing reservoir rock models The course is designed in 2 days to accommodate a broad rangeof participant groups. Day 1 of the course covers overview of 3Dprinting techniques and methods and is intended for general audience.It is useful for students, geoscientists, engineers, who areinterested in current advances of 3D printing in research and teaching.It can also be beneficial for managers and stakeholders whowant to learn the use of 3D printing in technical communications.Day 2 covers research applications of 3D printing in porous mediaand geomorphology and involves practical section on creating3D-printable models of reservoir rocks and terrains. It is beneficialfor geologists, petrophysicists, stratigraphers, geophysicists, geomorphologists,reservoir and geomechanical engineers and geomodellersfrom both industry and academia who are interested in transformingdigital models into tangible objects that can be viewed, touched,manipulated, and tested in the lab as natural rocks. Participantswill receive hand-on experience on creating digital rock and terrainmodels, validating their accuracy and exploring the best methods to3D print them. In addition, day 2 of the course will involve reviewof current advances in research on 3D printing reservoir rock modelsthat involves investigation of petrophysical and geomechanicalproperties of 3D-printed rock analogues. Skills obtained during day1 will allow participants to be engaged in day 2 activities withoutprerequisites. If participants take only day 2, basic knowledge aboutmajor 3D printing techniques and materials as well as CAD modelingand computed tomography is required. Prior knowledge of CAD modeling and interpretation of computedtomography data would be useful, but is not required.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="98" class="ninja_table_row_98 nt_row_id_98"> <td>Reservoir Characterization</td><td>Rock Physics</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=597" target="_blank" rel="noopener">Applied Microfacies</a></b><br/><small><i>By Prof. Dr Michael Poppelreiter (Shell, Kuwait)</i></small></td><td>Michael Poppelreiter</td><td></td><td>carbonates diagenesis mineralogy permeability stratigraphy thin section wells</td><td>Hands-on microfacies characterization using industry data sets. Analysis:mineralogy, components, pore types, diagenesis. Participants areinstructed on how to capture observations such that patterns andrules might be detected. The course encourages participants to thinkof processes and products during thin section characterization.Industry data sets are used to illustrate the use of microfacies characterizationto help solve operational issues of carbonate fields.Production increase is demanded. Wells (fully cored) show contraryproduction behavior. The stratigraphy is ‘ayer cake’nd both wellsare perforated in the highest perm interval of a few meters thick.Thin sections are linked with petrophysical data, openhole logs andproduction data. Course participants are encouraged to use thinsection descriptions to develop a conceptual model for permeabilitybased on a depositional model architecture based on the investigationof available this sections. Upon completion of the course, participants will be able to:•uality control thin sections.•etermine the mineralogy of a stained section.•haracterize fossiliferous and non-fossiliferous components suchas ooids or brachiopods.•lassify the carbonate texture (Dunham) and grain geometry. The course is designed for geologists, petrophysicists, stratigraphersas well as explorers in academic and industry positions. Participants should have knowledge of the principles of carbonategeology and a fundamental understanding of petrophysics.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="99" class="ninja_table_row_99 nt_row_id_99"> <td>Reservoir Characterization</td><td>Rock Physics</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=583" target="_blank" rel="noopener">Explorational Rock Physics and Seismic Reservoir Prediction</a></b><br/><small><i>By Dr Per Avseth (Independent Consultant, Norway) and Prof. Dr Tor Arne Johansen (University of Bergen, Norway)</i></small></td><td>Per Avseth and Tor Arne Johansen</td><td></td><td>4d attenuation carbonates interpretation inversion lithology remote sensing</td><td>The field of rock physics represents the link between qualitativegeologic parameters and quantitative geophysical measurements.Increasingly over the last decade, rock physics stands out as a keytechnology in petroleum geophysics, as it has become an integralpart of quantitative seismic interpretation. Ultimately, the applicationof rock physics tools can reduce exploration risk and improve reservoirforecasting in the petroleum industry.This course covers fundamentals of rock physics, ranging from basiclaboratory and theoretical results to practical recipes that can be immediatelyapplied in the field, presenting qualitative and quantitativetools for understanding and predicting the effects of lithology, porefluid types and saturation, stress and pore pressure, fractures andtemperature on seismic velocity and attenuation.The importance and benefit of linking rock physics to geologic processes,including depositional and compactional trends as well astectonic uplift and unloading, are key to this course, which demonstratesin detail how to build so-called rock physics templates thatcan be used to interpret both well log and seismic inversion data interms of geological trends and reservoir properties. It is important inexploration and appraisal to extrapolate away from existing wells,taking into account how the depositional environment changesas well as burial depth trends. In this way rock physics can betterconstrain the geophysical inversion and classification problem inunderexplored marginal fields, surrounding satellite areas, or in newfrontiers.In particular, we focus on how rock physics properties, fluid sensitivitiesand associated seismic signatures change as we go from soft sedimentsin the shallow subsurface to well consolidated rocks that haveundergone more severe mechanical and chemical compaction, andeven uplift and brittle deformation. Likewise, we show how seismicamplitudes can change drastically as we go from one depositionalenvironment to another, for instance in a channel-levee complex aswe go from central axis to the levee and overbank area.The course includes practical examples and case studies, as wellas suggested workflows, where rock physics models are combinedwith well log and prestack seismic data, sedimentologic information,inputs from basin modeling and statistical techniques to predict reservoirgeology and fluids from seismic amplitudes. Upon completion of the course participants will understand:•he link between geologic processes and rock physics properties;•ore fluid / rock interactions during wave propagation;•pscaling and heterogeneous reservoirs;•ow to build their own rock physics template.•he ultimate goal is to improve the understanding of seismic amplitudesand predict geologic and reservoir parameters from seismicinversion data and at the same time create awareness aboutlimitations and pitfalls. •asic rock physics theory and relations;•luid and lithology substitution for reservoir rocks;•ore fluid —ock interactions during wave propagation;•ow to build a Rock Physics template;•pscaling and seismic signatures of heterogeneous reservoirs;•ntroduction to shale and carbonate rock physics. The course is intended for geophysicists, geologists and petrophysicistswho wish to be involved in quantitative seismic interpretation.The course will focus on how rock physics can be used in explorationbut many aspects will also be relevant for production and 4D geophysics. Fundamental understanding of physics and mathematics. Educationalbackground and/or practical experience in geology, geophysicsand/or petrophysics.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="100" class="ninja_table_row_100 nt_row_id_100"> <td>Reservoir Characterization</td><td>Rock Physics</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=585" target="_blank" rel="noopener">Rock Physics and Computational Geophysics</a></b><br/><small><i>By Dr José Carcione (OGS, Italy)</i></small></td><td>José Carcione</td><td></td><td>anisotropy attenuation borehole geophysics electromagnetism environmental geophysics hydrocarbon exploration poroelasticity synthetic seismograms viscoelasticity wave simulation</td><td>This course presents the fundamentals of the physical principlesand computational techniques for wave propagation in anisotropic,anelastic and porous media, including the analogy between acousticwaves (in the general sense) and electromagnetic (EM) waves. Theemphasis is on geophysical applications for hydrocarbon exploration,but researchers in the fields of earthquake seismology, rock physics,and material science, -- including many branches of acousticsof fluids and solids (acoustics of materials, non-destructive testing,etc.) -- may also find the material useful. The course illustrates theuse of seismic and EM modeling, with an account of the numericalalgorithms for computing synthetic seismograms, diffusion fields andradargrams, with applications in the field of geophysical prospecting,seismology and rock physics, such as evaluation of methane hydratecontent, upscaling techniques, detection of overpressure, Antarcticand permafrost exploration, exploration of the Earth’ deep crust,time-lapse for monitoring of CO2 injection, seismic modeling in geothermalfields, seismic inversion, etc. On completion of the course, participants will be able to:•nderstand the physics of seismic (and EM) wave propagationand diffusion fields in real media, such as rocks and geologicalformations;•olve complex problems using numerical methods, as finite-differences,Fourier techniques, and machine learning methods;•pply these concepts to seismic and EM applications, such ashydrocarbon prospection, earthquakes, surface radar applications,EM low-frequency methods for environmental problems, rockphysics, etc. Methods:•echanical viscoelastics models•he wave equation with attenuation•eismic anisotropy•eismic attenuation•oroelasticity•eismic rock physics•ooke’ law and wave equation•orward modeling. Computation of synthetic seismograms•eflection coefficients. AVO•M rock physics•axwell’ equation•he seismic-EM analogy•eo-radar equations•he diffusion equation in EM prospecting•achine learning methods. Neural networks, genetic algorithms,etc.Applications :•luid flow in porous rocks•nconventional resources. Oil and gas shales•ross-well seismic and EM methods•pscaling methods•VO cases•ock-physics templates• and velocity anisotropy in fractured media•eophone-soil coupling models•hysics and simulation of waves at the ocean bottom•ecent advances to model waves in reservoir and source rocks•heory, simulation and case histories for detection and quantificationof gas hydrates•heories for pore-pressure prediction and mud-weight design,with case histories•eismic-modeling case histories•eismic inversion•icroseismicity•orehole waves•njection of fluids and seismic and EM monitoring. Time-lapsecases•ools for GPR applications. The course is useful for geologists, geophysicists, petrophysicists andreservoir engineers. The emphasis is on geophysical applications forhydrocarbon exploration, but researchers in the fields of earthquakeseismology, rock acoustics and material science –ncluding manybranches of acoustics of fluids and solids (acoustics of materials,nondestructive testing, etc.) –ay also find this course useful. Participants should have knowledge of the basic concepts of wavetheory.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="101" class="ninja_table_row_101 nt_row_id_101"> <td>Reservoir Characterization</td><td>Rock Physics</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=589" target="_blank" rel="noopener">Modern Seismic Reservoir Characterization</a></b><br/><small><i>By Dr Leon Thomsen (Delta Geophysics, United States)</i></small></td><td>Leon Thomsen</td><td></td><td>anisotropy avo elasticity fluid fractures geomechanics gassmann impedance interpretation lithology pore pressure porosity rock physics shale</td><td>Classical reservoir characterization typically assumes that the reservoiris elastically and hydraulically isotropic, and may be adequatelyanalyzed using core and/or log data. However, most real reservoirsare elastically and hydraulically anisotropic, and spatially heterogeneous(on many scales), so that core and/or log data are notrepresentative of the larger reservoir volume. This applies to bothconventional and unconventional reservoirs. Hence, the best meansto physically characterize most real reservoirs, throughout theirvolume, uses seismic data, acquired and interpreted anisotropically.This course summarizes the state-of-the-art of seismic reservoircharacterization, using anisotropic seismic rock physics. The coursenormally requires 16 hours of instruction, and includes numerousclassroom exercises. Topics include:•ontext: A world with excess supply of oil, and low demand. Theshale revolution. Hubbert’ extended Peak.•hysical principles: Aliased data. Inhomogeneous formations.Friendly multiples. Spatial resolution•ntroduction to Anisotropy: Weak. Polar. Azimuthal. Shear wavesplitting.•ithology: Shale content from anisotropy itself.•eomechanics: Without Poisson’ ratio or Young’ modulus, sincethese are isotropic concepts.•luids: Logical error in Gassmann poroelasticity.•ore pressure: Subsurface fluid compartments. Anisotropicvelocities for calibration.•nisotropic AVO: Including the anisotropic term in the AVOgradient, a first-order effect!•ractures: No penny-shaped cracks. Multiple fracture-sets.•ermeability: 4D gives the best seismic measure. Impermeablebarriers. Upon completion of this course, participants will:•ealize that many of the assumptions of conventional reservoircharacterization do not apply to the Real World•nderstand the basic elements of anisotropic seismics•e able to implement that understanding to estimate lithology,pore pressure fractures, and permeability from seismic data, withappropriate caveats•e able to apply post-Gassmann fluids estimation•e able to forward-model anisotropic AVO, and to find themissing parameter from the data. ContextThe Shale RevolutionHubbert’ Extended PeakThe geophysical response: subsurface physical characterizationPhysical principlesRequirement for, and limitations of seismic dataEquation of motion vs wave equationFriendly multiplesExercise: Thin layersAnisotropyWeak polar anisotropy parametersExercise: Plane-wave velocitiesP-waves: normal moveout; abnormal moveoutAzimuthal anisotropyLithologyShale content from anisotropyGeomechanicsCompliance vs stiffnessYoung’ modulus, Poisson’ ratio, bulk modulusExercise: geomechanics moduliFluidsBiot, GassmannBiot vs GassmannBrown and KorringaDetermining the parametersExercise: Post-Gassmann fluid dependenceEffective mediaFluid effects on anisotropic formationsExercise: Thin-layer fluid dependencePore pressureSubsurface fluid compartmentsEffect of anisotropy on pore pressure estimationAnisotropic AVOEffect of polar anisotropy on AVO gradientExercise: Anisotropic AVODetermining the parameterEffect of azimuthal anisotropy on AVO gradientCracks and fracturesCrack formation by unequal stressesMicrofractures and macro jointsEffects of cracks on velocitiesShear wave splittingExercise: 2Cx2C rotationPermeabilityPermeability tensorCleating in CoalBed MethaneFractures in the Austin Chalk4D permeability in the North Sea This course is designed for geophysicists with five or more years ofprofessional experience, whose management expects them to gobeyond subsurface imaging to physically characterize subsurfacereservoirs. Their conventional tools for doing that are based ondemonstrably false assumptions. This course will help them to usetheir experience in modern ways to address the same challenges. This course is designed for geophysicists with five or more years ofprofessional experience, whose management expects them to gobeyond subsurface imaging to physically characterize subsurfacereservoirs. Their conventional tools for doing that are based ondemonstrably false assumptions. This course will help them to usetheir experience in modern ways to address the same challenges.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="102" class="ninja_table_row_102 nt_row_id_102"> <td>Reservoir Characterization</td><td>Geomechanics</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=593" target="_blank" rel="noopener">Geophysics Under Stress: Geomechanical Applications of Seismic and Borehole Acoustic Waves</a></b><br/><small><i>By Dr Colin Sayers (Schlumberger, United States)</i></small></td><td>Colin Sayers</td><td></td><td>anisotropy drilling elasticity fractures monitoring pore pressure production rock physics sand shale</td><td>The state of stress within the earth has a profound effect on thepropagation of seismic and borehole acoustic waves, which leads tomany important applications of elastic waves for solving problems inpetroleum geomechanics. The purpose of this course is to provide anoverview of the sensitivity of elastic waves in the earth to the in-situstress, pore pressure and anisotropy of the rock fabric resulting fromthe depositional and stress history of the rock and to introduce someof the applications of this sensitivity. The course will provide the basisfor applying geophysics and rock physics solutions to geomechanicalchallenges in exploration, drilling and production. A variety ofapplications and real data examples will be presented and particularemphasis will be placed on the rock physics basis underlying the useof geophysical data for solving geomechanical problems. Upon completion of the course, participants will have an understandingof the sensitivity of elastic waves in the earth to mineralogy,porosity, pore shapes, pore fluids, pore pressures, stresses and theanisotropy of the rock fabric resulting from the depositional andstress history of the rock and how to use this understanding inquantitative interpretation of seismic data and in the construction ofmechanical earth models. The following topics will be addressed in the course:•ntroduction to the effects of stress in the earth. Why pore pressure,in-situ stress and geomechanical properties are important.•ediment compaction and the state of stress in the earth. Verticalstress, pore pressure and sediment compaction. Horizontal stressin a relaxed basin. Estimation of the minimum and the maximumhorizontal stress. Tectonic strains.•ore pressure. Velocity vs. effective stress relations. Pore pressureestimation from velocity. Clay diagenesis. Unloading. The need forfit-for-purpose seismic velocities. Uncertainty analysis. Combiningseismic velocities with well velocities for improved pore pressureestimation. Dipping layers and lateral pore pressure transfer.•tress sensitivity of sandstones. Third-order elasticity theory. Dependenceof elastic wave velocities on porosity in sandstones.The importance of compliant grain boundaries, microcracks andfractures on velocities in sandstones. The use of elastic waves tomonitor stress-induced damage.•ellbore stability and wave velocities near a borehole. Stresschanges in the vicinity of a borehole. Mechanical behavior of rockin the vicinity of a borehole. Stress dependence of elastic wavevelocities. Linearized expressions for the change in velocity forsmall changes in stress.•eservoir geomechanics and 4D seismic monitoring. Reservoirstress path. The effect of stress path on rock deformation andfailure. Rock failure. Monitoring reservoir stress changes usingtime-lapse seismic. The difference in reservoir stress path betweeninjection and depletion.•ractured reservoirs. Effects of fractures on seismic waves. Multiplefracture sets. Amplitude Versus Offset and Azimuth (AVOA). Simplificationsfor weak anisotropy. Effects of inequality between thenormal and shear compliance of fractures. Microstructural modelsof fracture compliance.•he seismic anisotropy of shales. The relation of shale anisotropyto microstructure. The effect of interparticle regions on seismicanisotropy. Clay mineral anisotropy. Effect of disorder in the orientationof clay particles. The static elastic moduli for a TI mediumand the implications for hydraulic fracture containment. The integrated nature of this course means that it is suitable forindividuals from all subsurface disciplines including geophysics, geomechanics,rock physics, petrophysics, geology, geomodelling anddrilling and reservoir and petroleum engineering. The short-coursepresentation, limited to one-day, will provide an overview of the basicconcepts and applications and minimizes the use of mathematicaldevelopments. As a result, the course presentation does not requirea theoretical background and can be attended by a broad section ofworking geoscientists and engineers interested in applying geophysicaldata to the solution of geomechanical problems. The course bookwill provide support for the lecture and further extend some of themore technical considerations. Participants should have a basic knowledge of geology, geophysicsand petrophysics.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="103" class="ninja_table_row_103 nt_row_id_103"> <td>Reservoir Characterization</td><td>Geomechanics</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=591" target="_blank" rel="noopener">Applied Oilfield Geomechanics</a></b><br/><small><i>By Dr Jorg Herwanger (MP Geomechanics, United Kingdom)</i></small></td><td>Jorg Herwanger</td><td></td><td>4d seismic calibration displacement fault re-activation mechanical properties mud weight pore pressure strain stress wellbore stability</td><td>3D geomechanical models are frequently used to assess the stateof stress inside the Earth. Knowledge of the stress-state in a reservoirand the surrounding rock allows assessing the risk of reservoircompaction, wellbore failure, sanding, breach of seal integrity andfault re-activation amongst others. Three-dimensional seismic dataand inversion models can be used in building geomechanical modelsand time-lapse (4D) seismic data provide a means of calibrating thedynamic behaviour of reservoir geomechanical models. The purposeof this course is to provide an overview of currently available workflowsto build and run calibrated 3D and 4D geomechanical models,maximizing the use of seismic data.By attending the course, participants will deepen their insight intoeach of the elements that comprise a 3D and 4D geomechanicalmodel. Special attention is given to the way that seismic data assistin the process, what other data sources are required, how to calibrategeomechanical models and finally, how to interpret geomechanicalmodels for a range of applications. The purpose of this course is to:1. Provide an overview of the currently available techniques of buildingand calibrating 3D and 4D geomechanical models;2. Demonstrate the interaction between rock properties, pore pressureand stress state;3. Apply the knowledge of stress state from geomechanical modelsto field development and reservoir management;4. Understand the limitations of current workflows and techniquesand give a glimpse of the road ahead. •ntroduction: Applications of geomechanics in the oilfield life-cycle;•ock mechanical properties:- Elastic and strength properties;- How do you derive mechanical properties in practice.•tress and strain tensors:- Workflow for building 3D and 4D geomechanical models;- Calibration of 3D geomechanical models using well-centric 1Dgeomechanical models;- Analysis and display of displacement vectors, strain tensors andstress tensors.•ase studies:- Building a 3D geomechanical model using seismic AVO inversionin an onshore tight gas reservoir;- Geomechanical controls on hydraulic stimulation;- Wellbore stability for inclined wells: Why inclined and horizontalwells behave differently from vertical wells;- Multiple uses of 3D and 4D geomechanical flow models: Applicationsin a deepwater carbonate and clastic fields;- Stress rotations during production and their impact on hydraulicstimulation. Geomechanics projects integrate data and models from many differentsubsurface disciplines, including geophysics, rock mechanicstesting, geology, geomodelling, rock physics and reservoir engineering.The course is designed for practising geoscientists and engineersand demonstrates how their discipline knowledge contributes togeomechanical modeling.The course is also beneficial to students of petroleum geoscience(geophysics and geology). Finally, the course also appeals to managersof subsurface teams, increasing the appreciation of the complexityof the subsurface workflows that his or her team needs to address. This course is aimed at geoscientists and engineers with an interestin geomechanics, be their background in geology, geophysics,rock physics, reservoir engineering or geomechanics. The coursewas developed mainly with a practicing geophysicist or geologist inmind. The course has an emphasis on making the physics behind thepresented techniques accessible and clear and will appeal to curiousand inquisitive people. This course is also suited for Master’ and PhDstudents as the course (material) is designed in such a way that theprinciples of geomechanics become clear.Geomechanics is still a relatively new discipline in the oilfield environmentand is not taught as part of most university Geoscience-programs.Therefore a lot of graphic examples are included in the coursematerial to aid intuitive understanding.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="104" class="ninja_table_row_104 nt_row_id_104"> <td>Reservoir Characterization</td><td>Geomechanics</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=603" target="_blank" rel="noopener">Oilfield Geomechanics: Application to Drilling, Completions, Reservoir, Production, Geology and Geophysics</a></b><br/><small><i>By Dr David Wiprut (Baker Hughes United States)</i></small></td><td>David Wiprut</td><td></td><td>compaction fault reactivation faults fluid flow fractures hydraulic fracturing in-situ stress pore pressure production prediction rock deformation rock mechanics rock strength sand production prediction subsidence uncertainties wellbore stability</td><td>Stress and pressure act on every reservoir, wellbore and completion.The process of drilling, production and injection will modify stressesand pressures, sometimes to the extent that the risks for failuresin and around the producing wells or even at the surface increaseconsiderably. Geomechanics is the study of the interaction betweencurrent-day stresses and pre-existing structures and lithologies. By understandinghow stresses and rock properties interact, a large numberof oilfield problems and operations can be addressed and optimized,including wellbore instability, sand production, fault reactivations,fracture permeability, pore pressure prediction, casing collapse andshear, compaction and subsidence, hydraulic fracturing, and more.This course provides participants with a solid understanding of rockmechanics, rock mechanical properties, and the associated laboratorymeasurements and procedures used to determine these properties.Additionally, participants will learn how stresses and pressures inthe earth are measured and constrained, through various tools andtechniques of analysis. The participants will understand the risks formechanical rock failure during drilling and field development, theimplications of these failures over the life of the well and field, andhow these can be managed and mitigated.The course is operationally focused and designed to provide an understandingof how drilling and operating costs can be lowered, risksand uncertainties reduced, productivity increased, field developmentstrategies optimized, well planning supported, and safety improvedin conventional and unconventional reservoirs.With 18 exercises, in-chapter and end-of-chapter class discussionquestions, and hands-on demonstrations, this industry-leading classhelps to ensure the participants are ready to identify the geomechanicalrisks hiding in every field.The training course will provide course participants with a detailedunderstanding of geomechanical modeling and model applications.They will learn about:•ock deformation and mechanics•ock failure and rock strength•etermination of the in-situ stresses•ore pressure prediction•ellbore stability•and production prediction•asing collapse and shear•ractures, faults, and fluid flow•ydraulic fracturing•ompaction and subsidence Course participants will:•alculate stresses, pressures, and rock properties•alculate when faults will slip and determine the consequencesof slip•alculate stress concentrations around wellbores drilled inprincipal stress directions•un a quick-look sand production prediction calculation•ain a better understanding of their future reservoir challengesand how geomechanics affects their well planning and reservoirdecisions. Day 1: Overview Basic constitutive laws•ock failure•ore pressure•he tectonic stress field - basic principles•-situ stress determinationDay 2: In-situ stress determination•uilding a geomechanical model - data inputs•ellbore stability•racture pressureDay 3: Geomechanics applied to completions engineering•and production prediction•asing collapse and shear Geomechanics for geology & geophysicsapplications•ractures and faults in three dimensions•racture permeability•ault leakage•eomechanics applied to reservoir engineering•ater floods and hydraulic fracturing•roduction effects - compaction and normal faulting in reservoirs This is a intermediate course for anybody interested or involved insubsurface oilfield operations. Anyone impacted by rock failures,from beginning engineers to highly experienced supervisors andmanagers, can benefit from understanding geomechanics. Knowledge of oilfield operations and practices is desirable, but notcessary.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="105" class="ninja_table_row_105 nt_row_id_105"> <td>Reservoir Characterization</td><td>Geomechanics</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=605" target="_blank" rel="noopener">Seismic Geomechanics: How to Build and Calibrate Geomechanical Models using 3D and 4D Seismic Data</a></b><br/><small><i>By Dr Jorg Herwanger (MP Geomechanics, United Kingdom)</i></small></td><td>Jorg Herwanger</td><td></td><td>geomechanics petrophysics cross discipline</td><td>Three-dimensional geomechanical models are becoming more frequentlyused to assess the state of stress inside the Earth. Knowledgeof the stress-state in a reservoir and the surrounding rock allowsassessing the risk of reservoir compaction, wellbore failure, sanding,breach of seal integrity, fault re-activation and allows the design ofmitigation for these issues. Three-dimensional seismic data and inversionmodels can be used in building geomechanical models and time-lapse (4D) seismic data provide a means of calibrating the dynamicbehavior of reservoir geomechanical models. The purpose of thiscourse is to provide an overview of currently available workflows tobuild and run calibrated reservoir geomechanical models maximizingthe use of 3D and 4D seismic data. Rock-physics, relating the stateof stress in the Earth and the propagation velocity of seismic waves,forms the link between seismic observations and the geomechanicalmodel, and this link will be discussed both from experimental dataand from a theoretical viewpoint. Attendees will learn how a combinationof 3D geomechanical models, coupled to flow models, builtand calibrated with 3D and 4D seismic data help in creating a deepunderstanding of the reservoir depletion processes and the state ofstress in the reservoir and surrounding rock. The purpose of this course is to:•rovide an overview over currently available workflows to build,run and calibrate reservoir geomechanical models maximizing theuse of 3D and 4D seismic data;•pply the understanding gained from running such workflows tofield development and reservoir management;•nderstand the limitations of current workflows and techniquesand give a glimpse of the road ahead. The course addresses the following issues:•ield observations of geomechanically induced time-lapse seismicsignals. Where do they occur and why?•uilding a 3D geomechanical model. Demonstrating a seismic-tosimulation workflow, including building a framework model tosurface and property population from seismically derived properties.•unning coupled modeling of a reservoir simulation model and ageomechanical model. Non-linear stress-strain relationship, reservoircompaction, failure models, stress and strain tensors.•ock-physics for elastic and inelastic deformation. Velocity-stressrelationship for elastic and inelastic deformation. Velocity duringloading and unloading. Stress-induced velocity anisotropy.•ime-lapse seismic observations. Time-lapse time-shifts, AVO attributes,shear-wave splitting.•ase-study of integrating flow model, geomechanical model andtime-lapse observations. The integrated nature of the subject and approach makes this courseappealing to practitioners and researchers from a wide range ofsubsurface disciplines, ranging from geophysics, geomechanics, geomodelling,geology, rock physics and reservoir engineering. Practisinggeoscientists and engineers will appreciate the inter-disciplinaryapproach to addressing reservoir management issues and shouldbe able to use ideas and approaches taught in this course in theirday-to-day work. The course draws heavily on field observations andexamples, while limiting the use of mathematical developments. Thismakes the course appealing to a wide cross-section of geoscientistsand engineers that are interested in the inter-related nature of thesubsurface disciplines. It should also be appealing to managers ofcross-disciplinary subsurface teams, increasing the appreciation ofthe complexity of the subsurface workflows that his or her teamneeds to address. This course is aimed at geoscientists and engineers with an interest inintegration between the different subsurface disciplines. The coursepresents both currently available seismic-to-simulation techniques. Thecourse has an emphasis on making the physics behind the presentedtechniques accessible and clear and will appeal to curious and inquisitivepeople. This course is also suited for Master’ and PhD studentsas the course (material) is designed in such a way that the principlesof geomechanics become clear. Geomechanics is still a relatively newdiscipline in the oilfield environment and is not taught as part of mostuniversity Geoscience-programs. Therefore a lot of graphic examplesto aid intuitive understanding are included in the course material.</td><td>in-house-true</td><td></td><td></td><td>has-e-lecture-true</td><td></td><td></td> </tr> <tr data-row_id="106" class="ninja_table_row_106 nt_row_id_106"> <td>Training & Development</td><td>Human Resources</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=601" target="_blank" rel="noopener">Mitigating Bias, Blindness and Illusion in E&P Decision Making</a></b><br/><small><i>By Marc Bond (Rose & Associates, United Kingdom) and Creties Jenkins (Rose & Associates, United States)</i></small></td><td>Marc Bond and Creties Jenkins</td><td></td><td>bias calibration decision making economics estimation heuristics intuition objectivity overconfidence planning post-appraisal uncertainty workflows risk</td><td>Decisions in E&P ventures are affected by cognitive bias, perceptualblindness, and various forms of illusion which permeate our analyses,interpretations and decisions. This two-day course examines theinfluence of these cognitive pitfalls and presents techniques that canbe used to mitigate their impact.“ias”efers to errors in thinking whereby interpretations and judgmentsare drawn in an illogical fashion. “lindness”s the conditionwhere we fail to see an unexpected event in plain sight. “llusion”efers to misleading beliefs based on a false impression of reality.All three—ias, Blindness, and Illusion--can lead to poor decisionsregarding which work to undertake, what issues to focus on, andwhether to continue investing time, effort, and money in a given project.The course begins by examining how these cognitive errors affectus. Several different errors are discussed, including: Perceptual Blindness;Illusions of Potential, Knowledge and Objectivity; and Anchoring,Availability, Confirmation, Framing, Information, Overconfidence andMotivational Biases. Exercises, videos, and examples help illustratehow these manifest themselves in our daily activities and affect ourjudgment, often without us realizing it. We then focus on the oil andgas industry where drilling portfolios, production forecasts, resourceassessments, and other activities are regularly impacted. Techniquesare presented that can be used to mitigate cognitive errors and examplesare shown where these techniques have worked.A key element of the course are the mitigation exercises which giveparticipants a chance to apply what’ been learned to real-life situations.For example, what elements of the “nchoring bias”ed tothe belief that the exploration potential of a prospect offshore Brazilwas much greater than it turned out to be? Or, what elements ofthe “onfirmation bias”ed to a decision regarding which analogousdata should be used to predict the outcome of a new drilling project?The second day includes a series of exploration and appraisal casestudies resulting in both positive and negative outcomes. Participantsare asked to identify cognitive errors contributing to the project results,and which of these had the greatest impact. This is followed bya 3-hour, real-world exercise using project data to give participantspractice in addressing cognitive errors. The exercise requires participantsto list all of their assumptions followed by a list of the contraryassumptions. This is followed by an assessment of the impacts if thecontrary assumptions are true, and what key types of data / analyseswill be required to determine which set of assumptions are correct.Finally, the participants identify cognitive errors leading to the actualproject outcome.The course concludes by presenting a summary ‘oolkit’ith mitigationtechniques that can immediately be applied to project workand decisions. This includes a laminated card listing the various typesof bias, blindness and illusion on one side, and the six key steps tomitigate these cognitive errors on the flip side. This helps participantsimmediately apply the concepts to their daily work. Upon completion of the course, participants will be able to:•dentify the influence of Bias, Blindness and Illusion on their analyses,interpretations and decisions;•pply techniques that will mitigate the impact of these in theirproject work and decision-making;•nsure that their behavior does not unwittingly reinforce thesecognitive errors in others. 1. Introduction (1 hour)2. Blindness and Illusion (3 hours)a. Perceptual Blindnessb. Illusion of Knowledge, Potential, and Objectivity3. Bias (4 hours)a. Anchoring, Availability, Confirmation, Framing, Information,and Overconfidence Biasb. Motivational Bias4. Case Studies--an appropriate subset of these will be chosen (2hours)a. Plio-Pleistocene Sandstone (Exploration Well)b. Cambrian Sandstone (Field Appraisal)c. Pliocene Sandstone (Exploration ‘rill or Drop’d. Jurassic Sandstone (Exploration License Round)e. Cretaceous Shale (Field Appraisal)f. Cambrian Sandstone (Field Appraisal)5. Real-World Exercise--one of these will be chosen (3 hours)a. Triassic sandstone, structural play (Exploration Well)b. Fractured carbonate, waterflood potential (Field Appraisal)6. Summary ‘oolkit’1 hour) This course is designed to have broad appeal to all levels and disciplineswithin an organization: junior to senior level geoscientists,junior to senior level engineers, analysts, landmen, HSE, HR, etc. Andmid-level to senior managers and executives.</td><td>in-house-true</td><td></td><td></td><td></td><td></td><td></td> </tr> <tr data-row_id="107" class="ninja_table_row_107 nt_row_id_107"> <td>Training & Development</td><td>Human Resources</td><td><b><a href="https://learninggeoscience.org/local/pages/?id=669" target="_blank" rel="noopener">Navigating Career Challenges and Opportunities of the Energy Transition</a></b><br/><small><i>By Dr. Esther Bloem, Dr. Lucia Levato, Dr. Gwenola Michaud</i></small></td><td>Esther Bloem, Lucia Levato, Gwenola Michaud</td><td></td><td>emotional intelligence soft-skills mental fitness decision making habits change management action plan peer-learning professional development options prioritization coaching</td><td>This extensive online short course helps geoscientists and engineers navigate career challenges and opportunities inherent to the decarbonization and energy transition. The purpose of the course is to set up activities that allow participants to reflect and come to their own conclusions about their current professional situation and next steps. The coaching approach encourages participants to maximize their personal and professional potential by empowering them to plan actions, initiate changes, and track progress toward defined career goals. It aims at enabling a cross-learning environment to face the uncertainties associated with career transitions. Participants share experiences, compare viewpoints and cooperate to establish a positive and supportive atmosphere.The course, designed as a coaching program over five weeks, includes six online meetings of two and half hours (2.5 hours) consisting of group coaching focused on your experiences from the previous week and presentations outlining the self-paced activities for the following week. Each week is supplemented with self-paced activities described in a downloadable activity book.We begin in better understanding yourself and your current behaviors, then consider how to improve interactions and learning from others and the outside world through the 5 following contents:Content 1 – Context Definition & Assessment - You - Who are you? We focus on better understanding the issues, their consequences and their context. You grow a better self-awareness and reconnect with your strengths in order to explore and find proactively durable solutions.Content 2 – Goal Definition - Strategy & Vision - Where? We help in defining your values, goals, vision and mission.Content 3 – Manage life balancing action, energy and direction - How? We assist you in establishing habits and building your path toward your vision.Content 4 – Learn and adjust - Go! We see how to draw new lessons and adjust to overcome hurdles, learning in finding better solutions with others.Content 5 – Cooperation & Opportunity Creation. We focus on creating new opportunities through synergizing and networking. You will go over the key takeaways and findings, as well as practice your elevator pitch.</td><td>in-house-true</td><td>new-course-true</td><td>has-book-true</td><td></td><td></td><td></td> </tr> </tbody><!--ninja_tobody_rendering_done--> </table> </div> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-80b7bf1 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="80b7bf1" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-e11c87b" data-id="e11c87b" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-655f152 elementor-widget elementor-widget-text-editor" data-id="655f152" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p>EAGE Course Catalogue covers <strong>eight main categories</strong>:</p> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-0ba0228 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="0ba0228" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-41a697e" data-id="41a697e" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-c2f2905 elementor-view-default elementor-position-top elementor-mobile-position-top elementor-widget elementor-widget-icon-box" data-id="c2f2905" data-element_type="widget" data-widget_type="icon-box.default"> <div class="elementor-widget-container"> <div class="elementor-icon-box-wrapper"> <div class="elementor-icon-box-icon"> <span class="elementor-icon"> <svg xmlns="http://www.w3.org/2000/svg" id="Geophysics" viewBox="0 0 245 245"><path d="M124.73,2.59a122.5,122.5,0,1,0,122.5,122.5A122.63,122.63,0,0,0,124.73,2.59Zm6,5.9c-2-.1-4-.15-6-.15s-4,.05-6,.15q3-.15,6-.15C126.74,8.34,128.75,8.39,130.74,8.49Z" transform="translate(-2.23 -2.59)" style="fill:#41ad49"></path><path d="M124.73,8.34A116.75,116.75,0,1,0,241.48,125.09,116.88,116.88,0,0,0,124.73,8.34Zm0,8.63A108.24,108.24,0,0,1,232.85,125.09c0,2.74-.21,5.44-.42,8.13H179.2a2.16,2.16,0,0,0-2.1,1.66l-5.29,22.43-5.88-81.42a2.15,2.15,0,0,0-2.13-2h0a2.15,2.15,0,0,0-2.14,2l-7.55,81.77-7.52-69.43a2.16,2.16,0,0,0-4.29,0l-5.73,53.14-6.78-81.09a2.17,2.17,0,0,0-2.15-2h0a2.16,2.16,0,0,0-2.15,2l-6.92,81.17-6.29-35.53A2.16,2.16,0,0,0,108,106l-6.7,66L89.37,56.8a2.15,2.15,0,0,0-2.1-1.93,2.18,2.18,0,0,0-2.18,1.85L74.32,133H17c-.19-2.61-.4-5.21-.4-7.86A108.24,108.24,0,0,1,124.73,17Zm0,216.24a108.25,108.25,0,0,1-107.39-96H76.19a2.16,2.16,0,0,0,2.14-1.85L86.9,74.79,99.16,193.37a2.17,2.17,0,0,0,2.15,1.94h0a2.17,2.17,0,0,0,2.15-1.94l7.26-71.48,6.46,36.5a2.16,2.16,0,0,0,4.28-.19l6.14-72.13,6.53,78.07a2.15,2.15,0,0,0,4.29.05l6-55.7,7.69,71a2.16,2.16,0,0,0,2.15,1.92h0a2.15,2.15,0,0,0,2.13-2l7.11-77.05,5,69.29a2.16,2.16,0,0,0,2,2,2.22,2.22,0,0,0,2.27-1.66l8.14-34.47h51.16A108.24,108.24,0,0,1,124.73,233.21Z" transform="translate(-2.23 -2.59)" style="fill:#fff"></path></svg> </span> </div> <div class="elementor-icon-box-content"> <p class="elementor-icon-box-title"> <span > Geophysics </span> </p> </div> </div> </div> </div> <div class="elementor-element elementor-element-725a3d2 elementor-widget elementor-widget-text-editor" data-id="725a3d2" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p class="LineHeight-1" style="text-align: center">Seismic Acquisition</p> <p class="LineHeight-1" style="text-align: center">Seismic Processing</p> <p class="LineHeight-1" style="text-align: center">Surface Imaging</p> <p class="LineHeight-1" style="text-align: center">Integrated Geophysics</p> <p class="LineHeight-1" style="text-align: center">Seismic Reservoir Characterization</p> <p class="LineHeight-1" style="text-align: center">Mineral Exploration</p> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-4151861" data-id="4151861" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-3675d6f elementor-view-default elementor-position-top elementor-mobile-position-top elementor-widget elementor-widget-icon-box" data-id="3675d6f" data-element_type="widget" data-widget_type="icon-box.default"> <div class="elementor-widget-container"> <div class="elementor-icon-box-wrapper"> <div class="elementor-icon-box-icon"> <span class="elementor-icon"> <svg xmlns="http://www.w3.org/2000/svg" id="Near_Surface" data-name="Near Surface" viewBox="0 0 245 245"><path d="M124.73,2.59a122.5,122.5,0,1,0,122.5,122.5A122.63,122.63,0,0,0,124.73,2.59ZM241.39,121.7c0,1.13.09,2.25.09,3.39s-.06,2.5-.1,3.74c0-1.24.1-2.49.1-3.74S241.42,122.83,241.39,121.7Zm-122.66,120c2,.1,4,.15,6,.15s4-.05,6-.15c-2,.1-4,.16-6,.16S120.72,241.78,118.73,241.68Z" transform="translate(-2.23 -2.59)" style="fill:#94940f"></path><path d="M124.73,8.34A116.75,116.75,0,1,0,241.48,125.09,116.88,116.88,0,0,0,124.73,8.34Zm0,8.63a107.81,107.81,0,0,1,104,137.33,23.14,23.14,0,0,0-10.25,3,22.87,22.87,0,0,1-10.31,2.92c-13.3.53-26.86-2.74-40-5.91-8.93-2.16-18.17-4.39-27.32-5.43a83.83,83.83,0,0,0-11.51-.48V95.57c.12-.07.25-.11.36-.19a11.3,11.3,0,0,0,3.34,1.94,11.78,11.78,0,0,0,15.11-7,11.58,11.58,0,0,0,.16-7.46,16.29,16.29,0,1,0-17.73-27.05A21,21,0,0,0,94.82,67.5,9.06,9.06,0,1,0,85,82.09a10,10,0,0,0,1.5.38A9.07,9.07,0,0,0,92,90.19a13.65,13.65,0,0,0,23.73,10.73v48.63c-7.42,1-14.76,2.61-22,4.17-3,.64-5.93,1.28-8.89,1.88-12.35,2.51-25.33,2.67-37.88,2.83l-5,.07c-1.91,0-3.74-.06-5.48-.14-4.84-.22-9.49-.38-13.93,1.83A107.86,107.86,0,0,1,124.73,17ZM66.46,181.51v-18.1c1.61-.1,3.21-.28,4.81-.42v17.55C69.68,180.85,68.08,181.17,66.46,181.51Zm-37.7-6.84q-2.34-4.5-4.27-9.25A11.92,11.92,0,0,1,28.76,164Zm3.69-10.91c1.19,0,2.43.06,3.79.13l1,0v24.47q-2.55-3.51-4.81-7.25ZM41,164c.38,0,.73,0,1.12,0l3.69-.05v22.56c-1.58.42-3.17.84-4.81,1.29Zm8.5-.08,4.82-.08v20.5l-4.82,1.22Zm8.51-.17c1.6-.05,3.2-.12,4.81-.19v18.77c-1.58.35-3.19.73-4.81,1.12Zm17-1.08c1.61-.18,3.21-.44,4.82-.67v17c-1.61.26-3.21.53-4.82.82Zm8.51-1.26c.81-.14,1.64-.22,2.46-.39l2.35-.5v17.29c-1.61.2-3.22.41-4.81.64Zm8.5-1.67,2.92-.62,1.89-.4v18.15c-1.62.15-3.22.32-4.81.5Zm8.5-1.81c1.6-.34,3.21-.66,4.82-1V176.2c-1.63.1-3.24.22-4.82.35Zm8.51-1.67c1.6-.3,3.2-.57,4.81-.82v20.29L109,176Zm8.5-1.38c1.6-.21,3.21-.38,4.82-.54v21.1c-1.66,0-3.23.1-4.82.15Zm8.5-.8c1.61-.1,3.21-.15,4.82-.17V175.3l-4.82.08Zm8.51-.16c1.6.06,3.21.19,4.81.35v21l-1.09,0h-3.72Zm8.5.81c1.6.23,3.2.45,4.82.74v20c-1.61,0-3.21-.1-4.82-.11Zm8.5,1.45c1.61.32,3.21.65,4.82,1v18.5c-1.6-.07-3.21-.07-4.82-.12ZM160,158l4.81,1.14v17c-1.61-.09-3.2-.26-4.81-.34Zm8.5,2,4.82,1.14v15.58c-1.61-.13-3.21-.23-4.82-.34Zm8.5,2c1.6.36,3.21.7,4.82,1v14.42c-1.6-.16-3.21-.32-4.82-.46Zm8.51,1.72c1.6.29,3.2.56,4.81.8v13.93c-1.6-.19-3.2-.39-4.81-.57ZM194,165c1.6.19,3.21.35,4.82.47v14c-1.6-.22-3.22-.36-4.82-.57Zm8.5.67c1.61,0,3.21,0,4.82,0V180.9c-1.61-.27-3.2-.57-4.82-.82Zm8.51-.27a26.59,26.59,0,0,0,4.81-1v17.92c-1.59-.3-3.21-.54-4.81-.81Zm8.5-2.55c.47-.22.95-.44,1.39-.66a21.9,21.9,0,0,1,6-2.15,107.91,107.91,0,0,1-7.4,16.93Zm-94.79,70.32a107.93,107.93,0,0,1-83.62-39.68c12.67-3.5,23.32-6.14,33.74-8.07H75v0c18.3-3.39,36-4.64,63.25-4.64a421.32,421.32,0,0,1,74.69,6.64A108,108,0,0,1,124.73,233.21Z" transform="translate(-2.23 -2.59)" style="fill:#fff"></path></svg> </span> </div> <div class="elementor-icon-box-content"> <p class="elementor-icon-box-title"> <span > Near Surface </span> </p> </div> </div> </div> </div> <div class="elementor-element elementor-element-9789fc4 elementor-widget elementor-widget-text-editor" data-id="9789fc4" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p class="LineHeight-1" style="text-align: center">Environmental Geophysics</p> <p class="LineHeight-1" style="text-align: center">Non-Seismic Methods</p> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-d95371b" data-id="d95371b" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-b7b3f1f elementor-view-default elementor-position-top elementor-mobile-position-top elementor-widget elementor-widget-icon-box" data-id="b7b3f1f" data-element_type="widget" data-widget_type="icon-box.default"> <div class="elementor-widget-container"> <div class="elementor-icon-box-wrapper"> <div class="elementor-icon-box-icon"> <span class="elementor-icon"> <svg xmlns="http://www.w3.org/2000/svg" id="Geology" viewBox="0 0 245 245"><path d="M124.73,2.59a122.5,122.5,0,1,0,122.5,122.5A122.63,122.63,0,0,0,124.73,2.59ZM8.13,119.09q-.15,3-.15,6t.15,6q-.15-3-.15-6C8,123.08,8,121.07,8.13,119.09Zm110.6,122.59q3,.15,6,.15t6-.15c-2,.1-4,.16-6,.16S120.71,241.78,118.73,241.68Z" transform="translate(-2.23 -2.59)" style="fill:#009ba3"></path><path d="M124.73,8.34A116.75,116.75,0,1,0,241.48,125.09,116.88,116.88,0,0,0,124.73,8.34Zm0,224.87a107.36,107.36,0,0,1-44-9.45V193.93H73V179.24h-7.8v-7.16H57.56v-7.65H24.13a108.08,108.08,0,1,1,208.72-39.34,107.29,107.29,0,0,1-15.48,55.45L125,94.22c12.57-12.36,25.59-24.25,37.16-33-.72-.32-16.59-16.6-16.59-16.6a211.19,211.19,0,0,0-33.1,27.18C82.33,102,65.05,135.71,68,155.41c0,0,20.5-24,45.33-49.43l88.56,94.72A107.77,107.77,0,0,1,124.73,233.21Z" transform="translate(-2.23 -2.59)" style="fill:#fff"></path><rect x="82.6" y="172.44" width="10.19" height="10.19" style="fill:#fff"></rect><rect x="76.08" y="158.17" width="8.56" height="8.56" style="fill:#fff"></rect></svg> </span> </div> <div class="elementor-icon-box-content"> <p class="elementor-icon-box-title"> <span > Geology </span> </p> </div> </div> </div> </div> <div class="elementor-element elementor-element-2b88b13 elementor-widget elementor-widget-text-editor" data-id="2b88b13" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p class="LineHeight-1" style="text-align: center">Structural Geology</p> <p class="LineHeight-1" style="text-align: center">Carbonate Geology</p> <p class="LineHeight-1" style="text-align: center">Stratigraphy</p> <p class="LineHeight-1" style="text-align: center">Geological Modeling</p> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-36fe075" data-id="36fe075" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-b0bf998 elementor-view-default elementor-position-top elementor-mobile-position-top elementor-widget elementor-widget-icon-box" data-id="b0bf998" data-element_type="widget" data-widget_type="icon-box.default"> <div class="elementor-widget-container"> <div class="elementor-icon-box-wrapper"> <div class="elementor-icon-box-icon"> <span class="elementor-icon"> <svg xmlns="http://www.w3.org/2000/svg" id="Engineering" viewBox="0 0 245 245"><path d="M124.73,2.59a122.5,122.5,0,1,0,122.5,122.5A122.63,122.63,0,0,0,124.73,2.59ZM8.13,119.09q-.15,3-.15,6t.15,6q-.15-3-.15-6C8,123.08,8,121.07,8.13,119.09Zm110.6,122.59q3,.15,6,.15t6-.15c-2,.1-4,.16-6,.16S120.71,241.78,118.73,241.68Z" transform="translate(-2.23 -2.59)" style="fill:#85796f"></path><path d="M124.73,8.34A116.75,116.75,0,1,0,241.48,125.09,116.88,116.88,0,0,0,124.73,8.34ZM121.21,153,94.15,118.89h27.06Zm7-34.06h27.29L128.2,153.25Zm-7,90.91L85.67,166.63h35.54Zm7-43.17H164L128.2,210.09Zm0,54.44,40.51-49.21,8,48A107.29,107.29,0,0,1,128.2,233ZM132,159.64l28.64-36,6,36Zm-.25-47.73,21.9-30.23,5,30.23Zm-3.58-7V75.68h21.21Zm-7-.33-21-28.95h21ZM95.77,81.42l22.09,30.49H90.68Zm-7,41.94,28.83,36.28H82.73Zm-8,48.26,40.48,49.17V233A107.41,107.41,0,0,1,72.7,219.81Zm102.41,44.31L158.6,68.69H90.8L66.27,215.9a108.12,108.12,0,1,1,116.87,0Z" transform="translate(-2.23 -2.59)" style="fill:#fff"></path></svg> </span> </div> <div class="elementor-icon-box-content"> <p class="elementor-icon-box-title"> <span > Engineering </span> </p> </div> </div> </div> </div> <div class="elementor-element elementor-element-95234a5 elementor-widget elementor-widget-text-editor" data-id="95234a5" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p class="LineHeight-1" style="text-align: center">Petroleum Engineering</p> <p class="LineHeight-1" style="text-align: center">Reservoir Management</p> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-3c0274d elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="3c0274d" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-9aa6912" data-id="9aa6912" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-7767022 elementor-view-default elementor-position-top elementor-mobile-position-top elementor-widget elementor-widget-icon-box" data-id="7767022" data-element_type="widget" data-widget_type="icon-box.default"> <div class="elementor-widget-container"> <div class="elementor-icon-box-wrapper"> <div class="elementor-icon-box-icon"> <span class="elementor-icon"> <svg xmlns="http://www.w3.org/2000/svg" id="Petrophysics" viewBox="0 0 245 245"><path d="M124.73,2.59a122.5,122.5,0,1,0,122.5,122.5A122.63,122.63,0,0,0,124.73,2.59ZM8,125.09c0,.06,0,.12,0,.18s0-.12,0-.18ZM118.73,241.68q3,.15,6,.15t6-.15c-2,.1-4,.16-6,.16S120.72,241.78,118.73,241.68ZM241.47,125.27c0-.06,0-.12,0-.18h0C241.48,125.15,241.47,125.21,241.47,125.27Z" transform="translate(-2.23 -2.59)" style="fill:#f37321"></path><path d="M124.73,8.34A116.75,116.75,0,1,0,241.48,125.09,116.88,116.88,0,0,0,124.73,8.34ZM213,124.14c-.1.51-.23,1.1-.35,1.68l-.06,0a13,13,0,0,1,.19-1.8,12.82,12.82,0,0,1,.64-2.25C213.33,122.6,213.16,123.48,213,124.14Zm1.5-6.33c-.7-.14-1.78.07-2.79,1.87a13.49,13.49,0,0,0-1.34,3.9,14.23,14.23,0,0,0-.22,3.55l-5.2,2.72a13.8,13.8,0,0,0-.28-6.74c-1.74-6.52-.25-9.74,1.64-13.82.46-1,.93-2,1.38-3.14a1.23,1.23,0,0,0-2.28-.91c-.43,1.07-.89,2.06-1.33,3-1.93,4.17-3.75,8.11-1.78,15.48a10.4,10.4,0,0,1-.51,7.76l-23.37,12.24c1.86-3.8,3-7.1-.41-12.38-3.8-5.91-2.68-10.43-2.64-10.62a1.22,1.22,0,1,0-2.36-.64c-.07.23-1.49,5.71,2.93,12.59,3,4.61,1.82,6.9-.26,11.05-.29.58-.59,1.27-.9,1.9L163,151.82c.4-2.47.38-4.28-1.31-4.61-2.12-.41-3.55,2.86-4.12,5.78a17.5,17.5,0,0,0-.22,1.79L145.57,161a13.91,13.91,0,0,0,.15-6.89c-1.06-5.3-.15-7.93,1-11.25.28-.8.57-1.64.84-2.54a1.23,1.23,0,0,0-2.35-.71c-.26.87-.54,1.68-.81,2.45a20.58,20.58,0,0,0-1.08,12.53c.79,4,0,6.36-1.33,8.29l-13.15,6.88a40.35,40.35,0,0,0,2.38-8.6c1.49-9.08,0-17.31-3.46-21.5l31.5-16.5c-1.23,3.11-1.85,5.67-1.19,8.61.7,3.15-.71,6.7-1.46,8.6q-.24.6-.36,1a1.22,1.22,0,0,0,.78,1.55,1.32,1.32,0,0,0,.39.06,1.23,1.23,0,0,0,1.16-.84c.07-.21.18-.48.31-.82.8-2,2.44-6.16,1.58-10-.67-3,.34-5.61,2.2-9.87l26.5-13.87c-1.8,4.15-2.91,7.22-2.11,10.81.7,3.15-.7,6.7-1.46,8.6-.15.4-.28.72-.36,1a1.23,1.23,0,0,0,.78,1.55,1.32,1.32,0,0,0,.39.06,1.22,1.22,0,0,0,1.16-.84c.07-.2.18-.48.32-.83.79-2,2.43-6.15,1.57-10-.72-3.22.45-5.89,2.57-10.72l.6-1.37,26-13.59c.42,1.45.85,2.78,1.26,3.93,1.35,3.84,2,5.77-.22,8.87-3.45,4.75-1.09,8.92.65,10.46a1.24,1.24,0,0,0,.81.31,1.23,1.23,0,0,0,.82-2.14c-.33-.31-3.23-3.15-.29-7.19s2-7.07.54-11.13c-.43-1.24-.91-2.68-1.35-4.28l5.37-2.81a106.63,106.63,0,0,1,6.18,27.44l-16.88,8.84C216.15,120.92,216.62,118.22,214.53,117.81Zm-54.27,35.45-.25.13a13.64,13.64,0,0,1,.62-2.19C160.52,151.9,160.38,152.64,160.26,153.26Zm-38.15-10.65a.7.7,0,0,1,.24,0c.39.06,1.56,1.14,2.46,3.92a30.36,30.36,0,0,1,.59,13.65c-1.49,9.13-5.82,15.06-8.25,15.67a.72.72,0,0,1-.24,0c-1.44-.24-4.81-6.84-3-17.57C115.35,149.14,119.68,143.22,122.11,142.61Zm32-25a2.29,2.29,0,0,0,.14-.27,28.3,28.3,0,0,0,1.19-3.64c.89-3.09,1.36-4.89.74-6a1.72,1.72,0,0,0-1.05-.84c-.73-.21-1.79-.09-2.95,1.63a13.67,13.67,0,0,0-1.66,3.76c-.57,2-.91,4.64-.13,6a2.15,2.15,0,0,0,.19.22l-21.64,5.4c1.14-.75,2.38-1.58,3.86-2.61a23,23,0,0,0,9.1-11.78c.66-1.68,1.14-2.89,2-3.54a1.23,1.23,0,0,0-1.43-2c-1.5,1.07-2.15,2.72-2.91,4.64a20.57,20.57,0,0,1-8.22,10.67c-8.36,5.85-10.47,6.26-10.43,6.27a1.16,1.16,0,0,0-1,.57l-40,10a23,23,0,0,0,8.9-11.63c.67-1.68,1.14-2.89,2.05-3.54a1.23,1.23,0,1,0-1.43-2c-1.49,1.07-2.15,2.72-2.9,4.64a20.68,20.68,0,0,1-8.22,10.67c-2.26,1.58-4,2.74-5.46,3.62l-8.2,2.05a41.41,41.41,0,0,0,4.33-7.8c3.58-8.48,4-16.84,1.7-21.72L86,106.64a20.84,20.84,0,0,0-6.52,8.77c-.66,1.51-1.14,2.59-2.05,3.17a1.23,1.23,0,0,0-.37,1.7,1.21,1.21,0,0,0,1.69.37c1.54-1,2.21-2.49,3-4.25A18.84,18.84,0,0,1,90,106.77c1.18-.74,2.21-1.36,3.16-1.92l4.58-1.15c-.16.47-.28.88-.35,1.12-.45,1.56-2.51,9.41.72,10.34h0a1.87,1.87,0,0,0,.52.07,2.16,2.16,0,0,0,1.08-.3c1.89-1,3.56-4.9,4.5-8.17a31.61,31.61,0,0,0,1-4.92l21.55-5.38c0,.12,0,.24,0,.36,0,3.09-.06,7-5.8,13-8.7,9.15-12.88,7.49-12.88,7.49a1.23,1.23,0,1,0-1.14,2.17,4.42,4.42,0,0,0,2.07.42c2.44,0,7-1.31,13.73-8.39,6.41-6.75,6.45-11.33,6.48-14.67,0-.37,0-.68,0-1l44.62-11.13c.08.9-.63,2.58-4.24,6.39-4.11,5.15-11.59,8.42-11.67,8.45a1.23,1.23,0,0,0,.49,2.36,1.38,1.38,0,0,0,.49-.1c.33-.15,8.11-3.54,12.54-9.1,4.11-4.33,5.24-6.78,4.84-8.61l8.43-2.1c1.19.84,3.35,3.78,5.07,8.5-1.6.66-4.6,2.29-10.3,6.28a23,23,0,0,0-9.1,11.78,11,11,0,0,1-1.5,2.86l-9.26,4.85Zm-89.31-5.6c1.34.56,3.06,7.78-1.17,17.79-3.2,7.57-8.14,12.45-11.16,13.2a1.61,1.61,0,0,1-.79.05c-1.34-.56-3.06-7.78,1.17-17.8,3.2-7.56,8.14-12.44,11.16-13.2A1.44,1.44,0,0,1,64.8,112.05Zm37.79-9.56a25.93,25.93,0,0,1-.77,3.6,17.32,17.32,0,0,1-3,6.41,17.71,17.71,0,0,1,.87-7c.27-.93.56-1.76.85-2.5Zm70,7a20.53,20.53,0,0,1,8.21-10.64c5.72-4,8.47-5.44,9.66-6,.15.53.31,1,.45,1.61a36.33,36.33,0,0,1,.87,4.94ZM124.73,233.21A108.12,108.12,0,1,1,224.08,82.52l-26.69,14c-.19-1.13-.42-2.29-.71-3.46-2.41-9.67-7.45-16.87-11.67-17l0-.15L102.46,96.44c-.1,0-.2,0-.3.08l-38.87,9.69a2.8,2.8,0,0,1,.28.06,8.14,8.14,0,0,0-1,.1c-5.33,1.33-11.4,7.72-15.17,16.63-4.88,11.57-4,23,2,25.52a7,7,0,0,0,4.51.24c.13,0,.26-.11.4-.14l83.15-20.74-17.94,9.39c.08,0,.17,0,.25,0-5.2,2-10.06,9.94-11.71,20.06-2,12.39,1.52,23.29,7.92,24.34a6.4,6.4,0,0,0,2.61-.13,8.57,8.57,0,0,0,2.32-1L232.69,122c0,1,.16,2.05.16,3.1A108.24,108.24,0,0,1,124.73,233.21Z" transform="translate(-2.23 -2.59)" style="fill:#fff"></path></svg> </span> </div> <div class="elementor-icon-box-content"> <p class="elementor-icon-box-title"> <span > Reservoir Characterization </span> </p> </div> </div> </div> </div> <div class="elementor-element elementor-element-527dc42 elementor-widget elementor-widget-text-editor" data-id="527dc42" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p class="LineHeight-1" style="text-align: center">Rock Physics</p> <p class="LineHeight-1" style="text-align: center">Geomechanics</p> <p class="LineHeight-1" style="text-align: center">Geochemistry</p> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-cd436ad" data-id="cd436ad" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-6de6930 elementor-view-default elementor-position-top elementor-mobile-position-top elementor-widget elementor-widget-icon-box" data-id="6de6930" data-element_type="widget" data-widget_type="icon-box.default"> <div class="elementor-widget-container"> <div class="elementor-icon-box-wrapper"> <div class="elementor-icon-box-icon"> <span class="elementor-icon"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Training_and_Development" data-name="Training and Development" viewBox="0 0 245 245"><defs><clipPath id="clip-path" transform="translate(-2.23 -2.59)"><rect x="2.23" y="2.59" width="245" height="245" style="fill:none"></rect></clipPath></defs><g style="clip-path:url(#clip-path)"><path d="M124.73,2.59a122.5,122.5,0,1,0,122.5,122.5A122.63,122.63,0,0,0,124.73,2.59ZM8.13,119.09q-.15,3-.15,6t.15,6q-.15-3-.15-6C8,123.08,8,121.07,8.13,119.09Zm110.6,122.59c2,.1,4,.15,6,.15s4-.05,6-.15c-2,.1-4,.16-6,.16S120.71,241.78,118.73,241.68Z" transform="translate(-2.23 -2.59)" style="fill:#8f3e0f"></path></g><path d="M124.73,8.34A116.75,116.75,0,1,0,241.48,125.09,116.88,116.88,0,0,0,124.73,8.34Zm0,224.87A108.12,108.12,0,1,1,232.85,125.09,108.24,108.24,0,0,1,124.73,233.21Z" transform="translate(-2.23 -2.59)" style="fill:#fff"></path><path d="M182.78,120.34l1-.36h0l23.53-8.86-81.4-29.82-.56-.21L42.17,112.41l43.45,15.92V152h0c.55,7.06,17.6,12.72,38.58,12.72s38-5.66,38.58-12.72h0V127.86L178.34,122v25a4.14,4.14,0,0,0,0,7.41h0V169h3.79V154.47h0a4.15,4.15,0,0,0,0-7.41V120.59Zm-6.07-2.7h0l-15.51,5.84h0l-37.09,14-37.38-13.7L55.6,112.35l69.75-26.28,68.51,25.1L181.12,116Zm5.42,30.52v1.33a2.28,2.28,0,0,1,0,2.55v1.33h0V152a2.28,2.28,0,0,1-3.79,0v1.33a3.6,3.6,0,0,0,.75.4,3.6,3.6,0,0,1-.75-.4h0V152a2.28,2.28,0,0,1,0-2.55v-1.33h0v1.33a2.28,2.28,0,0,1,3.79,0v-1.33Z" transform="translate(-2.23 -2.59)" style="fill:#fff"></path></svg> </span> </div> <div class="elementor-icon-box-content"> <p class="elementor-icon-box-title"> <span > Training and Development </span> </p> </div> </div> </div> </div> <div class="elementor-element elementor-element-c5b5e42 elementor-widget elementor-widget-text-editor" data-id="c5b5e42" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p class="LineHeight-1" style="text-align: center">Human Resources</p> <p class="LineHeight-1" style="text-align: center">Soft Skills</p> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-563eec0" data-id="563eec0" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-5eb7195 elementor-view-default elementor-position-top elementor-mobile-position-top elementor-widget elementor-widget-icon-box" data-id="5eb7195" data-element_type="widget" data-widget_type="icon-box.default"> <div class="elementor-widget-container"> <div class="elementor-icon-box-wrapper"> <div class="elementor-icon-box-icon"> <span class="elementor-icon"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 245 245"><defs><clipPath id="clip-path" transform="translate(-2.23 -2.5)"><rect x="2.23" y="2.5" width="245" height="245" style="fill:none"></rect></clipPath></defs><g style="clip-path:url(#clip-path)"><path d="M124.73,2.5A122.5,122.5,0,1,0,247.23,125,122.63,122.63,0,0,0,124.73,2.5ZM8.13,119Q8,122,8,125t.15,6Q8,128,8,125T8.13,119Zm110.6,122.59c2,.11,4,.16,6,.16s4-.05,6-.15q-3,.15-6,.15C122.72,241.75,120.71,241.7,118.73,241.59Z" transform="translate(-2.23 -2.5)" style="fill:#8053a2"></path></g><path d="M124.73,8.25A116.75,116.75,0,1,0,241.48,125,116.88,116.88,0,0,0,124.73,8.25Zm0,224.87A108.12,108.12,0,1,1,232.85,125,108.24,108.24,0,0,1,124.73,233.12Z" transform="translate(-2.23 -2.5)" style="fill:#fff"></path><path d="M16.66,125.05A108.07,108.07,0,1,1,124.73,233.13,108.19,108.19,0,0,1,16.66,125.05m224.76,0a116.7,116.7,0,1,0-116.69,116.7,116.83,116.83,0,0,0,116.69-116.7" transform="translate(-2.23 -2.5)" style="fill:#fff"></path><path d="M87.1,85.41a8.19,8.19,0,0,1-3.35.73,8.05,8.05,0,0,1-2.56-.45A8.16,8.16,0,1,1,91.92,78a8.59,8.59,0,0,1-.1,1A8.16,8.16,0,0,1,89,84.18a8.47,8.47,0,0,1-1.9,1.23m31.72,16-23.1,13.34a15.79,15.79,0,0,0-8.62-5.14V93.42a15.81,15.81,0,0,0,8.76-5.29ZM153.6,88.13a15.77,15.77,0,0,0,8.76,5.29v16.17a15.75,15.75,0,0,0-8.62,5.14l-23.1-13.34Zm-23,60.59,23.1-13.34a15.74,15.74,0,0,0,8.62,5.13v16.18A15.81,15.81,0,0,0,153.6,162Zm19.27-24.17c0,.17,0,.33,0,.5s0,.37,0,.56a15.51,15.51,0,0,0,.86,4.65l-26,15.05L98.67,130.26a15.5,15.5,0,0,0,0-10.41l26.06-15,26.05,15a15.91,15.91,0,0,0-.87,4.7m15.8,8.68a7.9,7.9,0,0,1-5.09-1.83,8.07,8.07,0,0,1-3-5.11,7.14,7.14,0,0,1-.13-1.24,7.35,7.35,0,0,1,.13-1.24,8.12,8.12,0,0,1,3-5.11,8.06,8.06,0,0,1,5.09-1.83,8.05,8.05,0,0,1,2.56.45,8.13,8.13,0,0,1,0,15.46,8.05,8.05,0,0,1-2.56.45M95.86,162a15.85,15.85,0,0,0-8.76-5.28V140.52a15.85,15.85,0,0,0,8.62-5.14l23.1,13.34Zm-12.11,2a8.19,8.19,0,0,1,3.35.73,8.47,8.47,0,0,1,1.9,1.23,8.11,8.11,0,0,1,2.82,5.19,8.76,8.76,0,0,1,.1,1,8.18,8.18,0,1,1-10.73-7.73,8.05,8.05,0,0,1,2.56-.45m1.61,23.92a15.81,15.81,0,0,0,14.18-15.24c0-.17,0-.33,0-.5s0-.37,0-.56a15.7,15.7,0,0,0-.8-4.46l26-15,26,15a16,16,0,0,0-.82,5,15.82,15.82,0,1,0,18.38-15.6v-15.9a15.8,15.8,0,0,0,13.26-15.57v0a15.82,15.82,0,0,0-13.26-15.6V93.56A15.81,15.81,0,1,0,149.89,78a16,16,0,0,0,.82,5l-26,15-26-15a15.85,15.85,0,0,0,.8-4.44c0-.19,0-.38,0-.58s0-.32,0-.47A15.79,15.79,0,0,0,85,62.2c-.4,0-.8-.06-1.2-.06s-.64,0-1,0A15.81,15.81,0,0,0,68,77.49c0,.15,0,.31,0,.47s0,.39,0,.58a15.82,15.82,0,0,0,13.24,15v15.89a15.8,15.8,0,0,0,0,31.2v15.9a15.8,15.8,0,0,0-13.24,15c0,.19,0,.37,0,.56s0,.33,0,.5A15.81,15.81,0,0,0,82.27,187.9c.49,0,1,.07,1.48.07s1.08,0,1.61-.08" transform="translate(-2.23 -2.5)" style="fill:#fff"></path></svg> </span> </div> <div class="elementor-icon-box-content"> <p class="elementor-icon-box-title"> <span > Data Science </span> </p> </div> </div> </div> </div> <div class="elementor-element elementor-element-59f9d66 elementor-widget elementor-widget-text-editor" data-id="59f9d66" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p class="LineHeight-1" style="text-align: center">Machine Learning </p> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-a3ea770" data-id="a3ea770" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-2cae16c elementor-view-default elementor-position-top elementor-mobile-position-top elementor-widget elementor-widget-icon-box" data-id="2cae16c" data-element_type="widget" data-widget_type="icon-box.default"> <div class="elementor-widget-container"> <div class="elementor-icon-box-wrapper"> <div class="elementor-icon-box-icon"> <span class="elementor-icon"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50.66 50.66"><g id="b2df460d-e067-4ba7-acdf-3f14fe2e502a" data-name="Layer 2"><g id="f16f8893-a199-4d11-af2e-0dcc521a1fe9" data-name="Layer 1"><path d="M25.33,0A25.33,25.33,0,1,0,50.66,25.33,25.35,25.35,0,0,0,25.33,0ZM1.22,24.09c0,.41,0,.82,0,1.24s0,.83,0,1.24c0-.41,0-.83,0-1.24S1.2,24.5,1.22,24.09ZM24.09,49.44c.41,0,.82,0,1.24,0s.83,0,1.24,0c-.41,0-.83,0-1.24,0S24.5,49.46,24.09,49.44Z" style="fill:#26a9e0"></path><path d="M25.33,49.41A24.09,24.09,0,1,1,49.41,25.33,24.1,24.1,0,0,1,25.33,49.41Zm0-46.57A22.49,22.49,0,1,0,47.81,25.33,22.51,22.51,0,0,0,25.33,2.84Z" style="fill:#fff"></path><path d="M16.33,28.69a6.3,6.3,0,0,0,4.33,9.18A18.19,18.19,0,0,0,24,38h2.33a1.36,1.36,0,0,1,1.39.81,1.3,1.3,0,0,1-.42,1.58,1.36,1.36,0,0,1-1.67-.11c-.59-.49-.83-.52-1.14-.15s-.23.77.27,1.21a2.67,2.67,0,1,0,2.17-4.65,5.25,5.25,0,0,0-.79-.06,24.91,24.91,0,0,1-5.11-.1,5.05,5.05,0,0,1-3.92-3.63,5,5,0,0,1,6.11-5.95.91.91,0,0,0,1.11-.37,5.07,5.07,0,0,1,.36-.45,5.82,5.82,0,0,1,5.68-1.94,5.74,5.74,0,0,1,4.39,3.69,1.48,1.48,0,0,0,1,1,4,4,0,0,1,2.75,4.7,4.1,4.1,0,0,1-3.84,3.1c-.48,0-.72.3-.7.72s.3.66.78.63a5.33,5.33,0,0,0,4.47-2.65,5.24,5.24,0,0,0-.09-5.56,5.69,5.69,0,0,0-2.73-2.18.84.84,0,0,1-.5-.49,6.48,6.48,0,0,0-2.19-2.82,2.15,2.15,0,0,1-1-1.62,8.54,8.54,0,0,0-2.32-4.61,8.73,8.73,0,0,0-15,7,8.9,8.9,0,0,0,.88,3A.59.59,0,0,1,16.33,28.69Zm2.06-9.18a7.34,7.34,0,0,1,13,3.49,10.16,10.16,0,0,0-1.07-.22,7.26,7.26,0,0,0-6.66,2.44.73.73,0,0,1-.72.28,6.24,6.24,0,0,0-5.14,1.41l-.27.23-.08,0A7.34,7.34,0,0,1,18.39,19.51Z" style="fill:#fff"></path><path d="M23.16,33.09c-.69,0-1.38,0-2.07,0a.67.67,0,0,0-.1,1.32,3.66,3.66,0,0,0,.57,0h9.22a6.83,6.83,0,0,0,.79-.06,2.67,2.67,0,1,0-2.16-4.65c-.5.44-.59.83-.28,1.2s.56.34,1.15-.15a1.33,1.33,0,0,1,1.66-.1,1.31,1.31,0,0,1,.43,1.58,1.39,1.39,0,0,1-1.4.81H23.16Z" style="fill:#fff"></path><path d="M29.46,14.91a.68.68,0,0,0,1-.33c.27-.45.53-.9.79-1.36A9.71,9.71,0,0,0,31.93,12,.88.88,0,0,0,32,11.8a.68.68,0,0,0-.52-.71.58.58,0,0,0-.74.31c-.49.84-1,1.67-1.46,2.52A.66.66,0,0,0,29.46,14.91Z" style="fill:#fff"></path><path d="M11.38,17.54c.88.53,1.77,1.05,2.67,1.54.6.32,1.18-.46.84-1a1.06,1.06,0,0,0-.43-.32l-.8-.48c-.53-.31-1.07-.62-1.61-.91l0,0a.65.65,0,0,0-.87.3A.61.61,0,0,0,11.38,17.54Z" style="fill:#fff"></path><path d="M9.94,24.82h2.78c.53,0,.78-.25.78-.69s-.26-.66-.76-.67q-1.41,0-2.82,0c-.51,0-.75.24-.75.67S9.41,24.8,9.94,24.82Z" style="fill:#fff"></path><path d="M36.94,23.46c-.48,0-1,0-1.45,0a.64.64,0,0,0-.7.68c0,.4.24.65.71.66q1.45,0,2.91,0a.63.63,0,0,0,.72-.66c0-.43-.24-.67-.73-.69s-1,0-1.46,0Z" style="fill:#fff"></path><path d="M23.48,12.78a.64.64,0,0,0,.66.71.62.62,0,0,0,.67-.7c0-1,0-2,0-3a.63.63,0,0,0-.68-.68c-.41,0-.64.26-.65.72s0,1,0,1.46S23.46,12.3,23.48,12.78Z" style="fill:#fff"></path><path d="M12.06,31.89c.89-.5,1.79-1,2.67-1.54.58-.35.19-1.25-.44-1.22a1.18,1.18,0,0,0-.49.21l-.81.45c-.54.31-1.08.62-1.61.94l0,0a.65.65,0,0,0-.17.9A.62.62,0,0,0,12.06,31.89Z" style="fill:#fff"></path><path d="M16.33,12.14c.56.86,1.12,1.73,1.71,2.57.39.55,1.26.11,1.19-.52a1.11,1.11,0,0,0-.24-.47l-.5-.79c-.34-.51-.68-1-1-1.54l0,0a.66.66,0,0,0-.91-.11A.63.63,0,0,0,16.33,12.14Z" style="fill:#fff"></path><path d="M36.31,16.47c-.93.45-1.85.9-2.75,1.39-.6.32-.26,1.24.37,1.24a1.16,1.16,0,0,0,.5-.18l.83-.41c.56-.27,1.11-.55,1.66-.84l0,0a.65.65,0,0,0,.22-.89A.62.62,0,0,0,36.31,16.47Z" style="fill:#fff"></path></g></g></svg> </span> </div> <div class="elementor-icon-box-content"> <p class="elementor-icon-box-title"> <span > Energy Transition </span> </p> </div> </div> </div> </div> <div class="elementor-element elementor-element-92c9fe3 elementor-widget elementor-widget-text-editor" data-id="92c9fe3" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p style="text-align: center"><a class="fasc-button fasc-size-medium fasc-type-flat fasc-rounded-medium ico-fa fasc-ico-after fa-angle-double-right" style="background-color: #009b7c;color: #ffffff" href="https://learninggeoscience.org/local/pages/?id=239" target="_blank" rel="noopener">See all courses</a></p> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-e416583 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="e416583" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-df48d79" data-id="df48d79" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-9d86774 elementor-widget elementor-widget-text-editor" data-id="9d86774" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <h2>Interested in teaching for EAGE?</h2><p>The instructors of our training programmes are selected by an expert Education Committee and compose an international and multidisciplinary team. Academic and industry professional can apply to become EAGE instructors by submitting one or more short course proposals (download here our Short Course Proposal Form). Approved courses are scheduled based on instructors’ availability and demand for specific topics. Instructors receive a teaching fee per day and reimbursement for travel, accommodation and meals expenses. For more information or to submit a short course proposal:</p><p><a class="fasc-button fasc-size-medium fasc-type-flat fasc-rounded-medium ico-fa fasc-ico-after fa-comments-o" style="background-color: #009b7c;color: #ffffff" href="mailto:communities@eage.org">Contact EAGE Education</a></p><p> </p><p> </p> </div> </div> </div> </div> </div> </section> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-3a69c4c" data-id="3a69c4c" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-9ccec33 elementor-section-full_width elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-phone elementor-section-height-default elementor-section-height-default" data-id="9ccec33" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-bcef643" data-id="bcef643" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-b124a72 elementor-position-left elementor-widget__width-inherit iconbox-iconleft elementor-view-default elementor-mobile-position-top elementor-vertical-align-top elementor-widget elementor-widget-icon-box" data-id="b124a72" data-element_type="widget" data-widget_type="icon-box.default"> <div class="elementor-widget-container"> <div class="elementor-icon-box-wrapper"> <div class="elementor-icon-box-icon"> <span class="elementor-icon"> <i aria-hidden="true" class="fas fa-newspaper"></i> </span> </div> <div class="elementor-icon-box-content"> <div class="elementor-icon-box-title"> <span > Related news </span> </div> </div> </div> </div> </div> <div class="elementor-element elementor-element-f2a09ec elementor-align-right elementor-widget elementor-widget-button" data-id="f2a09ec" data-element_type="widget" data-widget_type="button.default"> <div class="elementor-widget-container"> <div class="elementor-button-wrapper"> <a class="elementor-button elementor-button-link elementor-size-xs" href="https://eage.org/eage_news/eage-news-archive/"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-icon"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 25 25" style="enable-background:new 0 0 25 25;" xml:space="preserve"><style type="text/css"> .st0{fill:#009B7B;} .st1{fill:#FFFFFF;}</style><g id="Layer_3"></g><g id="Layer_4"> <g> <g id="Path_1173"> <path class="st0" d="M12.5,24.01c6.36,0,11.51-5.15,11.51-11.51S18.86,0.99,12.5,0.99S0.99,6.14,0.99,12.5c0,0,0,0,0,0 C0.99,18.86,6.14,24.01,12.5,24.01"></path> <path class="st1" d="M12.5,24.39c-6.55,0-11.89-5.33-11.89-11.89c0-6.56,5.33-11.89,11.89-11.89c6.56,0,11.89,5.33,11.89,11.89 S19.06,24.39,12.5,24.39z M12.5,1.36c-6.14,0-11.14,5-11.14,11.14c0,6.14,5,11.14,11.14,11.14c6.14,0,11.14-5,11.14-11.14 C23.64,6.36,18.64,1.36,12.5,1.36z"></path> </g> <path id="Path_1175" class="st1" d="M10.61,18.46c-0.57,0.01-1.05-0.44-1.07-1.01c-0.01-0.31,0.12-0.6,0.35-0.81l4.23-4.1 L9.9,8.45c-0.43-0.41-0.44-1.1-0.03-1.53c0.41-0.43,1.1-0.44,1.53-0.03l5.79,5.66L11.4,18.2c-0.19,0.2-0.44,0.31-0.72,0.33"></path> </g></g></svg> </span> <span class="elementor-button-text">Read more news</span> </span> </a> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-e719466 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="e719466" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-25b3286" data-id="25b3286" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-d7acf22 elementor-position-left elementor-widget__width-inherit iconbox-iconleft elementor-view-default elementor-mobile-position-top elementor-vertical-align-top elementor-widget elementor-widget-icon-box" data-id="d7acf22" data-element_type="widget" data-widget_type="icon-box.default"> <div class="elementor-widget-container"> <div class="elementor-icon-box-wrapper"> <div class="elementor-icon-box-icon"> <span class="elementor-icon"> <i aria-hidden="true" class="fas fa-share-alt"></i> </span> </div> <div class="elementor-icon-box-content"> <div class="elementor-icon-box-title"> <span > Stay connected </span> </div> </div> </div> </div> </div> <div class="elementor-element elementor-element-c1b8666 elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="c1b8666" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-ce9306a" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-33645f9" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-03f4c7d" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-x-twitter elementor-repeater-item-2284b44" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">X-twitter</span> <i class="fab fa-x-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-15faf60 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="15faf60" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-378699c ad_skyscraper_column" data-id="378699c" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-cf4b5bd elementor-widget elementor-widget-html" data-id="cf4b5bd" data-element_type="widget" data-widget_type="html.default"> <div class="elementor-widget-container"> <!-- /20287594127/WP_EAGE_skyscraper --> <div id='div-gpt-ad-1734656731221-0' style='min-width: 310px; min-height: 360px;'> <script> googletag.cmd.push(function() { googletag.display('div-gpt-ad-1734656731221-0'); }); </script> </div> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> </div> <div data-elementor-type="footer" data-elementor-id="174" class="elementor elementor-174 elementor-location-footer" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-8de936b footer_green_line elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="8de936b" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-background-overlay"></div> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-fa94818" data-id="fa94818" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-81dfce2 elementor-widget__width-auto elementor-fixed elementor-hidden-phone elementor-view-default elementor-widget elementor-widget-icon" data-id="81dfce2" data-element_type="widget" id="backupthepage" data-settings="{"motion_fx_motion_fx_scrolling":"yes","motion_fx_opacity_effect":"yes","motion_fx_opacity_range":{"unit":"%","size":"","sizes":{"start":"21","end":"42"}},"motion_fx_range":"viewport","_position":"fixed","motion_fx_devices":["desktop","tablet"],"_animation":"none","motion_fx_opacity_direction":"out-in","motion_fx_opacity_level":{"unit":"px","size":10,"sizes":[]}}" data-widget_type="icon.default"> <div class="elementor-widget-container"> <div class="elementor-icon-wrapper"> <a class="elementor-icon" href="#"> <i aria-hidden="true" class="far fa-arrow-alt-circle-up"></i> </a> </div> </div> </div> </div> </div> </div> </section> <footer class="elementor-section elementor-top-section elementor-element elementor-element-8bc4f38 elementor-section-height-min-height elementor-section-content-middle elementor-hidden-mobile elementor-section-boxed elementor-section-height-default elementor-section-items-middle" data-id="8bc4f38" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-65982f09" data-id="65982f09" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-f251e86 elementor-widget elementor-widget-image" data-id="f251e86" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img src="https://eage.org/wp-content/uploads/2020/03/EAGE_logo_diap_bijschrift.svg?w=768" title="EAGE_logo_diap_bijschrift" alt="EAGE_logo_diap_bijschrift" loading="lazy" /> </div> </div> </div> </div> <div class="elementor-column elementor-col-66 elementor-top-column elementor-element elementor-element-66e431cc" data-id="66e431cc" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-ca43308 elementor-widget elementor-widget-text-editor" data-id="ca43308" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <span class="footer_item"> <a href="https://eage.org/corporate-calendar/">Corporate Calendar</a></span><span class="footer_item"><a href="https://support.eage.org" target="_blank" rel="noopener">Support</a> </span> <span class="footer_item"><a href="https://eage.org/about_eage/eage-privacy-and-cookie-statement/">Privacy & Cookie Statement</a></span> <span class="footer_item"><a href="https://eage.org/membership/membership-terms-and-conditions/">Membership Terms and Conditions </a></span><span class="footer_item"><a href="https://eage.org/about_eage/3957-2/">Health and safety policy</a></span> </div> </div> <div class="elementor-element elementor-element-551c95e9 e-grid-align-right e-grid-align-mobile-center elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="551c95e9" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook-f elementor-animation-pop elementor-repeater-item-993ef04" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook-f</span> <i class="fab fa-facebook-f"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-animation-pop elementor-repeater-item-a1c64d4" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-animation-pop elementor-repeater-item-20757a3" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon- elementor-animation-pop elementor-repeater-item-a229ff5" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only"></span> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 1200 1227" style="enable-background:new 0 0 1200 1227;" xml:space="preserve"><path d="M714.16302,519.284L1160.89001,0h-105.85999L667.13702,450.88699L357.328,0H0l468.492,681.82098L0,1226.37h105.866 l409.62503-476.15198L842.672,1226.37H1200L714.13702,519.284H714.16302z M569.16498,687.828l-47.46796-67.89398L144.011,79.6944 h162.60399l304.797,435.9906L658.88,583.57898l396.19995,566.72107H892.47601L569.16498,687.854V687.828z"></path></svg> </a> </span> </div> </div> </div> </div> </div> </div> </footer> <footer class="elementor-section elementor-top-section elementor-element elementor-element-422826b elementor-section-height-min-height elementor-section-content-middle elementor-hidden-desktop elementor-hidden-tablet elementor-section-boxed elementor-section-height-default elementor-section-items-middle" data-id="422826b" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-27a96d1" data-id="27a96d1" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-9833602 elementor-widget elementor-widget-text-editor" data-id="9833602" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <span class="footer_item"> <a href="https://eage.org/corporate-calendar/">Corporate Calendar</a></span><span class="footer_item"><a href="https://support.eage.org" target="_blank" rel="noopener">Support</a> </span> <span class="footer_item"><a href="https://eage.org/about_eage/eage-privacy-and-cookie-statement/">Privacy & Cookie Statement</a></span> <span class="footer_item"><a href="https://eage.org/membership/membership-terms-and-conditions/">Membership Terms and Conditions </a></span><span class="footer_item"><a href="https://eage.org/about_eage/3957-2/">Health and safety policy</a></span> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-0784a8e" data-id="0784a8e" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-576ff26 elementor-widget elementor-widget-image" data-id="576ff26" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img src="https://eage.org/wp-content/uploads/2020/03/EAGE_logo_diap_bijschrift.svg?w=768" title="EAGE_logo_diap_bijschrift" alt="EAGE_logo_diap_bijschrift" loading="lazy" /> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-965482f" data-id="965482f" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-7e03b63 e-grid-align-right e-grid-align-mobile-center elementor-grid-mobile-3 elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="7e03b63" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook-f elementor-animation-pop elementor-repeater-item-993ef04" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook-f</span> <i class="fab fa-facebook-f"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-animation-pop elementor-repeater-item-a1c64d4" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-animation-pop elementor-repeater-item-20757a3" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-animation-pop elementor-repeater-item-a229ff5" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </footer> </div> <script> window.RS_MODULES = window.RS_MODULES || {}; window.RS_MODULES.modules = window.RS_MODULES.modules || {}; window.RS_MODULES.waiting = window.RS_MODULES.waiting || []; window.RS_MODULES.defered = true; window.RS_MODULES.moduleWaiting = window.RS_MODULES.moduleWaiting || {}; window.RS_MODULES.type = 'compiled'; </script> <div data-elementor-type="popup" data-elementor-id="15640" class="elementor elementor-15640 elementor-location-popup" data-elementor-settings="{"entrance_animation":"fadeIn","classes":"award-popup","open_selector":"popup-arie-2021","entrance_animation_duration":{"unit":"px","size":1.2,"sizes":[]},"a11y_navigation":"yes","triggers":[],"timing":[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-2c210806 award-popup_section elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="2c210806" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-background-overlay"></div> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-6246df59 award-popup_maincolumn " data-id="6246df59" data-element_type="column" data-settings="{"animation":"none"}"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-760f3ac0 elementor-section-content-middle animated-slow award-popup_inner_section elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="760f3ac0" data-element_type="section" data-settings="{"background_background":"classic","animation":"none"}"> <div class="elementor-background-overlay"></div> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-123d3b58 award-popup_first_col" data-id="123d3b58" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-3922dfe8 award-popup_year_title elementor-widget elementor-widget-heading" data-id="3922dfe8" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h3 class="elementor-heading-title elementor-size-default">2021</h3> </div> </div> <div class="elementor-element elementor-element-79e7a1f0 award-popup_bioname elementor-widget elementor-widget-heading" data-id="79e7a1f0" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Siddharth Misra</h2> </div> </div> <div class="elementor-element elementor-element-48cad6ca award-popup_spinning_coin elementor-widget elementor-widget-image" data-id="48cad6ca" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img src="https://eage.org/wp-content/uploads/2021/01/Award-Spinning-coin-.gif?w=150" title="Award-Spinning-coin-" alt="Award-Spinning-coin-" loading="lazy" /> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3d27bea2 award-popup_second_col" data-id="3d27bea2" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-322bc7bc elementor-widget elementor-widget-text-editor" data-id="322bc7bc" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p>Prof Dr Siddharth Misra’s research focuses on improving subsurface characterization and prospect evaluation for the exploration of hydrocarbons, minerals and water resources.</p><p>His major contribution is in the theory of electromagnetic responses of geological formations to various charge polarization phenomena. The theory has enabled him to introduce a multi-frequency electromagnetic log-inversion technique to remove dielectric effects for improved estimation of hydrocarbon pore volume.</p> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="14898" class="elementor elementor-14898 elementor-location-popup" data-elementor-settings="{"entrance_animation":"fadeInDown","exit_animation":"fadeInDown","entrance_animation_duration":{"unit":"px","size":0.5,"sizes":[]},"open_selector":".pop_media2","a11y_navigation":"yes","triggers":[],"timing":[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-fdd7028 elementor-section-full_width elementor-section-content-top elementor-section-height-default elementor-section-height-default" data-id="fdd7028" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-8c48882" data-id="8c48882" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-b5b1fab" data-id="b5b1fab" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-5dc7b23 elementor-widget__width-inherit elementor-widget elementor-widget-wp-widget-nav_menu" data-id="5dc7b23" data-element_type="widget" data-widget_type="wp-widget-nav_menu.default"> <div class="elementor-widget-container"> <div class="menu-menu-media-container"><ul id="menu-menu-media" class="menu"><li id="menu-item-2595" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2595"><a href="#">First Break</a> <ul class="sub-menu"> <li id="menu-item-2602" class="menu-item menu-item-type-post_type menu-item-object-media menu-item-2602"><a href="https://eage.org/media/about-firstbreak/">About First Break</a></li> </ul> </li> <li id="menu-item-2596" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2596"><a href="#">Earthdoc</a> <ul class="sub-menu"> <li id="menu-item-2605" class="menu-item menu-item-type-post_type menu-item-object-media menu-item-2605"><a href="https://eage.org/media/earthdoc/">EarthDoc</a></li> </ul> </li> <li id="menu-item-2597" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2597"><a href="#">Journals</a> <ul class="sub-menu"> <li id="menu-item-5534" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5534"><a href="https://eage.org/media/nearsurfacegeophysics#near_surface_geophysics">Near Surface Geophysics</a></li> <li id="menu-item-5535" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5535"><a href="https://eage.org/media/nearsurfacegeophysics#petroleum_geoscience">Petroleum Geoscience</a></li> <li id="menu-item-5536" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5536"><a href="https://eage.org/media/nearsurfacegeophysics#geophysical_prospecting">Geophysical Prospecting</a></li> <li id="menu-item-5537" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5537"><a href="https://eage.org/media/nearsurfacegeophysics#basin_research">Basin Research</a></li> <li id="menu-item-17866" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-17866"><a href="https://eage.org/media/nearsurfacegeophysics#geoenergy">Geoenergy</a></li> </ul> </li> <li id="menu-item-2598" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2598"><a href="#">Books</a> <ul class="sub-menu"> <li id="menu-item-2610" class="menu-item menu-item-type-post_type menu-item-object-media menu-item-2610"><a href="https://eage.org/media/online-bookshop/">Online Bookshop</a></li> <li id="menu-item-5527" class="menu-item menu-item-type-post_type menu-item-object-media menu-item-5527"><a href="https://eage.org/media/publishing-with-eage/">Publishing with EAGE</a></li> </ul> </li> <li id="menu-item-2599" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2599"><a href="#">Newsletters</a> <ul class="sub-menu"> <li id="menu-item-4051" class="menu-item menu-item-type-post_type menu-item-object-media menu-item-4051"><a href="https://eage.org/media/newsletters_stay-connected/">Stay Connected</a></li> </ul> </li> <li id="menu-item-2601" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2601"><a href="#">Media Partners</a> <ul class="sub-menu"> <li id="menu-item-2608" class="menu-item menu-item-type-post_type menu-item-object-media menu-item-2608"><a href="https://eage.org/media/media-partners/">Media Partners</a></li> <li id="menu-item-9659" class="menu-item menu-item-type-post_type menu-item-object-media menu-item-9659"><a href="https://eage.org/media/copyrights-and-use-of-eage-materials/">Copyrights and use of EAGE materials</a></li> </ul> </li> </ul></div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-b95cc03" data-id="b95cc03" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-82fac38 elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="82fac38" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-57fb79f" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-a3355b7" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-70c7d92" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-b11320d" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="4198" class="elementor elementor-4198 elementor-location-popup" data-elementor-settings="{"entrance_animation":"fadeInLeft","exit_animation":"fadeInLeft","open_selector":".tablet_overlay_menu","classes":"tablet_overlay","entrance_animation_duration":{"unit":"px","size":1.2,"sizes":[]},"a11y_navigation":"yes","triggers":[],"timing":[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-6d75e2e4 elementor-section-height-full elementor-section-items-top elementor-section-full_width tablet_overlay_popup elementor-section-height-default" data-id="6d75e2e4" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-c590aba" data-id="c590aba" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-6b5d2638 elementor-nav-menu--dropdown-none elementor-nav-menu__align-start elementor-widget elementor-widget-nav-menu" data-id="6b5d2638" data-element_type="widget" data-settings="{"layout":"vertical","submenu_icon":{"value":"<i class=\"fas fa-caret-down\"><\/i>","library":"fa-solid"}}" data-widget_type="nav-menu.default"> <div class="elementor-widget-container"> <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-none"> <ul id="menu-1-6b5d2638" class="elementor-nav-menu sm-vertical"><li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1349"><a href="#" class="elementor-item elementor-item-anchor">About EAGE</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1328"><a href="#" class="elementor-sub-item elementor-item-anchor">General</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3501"><a href="https://eage.org/about_eage/mission-and-objectives/" class="elementor-sub-item">Mission and Objectives</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-9309"><a href="https://eage.org/about_eage/eage-history/" class="elementor-sub-item">History</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3498"><a href="https://eage.org/about_eage/agmm/" class="elementor-sub-item">AGMM</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3499"><a href="https://eage.org/about_eage/circles/" class="elementor-sub-item">Circles</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-25434"><a href="https://eage.org/about_eage/code-of-conduct/" class="elementor-sub-item">Code of Conduct</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1329"><a href="#" class="elementor-sub-item elementor-item-anchor">Organization</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-20411"><a href="https://eage.org/about_eage/ballot/" class="elementor-sub-item">Ballot</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3502"><a href="https://eage.org/about_eage/board-and-bod/" class="elementor-sub-item">Board and BoD</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3504"><a href="https://eage.org/about_eage/committees/" class="elementor-sub-item">Committees</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3505"><a href="https://eage.org/about_eage/constitution/" class="elementor-sub-item">Constitution</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3503"><a href="https://eage.org/about_eage/by-laws/" class="elementor-sub-item">By-Laws</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1330"><a href="#" class="elementor-sub-item elementor-item-anchor">Funds</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3508"><a href="https://eage.org/about_eage/student-fund/" class="elementor-sub-item">Student Fund</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3506"><a href="https://eage.org/about_eage/green-fund/" class="elementor-sub-item">Green Fund</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1331"><a href="#" class="elementor-sub-item elementor-item-anchor">Cooperations</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3509"><a href="https://eage.org/about_eage/associated-societies/" class="elementor-sub-item">Associated Societies</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3511"><a href="https://eage.org/about_eage/joint-events/" class="elementor-sub-item">Joint Events</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1332"><a href="#" class="elementor-sub-item elementor-item-anchor">Global Offices</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8453"><a href="/about_eage/global-offices" class="elementor-sub-item">Europe Office</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8455"><a href="/about_eage/global-offices#middle-east_africa_office" class="elementor-sub-item elementor-item-anchor">Middle East / Africa Office</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8458"><a href="/about_eage/global-offices#asia-pacific_office" class="elementor-sub-item elementor-item-anchor">Asia Pacific Office</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8459"><a href="/about_eage/global-offices#latin-americas_office" class="elementor-sub-item elementor-item-anchor">Latin America Office</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1333"><a href="#" class="elementor-sub-item elementor-item-anchor">Careers</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3515"><a href="https://eage.org/about_eage/careers/" class="elementor-sub-item">Work with EAGE</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3513"><a href="https://eage.org/about_eage/careers-in-the-industry/" class="elementor-sub-item">Careers in the Industry</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3514"><a href="https://eage.org/about_eage/volunteer/" class="elementor-sub-item">Volunteering Opportunities</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-8492"><a href="#" class="elementor-sub-item elementor-item-anchor">Awards</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-8494"><a href="https://eage.org/about_eage/nominations/" class="elementor-sub-item">Nominations</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-8495"><a href="https://eage.org/about_eage/overview-awards/" class="elementor-sub-item">Overview Awards</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-8493"><a href="https://eage.org/about_eage/award-winners/" class="elementor-sub-item">Award Winners</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1350"><a href="#" class="elementor-item elementor-item-anchor">Events</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3518"><a href="#" class="elementor-sub-item elementor-item-anchor">About Events</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-3516"><a href="https://eage.org/events/conferences/" class="elementor-sub-item">Conferences</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-3517"><a href="https://eage.org/events/workshops/" class="elementor-sub-item">Workshops</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-20412"><a href="https://eage.org/events/eage-event-terms-conditions/" class="elementor-sub-item">EAGE Event Terms & Conditions</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3519"><a href="#" class="elementor-sub-item elementor-item-anchor">Highlights</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-20413"><a href="https://eagedigital.org/" class="elementor-sub-item">EAGE Digital 2024</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16612"><a target="_blank" href="https://eageannual.org/" class="elementor-sub-item">EAGE Annual 2024</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8497"><a target="_blank" href="https://eagensg.org/" class="elementor-sub-item">EAGE Near Surface Geoscience 2024</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21878"><a href="https://eageget.org/" class="elementor-sub-item">EAGE Global Energy Transition 2024</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3520"><a href="#" class="elementor-sub-item elementor-item-anchor">Overview</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9429"><a href="https://eage.org/events/calendar-of-events/" class="elementor-sub-item">Calendar of Events</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9427"><a href="https://eage.org/events/calendar-of-online-events/" class="elementor-sub-item">Calendar of Online Events</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9428"><a href="https://eage.org/events/calendar-of-past-events/" class="elementor-sub-item">Calendar of Past Events</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1351"><a href="#" class="elementor-item elementor-item-anchor">Membership</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3522"><a href="#" class="elementor-sub-item elementor-item-anchor">Membership</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-12860"><a href="https://eage.org/membership/welcome/" class="elementor-sub-item">Welcome to EAGE</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3525"><a href="https://eage.org/membership/benefits/" class="elementor-sub-item">Benefits</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-9123"><a href="https://eage.org/membership/membershiptypes/" class="elementor-sub-item">Types of Membership</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3527"><a href="https://eage.org/membership/recognition-programme/" class="elementor-sub-item">Recognition Programme</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-8498"><a href="https://eage.org/membership/membership-terms-and-conditions/" class="elementor-sub-item">Membership Terms and Conditions</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3523"><a href="#" class="elementor-sub-item elementor-item-anchor">Support</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3526"><a href="https://eage.org/membership/hardship-programme/" class="elementor-sub-item">Hardship Programme</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3528"><a href="https://eage.org/membership/travel-grant/" class="elementor-sub-item">Individual Support – PACE</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3524"><a href="#" class="elementor-sub-item elementor-item-anchor">Join or Renew</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8499"><a href="https://eage.eventsair.com/eage-membership-module/membership-application" class="elementor-sub-item">Join EAGE</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8500"><a href="https://eage.eventsair.com/eage-membership-module/membership-application" class="elementor-sub-item">Renew your Membership</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1352"><a href="#" class="elementor-item elementor-item-anchor">Communities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3529"><a href="#" class="elementor-sub-item elementor-item-anchor">Local Chapters</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3539"><a href="https://eage.org/communities/eage-local-chapters/" class="elementor-sub-item">EAGE Local Chapters</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3544"><a href="https://eage.org/communities/find-your-local-chapter/" class="elementor-sub-item">Find your Local Chapter</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3546"><a href="https://eage.org/communities/local-chapter-prizes/" class="elementor-sub-item">Local Chapter Prizes</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3530"><a href="#" class="elementor-sub-item elementor-item-anchor">Special Interest Communities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3540"><a href="https://eage.org/communities/women-in-geoscience-and-engineering/" class="elementor-sub-item">Women in Geoscience & Engineering</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3541"><a href="https://eage.org/communities/young-professionals/" class="elementor-sub-item">Young Professionals</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-26566"><a href="https://eage.org/communities/geoscience-communication-and-public-engagement/" class="elementor-sub-item">Geoscience Communication and Public Engagement</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3532"><a href="#" class="elementor-sub-item elementor-item-anchor">Technical Communities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3536"><a href="https://eage.org/communities/artificial-intelligence-community/" class="elementor-sub-item">Artificial Intelligence</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8502"><a href="https://eage.org/communities/basinpetroleumsystems/" class="elementor-sub-item">Basin & Petroleum Systems Analysis</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3537"><a href="https://eage.org/communities/decabonization-and-energy-transition/" class="elementor-sub-item">Decarbonization and Energy Transition</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-9548"><a href="https://eage.org/communities/geochemistry/" class="elementor-sub-item">Geochemistry</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-20409"><a href="https://eage.org/communities/geohazards/" class="elementor-sub-item">Geohazards</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8503"><a href="https://eage.org/communities/hydrogeophysics/" class="elementor-sub-item">Hydrogeophysics</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8504"><a href="https://eage.org/communities/critical-minerals/" class="elementor-sub-item">Critical Minerals</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-10328"><a href="https://eage.org/communities/seismic-acquisition/" class="elementor-sub-item">Seismic Acquisition</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-10329"><a href="https://eage.org/communities/seismic-interpretation/" class="elementor-sub-item">Seismic Interpretation</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-20410"><a href="https://eage.org/communities/uav/" class="elementor-sub-item">Uncrewed Aerial Vehicles</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23793"><a href="https://eage.org/communities/ccs/" class="elementor-sub-item">CCS</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23790"><a href="https://eage.org/communities/geothermal-energy/" class="elementor-sub-item">Geothermal Energy</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23791"><a href="https://eage.org/communities/wind-energy/" class="elementor-sub-item">Wind Energy</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23792"><a href="https://eage.org/communities/hydrogen-and-energy-storage/" class="elementor-sub-item">Hydrogen and Energy Storage</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-25655"><a href="https://eage.org/communities/enhancing-hydrocarbon-recovery-for-sustainability/" class="elementor-sub-item">Enhancing Hydrocarbon Recovery for Sustainability</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3534"><a href="#" class="elementor-sub-item elementor-item-anchor">EU Affairs</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3538"><a href="https://eage.org/communities/eu-affairs/" class="elementor-sub-item">About EU Affairs</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3535"><a href="#" class="elementor-sub-item elementor-item-anchor">Community Activities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3550"><a href="https://events.eage.org/" class="elementor-sub-item">Calendar of Events</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8505"><a href="https://eage.org/communities/mentoring-programme/" class="elementor-sub-item">Mentoring Programme</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8506"><a href="https://eage.org/communities/pace-event-support/" class="elementor-sub-item">PACE Event Support</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-19319"><a href="https://eage.org/communities/resources/" class="elementor-sub-item">Resources</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1353"><a href="#" class="elementor-item elementor-item-anchor">Students</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3551"><a href="#" class="elementor-sub-item elementor-item-anchor">Student Chapters</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3563"><a href="https://eage.org/students/about-student-chapter/" class="elementor-sub-item">About Student Chapters</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3564"><a href="https://eage.org/students/establish-your-student-chapter/" class="elementor-sub-item">Establish a Student Chapter</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-8508"><a href="https://eage.org/students/your-student-chapter/" class="elementor-sub-item">Your Student Chapter</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3552"><a href="#" class="elementor-sub-item elementor-item-anchor">Online Activities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3573"><a href="https://eage.org/students/webinars/" class="elementor-sub-item">Student Webinars</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-8509"><a href="https://eage.org/students/e-summits/" class="elementor-sub-item">Student E-Summits</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3553"><a href="#" class="elementor-sub-item elementor-item-anchor">GEO Quiz</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3560"><a href="https://eage.org/students/about-geo-quiz/" class="elementor-sub-item">About the Geo Quiz</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3566"><a href="https://eage.org/students/join-the-geoquiz/" class="elementor-sub-item">Join the Geo Quiz</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3565"><a href="https://eage.org/students/geo-quiz/" class="elementor-sub-item">Geo Quiz Hall of Fame</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3554"><a href="#" class="elementor-sub-item elementor-item-anchor">Laurie Dake Challenge</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3561"><a href="https://eage.org/students/about-laurie-dake-challenge/" class="elementor-sub-item">About the Laurie Dake Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3567"><a href="https://eage.org/students/join-the-laurie-dake-challenge/" class="elementor-sub-item">Join the Laurie Dake Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-8507"><a href="https://eage.org/students/laurie-dake-challenge-hall-of-fame/" class="elementor-sub-item">Laurie Dake Challenge Hall of Fame</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3555"><a href="#" class="elementor-sub-item elementor-item-anchor">Minus CO2 challenge</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3562"><a href="https://eage.org/students/about-minus-co2-challenge/" class="elementor-sub-item">About Minus CO2 Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3568"><a href="https://eage.org/students/minus-co2-challenge/" class="elementor-sub-item">Join the Minus CO2 Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3569"><a href="https://eage.org/students/minus-co2-challenge-hall-of-fame/" class="elementor-sub-item">Minus CO2 Challenge Hall of Fame</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3556"><a href="#" class="elementor-sub-item elementor-item-anchor">Support</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3570"><a href="https://eage.org/students/scholarship-support/" class="elementor-sub-item">Scholarships & Awards</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3574"><a href="https://eage.org/students/awards-support/" class="elementor-sub-item">EAGE Membership & Grants</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-20414"><a href="https://eage.org/students/support-ukraine-professional-development-fund/" class="elementor-sub-item">Ukraine Professional Development Fund</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3557"><a href="#" class="elementor-sub-item elementor-item-anchor">EAGE Student Fund</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3559"><a href="https://eage.org/students/about-eage-student-fund/" class="elementor-sub-item">About the EAGE Student Fund</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor menu-item-has-children menu-item-1354"><a href="#" class="elementor-item elementor-item-anchor">Education</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3575"><a href="#" class="elementor-sub-item elementor-item-anchor">Highlights</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8511"><a href="https://eage.org/education/highlights/" class="elementor-sub-item">EAGE Education</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-21602"><a href="https://eage.org/education/energy-transition-skills/" class="elementor-sub-item">Energy Transition Skills</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3576"><a href="#" class="elementor-sub-item elementor-item-anchor">Learning Geoscience</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8519"><a href="https://eage.org/education/learning-geoscience/" class="elementor-sub-item">About Learning Geoscience</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8510"><a href="https://eage.org/education/electures/" class="elementor-sub-item">E-Lectures</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8517"><a href="https://eage.org/education/webinars/" class="elementor-sub-item">Webinars</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8513"><a href="https://eage.org/education/how-to-videos/" class="elementor-sub-item">How-to Videos</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3579"><a href="#" class="elementor-sub-item elementor-item-anchor">Short Courses</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8512"><a href="https://eage.org/education/education-tours/" class="elementor-sub-item">Education Tours</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8515"><a href="https://eage.org/education/interactive-online-short-courses/" class="elementor-sub-item">Interactive Online Short Courses</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8514"><a href="https://eage.org/education/in-house-training/" class="elementor-sub-item">In-House Training</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8518"><a href="https://eage.org/education/classroom-training/" class="elementor-sub-item">Classroom Training</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3581"><a href="#" class="elementor-sub-item elementor-item-anchor">Eurgeol Title</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-3584"><a href="https://eage.org/education/eurgeol-title/" class="elementor-sub-item">Accreditation</a></li> </ul> </li> <li class="menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor current-menu-parent menu-item-has-children menu-item-14709"><a href="#" class="elementor-sub-item elementor-item-anchor">Overview</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-14710"><a href="https://eage.org/education/education-calendar/" class="elementor-sub-item">Education Calendar</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education current-menu-item menu-item-8516"><a href="https://eage.org/education/short-course-catalogue/" aria-current="page" class="elementor-sub-item elementor-item-active">Short Course Catalogue</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1355"><a href="#" class="elementor-item elementor-item-anchor">Media</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3589"><a href="#" class="elementor-sub-item elementor-item-anchor">First Break</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3596"><a href="https://eage.org/media/about-firstbreak/" class="elementor-sub-item">About First Break</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3590"><a href="#" class="elementor-sub-item elementor-item-anchor">EarthDoc</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3599"><a href="https://eage.org/media/earthdoc/" class="elementor-sub-item">EarthDoc</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3591"><a href="#" class="elementor-sub-item elementor-item-anchor">Journals</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3588"><a href="https://eage.org/media/nearsurfacegeophysics#near_surface_geophysics" class="elementor-sub-item elementor-item-anchor">Near Surface Geophysics</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3594"><a href="https://eage.org/media/nearsurfacegeophysics#petroleum_geoscience" class="elementor-sub-item elementor-item-anchor">Petroleum Geoscience</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8522"><a href="https://eage.org/media/nearsurfacegeophysics#geophysical_prospecting" class="elementor-sub-item elementor-item-anchor">Geophysical Prospecting</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8523"><a href="https://eage.org/media/nearsurfacegeophysics#basin_research" class="elementor-sub-item elementor-item-anchor">Basin Research</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-17867"><a href="https://eage.org/media/nearsurfacegeophysics#geoenergy" class="elementor-sub-item elementor-item-anchor">Geoenergy</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3592"><a href="#" class="elementor-sub-item elementor-item-anchor">Books</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3604"><a href="https://eage.org/media/online-bookshop/" class="elementor-sub-item">Online Bookshop</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3597"><a href="https://eage.org/media/publishing-with-eage/" class="elementor-sub-item">Publishing with EAGE</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3593"><a href="#" class="elementor-sub-item elementor-item-anchor">Newsletters</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-8521"><a href="https://eage.org/media/newsletters_stay-connected/" class="elementor-sub-item">Stay Connected</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3595"><a href="#" class="elementor-sub-item elementor-item-anchor">Media Partners</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3602"><a href="https://eage.org/media/media-partners/" class="elementor-sub-item">Media Partners</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-9661"><a href="https://eage.org/media/copyrights-and-use-of-eage-materials/" class="elementor-sub-item">Copyrights and use of EAGE materials</a></li> </ul> </li> </ul> </li> </ul> </nav> <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true"> <ul id="menu-2-6b5d2638" class="elementor-nav-menu sm-vertical"><li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1349"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">About EAGE</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1328"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">General</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3501"><a href="https://eage.org/about_eage/mission-and-objectives/" class="elementor-sub-item" tabindex="-1">Mission and Objectives</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-9309"><a href="https://eage.org/about_eage/eage-history/" class="elementor-sub-item" tabindex="-1">History</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3498"><a href="https://eage.org/about_eage/agmm/" class="elementor-sub-item" tabindex="-1">AGMM</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3499"><a href="https://eage.org/about_eage/circles/" class="elementor-sub-item" tabindex="-1">Circles</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-25434"><a href="https://eage.org/about_eage/code-of-conduct/" class="elementor-sub-item" tabindex="-1">Code of Conduct</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1329"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Organization</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-20411"><a href="https://eage.org/about_eage/ballot/" class="elementor-sub-item" tabindex="-1">Ballot</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3502"><a href="https://eage.org/about_eage/board-and-bod/" class="elementor-sub-item" tabindex="-1">Board and BoD</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3504"><a href="https://eage.org/about_eage/committees/" class="elementor-sub-item" tabindex="-1">Committees</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3505"><a href="https://eage.org/about_eage/constitution/" class="elementor-sub-item" tabindex="-1">Constitution</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3503"><a href="https://eage.org/about_eage/by-laws/" class="elementor-sub-item" tabindex="-1">By-Laws</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1330"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Funds</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3508"><a href="https://eage.org/about_eage/student-fund/" class="elementor-sub-item" tabindex="-1">Student Fund</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3506"><a href="https://eage.org/about_eage/green-fund/" class="elementor-sub-item" tabindex="-1">Green Fund</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1331"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Cooperations</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3509"><a href="https://eage.org/about_eage/associated-societies/" class="elementor-sub-item" tabindex="-1">Associated Societies</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3511"><a href="https://eage.org/about_eage/joint-events/" class="elementor-sub-item" tabindex="-1">Joint Events</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1332"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Global Offices</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8453"><a href="/about_eage/global-offices" class="elementor-sub-item" tabindex="-1">Europe Office</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8455"><a href="/about_eage/global-offices#middle-east_africa_office" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Middle East / Africa Office</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8458"><a href="/about_eage/global-offices#asia-pacific_office" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Asia Pacific Office</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8459"><a href="/about_eage/global-offices#latin-americas_office" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Latin America Office</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1333"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Careers</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3515"><a href="https://eage.org/about_eage/careers/" class="elementor-sub-item" tabindex="-1">Work with EAGE</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3513"><a href="https://eage.org/about_eage/careers-in-the-industry/" class="elementor-sub-item" tabindex="-1">Careers in the Industry</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3514"><a href="https://eage.org/about_eage/volunteer/" class="elementor-sub-item" tabindex="-1">Volunteering Opportunities</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-8492"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Awards</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-8494"><a href="https://eage.org/about_eage/nominations/" class="elementor-sub-item" tabindex="-1">Nominations</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-8495"><a href="https://eage.org/about_eage/overview-awards/" class="elementor-sub-item" tabindex="-1">Overview Awards</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-8493"><a href="https://eage.org/about_eage/award-winners/" class="elementor-sub-item" tabindex="-1">Award Winners</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1350"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Events</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3518"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">About Events</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-3516"><a href="https://eage.org/events/conferences/" class="elementor-sub-item" tabindex="-1">Conferences</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-3517"><a href="https://eage.org/events/workshops/" class="elementor-sub-item" tabindex="-1">Workshops</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-20412"><a href="https://eage.org/events/eage-event-terms-conditions/" class="elementor-sub-item" tabindex="-1">EAGE Event Terms & Conditions</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3519"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Highlights</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-20413"><a href="https://eagedigital.org/" class="elementor-sub-item" tabindex="-1">EAGE Digital 2024</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16612"><a target="_blank" href="https://eageannual.org/" class="elementor-sub-item" tabindex="-1">EAGE Annual 2024</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8497"><a target="_blank" href="https://eagensg.org/" class="elementor-sub-item" tabindex="-1">EAGE Near Surface Geoscience 2024</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21878"><a href="https://eageget.org/" class="elementor-sub-item" tabindex="-1">EAGE Global Energy Transition 2024</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3520"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Overview</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9429"><a href="https://eage.org/events/calendar-of-events/" class="elementor-sub-item" tabindex="-1">Calendar of Events</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9427"><a href="https://eage.org/events/calendar-of-online-events/" class="elementor-sub-item" tabindex="-1">Calendar of Online Events</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9428"><a href="https://eage.org/events/calendar-of-past-events/" class="elementor-sub-item" tabindex="-1">Calendar of Past Events</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1351"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Membership</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3522"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Membership</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-12860"><a href="https://eage.org/membership/welcome/" class="elementor-sub-item" tabindex="-1">Welcome to EAGE</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3525"><a href="https://eage.org/membership/benefits/" class="elementor-sub-item" tabindex="-1">Benefits</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-9123"><a href="https://eage.org/membership/membershiptypes/" class="elementor-sub-item" tabindex="-1">Types of Membership</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3527"><a href="https://eage.org/membership/recognition-programme/" class="elementor-sub-item" tabindex="-1">Recognition Programme</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-8498"><a href="https://eage.org/membership/membership-terms-and-conditions/" class="elementor-sub-item" tabindex="-1">Membership Terms and Conditions</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3523"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Support</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3526"><a href="https://eage.org/membership/hardship-programme/" class="elementor-sub-item" tabindex="-1">Hardship Programme</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3528"><a href="https://eage.org/membership/travel-grant/" class="elementor-sub-item" tabindex="-1">Individual Support – PACE</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3524"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Join or Renew</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8499"><a href="https://eage.eventsair.com/eage-membership-module/membership-application" class="elementor-sub-item" tabindex="-1">Join EAGE</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8500"><a href="https://eage.eventsair.com/eage-membership-module/membership-application" class="elementor-sub-item" tabindex="-1">Renew your Membership</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1352"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Communities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3529"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Local Chapters</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3539"><a href="https://eage.org/communities/eage-local-chapters/" class="elementor-sub-item" tabindex="-1">EAGE Local Chapters</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3544"><a href="https://eage.org/communities/find-your-local-chapter/" class="elementor-sub-item" tabindex="-1">Find your Local Chapter</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3546"><a href="https://eage.org/communities/local-chapter-prizes/" class="elementor-sub-item" tabindex="-1">Local Chapter Prizes</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3530"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Special Interest Communities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3540"><a href="https://eage.org/communities/women-in-geoscience-and-engineering/" class="elementor-sub-item" tabindex="-1">Women in Geoscience & Engineering</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3541"><a href="https://eage.org/communities/young-professionals/" class="elementor-sub-item" tabindex="-1">Young Professionals</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-26566"><a href="https://eage.org/communities/geoscience-communication-and-public-engagement/" class="elementor-sub-item" tabindex="-1">Geoscience Communication and Public Engagement</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3532"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Technical Communities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3536"><a href="https://eage.org/communities/artificial-intelligence-community/" class="elementor-sub-item" tabindex="-1">Artificial Intelligence</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8502"><a href="https://eage.org/communities/basinpetroleumsystems/" class="elementor-sub-item" tabindex="-1">Basin & Petroleum Systems Analysis</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3537"><a href="https://eage.org/communities/decabonization-and-energy-transition/" class="elementor-sub-item" tabindex="-1">Decarbonization and Energy Transition</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-9548"><a href="https://eage.org/communities/geochemistry/" class="elementor-sub-item" tabindex="-1">Geochemistry</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-20409"><a href="https://eage.org/communities/geohazards/" class="elementor-sub-item" tabindex="-1">Geohazards</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8503"><a href="https://eage.org/communities/hydrogeophysics/" class="elementor-sub-item" tabindex="-1">Hydrogeophysics</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8504"><a href="https://eage.org/communities/critical-minerals/" class="elementor-sub-item" tabindex="-1">Critical Minerals</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-10328"><a href="https://eage.org/communities/seismic-acquisition/" class="elementor-sub-item" tabindex="-1">Seismic Acquisition</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-10329"><a href="https://eage.org/communities/seismic-interpretation/" class="elementor-sub-item" tabindex="-1">Seismic Interpretation</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-20410"><a href="https://eage.org/communities/uav/" class="elementor-sub-item" tabindex="-1">Uncrewed Aerial Vehicles</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23793"><a href="https://eage.org/communities/ccs/" class="elementor-sub-item" tabindex="-1">CCS</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23790"><a href="https://eage.org/communities/geothermal-energy/" class="elementor-sub-item" tabindex="-1">Geothermal Energy</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23791"><a href="https://eage.org/communities/wind-energy/" class="elementor-sub-item" tabindex="-1">Wind Energy</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23792"><a href="https://eage.org/communities/hydrogen-and-energy-storage/" class="elementor-sub-item" tabindex="-1">Hydrogen and Energy Storage</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-25655"><a href="https://eage.org/communities/enhancing-hydrocarbon-recovery-for-sustainability/" class="elementor-sub-item" tabindex="-1">Enhancing Hydrocarbon Recovery for Sustainability</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3534"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">EU Affairs</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3538"><a href="https://eage.org/communities/eu-affairs/" class="elementor-sub-item" tabindex="-1">About EU Affairs</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3535"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Community Activities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3550"><a href="https://events.eage.org/" class="elementor-sub-item" tabindex="-1">Calendar of Events</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8505"><a href="https://eage.org/communities/mentoring-programme/" class="elementor-sub-item" tabindex="-1">Mentoring Programme</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8506"><a href="https://eage.org/communities/pace-event-support/" class="elementor-sub-item" tabindex="-1">PACE Event Support</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-19319"><a href="https://eage.org/communities/resources/" class="elementor-sub-item" tabindex="-1">Resources</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1353"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Students</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3551"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Student Chapters</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3563"><a href="https://eage.org/students/about-student-chapter/" class="elementor-sub-item" tabindex="-1">About Student Chapters</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3564"><a href="https://eage.org/students/establish-your-student-chapter/" class="elementor-sub-item" tabindex="-1">Establish a Student Chapter</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-8508"><a href="https://eage.org/students/your-student-chapter/" class="elementor-sub-item" tabindex="-1">Your Student Chapter</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3552"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Online Activities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3573"><a href="https://eage.org/students/webinars/" class="elementor-sub-item" tabindex="-1">Student Webinars</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-8509"><a href="https://eage.org/students/e-summits/" class="elementor-sub-item" tabindex="-1">Student E-Summits</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3553"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">GEO Quiz</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3560"><a href="https://eage.org/students/about-geo-quiz/" class="elementor-sub-item" tabindex="-1">About the Geo Quiz</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3566"><a href="https://eage.org/students/join-the-geoquiz/" class="elementor-sub-item" tabindex="-1">Join the Geo Quiz</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3565"><a href="https://eage.org/students/geo-quiz/" class="elementor-sub-item" tabindex="-1">Geo Quiz Hall of Fame</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3554"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Laurie Dake Challenge</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3561"><a href="https://eage.org/students/about-laurie-dake-challenge/" class="elementor-sub-item" tabindex="-1">About the Laurie Dake Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3567"><a href="https://eage.org/students/join-the-laurie-dake-challenge/" class="elementor-sub-item" tabindex="-1">Join the Laurie Dake Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-8507"><a href="https://eage.org/students/laurie-dake-challenge-hall-of-fame/" class="elementor-sub-item" tabindex="-1">Laurie Dake Challenge Hall of Fame</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3555"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Minus CO2 challenge</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3562"><a href="https://eage.org/students/about-minus-co2-challenge/" class="elementor-sub-item" tabindex="-1">About Minus CO2 Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3568"><a href="https://eage.org/students/minus-co2-challenge/" class="elementor-sub-item" tabindex="-1">Join the Minus CO2 Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3569"><a href="https://eage.org/students/minus-co2-challenge-hall-of-fame/" class="elementor-sub-item" tabindex="-1">Minus CO2 Challenge Hall of Fame</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3556"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Support</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3570"><a href="https://eage.org/students/scholarship-support/" class="elementor-sub-item" tabindex="-1">Scholarships & Awards</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3574"><a href="https://eage.org/students/awards-support/" class="elementor-sub-item" tabindex="-1">EAGE Membership & Grants</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-20414"><a href="https://eage.org/students/support-ukraine-professional-development-fund/" class="elementor-sub-item" tabindex="-1">Ukraine Professional Development Fund</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3557"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">EAGE Student Fund</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3559"><a href="https://eage.org/students/about-eage-student-fund/" class="elementor-sub-item" tabindex="-1">About the EAGE Student Fund</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor menu-item-has-children menu-item-1354"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Education</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3575"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Highlights</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8511"><a href="https://eage.org/education/highlights/" class="elementor-sub-item" tabindex="-1">EAGE Education</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-21602"><a href="https://eage.org/education/energy-transition-skills/" class="elementor-sub-item" tabindex="-1">Energy Transition Skills</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3576"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Learning Geoscience</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8519"><a href="https://eage.org/education/learning-geoscience/" class="elementor-sub-item" tabindex="-1">About Learning Geoscience</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8510"><a href="https://eage.org/education/electures/" class="elementor-sub-item" tabindex="-1">E-Lectures</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8517"><a href="https://eage.org/education/webinars/" class="elementor-sub-item" tabindex="-1">Webinars</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8513"><a href="https://eage.org/education/how-to-videos/" class="elementor-sub-item" tabindex="-1">How-to Videos</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3579"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Short Courses</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8512"><a href="https://eage.org/education/education-tours/" class="elementor-sub-item" tabindex="-1">Education Tours</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8515"><a href="https://eage.org/education/interactive-online-short-courses/" class="elementor-sub-item" tabindex="-1">Interactive Online Short Courses</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8514"><a href="https://eage.org/education/in-house-training/" class="elementor-sub-item" tabindex="-1">In-House Training</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8518"><a href="https://eage.org/education/classroom-training/" class="elementor-sub-item" tabindex="-1">Classroom Training</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3581"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Eurgeol Title</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-3584"><a href="https://eage.org/education/eurgeol-title/" class="elementor-sub-item" tabindex="-1">Accreditation</a></li> </ul> </li> <li class="menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor current-menu-parent menu-item-has-children menu-item-14709"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Overview</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-14710"><a href="https://eage.org/education/education-calendar/" class="elementor-sub-item" tabindex="-1">Education Calendar</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education current-menu-item menu-item-8516"><a href="https://eage.org/education/short-course-catalogue/" aria-current="page" class="elementor-sub-item elementor-item-active" tabindex="-1">Short Course Catalogue</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1355"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Media</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3589"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">First Break</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3596"><a href="https://eage.org/media/about-firstbreak/" class="elementor-sub-item" tabindex="-1">About First Break</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3590"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">EarthDoc</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3599"><a href="https://eage.org/media/earthdoc/" class="elementor-sub-item" tabindex="-1">EarthDoc</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3591"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Journals</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3588"><a href="https://eage.org/media/nearsurfacegeophysics#near_surface_geophysics" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Near Surface Geophysics</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3594"><a href="https://eage.org/media/nearsurfacegeophysics#petroleum_geoscience" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Petroleum Geoscience</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8522"><a href="https://eage.org/media/nearsurfacegeophysics#geophysical_prospecting" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Geophysical Prospecting</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8523"><a href="https://eage.org/media/nearsurfacegeophysics#basin_research" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Basin Research</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-17867"><a href="https://eage.org/media/nearsurfacegeophysics#geoenergy" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Geoenergy</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3592"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Books</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3604"><a href="https://eage.org/media/online-bookshop/" class="elementor-sub-item" tabindex="-1">Online Bookshop</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3597"><a href="https://eage.org/media/publishing-with-eage/" class="elementor-sub-item" tabindex="-1">Publishing with EAGE</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3593"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Newsletters</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-8521"><a href="https://eage.org/media/newsletters_stay-connected/" class="elementor-sub-item" tabindex="-1">Stay Connected</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3595"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Media Partners</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3602"><a href="https://eage.org/media/media-partners/" class="elementor-sub-item" tabindex="-1">Media Partners</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-9661"><a href="https://eage.org/media/copyrights-and-use-of-eage-materials/" class="elementor-sub-item" tabindex="-1">Copyrights and use of EAGE materials</a></li> </ul> </li> </ul> </li> </ul> </nav> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-017d646" data-id="017d646" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-3613d17 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="3613d17" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-921c94e" data-id="921c94e" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-59b1439 elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="59b1439" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-1577a46" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-7e3fc8d" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-32325cb" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-instagram elementor-repeater-item-c950098" target="_blank"> <span class="elementor-screen-only">Instagram</span> <i class="fab fa-instagram"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-358e98a" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1653" class="elementor elementor-1653 elementor-location-popup" data-elementor-settings="{"entrance_animation":"fadeInDown","exit_animation":"fadeInDown","open_selector":".pop_media","entrance_animation_duration":{"unit":"px","size":"0.5","sizes":[]},"a11y_navigation":"yes","triggers":[],"timing":[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-5640d53f elementor-section-full_width elementor-section-content-top elementor-section-height-default elementor-section-height-default" data-id="5640d53f" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-6d5f1c71" data-id="6d5f1c71" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-1d09e456" data-id="1d09e456" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-7ee34a70 elementor-widget__width-inherit elementor-widget elementor-widget-wp-widget-nav_menu" data-id="7ee34a70" data-element_type="widget" data-widget_type="wp-widget-nav_menu.default"> <div class="elementor-widget-container"> <div class="menu-menu-media-container"><ul id="menu-menu-media-1" class="menu"><li class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2595"><a href="#">First Break</a> <ul class="sub-menu"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-2602"><a href="https://eage.org/media/about-firstbreak/">About First Break</a></li> </ul> </li> <li class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2596"><a href="#">Earthdoc</a> <ul class="sub-menu"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-2605"><a href="https://eage.org/media/earthdoc/">EarthDoc</a></li> </ul> </li> <li class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2597"><a href="#">Journals</a> <ul class="sub-menu"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5534"><a href="https://eage.org/media/nearsurfacegeophysics#near_surface_geophysics">Near Surface Geophysics</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5535"><a href="https://eage.org/media/nearsurfacegeophysics#petroleum_geoscience">Petroleum Geoscience</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5536"><a href="https://eage.org/media/nearsurfacegeophysics#geophysical_prospecting">Geophysical Prospecting</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5537"><a href="https://eage.org/media/nearsurfacegeophysics#basin_research">Basin Research</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-17866"><a href="https://eage.org/media/nearsurfacegeophysics#geoenergy">Geoenergy</a></li> </ul> </li> <li class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2598"><a href="#">Books</a> <ul class="sub-menu"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-2610"><a href="https://eage.org/media/online-bookshop/">Online Bookshop</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-5527"><a href="https://eage.org/media/publishing-with-eage/">Publishing with EAGE</a></li> </ul> </li> <li class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2599"><a href="#">Newsletters</a> <ul class="sub-menu"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-4051"><a href="https://eage.org/media/newsletters_stay-connected/">Stay Connected</a></li> </ul> </li> <li class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2601"><a href="#">Media Partners</a> <ul class="sub-menu"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-2608"><a href="https://eage.org/media/media-partners/">Media Partners</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-9659"><a href="https://eage.org/media/copyrights-and-use-of-eage-materials/">Copyrights and use of EAGE materials</a></li> </ul> </li> </ul></div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-24633947" data-id="24633947" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-9614c8a elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="9614c8a" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-57fb79f" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-a3355b7" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-70c7d92" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-b11320d" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1650" class="elementor elementor-1650 elementor-location-popup" data-elementor-settings="{"entrance_animation":"fadeInDown","exit_animation":"fadeInDown","open_selector":".pop_education","entrance_animation_duration":{"unit":"px","size":"0.5","sizes":[]},"a11y_navigation":"yes","triggers":[],"timing":[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-3141df06 elementor-section-full_width elementor-section-content-top elementor-section-height-default elementor-section-height-default" data-id="3141df06" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-62ffc1ec" data-id="62ffc1ec" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-617cb706" data-id="617cb706" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-71692381 elementor-widget__width-inherit elementor-widget elementor-widget-wp-widget-nav_menu" data-id="71692381" data-element_type="widget" data-widget_type="wp-widget-nav_menu.default"> <div class="elementor-widget-container"> <div class="menu-menu-education-container"><ul id="menu-menu-education" class="menu"><li id="menu-item-1620" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1620"><a href="#">Highlights</a> <ul class="sub-menu"> <li id="menu-item-7940" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-7940"><a href="https://eage.org/education/highlights/">EAGE Education</a></li> <li id="menu-item-21601" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-21601"><a href="https://eage.org/education/energy-transition-skills/">Energy Transition Skills</a></li> </ul> </li> <li id="menu-item-1621" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1621"><a href="#">Learning Geoscience</a> <ul class="sub-menu"> <li id="menu-item-3417" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-3417"><a href="https://eage.org/education/learning-geoscience/">About Learning Geoscience</a></li> <li id="menu-item-3415" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-3415"><a href="https://eage.org/education/electures/">E-Lectures</a></li> <li id="menu-item-3419" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-3419"><a href="https://eage.org/education/webinars/">Webinars</a></li> <li id="menu-item-5524" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-5524"><a href="https://eage.org/education/how-to-videos/">How-to Videos</a></li> </ul> </li> <li id="menu-item-3412" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3412"><a href="#">Short Courses</a> <ul class="sub-menu"> <li id="menu-item-5989" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-5989"><a href="https://eage.org/education/education-tours/">Education Tours</a></li> <li id="menu-item-5525" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-5525"><a href="https://eage.org/education/interactive-online-short-courses/">Interactive Online Short Courses</a></li> <li id="menu-item-5526" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-5526"><a href="https://eage.org/education/in-house-training/">In-House Training</a></li> <li id="menu-item-6209" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-6209"><a href="https://eage.org/education/classroom-training/">Classroom Training</a></li> </ul> </li> <li id="menu-item-7944" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-7944"><a href="#">Eurgeol title</a> <ul class="sub-menu"> <li id="menu-item-3416" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-3416"><a href="https://eage.org/education/eurgeol-title/">Accreditation</a></li> </ul> </li> <li id="menu-item-14706" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor current-menu-parent menu-item-has-children menu-item-14706"><a href="#">Overview</a> <ul class="sub-menu"> <li id="menu-item-14708" class="menu-button menu-item menu-item-type-post_type menu-item-object-education menu-item-14708"><a href="https://eage.org/education/education-calendar/">Education Calendar</a></li> <li id="menu-item-6210" class="menu-button menu-item menu-item-type-post_type menu-item-object-education current-menu-item menu-item-6210"><a href="https://eage.org/education/short-course-catalogue/" aria-current="page">Short Course Catalogue</a></li> </ul> </li> </ul></div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-55e52e7b" data-id="55e52e7b" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-7e0500d0 elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="7e0500d0" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-57fb79f" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-a3355b7" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-70c7d92" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-b11320d" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1647" class="elementor elementor-1647 elementor-location-popup" data-elementor-settings="{"entrance_animation":"fadeInDown","exit_animation":"fadeInDown","open_selector":".pop_students","entrance_animation_duration":{"unit":"px","size":"0.5","sizes":[]},"a11y_navigation":"yes","triggers":[],"timing":[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-4a63d3e6 elementor-section-full_width elementor-section-content-top elementor-section-height-default elementor-section-height-default" data-id="4a63d3e6" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-39fe2b25" data-id="39fe2b25" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-2a95800e" data-id="2a95800e" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-103792c3 elementor-widget__width-inherit elementor-widget elementor-widget-wp-widget-nav_menu" data-id="103792c3" data-element_type="widget" data-widget_type="wp-widget-nav_menu.default"> <div class="elementor-widget-container"> <div class="menu-menu-students-container"><ul id="menu-menu-students" class="menu"><li id="menu-item-1617" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1617"><a href="#">Student Chapters</a> <ul class="sub-menu"> <li id="menu-item-2583" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2583"><a href="https://eage.org/students/about-student-chapter/">About Student Chapters</a></li> <li id="menu-item-2584" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2584"><a href="https://eage.org/students/establish-your-student-chapter/">Establish a Student Chapter</a></li> <li id="menu-item-5988" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-5988"><a href="https://eage.org/students/your-student-chapter/">Your Student Chapter</a></li> </ul> </li> <li id="menu-item-1619" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1619"><a href="#">Online Activities</a> <ul class="sub-menu"> <li id="menu-item-2593" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2593"><a href="https://eage.org/students/webinars/">Student Webinars</a></li> <li id="menu-item-5523" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-5523"><a href="https://eage.org/students/e-summits/">Student E-Summits</a></li> </ul> </li> <li id="menu-item-1618" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1618"><a href="#">Geo Quiz</a> <ul class="sub-menu"> <li id="menu-item-2580" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2580"><a href="https://eage.org/students/about-geo-quiz/">About the Geo Quiz</a></li> <li id="menu-item-2586" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2586"><a href="https://eage.org/students/join-the-geoquiz/">Join the Geo Quiz</a></li> <li id="menu-item-2585" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2585"><a href="https://eage.org/students/geo-quiz/">Geo Quiz Hall of Fame</a></li> </ul> </li> <li id="menu-item-2575" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2575"><a href="#">Laurie Dake Challenge</a> <ul class="sub-menu"> <li id="menu-item-2581" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2581"><a href="https://eage.org/students/about-laurie-dake-challenge/">About the Laurie Dake Challenge</a></li> <li id="menu-item-2587" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2587"><a href="https://eage.org/students/join-the-laurie-dake-challenge/">Join the Laurie Dake Challenge</a></li> <li id="menu-item-6203" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-6203"><a href="https://eage.org/students/laurie-dake-challenge-hall-of-fame/">Laurie Dake Challenge Hall of Fame</a></li> </ul> </li> <li id="menu-item-2576" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2576"><a href="#">Minus co2 Challenge</a> <ul class="sub-menu"> <li id="menu-item-2582" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2582"><a href="https://eage.org/students/about-minus-co2-challenge/">About Minus CO2 Challenge</a></li> <li id="menu-item-2588" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2588"><a href="https://eage.org/students/minus-co2-challenge/">Join the Minus CO2 Challenge</a></li> <li id="menu-item-2589" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2589"><a href="https://eage.org/students/minus-co2-challenge-hall-of-fame/">Minus CO2 Challenge Hall of Fame</a></li> </ul> </li> <li id="menu-item-2577" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2577"><a href="#">Support</a> <ul class="sub-menu"> <li id="menu-item-2590" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2590"><a href="https://eage.org/students/scholarship-support/">Scholarships & Awards</a></li> <li id="menu-item-2594" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2594"><a href="https://eage.org/students/awards-support/">EAGE Membership & Grants</a></li> <li id="menu-item-16377" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-16377"><a href="https://eage.org/students/support-ukraine-professional-development-fund/">Ukraine Professional Development Fund</a></li> </ul> </li> <li id="menu-item-2578" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2578"><a href="#">EAGE Student Fund</a> <ul class="sub-menu"> <li id="menu-item-2579" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2579"><a href="https://eage.org/students/about-eage-student-fund/">About the EAGE Student Fund</a></li> </ul> </li> </ul></div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-1d9764b6" data-id="1d9764b6" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-e7ceaed elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="e7ceaed" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-57fb79f" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-a3355b7" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-70c7d92" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-b11320d" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1644" class="elementor elementor-1644 elementor-location-popup" data-elementor-settings="{"entrance_animation":"fadeInDown","exit_animation":"fadeInDown","open_selector":".pop_communities","entrance_animation_duration":{"unit":"px","size":"0.5","sizes":[]},"a11y_navigation":"yes","triggers":[],"timing":[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-5ac0563c elementor-section-full_width elementor-section-content-top elementor-section-height-default elementor-section-height-default" data-id="5ac0563c" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-4101717a" data-id="4101717a" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-14ea76b4 elementor-widget__width-inherit elementor-widget elementor-widget-wp-widget-nav_menu" data-id="14ea76b4" data-element_type="widget" data-widget_type="wp-widget-nav_menu.default"> <div class="elementor-widget-container"> <div class="menu-menu-communities-container"><ul id="menu-menu-communities" class="menu"><li id="menu-item-1601" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1601"><a href="#">Local Chapters</a> <ul class="sub-menu"> <li id="menu-item-2554" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-2554"><a href="https://eage.org/communities/eage-local-chapters/">Local Chapters</a></li> <li id="menu-item-2555" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-2555"><a href="https://eage.org/communities/find-your-local-chapter/">Find your Local Chapter</a></li> <li id="menu-item-2556" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-2556"><a href="https://eage.org/communities/local-chapter-prizes/">Local Chapter Prizes</a></li> </ul> </li> <li id="menu-item-1602" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1602"><a href="#">Special Interest Communities</a> <ul class="sub-menu"> <li id="menu-item-2557" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-2557"><a href="https://eage.org/communities/women-in-geoscience-and-engineering/">Women in Geoscience & Engineering</a></li> <li id="menu-item-2560" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-2560"><a href="https://eage.org/communities/young-professionals/">Young Professionals</a></li> <li id="menu-item-26565" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-26565"><a href="https://eage.org/communities/geoscience-communication-and-public-engagement/">Geoscience Communication and Public Engagement</a></li> </ul> </li> <li id="menu-item-2562" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2562"><a href="#">Technical Communities</a> <ul class="sub-menu"> <li id="menu-item-2563" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-2563"><a href="https://eage.org/communities/artificial-intelligence-community/">Artificial Intelligence</a></li> <li id="menu-item-7945" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-7945"><a href="https://eage.org/communities/basinpetroleumsystems/">Basin & Petroleum Systems Analysis</a></li> <li id="menu-item-2566" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-2566"><a href="https://eage.org/communities/decabonization-and-energy-transition/">Decarbonization and Energy Transition</a></li> <li id="menu-item-9545" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-9545"><a href="https://eage.org/communities/geochemistry/">Geochemistry</a></li> <li id="menu-item-17136" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-17136"><a href="https://eage.org/communities/geohazards/">Geohazards</a></li> <li id="menu-item-4035" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-4035"><a href="https://eage.org/communities/hydrogeophysics/">Hydrogeophysics</a></li> <li id="menu-item-4036" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-4036"><a href="https://eage.org/communities/critical-minerals/">Critical Minerals</a></li> <li id="menu-item-10326" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-10326"><a href="https://eage.org/communities/seismic-acquisition/">Seismic Acquisition</a></li> <li id="menu-item-10327" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-10327"><a href="https://eage.org/communities/seismic-interpretation/">Seismic Interpretation</a></li> <li id="menu-item-16853" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-16853"><a href="https://eage.org/communities/uav/">Uncrewed Aerial Vehicles</a></li> <li id="menu-item-23789" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23789"><a href="https://eage.org/communities/ccs/">CCS</a></li> <li id="menu-item-23786" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23786"><a href="https://eage.org/communities/geothermal-energy/">Geothermal Energy</a></li> <li id="menu-item-23787" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23787"><a href="https://eage.org/communities/wind-energy/">Wind Energy</a></li> <li id="menu-item-23788" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23788"><a href="https://eage.org/communities/hydrogen-and-energy-storage/">Hydrogen and Energy Storage</a></li> <li id="menu-item-25654" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-25654"><a href="https://eage.org/communities/enhancing-hydrocarbon-recovery-for-sustainability/">Enhancing Hydrocarbon Recovery for Sustainability</a></li> </ul> </li> <li id="menu-item-2570" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2570"><a href="#">EU Affairs</a> <ul class="sub-menu"> <li id="menu-item-2572" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-2572"><a href="https://eage.org/communities/eu-affairs/">About EU Affairs</a></li> </ul> </li> <li id="menu-item-2573" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2573"><a href="#">Community Activities</a> <ul class="sub-menu"> <li id="menu-item-9782" class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9782"><a href="https://eage.org/events/calendar-of-events/">Calendar of Events</a></li> <li id="menu-item-4058" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-4058"><a href="https://eage.org/communities/mentoring-programme/">Mentoring Programme</a></li> <li id="menu-item-6208" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-6208"><a href="https://eage.org/communities/pace-event-support/">PACE Event Support</a></li> <li id="menu-item-19318" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-19318"><a href="https://eage.org/communities/resources/">Resources</a></li> </ul> </li> </ul></div> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-587493b3" data-id="587493b3" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-f7ab452 elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="f7ab452" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-57fb79f" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-a3355b7" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-70c7d92" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-b11320d" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1641" class="elementor elementor-1641 elementor-location-popup" data-elementor-settings="{"entrance_animation":"fadeInDown","exit_animation":"fadeInDown","open_selector":".pop_membership","entrance_animation_duration":{"unit":"px","size":"0.5","sizes":[]},"a11y_navigation":"yes","triggers":[],"timing":[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-52fc1a12 elementor-section-full_width elementor-section-content-top elementor-section-height-default elementor-section-height-default" data-id="52fc1a12" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-4be13bf3" data-id="4be13bf3" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-7e797f79" data-id="7e797f79" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-336a75d elementor-widget__width-inherit elementor-widget elementor-widget-wp-widget-nav_menu" data-id="336a75d" data-element_type="widget" data-widget_type="wp-widget-nav_menu.default"> <div class="elementor-widget-container"> <div class="menu-menu-membership-container"><ul id="menu-menu-membership" class="menu"><li id="menu-item-1591" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1591"><a href="#">Membership</a> <ul class="sub-menu"> <li id="menu-item-12859" class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-12859"><a href="https://eage.org/membership/welcome/">Welcome to EAGE</a></li> <li id="menu-item-2553" class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-2553"><a href="https://eage.org/membership/benefits/">Benefits</a></li> <li id="menu-item-9121" class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-9121"><a href="https://eage.org/membership/membershiptypes/">Types of Membership</a></li> <li id="menu-item-2552" class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-2552"><a href="https://eage.org/membership/recognition-programme/">Recognition Programme</a></li> <li id="menu-item-6197" class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-6197"><a href="https://eage.org/membership/membership-terms-and-conditions/">Membership Terms and Conditions</a></li> </ul> </li> <li id="menu-item-1592" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1592"><a href="#">Support</a> <ul class="sub-menu"> <li id="menu-item-2551" class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-2551"><a href="https://eage.org/membership/hardship-programme/">Hardship Programme</a></li> <li id="menu-item-2550" class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-2550"><a href="https://eage.org/membership/travel-grant/">Individual Support – PACE</a></li> </ul> </li> <li id="menu-item-1593" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1593"><a href="#">Join or Renew</a> <ul class="sub-menu"> <li id="menu-item-4328" class="menu-button menu-item menu-item-type-custom menu-item-object-custom menu-item-4328"><a href="https://eage.eventsair.com/eage-membership-module/membership-application">Join EAGE</a></li> <li id="menu-item-4329" class="menu-button menu-item menu-item-type-custom menu-item-object-custom menu-item-4329"><a href="https://eage.eventsair.com/eage-membership-module/membership-application">Renew your Membership</a></li> </ul> </li> </ul></div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-271e2f07" data-id="271e2f07" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-01d6f3c elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="01d6f3c" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-57fb79f" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-a3355b7" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-70c7d92" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-b11320d" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1588" class="elementor elementor-1588 elementor-location-popup" data-elementor-settings="{"entrance_animation":"fadeInDown","exit_animation":"fadeInDown","open_selector":".pop_events","entrance_animation_duration":{"unit":"px","size":"0.5","sizes":[]},"a11y_navigation":"yes","triggers":[],"timing":[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-b00dac6 elementor-section-full_width elementor-section-content-top elementor-section-height-default elementor-section-height-default" data-id="b00dac6" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-e9a80bb" data-id="e9a80bb" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-10d41b7c" data-id="10d41b7c" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-267581f6 elementor-widget__width-inherit elementor-widget elementor-widget-wp-widget-nav_menu" data-id="267581f6" data-element_type="widget" data-widget_type="wp-widget-nav_menu.default"> <div class="elementor-widget-container"> <div class="menu-menu-events-container"><ul id="menu-menu-events" class="menu"><li id="menu-item-1583" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1583"><a href="#">About Events</a> <ul class="sub-menu"> <li id="menu-item-2547" class="menu-item menu-item-type-post_type menu-item-object-events menu-item-2547"><a href="https://eage.org/events/conferences/">Conferences</a></li> <li id="menu-item-2548" class="menu-item menu-item-type-post_type menu-item-object-events menu-item-2548"><a href="https://eage.org/events/workshops/">Workshops</a></li> <li id="menu-item-9798" class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9798"><a href="https://eage.org/events/eage-event-terms-conditions/">EAGE Event Terms & Conditions</a></li> </ul> </li> <li id="menu-item-1584" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1584"><a href="#">Highlights</a> <ul class="sub-menu"> <li id="menu-item-4006" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-4006"><a target="_blank" href="https://eagedigital.org/">EAGE Digital</a></li> <li id="menu-item-16494" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16494"><a target="_blank" href="https://eageannual.org/">EAGE Annual</a></li> <li id="menu-item-19103" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-19103"><a target="_blank" href="https://eagensg.org/">EAGE Near Surface Geoscience</a></li> <li id="menu-item-21877" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21877"><a target="_blank" href="https://eageget.org/">EAGE Global Energy Transition</a></li> </ul> </li> <li id="menu-item-1585" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1585"><a href="#">Overview</a> <ul class="sub-menu"> <li id="menu-item-9426" class="menu-button menu-item menu-item-type-post_type menu-item-object-events menu-item-9426"><a href="https://eage.org/events/calendar-of-events/">Calendar of Events</a></li> <li id="menu-item-9424" class="menu-button menu-item menu-item-type-post_type menu-item-object-events menu-item-9424"><a href="https://eage.org/events/calendar-of-online-events/">Calendar of Online Events</a></li> <li id="menu-item-9425" class="menu-button menu-item menu-item-type-post_type menu-item-object-events menu-item-9425"><a href="https://eage.org/events/calendar-of-past-events/">Calendar of Past Events</a></li> </ul> </li> </ul></div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-36d6f532" data-id="36d6f532" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-ce9dfa9 elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="ce9dfa9" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-57fb79f" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-a3355b7" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-70c7d92" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-b11320d" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1566" class="elementor elementor-1566 elementor-location-popup" data-elementor-settings="{"entrance_animation":"fadeInDown","exit_animation":"fadeInDown","open_selector":".pop_mobile","entrance_animation_mobile":"none","exit_animation_mobile":"none","entrance_animation_duration":{"unit":"px","size":"0","sizes":[]},"a11y_navigation":"yes","triggers":[],"timing":[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-27a275b4 elementor-section-full_width elementor-section-content-top mobile_menu_container_popup elementor-section-height-default elementor-section-height-default" data-id="27a275b4" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-background-overlay"></div> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-dc0edff" data-id="dc0edff" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-77cd725 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="77cd725" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-33d9293" data-id="33d9293" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-00db6a8 elementor-widget elementor-widget-image" data-id="00db6a8" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img src="https://eage.org/wp-content/uploads/2020/05/EAGE_logo_header.svg?w=800" title="EAGE_logo" alt="EAGE_logo" loading="lazy" /> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-d7ee7bc" data-id="d7ee7bc" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-f04bbc4 elementor-widget elementor-widget-image" data-id="f04bbc4" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img src="https://eage.org/wp-content/uploads/2020/05/Mobile_MenuIcon_closing.svg?w=150&h=150&crop=1" title="Mobile_MenuIcon_closing" alt="Mobile_MenuIcon_closing" loading="lazy" /> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-444c9ec elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="444c9ec" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-624d41a" data-id="624d41a" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-afad4b1 mobile_top_menu elementor-widget elementor-widget-text-editor" data-id="afad4b1" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p style="text-align: center;"> <a href="https://www.firstbreak.org/">First Break</a> <a href="https://www.earthdoc.org/">EarthDoc</a></p> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-d22a331 elementor-section-full_width elementor-section-content-top elementor-section-height-default elementor-section-height-default" data-id="d22a331" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-background-overlay"></div> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1220ef8" data-id="1220ef8" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-background-overlay"></div> <section class="elementor-section elementor-inner-section elementor-element elementor-element-df7c7e4 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="df7c7e4" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-4315d2c" data-id="4315d2c" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-d0dba09 elementor-search-form--skin-classic elementor-search-form--button-type-icon elementor-search-form--icon-search elementor-widget elementor-widget-search-form" data-id="d0dba09" data-element_type="widget" data-settings="{"skin":"classic"}" data-widget_type="search-form.default"> <div class="elementor-widget-container"> <search role="search"> <form class="elementor-search-form" action="https://eage.org" method="get"> <div class="elementor-search-form__container"> <label class="elementor-screen-only" for="elementor-search-form-d0dba09">Search</label> <input id="elementor-search-form-d0dba09" placeholder="Search..." class="elementor-search-form__input" type="search" name="s" value=""> <button class="elementor-search-form__submit" type="submit" aria-label="Search"> <i aria-hidden="true" class="fas fa-search"></i> </button> </div> </form> </search> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-3752fb4 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="3752fb4" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-025f73c" data-id="025f73c" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-1a7ce65 elementor-nav-menu__text-align-aside elementor-widget elementor-widget-nav-menu" data-id="1a7ce65" data-element_type="widget" data-settings="{"layout":"dropdown","submenu_icon":{"value":"<i class=\"fas fa-caret-down\"><\/i>","library":"fa-solid"}}" data-widget_type="nav-menu.default"> <div class="elementor-widget-container"> <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true"> <ul id="menu-2-1a7ce65" class="elementor-nav-menu"><li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1349"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">About EAGE</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1328"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">General</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3501"><a href="https://eage.org/about_eage/mission-and-objectives/" class="elementor-sub-item" tabindex="-1">Mission and Objectives</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-9309"><a href="https://eage.org/about_eage/eage-history/" class="elementor-sub-item" tabindex="-1">History</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3498"><a href="https://eage.org/about_eage/agmm/" class="elementor-sub-item" tabindex="-1">AGMM</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3499"><a href="https://eage.org/about_eage/circles/" class="elementor-sub-item" tabindex="-1">Circles</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-25434"><a href="https://eage.org/about_eage/code-of-conduct/" class="elementor-sub-item" tabindex="-1">Code of Conduct</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1329"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Organization</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-20411"><a href="https://eage.org/about_eage/ballot/" class="elementor-sub-item" tabindex="-1">Ballot</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3502"><a href="https://eage.org/about_eage/board-and-bod/" class="elementor-sub-item" tabindex="-1">Board and BoD</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3504"><a href="https://eage.org/about_eage/committees/" class="elementor-sub-item" tabindex="-1">Committees</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3505"><a href="https://eage.org/about_eage/constitution/" class="elementor-sub-item" tabindex="-1">Constitution</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3503"><a href="https://eage.org/about_eage/by-laws/" class="elementor-sub-item" tabindex="-1">By-Laws</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1330"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Funds</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3508"><a href="https://eage.org/about_eage/student-fund/" class="elementor-sub-item" tabindex="-1">Student Fund</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3506"><a href="https://eage.org/about_eage/green-fund/" class="elementor-sub-item" tabindex="-1">Green Fund</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1331"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Cooperations</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3509"><a href="https://eage.org/about_eage/associated-societies/" class="elementor-sub-item" tabindex="-1">Associated Societies</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3511"><a href="https://eage.org/about_eage/joint-events/" class="elementor-sub-item" tabindex="-1">Joint Events</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1332"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Global Offices</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8453"><a href="/about_eage/global-offices" class="elementor-sub-item" tabindex="-1">Europe Office</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8455"><a href="/about_eage/global-offices#middle-east_africa_office" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Middle East / Africa Office</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8458"><a href="/about_eage/global-offices#asia-pacific_office" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Asia Pacific Office</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8459"><a href="/about_eage/global-offices#latin-americas_office" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Latin America Office</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1333"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Careers</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3515"><a href="https://eage.org/about_eage/careers/" class="elementor-sub-item" tabindex="-1">Work with EAGE</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3513"><a href="https://eage.org/about_eage/careers-in-the-industry/" class="elementor-sub-item" tabindex="-1">Careers in the Industry</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3514"><a href="https://eage.org/about_eage/volunteer/" class="elementor-sub-item" tabindex="-1">Volunteering Opportunities</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-8492"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Awards</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-8494"><a href="https://eage.org/about_eage/nominations/" class="elementor-sub-item" tabindex="-1">Nominations</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-8495"><a href="https://eage.org/about_eage/overview-awards/" class="elementor-sub-item" tabindex="-1">Overview Awards</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-8493"><a href="https://eage.org/about_eage/award-winners/" class="elementor-sub-item" tabindex="-1">Award Winners</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1350"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Events</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3518"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">About Events</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-3516"><a href="https://eage.org/events/conferences/" class="elementor-sub-item" tabindex="-1">Conferences</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-3517"><a href="https://eage.org/events/workshops/" class="elementor-sub-item" tabindex="-1">Workshops</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-20412"><a href="https://eage.org/events/eage-event-terms-conditions/" class="elementor-sub-item" tabindex="-1">EAGE Event Terms & Conditions</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3519"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Highlights</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-20413"><a href="https://eagedigital.org/" class="elementor-sub-item" tabindex="-1">EAGE Digital 2024</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16612"><a target="_blank" href="https://eageannual.org/" class="elementor-sub-item" tabindex="-1">EAGE Annual 2024</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8497"><a target="_blank" href="https://eagensg.org/" class="elementor-sub-item" tabindex="-1">EAGE Near Surface Geoscience 2024</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21878"><a href="https://eageget.org/" class="elementor-sub-item" tabindex="-1">EAGE Global Energy Transition 2024</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3520"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Overview</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9429"><a href="https://eage.org/events/calendar-of-events/" class="elementor-sub-item" tabindex="-1">Calendar of Events</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9427"><a href="https://eage.org/events/calendar-of-online-events/" class="elementor-sub-item" tabindex="-1">Calendar of Online Events</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9428"><a href="https://eage.org/events/calendar-of-past-events/" class="elementor-sub-item" tabindex="-1">Calendar of Past Events</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1351"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Membership</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3522"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Membership</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-12860"><a href="https://eage.org/membership/welcome/" class="elementor-sub-item" tabindex="-1">Welcome to EAGE</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3525"><a href="https://eage.org/membership/benefits/" class="elementor-sub-item" tabindex="-1">Benefits</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-9123"><a href="https://eage.org/membership/membershiptypes/" class="elementor-sub-item" tabindex="-1">Types of Membership</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3527"><a href="https://eage.org/membership/recognition-programme/" class="elementor-sub-item" tabindex="-1">Recognition Programme</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-8498"><a href="https://eage.org/membership/membership-terms-and-conditions/" class="elementor-sub-item" tabindex="-1">Membership Terms and Conditions</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3523"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Support</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3526"><a href="https://eage.org/membership/hardship-programme/" class="elementor-sub-item" tabindex="-1">Hardship Programme</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3528"><a href="https://eage.org/membership/travel-grant/" class="elementor-sub-item" tabindex="-1">Individual Support – PACE</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3524"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Join or Renew</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8499"><a href="https://eage.eventsair.com/eage-membership-module/membership-application" class="elementor-sub-item" tabindex="-1">Join EAGE</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8500"><a href="https://eage.eventsair.com/eage-membership-module/membership-application" class="elementor-sub-item" tabindex="-1">Renew your Membership</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1352"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Communities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3529"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Local Chapters</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3539"><a href="https://eage.org/communities/eage-local-chapters/" class="elementor-sub-item" tabindex="-1">EAGE Local Chapters</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3544"><a href="https://eage.org/communities/find-your-local-chapter/" class="elementor-sub-item" tabindex="-1">Find your Local Chapter</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3546"><a href="https://eage.org/communities/local-chapter-prizes/" class="elementor-sub-item" tabindex="-1">Local Chapter Prizes</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3530"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Special Interest Communities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3540"><a href="https://eage.org/communities/women-in-geoscience-and-engineering/" class="elementor-sub-item" tabindex="-1">Women in Geoscience & Engineering</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3541"><a href="https://eage.org/communities/young-professionals/" class="elementor-sub-item" tabindex="-1">Young Professionals</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-26566"><a href="https://eage.org/communities/geoscience-communication-and-public-engagement/" class="elementor-sub-item" tabindex="-1">Geoscience Communication and Public Engagement</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3532"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Technical Communities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3536"><a href="https://eage.org/communities/artificial-intelligence-community/" class="elementor-sub-item" tabindex="-1">Artificial Intelligence</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8502"><a href="https://eage.org/communities/basinpetroleumsystems/" class="elementor-sub-item" tabindex="-1">Basin & Petroleum Systems Analysis</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3537"><a href="https://eage.org/communities/decabonization-and-energy-transition/" class="elementor-sub-item" tabindex="-1">Decarbonization and Energy Transition</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-9548"><a href="https://eage.org/communities/geochemistry/" class="elementor-sub-item" tabindex="-1">Geochemistry</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-20409"><a href="https://eage.org/communities/geohazards/" class="elementor-sub-item" tabindex="-1">Geohazards</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8503"><a href="https://eage.org/communities/hydrogeophysics/" class="elementor-sub-item" tabindex="-1">Hydrogeophysics</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8504"><a href="https://eage.org/communities/critical-minerals/" class="elementor-sub-item" tabindex="-1">Critical Minerals</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-10328"><a href="https://eage.org/communities/seismic-acquisition/" class="elementor-sub-item" tabindex="-1">Seismic Acquisition</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-10329"><a href="https://eage.org/communities/seismic-interpretation/" class="elementor-sub-item" tabindex="-1">Seismic Interpretation</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-20410"><a href="https://eage.org/communities/uav/" class="elementor-sub-item" tabindex="-1">Uncrewed Aerial Vehicles</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23793"><a href="https://eage.org/communities/ccs/" class="elementor-sub-item" tabindex="-1">CCS</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23790"><a href="https://eage.org/communities/geothermal-energy/" class="elementor-sub-item" tabindex="-1">Geothermal Energy</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23791"><a href="https://eage.org/communities/wind-energy/" class="elementor-sub-item" tabindex="-1">Wind Energy</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23792"><a href="https://eage.org/communities/hydrogen-and-energy-storage/" class="elementor-sub-item" tabindex="-1">Hydrogen and Energy Storage</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-25655"><a href="https://eage.org/communities/enhancing-hydrocarbon-recovery-for-sustainability/" class="elementor-sub-item" tabindex="-1">Enhancing Hydrocarbon Recovery for Sustainability</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3534"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">EU Affairs</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3538"><a href="https://eage.org/communities/eu-affairs/" class="elementor-sub-item" tabindex="-1">About EU Affairs</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3535"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Community Activities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3550"><a href="https://events.eage.org/" class="elementor-sub-item" tabindex="-1">Calendar of Events</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8505"><a href="https://eage.org/communities/mentoring-programme/" class="elementor-sub-item" tabindex="-1">Mentoring Programme</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8506"><a href="https://eage.org/communities/pace-event-support/" class="elementor-sub-item" tabindex="-1">PACE Event Support</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-19319"><a href="https://eage.org/communities/resources/" class="elementor-sub-item" tabindex="-1">Resources</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1353"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Students</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3551"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Student Chapters</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3563"><a href="https://eage.org/students/about-student-chapter/" class="elementor-sub-item" tabindex="-1">About Student Chapters</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3564"><a href="https://eage.org/students/establish-your-student-chapter/" class="elementor-sub-item" tabindex="-1">Establish a Student Chapter</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-8508"><a href="https://eage.org/students/your-student-chapter/" class="elementor-sub-item" tabindex="-1">Your Student Chapter</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3552"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Online Activities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3573"><a href="https://eage.org/students/webinars/" class="elementor-sub-item" tabindex="-1">Student Webinars</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-8509"><a href="https://eage.org/students/e-summits/" class="elementor-sub-item" tabindex="-1">Student E-Summits</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3553"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">GEO Quiz</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3560"><a href="https://eage.org/students/about-geo-quiz/" class="elementor-sub-item" tabindex="-1">About the Geo Quiz</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3566"><a href="https://eage.org/students/join-the-geoquiz/" class="elementor-sub-item" tabindex="-1">Join the Geo Quiz</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3565"><a href="https://eage.org/students/geo-quiz/" class="elementor-sub-item" tabindex="-1">Geo Quiz Hall of Fame</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3554"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Laurie Dake Challenge</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3561"><a href="https://eage.org/students/about-laurie-dake-challenge/" class="elementor-sub-item" tabindex="-1">About the Laurie Dake Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3567"><a href="https://eage.org/students/join-the-laurie-dake-challenge/" class="elementor-sub-item" tabindex="-1">Join the Laurie Dake Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-8507"><a href="https://eage.org/students/laurie-dake-challenge-hall-of-fame/" class="elementor-sub-item" tabindex="-1">Laurie Dake Challenge Hall of Fame</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3555"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Minus CO2 challenge</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3562"><a href="https://eage.org/students/about-minus-co2-challenge/" class="elementor-sub-item" tabindex="-1">About Minus CO2 Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3568"><a href="https://eage.org/students/minus-co2-challenge/" class="elementor-sub-item" tabindex="-1">Join the Minus CO2 Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3569"><a href="https://eage.org/students/minus-co2-challenge-hall-of-fame/" class="elementor-sub-item" tabindex="-1">Minus CO2 Challenge Hall of Fame</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3556"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Support</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3570"><a href="https://eage.org/students/scholarship-support/" class="elementor-sub-item" tabindex="-1">Scholarships & Awards</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3574"><a href="https://eage.org/students/awards-support/" class="elementor-sub-item" tabindex="-1">EAGE Membership & Grants</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-20414"><a href="https://eage.org/students/support-ukraine-professional-development-fund/" class="elementor-sub-item" tabindex="-1">Ukraine Professional Development Fund</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3557"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">EAGE Student Fund</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3559"><a href="https://eage.org/students/about-eage-student-fund/" class="elementor-sub-item" tabindex="-1">About the EAGE Student Fund</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor menu-item-has-children menu-item-1354"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Education</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3575"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Highlights</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8511"><a href="https://eage.org/education/highlights/" class="elementor-sub-item" tabindex="-1">EAGE Education</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-21602"><a href="https://eage.org/education/energy-transition-skills/" class="elementor-sub-item" tabindex="-1">Energy Transition Skills</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3576"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Learning Geoscience</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8519"><a href="https://eage.org/education/learning-geoscience/" class="elementor-sub-item" tabindex="-1">About Learning Geoscience</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8510"><a href="https://eage.org/education/electures/" class="elementor-sub-item" tabindex="-1">E-Lectures</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8517"><a href="https://eage.org/education/webinars/" class="elementor-sub-item" tabindex="-1">Webinars</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8513"><a href="https://eage.org/education/how-to-videos/" class="elementor-sub-item" tabindex="-1">How-to Videos</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3579"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Short Courses</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8512"><a href="https://eage.org/education/education-tours/" class="elementor-sub-item" tabindex="-1">Education Tours</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8515"><a href="https://eage.org/education/interactive-online-short-courses/" class="elementor-sub-item" tabindex="-1">Interactive Online Short Courses</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8514"><a href="https://eage.org/education/in-house-training/" class="elementor-sub-item" tabindex="-1">In-House Training</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8518"><a href="https://eage.org/education/classroom-training/" class="elementor-sub-item" tabindex="-1">Classroom Training</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3581"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Eurgeol Title</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-3584"><a href="https://eage.org/education/eurgeol-title/" class="elementor-sub-item" tabindex="-1">Accreditation</a></li> </ul> </li> <li class="menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor current-menu-parent menu-item-has-children menu-item-14709"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Overview</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-14710"><a href="https://eage.org/education/education-calendar/" class="elementor-sub-item" tabindex="-1">Education Calendar</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education current-menu-item menu-item-8516"><a href="https://eage.org/education/short-course-catalogue/" aria-current="page" class="elementor-sub-item elementor-item-active" tabindex="-1">Short Course Catalogue</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1355"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Media</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3589"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">First Break</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3596"><a href="https://eage.org/media/about-firstbreak/" class="elementor-sub-item" tabindex="-1">About First Break</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3590"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">EarthDoc</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3599"><a href="https://eage.org/media/earthdoc/" class="elementor-sub-item" tabindex="-1">EarthDoc</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3591"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Journals</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3588"><a href="https://eage.org/media/nearsurfacegeophysics#near_surface_geophysics" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Near Surface Geophysics</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3594"><a href="https://eage.org/media/nearsurfacegeophysics#petroleum_geoscience" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Petroleum Geoscience</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8522"><a href="https://eage.org/media/nearsurfacegeophysics#geophysical_prospecting" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Geophysical Prospecting</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8523"><a href="https://eage.org/media/nearsurfacegeophysics#basin_research" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Basin Research</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-17867"><a href="https://eage.org/media/nearsurfacegeophysics#geoenergy" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Geoenergy</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3592"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Books</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3604"><a href="https://eage.org/media/online-bookshop/" class="elementor-sub-item" tabindex="-1">Online Bookshop</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3597"><a href="https://eage.org/media/publishing-with-eage/" class="elementor-sub-item" tabindex="-1">Publishing with EAGE</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3593"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Newsletters</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-8521"><a href="https://eage.org/media/newsletters_stay-connected/" class="elementor-sub-item" tabindex="-1">Stay Connected</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3595"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Media Partners</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3602"><a href="https://eage.org/media/media-partners/" class="elementor-sub-item" tabindex="-1">Media Partners</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-9661"><a href="https://eage.org/media/copyrights-and-use-of-eage-materials/" class="elementor-sub-item" tabindex="-1">Copyrights and use of EAGE materials</a></li> </ul> </li> </ul> </li> </ul> </nav> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-3b3b8a4 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="3b3b8a4" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-a4b9c70" data-id="a4b9c70" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-3cbbfb4 elementor-align-center elementor-widget elementor-widget-button" data-id="3cbbfb4" data-element_type="widget" data-widget_type="button.default"> <div class="elementor-widget-container"> <div class="elementor-button-wrapper"> <a class="elementor-button elementor-button-link elementor-size-sm" href="#"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-icon"> <i aria-hidden="true" class="fas fa-phone-alt"></i> </span> <span class="elementor-button-text">Call Us</span> </span> </a> </div> </div> </div> <div class="elementor-element elementor-element-50455d9 elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="50455d9" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-1577a46" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-358e98a" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-32325cb" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-7e3fc8d" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1137" class="elementor elementor-1137 elementor-location-popup" data-elementor-settings="{"entrance_animation":"fadeInDown","exit_animation":"fadeInDown","open_selector":".pop_abouteage","entrance_animation_duration":{"unit":"px","size":"0.5","sizes":[]},"a11y_navigation":"yes","triggers":[],"timing":[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-54464432 elementor-section-full_width elementor-section-content-top elementor-section-height-default elementor-section-height-default" data-id="54464432" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-a784336" data-id="a784336" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-5af8966f" data-id="5af8966f" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-85623ab elementor-widget__width-inherit elementor-widget elementor-widget-wp-widget-nav_menu" data-id="85623ab" data-element_type="widget" data-widget_type="wp-widget-nav_menu.default"> <div class="elementor-widget-container"> <div class="menu-menu-about-eage-container"><ul id="menu-menu-about-eage" class="menu"><li id="menu-item-1124" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1124"><a href="#">General</a> <ul class="sub-menu"> <li id="menu-item-2337" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2337"><a href="https://eage.org/about_eage/mission-and-objectives/">Mission and Objectives</a></li> <li id="menu-item-6973" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-6973"><a href="https://eage.org/about_eage/eage-history/">History</a></li> <li id="menu-item-2336" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2336"><a href="https://eage.org/about_eage/agmm/">AGMM</a></li> <li id="menu-item-2318" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2318"><a href="https://eage.org/about_eage/circles/">Circles</a></li> <li id="menu-item-25432" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-25432"><a href="https://eage.org/about_eage/code-of-conduct/">Code of Conduct</a></li> </ul> </li> <li id="menu-item-1125" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1125"><a href="#">Organization</a> <ul class="sub-menu"> <li id="menu-item-19501" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-19501"><a href="https://eage.org/about_eage/ballot/">Ballot</a></li> <li id="menu-item-2339" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2339"><a href="https://eage.org/about_eage/board-and-bod/">Board and BoD</a></li> <li id="menu-item-2340" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2340"><a href="https://eage.org/about_eage/committees/">Committees</a></li> <li id="menu-item-2319" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2319"><a href="https://eage.org/about_eage/constitution/">Constitution</a></li> <li id="menu-item-2342" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2342"><a href="https://eage.org/about_eage/by-laws/">By-Laws</a></li> </ul> </li> <li id="menu-item-1126" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1126"><a href="#">Funds</a> <ul class="sub-menu"> <li id="menu-item-2322" class="hide_menu_item menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2322"><a href="https://eage.org/?post_type=about_eage&p=2108">Structural Funds</a></li> <li id="menu-item-5224" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5224"><a href="https://eage.org/about_eage/funds">Student Fund</a></li> <li id="menu-item-4378" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-4378"><a href="https://eage.org/about_eage/funds#green_fund">Green Fund</a></li> </ul> </li> <li id="menu-item-1150" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1150"><a href="#">Cooperations</a> <ul class="sub-menu"> <li id="menu-item-2324" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2324"><a href="https://eage.org/about_eage/associated-societies/">Associated Societies</a></li> <li id="menu-item-2325" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2325"><a href="https://eage.org/about_eage/joint-events/">Joint Events</a></li> <li id="menu-item-2323" class="hide_menu_item menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2323"><a href="https://eage.org/?post_type=about_eage&p=2136">Corporate Partners</a></li> </ul> </li> <li id="menu-item-1151" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1151"><a href="#">Global Offices</a> <ul class="sub-menu"> <li id="menu-item-5576" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5576"><a href="/about_eage/global-offices">Europe Office</a></li> <li id="menu-item-5577" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5577"><a href="/about_eage/global-offices#middle-east_africa_office">Middle East / Africa Office</a></li> <li id="menu-item-5579" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5579"><a href="/about_eage/global-offices#asia-pacific_office">Asia Pacific Office</a></li> <li id="menu-item-5580" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5580"><a href="/about_eage/global-offices#latin-americas_office">Latin America Office</a></li> </ul> </li> <li id="menu-item-1152" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1152"><a href="#">Careers</a> <ul class="sub-menu"> <li id="menu-item-2329" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2329"><a href="https://eage.org/about_eage/careers/">Work with EAGE</a></li> <li id="menu-item-2328" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2328"><a href="https://eage.org/about_eage/careers-in-the-industry/">Careers in the Industry</a></li> <li id="menu-item-2327" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2327"><a href="https://eage.org/about_eage/volunteer/">Volunteering Opportunities</a></li> </ul> </li> <li id="menu-item-2331" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2331"><a href="#">Awards</a> <ul class="sub-menu"> <li id="menu-item-2334" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2334"><a href="https://eage.org/about_eage/nominations/">Nominations</a></li> <li id="menu-item-2333" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2333"><a href="https://eage.org/about_eage/overview-awards/">Overview Awards</a></li> <li id="menu-item-2332" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2332"><a href="https://eage.org/about_eage/award-winners/">Award Winners</a></li> </ul> </li> </ul></div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-7cb713e" data-id="7cb713e" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-8ce403f elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="8ce403f" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-57fb79f" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-a3355b7" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-70c7d92" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-b11320d" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> <script> const lazyloadRunObserver = () => { const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => { entries.forEach( ( entry ) => { if ( entry.isIntersecting ) { let lazyloadBackground = entry.target; if( lazyloadBackground ) { lazyloadBackground.classList.add( 'e-lazyloaded' ); } lazyloadBackgroundObserver.unobserve( entry.target ); } }); }, { rootMargin: '200px 0px 200px 0px' } ); lazyloadBackgrounds.forEach( ( lazyloadBackground ) => { lazyloadBackgroundObserver.observe( lazyloadBackground ); } ); }; const events = [ 'DOMContentLoaded', 'elementor/lazyload/observe', ]; events.forEach( ( event ) => { document.addEventListener( event, lazyloadRunObserver ); } ); </script> <script type="text/javascript"> window['ninja_table_instance_0'] = {"table_id":"16186","title":"Online Short Course Catalogue","caption":"","columns":[{"name":"discipline","key":"discipline","title":"Discipline","breakpoints":"","type":"text","visible":true,"classes":["ninja_column_0","ninja_clmn_nm_discipline","width-10"],"filterable":true,"sortable":true,"original":{"name":"Discipline","key":"discipline","breakpoints":"","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Discipline","maxWidthUnit":"px","classes":"width-10"}},{"name":"subdiscipline","key":"subdiscipline","title":"Subdiscipline","breakpoints":"","type":"text","visible":true,"classes":["ninja_column_1","ninja_clmn_nm_subdiscipline","width-10"],"filterable":true,"sortable":true,"original":{"name":"Subdiscipline","key":"subdiscipline","breakpoints":"","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Subdiscipline","maxWidthUnit":"px","classes":"width-10"}},{"name":"coursetitle","key":"coursetitle","title":"Course Title","breakpoints":"","type":"text","visible":true,"classes":["ninja_column_2","ninja_clmn_nm_coursetitle","width-20"],"filterable":true,"sortable":true,"original":{"name":"Course Title","key":"coursetitle","breakpoints":"","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Course Title","maxWidthUnit":"px","classes":"width-20"}},{"name":"instructor","key":"instructor","title":"Instructor","breakpoints":"","type":"text","visible":true,"classes":["ninja_column_3","ninja_clmn_nm_instructor","width-10"],"filterable":true,"sortable":true,"original":{"name":"Instructor","key":"instructor","breakpoints":"","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Instructor","maxWidthUnit":"px","classes":"width-10"}},{"name":"registration","key":"registration","title":"Registration","breakpoints":"","type":"text","visible":true,"classes":["ninja_column_4","ninja_clmn_nm_registration","width-10"],"filterable":false,"sortable":true,"original":{"name":"Registration","key":"registration","breakpoints":"","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Registration","maxWidthUnit":"px","classes":"width-10","unfilterable":"yes"}},{"name":"keywords","key":"keywords","title":"Keywords","breakpoints":"hidden","type":"text","visible":false,"classes":["ninja_column_5","ninja_clmn_nm_keywords"],"filterable":true,"sortable":true,"original":{"name":"Keywords","key":"keywords","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Keywords","maxWidthUnit":"px","unfilterable":"no"}},{"name":"description","key":"description","title":"Description","breakpoints":"hidden","type":"text","visible":false,"classes":["ninja_column_6","ninja_clmn_nm_description"],"filterable":true,"sortable":true,"original":{"name":"Description","key":"description","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Description","maxWidthUnit":"px","unfilterable":"no"}},{"name":"availableasinhouse","key":"availableasinhouse","title":"Available as In-House","breakpoints":"hidden","type":"text","visible":false,"classes":["ninja_column_7","ninja_clmn_nm_availableasinhouse"],"filterable":false,"sortable":true,"original":{"name":"Available as In-House","key":"availableasinhouse","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Available as In-House","maxWidthUnit":"px","unfilterable":"yes"}},{"name":"newcourse","key":"newcourse","title":"New Course","breakpoints":"hidden","type":"text","visible":false,"classes":["ninja_column_8","ninja_clmn_nm_newcourse"],"filterable":false,"sortable":true,"original":{"name":"New Course","key":"newcourse","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"New Course","maxWidthUnit":"px","unfilterable":"yes"}},{"name":"hasabook","key":"hasabook","title":"Has a Book","breakpoints":"hidden","type":"text","visible":false,"classes":["ninja_column_9","ninja_clmn_nm_hasabook"],"filterable":false,"sortable":true,"original":{"name":"Has a Book","key":"hasabook","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Has a Book","maxWidthUnit":"px","unfilterable":"yes"}},{"name":"hasanelecture","key":"hasanelecture","title":"Has an E-Lecture","breakpoints":"hidden","type":"text","visible":false,"classes":["ninja_column_10","ninja_clmn_nm_hasanelecture"],"filterable":false,"sortable":true,"original":{"name":"Has an E-Lecture","key":"hasanelecture","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Has an E-Lecture","maxWidthUnit":"px","unfilterable":"yes"}},{"name":"energytransition","key":"energytransition","title":"Energy Transition","breakpoints":"hidden","type":"text","visible":false,"classes":["ninja_column_11","ninja_clmn_nm_energytransition"],"filterable":false,"sortable":true,"original":{"name":"Energy Transition","key":"energytransition","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Energy Transition","maxWidthUnit":"px","unfilterable":"yes"}},{"name":"registrationopen","key":"registrationopen","title":"Registration Open","breakpoints":"hidden","type":"text","visible":false,"classes":["ninja_column_12","ninja_clmn_nm_registrationopen"],"filterable":false,"sortable":true,"original":{"name":"Registration Open","key":"registrationopen","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Registration Open","maxWidthUnit":"px","unfilterable":"yes"}}],"original_columns":[{"name":"Discipline","key":"discipline","breakpoints":"","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Discipline","maxWidthUnit":"px","classes":"width-10"},{"name":"Subdiscipline","key":"subdiscipline","breakpoints":"","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Subdiscipline","maxWidthUnit":"px","classes":"width-10"},{"name":"Course Title","key":"coursetitle","breakpoints":"","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Course Title","maxWidthUnit":"px","classes":"width-20"},{"name":"Instructor","key":"instructor","breakpoints":"","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Instructor","maxWidthUnit":"px","classes":"width-10"},{"name":"Registration","key":"registration","breakpoints":"","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Registration","maxWidthUnit":"px","classes":"width-10","unfilterable":"yes"},{"name":"Keywords","key":"keywords","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Keywords","maxWidthUnit":"px","unfilterable":"no"},{"name":"Description","key":"description","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Description","maxWidthUnit":"px","unfilterable":"no"},{"name":"Available as In-House","key":"availableasinhouse","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Available as In-House","maxWidthUnit":"px","unfilterable":"yes"},{"name":"New Course","key":"newcourse","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"New Course","maxWidthUnit":"px","unfilterable":"yes"},{"name":"Has a Book","key":"hasabook","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Has a Book","maxWidthUnit":"px","unfilterable":"yes"},{"name":"Has an E-Lecture","key":"hasanelecture","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Has an E-Lecture","maxWidthUnit":"px","unfilterable":"yes"},{"name":"Energy Transition","key":"energytransition","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Energy Transition","maxWidthUnit":"px","unfilterable":"yes"},{"name":"Registration Open","key":"registrationopen","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Registration Open","maxWidthUnit":"px","unfilterable":"yes"}],"settings":{"filtering":"1","togglePosition":"first","paging":"20","pager":false,"page_sizes":["10","20","50","100"],"sorting":true,"default_sorting":"old_first","defualt_filter":false,"defualt_filter_column":null,"expandFirst":false,"expandAll":false,"i18n":{"search_in":"Search in","search":"Search","no_result_text":"No Result Found"},"shouldNotCache":false,"skip_rows":0,"limit_rows":0,"use_parent_width":false,"info":"","enable_html_cache":"no","html_caching_minutes":null,"extra_css_class":"","disable_sticky_on_mobile":null,"has_formula":"no","filter_selects":[]},"render_type":"legacy_table","custom_css":{"ninja_column_0":[],"ninja_column_1":[],"ninja_column_2":[],"ninja_column_3":[],"ninja_column_4":[],"ninja_column_5":[],"ninja_column_6":[],"ninja_column_7":[],"ninja_column_8":[],"ninja_column_9":[],"ninja_column_10":[],"ninja_column_11":[],"ninja_column_12":[]},"instance_name":"ninja_table_instance_0","table_version":"5.0.18","provider":"google-csv","uniqueID":"ninja_table_unique_id_870904616_16186","custom_filter_key":"ninja_table_instance_0_custom_filter","init_config":{"toggleColumn":"first","cascade":true,"useParentWidth":false,"columns":[{"name":"discipline","key":"discipline","title":"Discipline","breakpoints":"","type":"text","visible":true,"classes":["ninja_column_0","ninja_clmn_nm_discipline","width-10"],"filterable":true,"sortable":true,"original":{"name":"Discipline","key":"discipline","breakpoints":"","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Discipline","maxWidthUnit":"px","classes":"width-10"}},{"name":"subdiscipline","key":"subdiscipline","title":"Subdiscipline","breakpoints":"","type":"text","visible":true,"classes":["ninja_column_1","ninja_clmn_nm_subdiscipline","width-10"],"filterable":true,"sortable":true,"original":{"name":"Subdiscipline","key":"subdiscipline","breakpoints":"","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Subdiscipline","maxWidthUnit":"px","classes":"width-10"}},{"name":"coursetitle","key":"coursetitle","title":"Course Title","breakpoints":"","type":"text","visible":true,"classes":["ninja_column_2","ninja_clmn_nm_coursetitle","width-20"],"filterable":true,"sortable":true,"original":{"name":"Course Title","key":"coursetitle","breakpoints":"","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Course Title","maxWidthUnit":"px","classes":"width-20"}},{"name":"instructor","key":"instructor","title":"Instructor","breakpoints":"","type":"text","visible":true,"classes":["ninja_column_3","ninja_clmn_nm_instructor","width-10"],"filterable":true,"sortable":true,"original":{"name":"Instructor","key":"instructor","breakpoints":"","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Instructor","maxWidthUnit":"px","classes":"width-10"}},{"name":"registration","key":"registration","title":"Registration","breakpoints":"","type":"text","visible":true,"classes":["ninja_column_4","ninja_clmn_nm_registration","width-10"],"filterable":false,"sortable":true,"original":{"name":"Registration","key":"registration","breakpoints":"","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Registration","maxWidthUnit":"px","classes":"width-10","unfilterable":"yes"}},{"name":"keywords","key":"keywords","title":"Keywords","breakpoints":"hidden","type":"text","visible":false,"classes":["ninja_column_5","ninja_clmn_nm_keywords"],"filterable":true,"sortable":true,"original":{"name":"Keywords","key":"keywords","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Keywords","maxWidthUnit":"px","unfilterable":"no"}},{"name":"description","key":"description","title":"Description","breakpoints":"hidden","type":"text","visible":false,"classes":["ninja_column_6","ninja_clmn_nm_description"],"filterable":true,"sortable":true,"original":{"name":"Description","key":"description","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Description","maxWidthUnit":"px","unfilterable":"no"}},{"name":"availableasinhouse","key":"availableasinhouse","title":"Available as In-House","breakpoints":"hidden","type":"text","visible":false,"classes":["ninja_column_7","ninja_clmn_nm_availableasinhouse"],"filterable":false,"sortable":true,"original":{"name":"Available as In-House","key":"availableasinhouse","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Available as In-House","maxWidthUnit":"px","unfilterable":"yes"}},{"name":"newcourse","key":"newcourse","title":"New Course","breakpoints":"hidden","type":"text","visible":false,"classes":["ninja_column_8","ninja_clmn_nm_newcourse"],"filterable":false,"sortable":true,"original":{"name":"New Course","key":"newcourse","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"New Course","maxWidthUnit":"px","unfilterable":"yes"}},{"name":"hasabook","key":"hasabook","title":"Has a Book","breakpoints":"hidden","type":"text","visible":false,"classes":["ninja_column_9","ninja_clmn_nm_hasabook"],"filterable":false,"sortable":true,"original":{"name":"Has a Book","key":"hasabook","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Has a Book","maxWidthUnit":"px","unfilterable":"yes"}},{"name":"hasanelecture","key":"hasanelecture","title":"Has an E-Lecture","breakpoints":"hidden","type":"text","visible":false,"classes":["ninja_column_10","ninja_clmn_nm_hasanelecture"],"filterable":false,"sortable":true,"original":{"name":"Has an E-Lecture","key":"hasanelecture","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Has an E-Lecture","maxWidthUnit":"px","unfilterable":"yes"}},{"name":"energytransition","key":"energytransition","title":"Energy Transition","breakpoints":"hidden","type":"text","visible":false,"classes":["ninja_column_11","ninja_clmn_nm_energytransition"],"filterable":false,"sortable":true,"original":{"name":"Energy Transition","key":"energytransition","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Energy Transition","maxWidthUnit":"px","unfilterable":"yes"}},{"name":"registrationopen","key":"registrationopen","title":"Registration Open","breakpoints":"hidden","type":"text","visible":false,"classes":["ninja_column_12","ninja_clmn_nm_registrationopen"],"filterable":false,"sortable":true,"original":{"name":"Registration Open","key":"registrationopen","breakpoints":"hidden","data_type":"text","dateFormat":"","header_html_content":"","enable_html_content":"false","contentAlign":"","textAlign":"","original_name":"Registration Open","maxWidthUnit":"px","unfilterable":"yes"}}],"expandFirst":false,"expandAll":false,"empty":"No Result Found","sorting":{"enabled":true},"filtering":{"enabled":true,"delay":1,"dropdownTitle":"Search in","placeholder":"Search","connectors":false,"ignoreCase":true},"paging":{"enabled":true,"position":"right","size":"20","container":"#footable_parent_16186 .paging-ui-container","countFormat":""}}} </script> <link rel='stylesheet' id='elementor-post-3293-css' href='https://eage.org/wp-content/uploads/elementor/css/post-3293.css?ver=1737636878' media='all' /> <link rel='stylesheet' id='all-css-2' href='https://eage.org/wp-content/plugins/ninja-tables-pro/assets/css/sumoselect.css?m=1729506112g' type='text/css' media='all' /> <style id='core-block-supports-inline-css'> /** * Core styles: block-supports */ </style> <link rel='stylesheet' id='all-css-6' href='https://eage.org/_static/??/wp-content/plugins/elementor-pro/assets/css/modules/motion-fx.css,/wp-content/plugins/revslider/public/assets/css/rs6.css?m=1734649861' type='text/css' media='all' /> <style id='rs-plugin-settings-inline-css'> #rs-demo-id {} </style> <script type="text/javascript" src="https://eage.org/_static/??-eJyVyzEOwjAMQNEL0RoIAnVAnKVNLHBI7BDHoN6eiokBkJj/+/AonRduyA1KsjOxQsW7JgpYodiUyMOoik0hLmlqIkn7TNxHXcGft+7fT2KfLOArxZthncEIvFT8LTKyfRKBtEGQ3FUcw/xVXESuutRTPm4ObtgOO+fW8QkIBmGH" ></script><script type="text/javascript" src="https://eage.org/wp-includes/js/dist/i18n.js?ver=2aff907006e2aa00e26e" id="wp-i18n-js"></script> <script type="text/javascript" id="wp-i18n-js-after"> /* <![CDATA[ */ wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); /* ]]> */ </script> <script type="text/javascript" src="https://eage.org/wp-includes/js/dist/a11y.js?ver=55ca8e5ef2be0319312c" id="wp-a11y-js"></script> <script type="text/javascript" id="_ning_global-js-extra"> /* <![CDATA[ */ var _adn_ = {"ajaxurl":"https:\/\/eage.org\/wp-admin\/admin-ajax.php","upload":{"dir":"vip:\/\/wp-content\/uploads\/angwp\/","src":"https:\/\/eage.org\/wp-content\/uploads\/angwp\/"}}; /* ]]> */ </script> <script type="text/javascript" src="https://eage.org/_static/??-eJytjUsOwjAMBS9Ea6BIqAvELdiiNDHIUT4mTtRye1LCFrFB8sJ6bzyGmTsK2hWDArbOo2B6QiFQJUcdPTvM2FvZQCV1DBlDBnblTkFAhfvMoEQwCxiS3JJ+KsG4H1efr4BLLYViLYTTVUdX/Ao1qW0phQvhzDHlP0lZJeWcWnpP4auSu7Z2ohNxxgi39GbMqphE9VqlWARdVZz9aXccxv14GIatfQFI+IK2" ></script><script type="text/javascript" src="https://eage.org/wp-includes/js/jquery/ui/datepicker.js?ver=1.13.3" id="jquery-ui-datepicker-js"></script> <script type="text/javascript" id="jquery-ui-datepicker-js-after"> /* <![CDATA[ */ jQuery(function(jQuery){jQuery.datepicker.setDefaults({"closeText":"Close","currentText":"Today","monthNames":["January","February","March","April","May","June","July","August","September","October","November","December"],"monthNamesShort":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"nextText":"Next","prevText":"Previous","dayNames":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"dayNamesShort":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"dayNamesMin":["S","M","T","W","T","F","S"],"dateFormat":"MM d, yy","firstDay":1,"isRTL":false});}); /* ]]> */ </script> <script type="text/javascript" src="https://eage.org/_static/??/wp-content/plugins/elementor-pro/assets/lib/smartmenus/jquery.smartmenus.js,/wp-includes/js/imagesloaded.min.js?m=1739294330j" ></script><script type="text/javascript" src="https://stats.wp.com/e-202508.js" id="jetpack-stats-js" data-wp-strategy="defer"></script> <script type="text/javascript" id="jetpack-stats-js-after"> /* <![CDATA[ */ _stq = window._stq || []; _stq.push([ "view", JSON.parse("{\"v\":\"ext\",\"blog\":\"172520282\",\"post\":\"5056\",\"tz\":\"0\",\"srv\":\"eage.org\",\"hp\":\"vip\",\"j\":\"1:14.2.1\"}") ]); _stq.push([ "clickTrackerInit", "172520282", "5056" ]); /* ]]> */ </script> <script type="text/javascript" id="ivory-search-scripts-js-extra"> /* <![CDATA[ */ var IvorySearchVars = {"is_analytics_enabled":"1"}; /* ]]> */ </script> <script type="text/javascript" src="https://eage.org/_static/??/wp-content/plugins/add-search-to-menu/public/js/ivory-search.min.js,/wp-content/plugins/elementor/assets/lib/swiper/v8/swiper.js?m=1729506111j" ></script><script type="text/javascript" src="https://eage.org/wp-content/plugins/ninja-tables/assets/libs/footable/js/footable.min.js?ver=3.1.5" id="footable-js"></script> <script type="text/javascript" id="footable-js-after"> /* <![CDATA[ */ jQuery(document).ready(function ($) { var filters = {"ninja_filter_2":{"placeholder":"All","options":[{"label":"","value":""}],"type":"select","strict":"yes","title":"Subdiscipline","select_value_type":"dynamic_data","dynamic_select_column":"subdiscipline","filter_prefix":"Subdiscipline","name":"ninja_filter_2","is_multi_select":"yes"},"ninja_filter_1":{"placeholder":"All","options":[{"label":"","value":""}],"type":"select","columns":["discipline"],"strict":"yes","title":"Discipline","select_value_type":"dynamic_data","dynamic_select_column":"discipline","filter_prefix":"Discipline","name":"ninja_filter_1","is_multi_select":"yes"},"ninja_filter_0":{"placeholder":"All","options":[{"label":"Available as In-House","value":"in-house-true"},{"label":"New Course","value":"new-true"},{"label":"Has a Book","value":"book-true"},{"label":"Has an E-Lecture","value":"electure-true"},{"label":"Energy Transition","value":"energy-transition-true"},{"label":"Registration","value":"registration-open-true"}],"type":"checkbox","columns":["newcourse","hasabook","hasanelecture","energytransition","registrationopen","availableasinhouse"],"strict":"yes","title":"COF legenda","name":"ninja_filter_0"}}; var filterKey = "ninja_table_instance_0_custom_filter"; var tableId = 16186; var progressive = true; var preSelects = []; var uniqueId = "ninja_table_unique_id_870904616_16186"; var FilterOptions = ninjaTableGetCustomFilter(filters, filterKey, tableId, preSelects, progressive, uniqueId); FooTable[filterKey] = FooTable.Filtering.extend(FilterOptions); }); /* ]]> */ </script> <script type="text/javascript" id="footable_init-js-extra"> /* <![CDATA[ */ var ninja_footables = {"ajax_url":"https:\/\/eage.org\/wp-admin\/admin-ajax.php","tables":[],"ninja_version":"5.0.18","i18n":{"search_in":"Search in","search":"Search","empty_text":"No Result Found","clear_all":"Clear All","caption_format":"Selected","pikaday":{"previousMonth":"Previous Month","nextMonth":"Next Month","months":["January","February","March","April","May","June","July","August","September","October","November","December"],"weekdays":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"weekdaysShort":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"]}},"ninja_table_public_nonce":"02b14940be","site_url":"https:\/\/eage.org","delay":"0","pro_version":"5.0.3"}; /* ]]> */ </script> <script type="text/javascript" src="https://eage.org/_static/??-eJydj90KwjAMRl/ILk5hsgvxWbouk9a2qU3L8O0tBRUnQ/Quf+fwBeYgFPmEPkGw+aw9g9feSJHkYJFBMmNiMO9jMRHVqjG8gS8OESI9PFYPDJwdMVpUCcw1Y7w1r8mvwmWwslpTFL8rPcUFP+MQpLpUNGaftFt966n4xP9Bp1iPRuFozCV9YU/u2B72/a7r221n7tC0nP4=" ></script><script type="text/javascript" id="elementor-pro-frontend-js-before"> /* <![CDATA[ */ var ElementorProFrontendConfig = {"ajaxurl":"https:\/\/eage.org\/wp-admin\/admin-ajax.php","nonce":"b656fc59f0","urls":{"assets":"https:\/\/eage.org\/wp-content\/plugins\/elementor-pro\/assets\/","rest":"https:\/\/eage.org\/wp-json\/"},"settings":{"lazy_load_background_images":true},"popup":{"hasPopUps":true},"shareButtonsNetworks":{"facebook":{"title":"Facebook","has_counter":true},"twitter":{"title":"Twitter"},"linkedin":{"title":"LinkedIn","has_counter":true},"pinterest":{"title":"Pinterest","has_counter":true},"reddit":{"title":"Reddit","has_counter":true},"vk":{"title":"VK","has_counter":true},"odnoklassniki":{"title":"OK","has_counter":true},"tumblr":{"title":"Tumblr"},"digg":{"title":"Digg"},"skype":{"title":"Skype"},"stumbleupon":{"title":"StumbleUpon","has_counter":true},"mix":{"title":"Mix"},"telegram":{"title":"Telegram"},"pocket":{"title":"Pocket","has_counter":true},"xing":{"title":"XING","has_counter":true},"whatsapp":{"title":"WhatsApp"},"email":{"title":"Email"},"print":{"title":"Print"},"x-twitter":{"title":"X"},"threads":{"title":"Threads"}},"facebook_sdk":{"lang":"en_US","app_id":""},"lottie":{"defaultAnimationUrl":"https:\/\/eage.org\/wp-content\/plugins\/elementor-pro\/modules\/lottie\/assets\/animations\/default.json"}}; /* ]]> */ </script> <script type="text/javascript" src="https://eage.org/wp-content/plugins/elementor-pro/assets/js/frontend.js?ver=3.26.1" id="elementor-pro-frontend-js"></script> <script type="text/javascript" id="elementor-frontend-js-before"> /* <![CDATA[ */ var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":true},"i18n":{"shareOnFacebook":"Share on Facebook","shareOnTwitter":"Share on Twitter","pinIt":"Pin it","download":"Download","downloadImage":"Download image","fullscreen":"Fullscreen","zoom":"Zoom","share":"Share","playVideo":"Play Video","previous":"Previous","next":"Next","close":"Close","a11yCarouselPrevSlideMessage":"Previous slide","a11yCarouselNextSlideMessage":"Next slide","a11yCarouselFirstSlideMessage":"This is the first slide","a11yCarouselLastSlideMessage":"This is the last slide","a11yCarouselPaginationBulletMessage":"Go to slide"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":900,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":899,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}},"hasCustomBreakpoints":true},"version":"3.27.3","is_static":false,"experimentalFeatures":{"additional_custom_breakpoints":true,"container":true,"e_swiper_latest":true,"e_onboarding":true,"theme_builder_v2":true,"home_screen":true,"landing-pages":true,"nested-elements":true,"editor_v2":true,"link-in-bio":true,"floating-buttons":true},"urls":{"assets":"https:\/\/eage.org\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/eage.org\/wp-admin\/admin-ajax.php","uploadUrl":"https:\/\/eage.org\/wp-content\/uploads"},"nonces":{"floatingButtonsClickTracking":"59580bbe91"},"swiperClass":"swiper","settings":{"page":[],"editorPreferences":[]},"kit":{"viewport_tablet":899,"active_breakpoints":["viewport_mobile","viewport_tablet"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description"},"post":{"id":5056,"title":"Short%20Course%20Catalogue%20-%20eage.org","excerpt":"","featuredImage":"https:\/\/eage.org\/wp-content\/uploads\/2020\/04\/Template_RevSlider_BG.jpg?w=800"}}; /* ]]> */ </script> <script type="text/javascript" src="https://eage.org/wp-content/plugins/elementor/assets/js/frontend.js?ver=3.27.3" id="elementor-frontend-js"></script> <script type="text/javascript" id="powerpack-frontend-js-extra"> /* <![CDATA[ */ var ppLogin = {"empty_username":"Enter a username or email address.","empty_password":"Enter password.","empty_password_1":"Enter a password.","empty_password_2":"Re-enter password.","empty_recaptcha":"Please check the captcha to verify you are not a robot.","email_sent":"A password reset email has been sent to the email address for your account, but may take several minutes to show up in your inbox. Please wait at least 10 minutes before attempting another reset.","reset_success":"Your password has been reset successfully.","ajax_url":"https:\/\/eage.org\/wp-admin\/admin-ajax.php","show_password":"Show password","hide_password":"Hide password"}; var ppRegistration = {"invalid_username":"This username is invalid because it uses illegal characters. Please enter a valid username.","username_exists":"This username is already registered. Please choose another one.","empty_email":"Please type your email address.","invalid_email":"The email address isn\u2019t correct!","email_exists":"The email is already registered, please choose another one.","password":"Password must not contain the character \"\\\\\"","password_length":"Your password should be at least 8 characters long.","password_mismatch":"Password does not match.","invalid_url":"URL seems to be invalid.","recaptcha_php_ver":"reCAPTCHA API requires PHP version 5.3 or above.","recaptcha_missing_key":"Your reCAPTCHA Site or Secret Key is missing!","show_password":"Show password","hide_password":"Hide password","ajax_url":"https:\/\/eage.org\/wp-admin\/admin-ajax.php"}; var ppCoupons = {"copied_text":"Copied"}; /* ]]> */ </script> <script type="text/javascript" src="https://eage.org/_static/??-eJyVjMEOgkAMRH/ItSESxAPxW1aosEvZNm0Nvy8x0XDwwm1mMu/BKqHn4lgchF5jKgZIuGydNYgyRDN0g/zbLUyxDIRq52wn+CMQXlEl9nP4IjvLUz/v4ThM6QHOTJ7EHHWfN9l96arrpW7qW9tU+Q1R71H6" ></script><script type="text/javascript">var ang_tracker = "UA-6893078-30";var loaded_ang = [];var loaded_angzones = [];</script> </body> </html>