GWF BASIC PACKAGE Reads data specifying initial and boundary conditions (IBOUND, STRT). Select options such as plan-view model or cross-section model (XSECTION),

Slides:



Advertisements
Similar presentations
Page 1 of 31 To the Search Activities Online Training Course The Search Activities functionality in Assignments enables you to find existing activities.
Advertisements

Introduction to the WASP Interface
1 Creating and Tweaking Data HRP223 – 2010 October 24, 2011 Copyright © Leland Stanford Junior University. All rights reserved. Warning: This.
(e.g., the Toth Problem) z x z x h = c x + z o Profile Models.
3D Simulations-- the vertical dimension. Representation of hydrogeologic units in MODFLOW88.
GHB61 GENERAL HEAD BOUNDARY PACKAGE The General Head Boundary Package is used to, –Simulate head-dependent recharge or discharge across an aquifer boundary,
Lab 5: Pivot Tables / Pivot Charts Simon: Chapters 7 & 8 URBPL 5/6010: Urban Analysis University of Utah Pam Perlich.
GLY 521- Hydrogeology Modflow Packages. Block Center Flow (BCF) Package The BCF package is the central package for all solutions Specify the way each.
COMPREHENSIVE Excel Tutorial 8 Developing an Excel Application.
Welcome to SAS…Session..!. What is SAS..! A Complete programming language with report formatting with statistical and mathematical capabilities.
Groundwater Modeling – 2: Computer Implementation
Microsoft Access 2000 Creating Tables and Relationships.
Coding for Excel Analysis Optional Exercise Map Your Hazards! Module, Unit 2 Map Your Hazards! Combining Natural Hazards with Societal Issues.
MODFLOW – Introduction Organization & Main Packages
Getting Started Chapter 2 Presentation © Copyright 2002, Bryan Meyers
Instructions and Reporting Requirements Module 7 Electronic Reporting For Facilities March 2014 North Carolina Central Cancer Registry State Center for.
McGraw-Hill/Irwin The Interactive Computing Series © 2002 The McGraw-Hill Companies, Inc. All rights reserved. Microsoft Excel 2002 Lesson 1 Introduction.
3-1 Chapter 3. To familiarize you with  Ways in which data is organized in COBOL  Rules for forming data-names  Defining input and output files in.
ABINIT INPUT MAKER By Simon Pesant and BenjaminTardif 29/01/2007.
10.11 Data Manipulation 1. Getting External Data.
1 Lab 2 and Merging Data (with SQL) HRP223 – 2009 October 19, 2009 Copyright © Leland Stanford Junior University. All rights reserved. Warning:
Groundwater Modeling – 3 Transient Models Groundwater Hydraulics Daene C. McKinney.
Access 2007 ® Use Databases How can Microsoft Access 2007 help you structure your database?
RIV61 RIVER PACKAGE The purpose of the River Package is to simulate the effects of flow between surface-water features and groundwater systems. For each.
A Simple Guide to Using SPSS ( Statistical Package for the Social Sciences) for Windows.
Spreadsheet Data Tables Data Table 1 allows you to change one input variable’s value at a time and record the impact that the input assumption has on several.
Lab 6 (2) Arrays ► Lab 5 (1) Exercise Review ► Array Concept ► Why Arrays? ► Array Declaration ► An Example of Array ► Exercise.
Functions: Part 2 of /11/10: Lecture 16 CMSC 104, Section 0101 John Y. Park 1.
INTRODUCTION TO SPREADSHEETS MICROSOFT EXCEL. Spreadsheets Allows users to perform simple and complex sorting Allows users to perform calculations quickly.
Intermediate 2 Computing Unit 2 - Software Development.
2016 N5 Prelim Revision. HTML Absolute/Relative addressing in HTML.
HRP Copyright © Leland Stanford Junior University. All rights reserved. Warning: This presentation is protected by copyright law and.
Utility1 UTILITY PACKAGE One-dimensional real arrays and two dimensional integer and real arrays are read by utility packages. There is no utility package.
CE EN 547 – BRIGHAM YOUNG UNIVERSITY. 1. Build conceptual model object 2. Build coverages 3. Define grid frame 4. Build grid 5. Initialize MODFLOW 6.
Systems and Information Management Section 15/06/2010 Student Subjects Setup (NSS)
Building Transient MODFLOW Models
Groundwater Modeling Assignment #2. Parts A and B.
Excel Tutorial 8 Developing an Excel Application
Unit 2 Technology Systems
Lecture 5 array declaration and instantiation array reference
ARRAYS (Extra slides) Arrays are objects that help us organize large amounts of information.
Workplace Equity Information Management System (WEIMS)
TrueTime.
LAYER-PROPERTY FLOW PACKAGE
DATA MANAGEMENT MODULE: Getting Data Into and Out of R
Other Kinds of Arrays Chapter 11
PRG 410 Competitive Success-- snaptutorial.com
PRG 410 Education for Service-- snaptutorial.com
PRG 410 Teaching Effectively-- snaptutorial.com
DATA MANAGEMENT MODULE: Getting Data Into and Out of R
Using Arrays in C Only fixed-length arrays can be initialized when they are defined. Variable length arrays must be initialized by inputting or assigning.
Exploring Microsoft® Excel® 2016 Series Editor Mary Anne Poatsy
Section 3.1 – Operations with Matrices
Structured Programming (Top Down Step Refinement)
CS 2308 Exam I Review.
Chapter 3 The DATA DIVISION.
Navya Thum February 13, 2013 Day 7: MICROSOFT EXCEL Navya Thum February 13, 2013.
Two-Dimensional Arrays
Constant: value does not change
Using AMOS With SPSS Files.
Matlab.
Lab 2 and Merging Data (with SQL)
Structuring your data well enables you to: Reproduce results
WELL PACKAGE Simulates the discharge or recharge of water from wells.
GWF BCF6 PACKAGE Computes the conductance components of the finite-difference equation which determine flow between adjacent cells. Computes the terms.
Introduction to the WASP Interface
GLOBAL PROCESS DATA Name File: Contains the names of most input and output files and controls the parts of the model program that are active. Discretization.
Arrays.
Just Enough SSIS Scripting to be Dangerous.
Presentation transcript:

