Categories
EPA Training

土壤及地下水污染整治法20週年


土壤及地下水污染整治法20週年特展

污染場址評估科學驗證 - 臺灣環保署地下環境模式平台TWESMP

特展宣傳

影片

簡介投影片

Loader Loading...
EAD Logo Taking too long?

Reload Reload document
| Open Open in new tab

Download [4.02 MB]

平台功能教學

A. 使用者介面課程概觀,模式/Platform GUI介紹及幾何模型前置處理軟體簡介

課程介紹, 模式及平台介紹,幾何模型前置處理軟體介紹及案例展示。

B. Chemical/Material/Parameter GUI介紹及案例操作

化學條件設定介紹及操作,水文地質條件設定介紹及操作,模式參數輸入介紹及展示。
主講人: 中央大學 戴永裕

C. Geometry/Mesh GUI介紹及案例操作(基礎)

整體操作流程,基礎功能介紹,網格產生,邊界條件設定操作。

D. Geometry/Mesh GUI介紹及案例操作(進階)

進階功能介紹,幾何地形與網格混和交會,2D / 3D網格應用案例展示。
主講人: 中央大學 徐彥溥

E. Visualization GUI介紹及案例展示

模擬結果選取及視覺化轉檔介紹及案例展示。

F. ParaView介紹及案例操作

介紹ParaView針對模擬結果進行常用的圖表建立、資料分析以及動畫輸出等功能。
主講人: 中央大學 郭映彤

G. 穩態地下水流場

介紹水流模組之輸入條件設定及視覺化操作。

H. 暫態地下水流場

續課程G之結果,介紹水流模組暫態之輸入條件設定。
主講人: 中央大學 楊昀蓁

I.化學物質受流場擴散傳輸

接續課程G之結果,介紹水流-化學模組耦合模擬之輸入條件設定,模擬汙染物傳輸情形。

J. 流場與化學反應耦合效應

接續課程I之結果,介紹水流-化學模組耦合模擬之輸入條件設定,模擬生物降解情形。
主講人: 中央大學 楊昀蓁
Categories
Uncategorized

TWESMP Trial Version

TWESMP 下載

TWESMP Free Download
TWESMP Free Download
Size: 1.39 GB
Version: v.1.0.0.0
Categories
EPA Training

sgw 20

土壤及地下水污染整治法20週年特展

污染場址評估科學驗證 - 臺灣環保署地下環境模式平台TWESMP

特展宣傳

影片

簡介投影片

Loader Loading...
EAD Logo Taking too long?

Reload Reload document
| Open Open in new tab

Download [4.02 MB]

平台功能教學

A. 使用者介面課程概觀,模式/Platform GUI介紹及幾何模型前置處理軟體簡介

課程介紹, 模式及平台介紹,幾何模型前置處理軟體介紹及案例展示。

B. Chemical/Material/Parameter GUI介紹及案例操作

化學條件設定介紹及操作,水文地質條件設定介紹及操作,模式參數輸入介紹及展示。
主講人: 中央大學 戴永裕

C. Geometry/Mesh GUI介紹及案例操作(基礎)

整體操作流程,基礎功能介紹,網格產生,邊界條件設定操作。

D. Geometry/Mesh GUI介紹及案例操作(進階)

進階功能介紹,幾何地形與網格混和交會,2D / 3D網格應用案例展示。
主講人: 中央大學 徐彥溥

E. Visualization GUI介紹及案例展示

模擬結果選取及視覺化轉檔介紹及案例展示。

F. ParaView介紹及案例操作

介紹ParaView針對模擬結果進行常用的圖表建立、資料分析以及動畫輸出等功能。
主講人: 中央大學 郭映彤

G. 穩態地下水流場

介紹水流模組之輸入條件設定及視覺化操作。

H. 暫態地下水流場

續課程G之結果,介紹水流模組暫態之輸入條件設定。
主講人: 中央大學 楊昀蓁

I.化學物質受流場擴散傳輸

接續課程G之結果,介紹水流-化學模組耦合模擬之輸入條件設定,模擬汙染物傳輸情形。

J. 流場與化學反應耦合效應

接續課程I之結果,介紹水流-化學模組耦合模擬之輸入條件設定,模擬生物降解情形。
主講人: 中央大學 楊昀蓁
Categories
VTK

How to build VTK C++ Source C

Official building guide (a little bit out-dated)

VTK/Configure and Build

Prerequisites

  • CMake 3.15.0
  • Qt5.12.3 → msvc2015_64
  • Visual Studio 2017 Professional

Download VTK Source code

git clone https://github.com/Kitware/VTK.git

Use CMake configure and generate Visual Studio Project

  • Start CMake-GUI

  • Select the appropriate source (git repository) and the build directory (a separated empty folder)

    http://140.115.171.230/wp-content/uploads/2020/05/Untitled.png

  • Then click the “Configure” button. CMake will ask you to select the generator the first time you press Configure instead of having a drop-down menu in the main dialog.

    • Select generator:”Visual Studio 2017″ and platform: “x64” then click “Finish”

    http://140.115.171.230/wp-content/uploads/2020/05/Untitled-1.png

  • Wait til configure finish (5 to 10 minutes)

    http://140.115.171.230/wp-content/uploads/2020/05/Untitled-2.png

    http://140.115.171.230/wp-content/uploads/2020/05/Untitled-3.png

