Voxler automation allows you to easily create a professional-looking 3D map of your wells

Size: px
Start display at page:

Download "Voxler automation allows you to easily create a professional-looking 3D map of your wells"

Transcription

1 Easily Automate Displaying Well Paths in Voxler Voxler automation allows you to easily create a professional-looking 3D map of your wells Voxler is a great tool for creating unique 3D visualizations of your data. Through the user interface, you can quickly visualize and examine your data. However, if you frequently produce visualizations using similar data, the repetitive steps to create these visualizations can be tedious. Fortunately, Voxler comes with a program called Scripter for developing and running scripts in a Visual BASIC-like language. Using Scripter can improve the speed and consistency with which you creating visualizations in Voxler. Scripter, an automation program that is installed with Voxler, can ease the burden of creating multiple and/or in-depth visualizations, by allowing you to run commands automatically, instead of manually performing actions in the user interface. You can do almost everything with a script that you can do manually with the mouse or from the keyboard Scripter also has an easy-to-use window interface, and includes Help and debugging tools. To use scripts in Voxler, it is helpful to understand how the script is formatted and how Voxler is using the script to create the three-dimensional model of the well paths. Below, each portion of the script is presented to describe how Scripter is using these commands to perform actions in Voxler. Download the script and associated data files here.

2 The example script plots the three-dimensional well paths of a set of wells from data in an Excel file and renders the well paths with sample values from the Titanium dioxide (Ti0 2 ) log data. The Excel file is formatted with the following sheets which contain the well information: Collars Table: well ID, surface XY location, surface elevation, and measured depth. Trajectories Table: well ID, measured depth, azimuth, inclination Samples Table: well ID, from depth, to depth, sample concentration values Below is a description how to run the script, and a description of each portion of the script to help you better understand how the script is formatted and what each action each command performs in the user interface. Run the Script: 1) Run Voxler as an administrator by right clicking on the desktop icon and selecting Run as Administrator. This will set the path to Voxler in your registry, so other programs know where to find it. Right click on the Scripter.exe file, typically located in C:\Program Files\Golden Software\Voxler 3\Scripter and choose Run as Administrator. Now Voxler and Scripter will know where to find each other. 2) Use the File Open command, or click the open folder icon ( ) and load the downloaded script 3) Use the Script Run command, or press the play button ( ) to run the script. After the script is done running, a model of the three-dimension well paths along with log information will be displayed for six wells, as shown in the image below. The next section steps through this process.

3 Example WellRender created in Voxler using automation. Script Description: The script header information is a common place to leave comments which describe the script. The header shown below is created by adding a leading single-quote ( ) to create a comment out of any information in that line. Comments are shown in green in Scripter. In the example below, the header contains information about what the script will do. This script will import data from three Excel sheets and use that data to compile the information needed to create well objects, called nodes in Voxler. This script contains a leading function named, VoxlerApplication(), which is used to open and create a new Voxler project. This command checks to find an open instance of Voxler on your computer, and if one is not present, it opens a new Voxler project for you. The GetObject function activates an existing instance of Voxler and returns the reference to the Application object to the script. The CreateObject

4 function creates a new instance of Voxler if one is not found, and also returns the reference to the Application object to the script. The next section of the script is the Sub Main function. The Sub Main function is required in Voxler, and contains the primary components of the script. You can see on line 28 that the script calls the leading function VoxlerApplication() to check for and open and instance of Voxler. It is also necessary to make the Voxler application visible using the VoxlerApp.Visible = True command. It is also important to access the CommandApi object, which contains all of the properties of the modules in the Voxler program. Using the CommandApi object requires accessing the property with the Construct method, specifying any settings with the Option method, and making the action with the Do or DoOnce method.

5 The CommandApi.Construct method tells Voxler which command to execute, similar to double-clicking a command in the Module Manager in the GUI. In this example, the script uses the CommandApi.Construct command in Voxler to create a new instance of Voxler (shown above). and also to use the File Import command (shown below). After Voxler creates a new document, the CommandApi.Construct( Import ) command is used to import well data from an Excel file (SampleWellData 2.xlsx). The options for the command are able to be accessed using the CommandApi.Option method. In order to perform the command in Voxler using a script, you must also include the CommandApi.Do command as shown in the example above. When you use the Do method, the command is added to the Edit Undo list in Voxler if you need to undo the action at a later time. Using the Import command for each sheet in the file, Voxler compiles this data and uses it to display the well information in a three-dimensional model. Below are the steps used to run the script so you can display your well data as a three-dimensional well model. The series of CommandApi objects shown above loads the collars information for the wells into the WellData module in Voxler. To display the well paths and log data, we will need to again use the CommandApi.Construct ( Import ) command to append the well trajectories and log data to the WellData module.

6 After adding the well paths and logs, this script adds a bounding box around the wells to show the extent of the data. To do this, you will need to create a new module CommandApi.Construct ( CreateModule ) and attach it to the source data (WellData module). To display the wells themselves in Voxler, you will need to create a WellRender module to display the well paths. The command to create a default WellRender is show below. Further customization of the Well Render is needed to display the well trajectories and sample data. Using the WellRender module will display the well paths as straight lines, rather than showing the wells with deviation. To add the deviation paths to the wells, you will need to set the WellDataPathMethod for the WellData module as shown below. When setting the WellDataPathMethod, you have the option to set computation method used to compute the well trajectories. You can choose the following methods to calculate the well trajectories: Average Angle (0) - Averaged angle is used over the course of the borehole. Balanced Tangential (1) - Inclination at the top and bottom of the well is calculated and combined in sine or cosine functions and then averaged.