GWF BASIC PACKAGE Reads data specifying initial and boundary conditions (IBOUND, STRT). Select options such as plan-view model or cross-section model (XSECTION), free format or fixed format (FREE), and performing or not performing certain constant head node calculations (CHTOCH). Reads a dummy head value to indicate inactive cells (HNOFLO) BAS6

GWF BASIC PACKAGE Basic input data from file type specified as BAS6 in the Name File Options Is a character variable scanned for words. Three options are currently recognized XSECTION CHTOCH FREE A blank record is acceptable as no options (so is the words No Options) BAS6

GWF BASIC PACKAGE OPTIONS XSECTION Indicates that the model is a 1-row cross section with arrays dimensioned (NCOL,NLAY). CHTOCH Indicates that the flow between adjacent constant-head cells should be calculated. FREE Specifies that free format is to be used in all packages where applicable. Note: Be sure all variables read using free format have non-blank values, and have blanks or commas between adjacent values. BAS6

GWF BASIC PACKAGE IBOUND An array for each layer that contains a code for each layer cell which indicates that 1. The head varies with time, 2. The head is constant (constant head cell), or 3. No flow takes place within the cell (no flow cell) BAS6

GWF BASIC PACKAGE IBOUND(NCOL,NROW) or (NCOL,NLAY) – U2DINT Is the boundary array, if IBOUND(I,J,K) < 0 Constant head cell, IBOUND(I,J,K) = 0 Inactive, IBOUND(I,J,K) > 0 Variable head One value is read for every cell, layer at a time except when XSECTION option is specified. BAS6

GWF BASIC PACKAGE HNOFLO Is the value head to be assigned to all inactive cells (IBOUND=0) throughout the simulation. STRT Is the initial starting head. STRT must be specified for all simulations, including steady state. One value is read for every cell, layer at a time except when XSECTION option is specified. BAS6

GWF BASIC PACKAGE BAS6