Editing Entries

Enable Qt

  • Change value of “VTK_GROUP_ENABLE_Qt” from “DEFAULT” to “YES”

    http://140.115.171.230/wp-content/uploads/2020/05/Untitled-4.png

  • Add a new entry QT_QMAKE_EXECUTABLE:FILEPATH=<YourQtPath>qmake.exe

    http://140.115.171.230/wp-content/uploads/2020/05/Untitled-5.png

Enable OpenGL related modules (optional)

  • Change value of OpenGL related moubles
    • Change value of “VTK_ENABLE_VTK_opengl” from “DEFAULT” to “YES”

    • Change value of “VTK_ENABLE_VTK_RenderingContextOpenGL2” from “DEFAULT” to “YES”

      http://140.115.171.230/wp-content/uploads/2020/05/Untitled-6.png

Generate Visual Studio Project

  • Click “Configure” again and make sure all red-background entries disappeared.

    http://140.115.171.230/wp-content/uploads/2020/05/Untitled-7.png

  • Then click “Generate” and wait til generating done.

    http://140.115.171.230/wp-content/uploads/2020/05/Untitled-8.png

  • Click “Open Project” via Visual Studio 2017 and select “Build → Build Solution”

    http://140.115.171.230/wp-content/uploads/2020/05/Untitled-9.png

  • Wait till building done (about 20 minutes)

    http://140.115.171.230/wp-content/uploads/2020/05/Untitled-10.png

  • Check .dll you need in <YourBuildPath>\bin\Debug

    http://140.115.171.230/wp-content/uploads/2020/05/Untitled-11.png

Categories
Uncategorized

HGCP Trial Version for EPA Training Download

Download HGCP Trial Version for EPA Training

HGCP Trail Version for EPA Training
HGCP Trail Version for EPA Training
Size: 1.39 GB
Version: v.1.0.0.0
Published: May 11, 2020
Categories
EPA Training

TWESMP


臺灣環保署地下環境模式平台TWESMP

由環保署土壤及地下水污染整治基金管理會出資
委由中央大學高等模式研發應用中心開發及提供教育訓練
提供所有人下載TWESMP進行免費使用(包含商業使用)

TWESMP(Taiwan EPA Subsurface Model Platform)簡稱SMP具備考量地下環境土壤及水中考量地下環境土壤及水中 考量地下環境土壤及水中考量地下環境土壤及水中考量地下環境土壤及水中考量地下環境土壤及水中水流、熱傳流、熱傳流、熱傳流、熱傳生物 地球化學 地球化學反應傳輸行為變化及其交互作用之分析模式整合平台,包括幾何地形與網格 包括幾何地形與網格包括幾何地形與網格包括幾何地形與網格建置、資料庫、起始條件與邊界設定,並具備後處理以視覺化展現成果,提供場址整治決策及管理之分析模式整合平台。 

一、硬體建議規格:

(一) 處理器:Intel Core i5  3.0 GHz ARM AMD Ryzen 5 3.0 GHz CPU或同等級以上。

(二) 記憶體:32GB()以上。

(三) 顯示卡:24 位元色彩設定,1280 x 1024 或更高螢幕解析度。

(四) 磁碟:1 TB HDD()以上。

 

二、軟體建議規格: Windows 10

Categories
Uncategorized

System Requirements

  • Supported Operating Systems:
    • Windows: 10 or newer
  • Processor:
    • Intel Core i5 3.0 GHz 、ARM AMD Ryzen 5 3.0 GHz CPU or above
  • Hard Drive:
    • Minimum 32 GB; Recommended 64 GB or more
  • Memory (RAM):
    • Minimum 1 GB; Recommended 4 GB or above
Categories
Post-processing

Check Result

A running visualization task in Visualization GUI

Visualization GUI is a tool that converts binary results from an HGC simulation into a variety of VTK-formatted animations, graphs, and charts.

Categories
Data Pre-processing

Set Parameters and Start Simulation

Parameter GUI can assist HGCP users to quickly set up all parameters in data sets required by the HGC model.

The UI is comprised of :

  1. Parameter Tool Bar
  2. Module Tab
  3. Dataset Browse Panel
  4. Parameter Constraint Panel
  5. Parameter Input Panel
Parameter GUI Layout

Categories
Data Pre-processing

Set Geometry / Mesh / Group

Domain setting in Geometry/Mesh GUI



Geometry/Mesh GUI is a CAD-like GUI that allows users to Import geometry files, generate mesh from geometry, and set up spatial boundaries and initial conditions for an HGC simulation.

Geometry GUI: File->New or Open Solution

New or Open an existing Project

Free trial verison support Triangle and quadrilateral mesh generation

On material tree view, you can right click mouse to select all mesh elements in this material in ‘One Click’.

Visualize to ‘Create Group’ for boundary /initial conditions setting