7 Minimum Curvature (2) - Assumes that the borehole follows the smoothest possible circular arc between points. This method is very similar to the Balanced Tangential Method, with each result multiplied by a ratio factor. Tangential (3) - Uses the inclination and direction measured at the lower end of the borehole, assuming the borehole path is straight throughout the course. Each method creates a mathematical approximation of the true X, Y, and Z value along the well path. Each technique is used in different circumstances. For additional information on these methods, refer to: Crain's Petrophysical Handbook at "Bulletin on Directional Drilling Survey Calculation Methods and Terminology," American Petroleum Institute (API) Bulletin D20, December 31, The script up to this point will plot the well logs with their trajectories, but without additional sample information. The Voxler model will display as shown below. When running the full script, the script will pause at this view for 5 seconds using the Wait(5) command. Beyond this point, the script also performs the following actions: Renders the well paths with the values from the Titanium dioxide (Ti0 2 ) log data.

8 Sets the well top elevations and displays the well name at the top of each well. Set the view to Front and fit the view to the size of the Voxler window. You can review the attached script to see that commands that are used to further format the Voxler model to display the WellData module as shown below: Scripter makes creating Voxler models more efficient by allowing you to run commands automatically, instead of performing those commands manually in the user interface. The Help includes a Voxler Automation Help book that makes it easy to locate and use commands. The Help also contains examples of each command so that you can understand how to use it in a script. Using the Help and the Scripter debugging features, your script will be creating publication-quality three-dimensional models in no time. For additional assistance with this data, or using this script, please feel free to contact Golden Software Support via the Support Central website, or Voxler Support for additional assistance:. For additional information about automation, and a few tips and tricks for working with automation, review this newsletter article: Issue 71 Automation Debugging Tips and Tricks

Full User's Guide. 2D & 3D Graphing for Scientists, Engineers & Business Professionals. GoldenSoftware,

Full User's Guide.  2D & 3D Graphing for Scientists, Engineers & Business Professionals. GoldenSoftware, Full User's Guide 2D & 3D Graphing for Scientists, Engineers & Business Professionals Quick Sta rt Guide www.goldensoftware.com Golden GoldenSoftware, Software,Inc. Inc. Voxler Registration Information

More information

Microsoft Excel 2007

Microsoft Excel 2007 Microsoft Excel 2007 Objective To provide a review of the new features in the Microsoft Excel 2007 screen. Overview Introduction Office Button Quick Access Toolbar Tabs Scroll Bar Status Bar Clipboard

More information

Automation of Static and Dynamic FEA Analysis of Bottomhole Assemblies

Automation of Static and Dynamic FEA Analysis of Bottomhole Assemblies Automation of Static and Dynamic FEA Analysis of Bottomhole Assemblies Nader E. Abedrabbo, Lev Ring & Raju Gandikota 1 Weatherford International 11909 Spencer Road, Houston, TX nader.abedrabbo@weatherford.com

More information

MatDeck tips. Basic. :=- assignment of variable values; assign value to variable a with code a := value

MatDeck tips. Basic. :=- assignment of variable values; assign value to variable a with code a := value MatDeck tips Basic :=- assignment of variable values; assign value to variable a with code a := value = - displaying variable value; display value stored in the variable a with code a = Alt continue with

More information

Strater 5. Superior well log, borehole & cross section plotting. Quick Start Guide

Strater 5. Superior well log, borehole & cross section plotting. Quick Start Guide Strater 5 Superior well log, borehole & cross section plotting Quick Start Guide Strater Registration Information Your Strater serial number is located on the CD cover or in the email download instructions,

More information

Working with Target for ArcGIS Drillhole Tools

Working with Target for ArcGIS Drillhole Tools Working with Target for ArcGIS Drillhole Tools This Working with Target for ArcGIS Drillhole Tools How-to Guide walks you through setting up a new Target for ArcGIS drillhole project, importing data into

More information

Randy H. Shih. Jack Zecher PUBLICATIONS

Randy H. Shih. Jack Zecher   PUBLICATIONS Randy H. Shih Jack Zecher PUBLICATIONS WWW.SDCACAD.COM AutoCAD LT 2000 MultiMedia Tutorial 1-1 Lesson 1 Geometric Construction Basics! " # 1-2 AutoCAD LT 2000 MultiMedia Tutorial Introduction Learning

More information

Petrel TIPS&TRICKS from SCM

Petrel TIPS&TRICKS from SCM Petrel TIPS&TRICKS from SCM Knowledge Worth Sharing Well Path Design Part I This TIPS&TRICKS is the first of a three part series intended to aid the geoscientist working in Petrel and tasked with providing

More information

The New Generation of Rotary Systems May be Closer Than You Think Frank J. Schuh, Pat Herbert, John Harrell, The Validus International Company, LLC

The New Generation of Rotary Systems May be Closer Than You Think Frank J. Schuh, Pat Herbert, John Harrell, The Validus International Company, LLC 1 AADE-03-NTCE-02 The New Generation of Rotary Systems May be Closer Than You Think Frank J. Schuh, Pat Herbert, John Harrell, The Validus International Company, LLC Copyright 2003 AADE Technical Conference

More information

MICROSOFT OFFICE. Courseware: Exam: Sample Only EXCEL 2016 CORE. Certification Guide

MICROSOFT OFFICE. Courseware: Exam: Sample Only EXCEL 2016 CORE. Certification Guide MICROSOFT OFFICE Courseware: 3263 2 Exam: 77 727 EXCEL 2016 CORE Certification Guide Microsoft Office Specialist 2016 Series Microsoft Excel 2016 Core Certification Guide Lesson 1: Introducing Excel Lesson

More information

Chapter 1: Introduction

Chapter 1: Introduction Modeling in 3-D is the process of creating a mathematical representation of an object's surfaces. The resulting model is displayed on your screen as a two-dimensional image. Rhino provides tools for creating,

More information

Strater 5. Superior well log, borehole & cross section plotting. User s Guide

Strater 5. Superior well log, borehole & cross section plotting. User s Guide Strater 5 Superior well log, borehole & cross section plotting User s Guide Strater Registration Information Your Strater serial number is located on the CD cover or in the email download instructions,

More information

Quick. Efficient. Versatile. Graphing Software for Scientists and Engineers.

Quick. Efficient. Versatile. Graphing Software for Scientists and Engineers. Quick. GrapherTM 3 Efficient. Versatile. Graphing Discover the easy-to-use and powerful capabilities of Grapher 3! Your graphs are too important not to use the most superior graphing program available.

More information

RSPile. Tutorial 3 Grouped Pile Analysis. Pile Analysis Software. Grouped Pile Analysis

RSPile. Tutorial 3 Grouped Pile Analysis. Pile Analysis Software. Grouped Pile Analysis RSPile Pile Analysis Software Tutorial 3 Grouped Pile Analysis Grouped Pile Analysis Introduction This tutorial will demonstrate how to model grouped piles under a cap. The finished product of this tutorial

More information

Trigonometry for Surveyors p. 1 Trigonometry p. 1 Angles and Their Measurement p. 1 Expressing the Fractional Part of a Degree in Minutes and Seconds

Trigonometry for Surveyors p. 1 Trigonometry p. 1 Angles and Their Measurement p. 1 Expressing the Fractional Part of a Degree in Minutes and Seconds Trigonometry for Surveyors p. 1 Trigonometry p. 1 Angles and Their Measurement p. 1 Expressing the Fractional Part of a Degree in Minutes and Seconds p. 1 Expressing an Arc in Radians p. 2 Angle Conversions

More information

Budget Exercise for Intermediate Excel

Budget Exercise for Intermediate Excel Budget Exercise for Intermediate Excel Follow the directions below to create a 12 month budget exercise. Read through each individual direction before performing it, like you are following recipe instructions.

More information

Introduction to INFOASSIST Training Course Manual

Introduction to INFOASSIST Training Course Manual Introduction to INFOASSIST Training Course Manual TABLE OF CONTENTS 1) Training Goal and Objectives 2) A. What is InfoAssist? B. How do you access InfoAssist? 3) Navigating through the InfoAssist Interface

More information

Payment Function Exercise

Payment Function Exercise Payment Function Exercise Follow the directions below to create a payment function exercise. Read through each individual direction before performing it, like you are following recipe instructions. Remember

More information

1 Introduction to AutoCAD

1 Introduction to AutoCAD 1 Introduction to AutoCAD The term CAD (Computer Aided Design) applies to a wide range of programs that allow th user to created drawings, plans, and designs electronically. AutoCAD is one such program

More information

General Program Description

General Program Description General Program Description This program is designed to interpret the results of a sampling inspection, for the purpose of judging compliance with chosen limits. It may also be used to identify outlying

More information

MAPLOGIC CORPORATION. GIS Software Solutions. Getting Started. With MapLogic Layout Manager

MAPLOGIC CORPORATION. GIS Software Solutions. Getting Started. With MapLogic Layout Manager MAPLOGIC CORPORATION GIS Software Solutions Getting Started With MapLogic Layout Manager Getting Started with MapLogic Layout Manager 2008 MapLogic Corporation All Rights Reserved 330 West Canton Ave.,

More information

Mesh Quality Tutorial

Mesh Quality Tutorial Mesh Quality Tutorial Figure 1: The MeshQuality model. See Figure 2 for close-up of bottom-right area This tutorial will illustrate the importance of Mesh Quality in PHASE 2. This tutorial will also show

More information

Excel Tips and FAQs - MS 2010

Excel Tips and FAQs - MS 2010 BIOL 211D Excel Tips and FAQs - MS 2010 Remember to save frequently! Part I. Managing and Summarizing Data NOTE IN EXCEL 2010, THERE ARE A NUMBER OF WAYS TO DO THE CORRECT THING! FAQ1: How do I sort my

More information

the NXT-G programming environment

the NXT-G programming environment 2 the NXT-G programming environment This chapter takes a close look at the NXT-G programming environment and presents a few simple programs. The NXT-G programming environment is fairly complex, with lots

More information

COMPUTING AND DATA ANALYSIS WITH EXCEL

COMPUTING AND DATA ANALYSIS WITH EXCEL COMPUTING AND DATA ANALYSIS WITH EXCEL Lesson 1: Introduction to the Excel Environment 1 Scheme Introduction to spreadsheets The Excel Interface Menus Toolbars Built-in Help tool Workbooks, Worksheets,

More information

Word Processing. 2 Monroe County Library System

Word Processing. 2 Monroe County Library System 2 Monroe County Library System http://monroe.lib.mi.us Word Processing Word Pad Quick Guide... 4 Help Menu... 6 Invitation... 7 Saving... 12 Printing... 13 Insert a Picture... 14 Saving to a CD... 15 In

More information

MATHEMATICS 105 Plane Trigonometry

MATHEMATICS 105 Plane Trigonometry Chapter I THE TRIGONOMETRIC FUNCTIONS MATHEMATICS 105 Plane Trigonometry INTRODUCTION The word trigonometry literally means triangle measurement. It is concerned with the measurement of the parts, sides,

More information

Welcome Application. Introducing the Visual Studio.NET IDE. Objectives. Outline

Welcome Application. Introducing the Visual Studio.NET IDE. Objectives. Outline 2 T U T O R I A L Objectives In this tutorial, you will learn to: Navigate Visual Studio.NET s Start Page. Create a Visual Basic.NET solution. Use the IDE s menus and toolbars. Manipulate windows in the

More information

Doc #: IDI06-11F Rev: 1.3 Issued: 22/02/18. Well Seeker PRO How To Guide Rev 1.3. Page 1 of 26

Doc #: IDI06-11F Rev: 1.3 Issued: 22/02/18. Well Seeker PRO How To Guide Rev 1.3. Page 1 of 26 Well Seeker PRO How To Guide Rev 1.3 Page 1 of 26 Contents 1.0 - Getting Started... 4 1.1 - Display... 4 2.0 - Creating a new Well... 5 2.1 - Unit Selection... 5 2.2 - New Instant Plan / Survey... 6 2.3

More information

Introduction to Microsoft Excel 2010

Introduction to Microsoft Excel 2010 Introduction to Microsoft Excel 2010 THE BASICS PAGE 02! What is Microsoft Excel?! Important Microsoft Excel Terms! Opening Microsoft Excel 2010! The Title Bar! Page View, Zoom, and Sheets MENUS...PAGE

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Introduction This handout briefly outlines most of the basic uses and functions of Excel that we will be using in this course. Although Excel may be used for performing statistical

More information

RIVERWARE DEMONSTRATION TUTORIAL

RIVERWARE DEMONSTRATION TUTORIAL RIVERWARE DEMONSTRATION TUTORIAL Date Modified: March 7, 2018 This RiverWare informational tutorial introduces you to the capabilities of RiverWare as an advanced water resource modeling tool and consists

More information

AND Outlook JUL13

AND Outlook JUL13 AND Outlook 2007 803-25JUL13 Contents page 1 1 Introduction Getting the most out of Outlook...2 The best practices of Getting Things Done...3 The need for simple lists...3 Making your lists portable...4

More information

Chapter Multidimensional Gradient Method

Chapter Multidimensional Gradient Method Chapter 09.04 Multidimensional Gradient Method After reading this chapter, you should be able to: 1. Understand how multi-dimensional gradient methods are different from direct search methods. Understand

More information

Maximizing the Power of Excel With Macros and Modules

Maximizing the Power of Excel With Macros and Modules Maximizing the Power of Excel With Macros and Modules Produced by SkillPath Seminars The Smart Choice 6900 Squibb Road P.O. Box 2768 Mission, KS 66201-2768 1-800-873-7545 www.skillpath.com Maximizing the

More information

Quick Start Guide. for RhinoCAM-NEST Published: December MecSoft Corpotation

Quick Start Guide. for RhinoCAM-NEST Published: December MecSoft Corpotation Quick Start Guide for RhinoCAM-NEST 2019 Published: December 2018 MecSoft Corpotation Copyright 1998-2018 RhinoCAM-NEST 2019 Quick Start Guide by MecSoft Corporation User Notes: Contents 2 Table of Contents

More information

snocad-x user guide version b

snocad-x user guide version b snocad-x user guide version 1.0.3.b www.grafsnowboards.com Introduction snocad-x is an interactive application with which you can design all sorts of boardsports equipment. The main features are intended

More information

Module 4A: Creating the 3D Model of Right and Oblique Pyramids

Module 4A: Creating the 3D Model of Right and Oblique Pyramids Inventor (5) Module 4A: 4A- 1 Module 4A: Creating the 3D Model of Right and Oblique Pyramids In Module 4A, we will learn how to create 3D solid models of right-axis and oblique-axis pyramid (regular or

More information

SURVEY USER MANUAL. Satori Team

SURVEY USER MANUAL. Satori Team SURVEY USER MANUAL Satori Team Table of Contents Survey... 3 1. Introduction... 3 2. Roles And Privileges.... 4 3. Process Flow... 5 4. Description.... 6 a) Actions can be done for survey.... 6 b) Creating

More information

The New York Society Library Presents:

The New York Society Library Presents: The New York Society Library Presents: Introduction to Microsoft Excel (for versions 2003 and earlier) Carolyn Waters Acquisitions & Reference Librarian carolyn@nysoclib.org Index OVERVIEW.... Page 03

More information

Part I: Programming Access Applications. Chapter 1: Overview of Programming for Access. Chapter 2: Extending Applications Using the Windows API

Part I: Programming Access Applications. Chapter 1: Overview of Programming for Access. Chapter 2: Extending Applications Using the Windows API 74029c01.qxd:WroxPro 9/27/07 1:43 PM Page 1 Part I: Programming Access Applications Chapter 1: Overview of Programming for Access Chapter 2: Extending Applications Using the Windows API Chapter 3: Programming

More information

INTERNET PROBLEM 8-1: OBTAIN CLIENT BACKGROUND INFORMATION

INTERNET PROBLEM 8-1: OBTAIN CLIENT BACKGROUND INFORMATION ACL PROBLEM 8-41 (Objectives 8-5 and 8-7) This problem requires the use of ACL software, which is included in the CD attached to the text. Information about installing and using ACL and solving this problem

More information

Circular Trigonometry Notes April 24/25

Circular Trigonometry Notes April 24/25 Circular Trigonometry Notes April 24/25 First, let s review a little right triangle trigonometry: Imagine a right triangle with one side on the x-axis and one vertex at (0,0). We can write the sin(θ) and

More information

Key areas of updates in GeoTeric Volumetrics

Key areas of updates in GeoTeric Volumetrics Release notes GeoTeric 2018.2 Volumetrics calculation is an essential step for understanding and quantifying the size of plays, leads, prospects and fields to track changing hydrocarbon volumes over time.

More information

RhinoCAM-NEST 2018 Quick Start Guide MecSoft Corporation

RhinoCAM-NEST 2018 Quick Start Guide MecSoft Corporation 2 Table of Contents About RhinoCAM-NEST 3 Using this Guide 4 Useful Tips 5 About RhinoCAM-NEST 6 1 Running... RhinoCAM 6 2 About... the RhinoCAM Display 6 3 Launching... the NEST Module 7 Rectangular Nesting

More information

Advanced Techniques for Greater Accuracy, Capacity, and Speed using Maxwell 11. Julius Saitz Ansoft Corporation

Advanced Techniques for Greater Accuracy, Capacity, and Speed using Maxwell 11. Julius Saitz Ansoft Corporation Advanced Techniques for Greater Accuracy, Capacity, and Speed using Maxwell 11 Julius Saitz Ansoft Corporation Overview Curved versus Faceted Surfaces Mesh Operations Data Link Advanced Field Plotting

More information

Camtasia Studio 5.0 PART I. The Basics

Camtasia Studio 5.0 PART I. The Basics Camtasia Studio 5.0 Techsmith s Camtasia Studio software is a video screenshot creation utility that makes it easy to create video tutorials of an on screen action. This handout is designed to get you

More information

Acknowledgments Introduction. Part I: Programming Access Applications 1. Chapter 1: Overview of Programming for Access 3

Acknowledgments Introduction. Part I: Programming Access Applications 1. Chapter 1: Overview of Programming for Access 3 74029ftoc.qxd:WroxPro 9/27/07 1:40 PM Page xiii Acknowledgments Introduction x xxv Part I: Programming Access Applications 1 Chapter 1: Overview of Programming for Access 3 Writing Code for Access 3 The

More information

AND Outlook DEC10

AND Outlook DEC10 AND Outlook 2003 802-01DEC10 Contents page 1 1 Introduction Getting the most out of Outlook...2 The best practices of Getting Things Done...3 The need for simple lists...3 Making your lists portable...4

More information

Introduction to INFOASSIST Training Course Manual

Introduction to INFOASSIST Training Course Manual Introduction to INFOASSIST Training Course Manual TABLE OF CONTENTS 1) Training Goal and Objectives 2) A. What is InfoAssist? B. Guided walkthrough example 3) A. Utilizing a Standard Report B. How do you

More information

- HALF YEARLY EXAM ANSWER KEY DEC-2016 COMPUTER SCIENCE ENGLISH MEDIUM

- HALF YEARLY EXAM ANSWER KEY DEC-2016 COMPUTER SCIENCE ENGLISH MEDIUM www.padasalai.net - HALF YEARLY EXAM ANSWER KEY DEC-2016 COMPUTER SCIENCE ENGLISH MEDIUM 1 A 26 D 51 C 2 C 27 D 52 D 3 C 28 C 53 B 4 A 29 B 54 D 5 B 30 B 55 B 6 A 31 C 56 A 7 B 32 C 57 D 8 C 33 B 58 C

More information

TPC Desktop Series. Least Squares Learning Guide 1/18

TPC Desktop Series. Least Squares Learning Guide 1/18 TPC Desktop Series Least Squares Learning Guide 1/18 NOTICE The information in this document is subject to change without notice. TRAVERSE PC. Inc. assumes no responsibility for any errors that may appear

More information

Performance improvements through a strong cooperation between the well-known functions and a new clear and thorough layout.

Performance improvements through a strong cooperation between the well-known functions and a new clear and thorough layout. Workflow 8.0 big changes with big improvements Performance improvements through a strong cooperation between the well-known functions and a new clear and thorough layout. A noticeable development has led

More information

THE NEW METHOD OF DIRECTIONAL DRILLING BY NON-ROTATING ADJUSTABLE STABILIZER

THE NEW METHOD OF DIRECTIONAL DRILLING BY NON-ROTATING ADJUSTABLE STABILIZER THE NEW METHOD OF DIRECTIONAL DRILLING BY NON-ROTATING ADJUSTABLE STABILIZER Eisa Novieri, E.novieri@siau.ac.ir, Department of Petroleum Engineering, Islamic Azad University Susangerd Branch, Susangerd,

More information

Inventions on Three Dimensional GUI- A TRIZ based analysis

Inventions on Three Dimensional GUI- A TRIZ based analysis From the SelectedWorks of Umakant Mishra October, 2008 Inventions on Three Dimensional GUI- A TRIZ based analysis Umakant Mishra Available at: https://works.bepress.com/umakant_mishra/74/ Inventions on

More information

Chapter 2 - Getting Started

Chapter 2 - Getting Started Chapter 2 - Getting Started Entering Survey Data The heart of this program is the survey data and the ability for this program to compute the derived survey parameters. Start the XSection Horizontal Log

More information

Winshuttle STUDIO 11 TRANSACTION Developer Basic Training. Copyright ADSOTECH Scandinavia Oy

Winshuttle STUDIO 11 TRANSACTION Developer Basic Training. Copyright ADSOTECH Scandinavia Oy Winshuttle STUDIO 11 TRANSACTION Developer Basic Training 1 Copyright ADSOTECH Scandinavia Oy 2016 2014 Contents Winshuttle Studio 11 TRANSACTION Developer Basic Training Creating the First Script Problem

More information

Grade 8 FSA Mathematics Practice Test Guide

Grade 8 FSA Mathematics Practice Test Guide Grade 8 FSA Mathematics Practice Test Guide This guide serves as a walkthrough of the Grade 8 Florida Standards Assessments (FSA) Mathematics practice test. By reviewing the steps listed below, you will

More information

For. Geoscien. Notes. This work. Borehole Data

For. Geoscien. Notes. This work. Borehole Data Borehole Data For Geoscien nce Information Resources CONTRIBUTIONS TO THE NATIONAL GEOTHERMAL D DATA SYSTEM Notes from webinar held March 16 th, 2011 Speaker Stephen M. Richard Compiled and edited by Leahanna

More information

Test Automation Beyond Regression Testing

Test Automation Beyond Regression Testing Test Automation Beyond Regression Testing Doug Hoffman, BA, MBA, MSEE, ASQ-CSQE Software Quality Methods, LLC. (SQM) www.softwarequalitymethods.com doug.hoffman@acm.org STPCon Spring 2008 Why Automate

More information

Introduction to Scientific Computing with Matlab

Introduction to Scientific Computing with Matlab UNIVERSITY OF WATERLOO Introduction to Scientific Computing with Matlab SAW Training Course R. William Lewis Computing Consultant Client Services Information Systems & Technology 2007 Table of Contents

More information

An Overview of Visual Basic.NET: A History and a Demonstration

An Overview of Visual Basic.NET: A History and a Demonstration OVERVIEW o b j e c t i v e s This overview contains basic definitions and background information, including: A brief history of programming languages An introduction to the terminology used in object-oriented

More information

To be able to create charts that graphically represent your worksheet data, you will: Create column charts on chart sheets by using the F11 key.

To be able to create charts that graphically represent your worksheet data, you will: Create column charts on chart sheets by using the F11 key. L E S S O N 1 Creating charts Suggested teaching time 55-65 minutes Lesson objectives To be able to create charts that graphically represent your worksheet data, you will: a b c Create column charts on

More information

Using the Femap API to Improve the Analysis Process Kurt Knutson / Manager of Software Services

Using the Femap API to Improve the Analysis Process Kurt Knutson / Manager of Software Services Femap Symposium 2015 [San Diego] Co-Hosted with [ATA Engineering] Using the Femap API to Improve the Analysis Process Kurt Knutson / Manager of Software Services Femap Symposium Series 2015 February 24,

More information

Access Google Drive There are multiple ways to access Google drive.

Access Google Drive There are multiple ways to access Google drive. Introduction In the course we will discuss what a Google Drive is, what kind of applications they contain, and how we can work smarter. We will discuss how to start Google Drives, How to access the drives.

More information

Windows 2000 Safe Mode

Windows 2000 Safe Mode LAB PROCEDURE 29 Windows 2000 Safe Mode OBJECTIVES 1. Restart and try various startup options. RESOURCES Troubleshooting 1. Marcraft 8000 Trainer with Windows 2000 installed 2. A PS2 mouse 3. A LAN connection

More information

What are the latest additions?

What are the latest additions? Numbers have an important story to tell. They rely on you to give them a clear and convincing voice. Stephen Few View this email in your browser Creating velocity vectors between selected dates in prism

More information

Grapher, Quick Start Guide

Grapher, Quick Start Guide Grapher, Quick Start Guide Grapher TM Registration Information Your Grapher product key is located in the email download instructions and in your account at MyAccount.GoldenSoftware.com. Register your

More information

TABLE OF FIGURES... II A - DISCUSSION...1 B - CONFIGURATION...7. B.1 - Setup Dialog... 7 B.2 - Description... 7 B.3 - Controls...

TABLE OF FIGURES... II A - DISCUSSION...1 B - CONFIGURATION...7. B.1 - Setup Dialog... 7 B.2 - Description... 7 B.3 - Controls... Radiant Technologies, Inc. 2835D Pan American Freeway NE Albuquerque, NM 87107 Tel: 505-842-8007 Fax: 505-842-0366 e-mail: radiant@ferrodevices.com Table of Contents TABLE OF FIGURES... II A - DISCUSSION...1

More information

Session V-STON Stonefield Query: The Next Generation of Reporting

Session V-STON Stonefield Query: The Next Generation of Reporting Session V-STON Stonefield Query: The Next Generation of Reporting Doug Hennig Overview Are you being inundated with requests from the users of your applications to create new reports or tweak existing

More information

Introduction to MS Excel Management Information Systems

Introduction to MS Excel Management Information Systems Introduction to MS Excel 2007 Management Information Systems 1 Overview What is MS Excel? Functions. Sorting Data. Filtering Data. Data Form. Data Validation. Create charts in Excel. Formatting Cells.

More information

Click here to be a Dips 7.0 Beta Tester! 3D Stereosphere. Contour Arbitrary Data on Stereonet. Curved Boreholes. Intersection Calculator

Click here to be a Dips 7.0 Beta Tester! 3D Stereosphere. Contour Arbitrary Data on Stereonet. Curved Boreholes. Intersection Calculator DIPS7.0 It s been 3 years since the release of Dips 6.0, so it s time for an upgrade! The latest version of our popular stereonet program - Dips 7.0 - is scheduled for release in early 2016. If you would

More information

TABLE OF CONTENTS. TECHNICAL SUPPORT APPENDIX Appendix A Formulas And Cell Links Appendix B Version 1.1 Formula Revisions...

TABLE OF CONTENTS. TECHNICAL SUPPORT APPENDIX Appendix A Formulas And Cell Links Appendix B Version 1.1 Formula Revisions... SPARC S INSTRUCTIONS For Version 1.1 UNITED STATES DEPARTMENT OF AGRICULTURE Forest Service By Todd Rivas December 29, 1999 TABLE OF CONTENTS WHAT IS SPARC S?... 1 Definition And History... 1 Features...

More information

UW Department of Chemistry Lab Lectures Online

UW Department of Chemistry Lab Lectures Online Introduction to Excel and Computer Manipulation of Data Review Appendix A: Introduction to Statistical Analysis. Focus on the meanings and implications of the calculated values and not on the calculations.

More information

252 APPENDIX D EXPERIMENT 1 Introduction to Computer Tools and Uncertainties

252 APPENDIX D EXPERIMENT 1 Introduction to Computer Tools and Uncertainties 252 APPENDIX D EXPERIMENT 1 Introduction to Computer Tools and Uncertainties Objectives To become familiar with the computer programs and utilities that will be used throughout the semester. You will learn

More information

Erratum Windows 10 for Seniors for the Beginning Computer User

Erratum Windows 10 for Seniors for the Beginning Computer User 1 Erratum Windows 10 for Seniors for the Beginning Computer User In April 2017, an update has been released for Windows 10 In this additional file we will tell you about the main features Some of the windows

More information

Quick Start Guide. for VisualNEST Published: December MecSoft Corpotation

Quick Start Guide. for VisualNEST Published: December MecSoft Corpotation Quick Start Guide for VisualNEST 2019 Published: December 2018 MecSoft Corpotation Copyright 1998-2018 VisualNEST 2019 Quick Start Guide by MecSoft Corporation User Notes: Contents 2 Table of Contents

More information

EXCEL BASICS: MICROSOFT OFFICE 2010

EXCEL BASICS: MICROSOFT OFFICE 2010 EXCEL BASICS: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT EXCEL PAGE 03 Opening Microsoft Excel Microsoft Excel Features Keyboard Review Pointer Shapes

More information

EXCEL SPREADSHEET TUTORIAL

EXCEL SPREADSHEET TUTORIAL EXCEL SPREADSHEET TUTORIAL Note to all 200 level physics students: You will be expected to properly format data tables and graphs in all lab reports, as described in this tutorial. Therefore, you are responsible

More information

Basic Math in Microsoft Excel

Basic Math in Microsoft Excel Chapter 1 Basic Math in Microsoft Excel In this chapter, we will learn the following to World Class standards: The Excel Layout The Ribbon in Excel Adding in Excel Subtracting in Excel Multiplying in Excel

More information

Heights. Heights. d i.

Heights. Heights. d i. Take Take Your Your Data Data to to New New Heights Heights Quick St Gold In www.goldensoftware.com c. e d i u G art ft o S en e, w ar Grapher TM Registration Information Your Grapher serial number is

More information

2x + 3x = 180 5x = (5x) = 1 5 (180) x = 36. Angle 1: 2(36) = 72 Angle 2: 3(36) = 108

2x + 3x = 180 5x = (5x) = 1 5 (180) x = 36. Angle 1: 2(36) = 72 Angle 2: 3(36) = 108 GRADE 7 MODULE 6 TOPIC A LESSONS 1 4 KEY CONCEPT OVERVIEW In this topic, students return to using equations to find unknown angle measures. Students write equations to model various angle relationships

More information

for ArcSketch Version 1.1 ArcSketch is a sample extension to ArcGIS. It works with ArcGIS 9.1

for ArcSketch Version 1.1 ArcSketch is a sample extension to ArcGIS. It works with ArcGIS 9.1 ArcSketch User Guide for ArcSketch Version 1.1 ArcSketch is a sample extension to ArcGIS. It works with ArcGIS 9.1 ArcSketch allows the user to quickly create, or sketch, features in ArcMap using easy-to-use

More information

Designed by Jason Wagner, Course Web Programmer, Office of e-learning NOTE ABOUT CELL REFERENCES IN THIS DOCUMENT... 1

Designed by Jason Wagner, Course Web Programmer, Office of e-learning NOTE ABOUT CELL REFERENCES IN THIS DOCUMENT... 1 Excel Essentials Designed by Jason Wagner, Course Web Programmer, Office of e-learning NOTE ABOUT CELL REFERENCES IN THIS DOCUMENT... 1 FREQUENTLY USED KEYBOARD SHORTCUTS... 1 FORMATTING CELLS WITH PRESET

More information

EXCEL BASICS: MICROSOFT OFFICE 2007

EXCEL BASICS: MICROSOFT OFFICE 2007 EXCEL BASICS: MICROSOFT OFFICE 2007 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT EXCEL PAGE 03 Opening Microsoft Excel Microsoft Excel Features Keyboard Review Pointer Shapes

More information

This chapter is intended to take you through the basic steps of using the Visual Basic

This chapter is intended to take you through the basic steps of using the Visual Basic CHAPTER 1 The Basics This chapter is intended to take you through the basic steps of using the Visual Basic Editor window and writing a simple piece of VBA code. It will show you how to use the Visual

More information

MacMost.com (hosted by Gary Rosenzweig)

MacMost.com (hosted by Gary Rosenzweig) Note: This discussion is based on MacOS, 10.14.1 (Mojave). Some illustrations may differ when using other versions of macos or OS X. Illustrations are from screenshots on my imac. In this presentation

More information

Grapher, User's Guide

Grapher, User's Guide Grapher, User's Guide Grapher TM Registration Information Your Grapher product key is located in the email download instructions and in your account at MyAccount.GoldenSoftware.com. Register your Grapher

More information

Virginia Geometry, Semester A

Virginia Geometry, Semester A Syllabus Virginia Geometry, Semester A Course Overview Virginia Geometry, Semester A, provides an in-depth discussion of the basic concepts of geometry. In the first unit, you ll examine the transformation

More information

Run Specifi by clicking on the icon on your Desktop.

Run Specifi by clicking on the icon on your Desktop. Run Specifi by clicking on the icon on your Desktop. Note: If you are using a demo version, once the program is loaded, a message will tell you the remaining days of the evaluation period. The main screen

More information

GMS 10.3 Tutorial Stratigraphy Modeling Horizon Coverages Use horizon coverages to help control the Horizons Solids operation

GMS 10.3 Tutorial Stratigraphy Modeling Horizon Coverages Use horizon coverages to help control the Horizons Solids operation v. 10.3 GMS 10.3 Tutorial Stratigraphy Modeling Horizon Coverages Use horizon coverages to help control the Horizons Solids operation Objectives Learn how to constrain the areal extent of the solids created

More information

Outlook Web Access. In the next step, enter your address and password to gain access to your Outlook Web Access account.

Outlook Web Access. In the next step, enter your  address and password to gain access to your Outlook Web Access account. Outlook Web Access To access your mail, open Internet Explorer and type in the address http://www.scs.sk.ca/exchange as seen below. (Other browsers will work but there is some loss of functionality) In

More information

Module 7 Defining Coordinate Systems

Module 7 Defining Coordinate Systems Module 7 Defining Coordinate Systems Introduction Objectives Outline of Topics Covered The use of coordinate systems is very important in managing 3D spatial data including point clouds. In this module

More information

Microsoft Excel 2007 Creating a XY Scatter Chart

Microsoft Excel 2007 Creating a XY Scatter Chart Microsoft Excel 2007 Creating a XY Scatter Chart Introduction This document will walk you through the process of creating a XY Scatter Chart using Microsoft Excel 2007 and using the available Excel features

More information

Azquo User Guide. data made simple

Azquo User Guide. data made simple Azquo User Guide Draft 5 December 2016 Copyright This document is copyright of Azquo Ltd. 2016. All rights reserved. It is supplied under the terms of an agreement with Azquo Ltd, and may not be used except

More information

Well Path Design Part III

Well Path Design Part III Well Path Design Part III This TIPS&TRICKS is the final installment of a three-part series intended to aid the geoscientist working in Petrel and tasked with providing proposed well paths to a well engineering

More information

VPAT (Voluntary Product Accessibility Template)

VPAT (Voluntary Product Accessibility Template) VPAT (Voluntary Product Accessibility Template) The VPAT (Voluntary Product Accessibility Template) product is a tool developed by ITIC Information Technology Industry Council and government GSA Government

More information

Software Quality. Martin Glinz. Thomas Fritz. Lecture 7 UI Design, Usability & Testing. Many thanks to Meghan Allen and Daniel Greenblatt.

Software Quality. Martin Glinz. Thomas Fritz. Lecture 7 UI Design, Usability & Testing. Many thanks to Meghan Allen and Daniel Greenblatt. Institut für Informatik Software Quality Lecture 7 UI Design, Usability & Testing Thomas Fritz Martin Glinz Many thanks to Meghan Allen and Daniel Greenblatt. Overview Introduction to UI design User-centered

More information

Image Preparation for NMPCA Websites

Image Preparation for NMPCA Websites Image Preparation for NMPCA Websites Participation in the NMPCA s online virtual studio tour, www.claystudiotour.com, requires taking digital pictures of your work and preparation of up to 9 images: 8

More information

PowerPoint Basics: Create a Photo Slide Show

PowerPoint Basics: Create a Photo Slide Show PowerPoint Basics: Create a Photo Slide Show P 570 / 1 Here s an Enjoyable Way to Learn How to Use Microsoft PowerPoint Microsoft PowerPoint is a program included with all versions of Microsoft Office.

More information