GFEC Version 3.0 Installation Guide MATTHEW WARD SALVESON

Size: px
Start display at page:

Download "GFEC Version 3.0 Installation Guide MATTHEW WARD SALVESON"

Transcription

1 GFEC Version 3.0 Installation Guide MATTHEW WARD SALVESON August 2010

2 Contents 1 Unpacking the Zip File 3 2 External Software Installation GMSH Gnuplot GFEC Installation 7 4 Program Configuration Sample gfec.cfg File Example Problems 11 6 Cygwin Installation 12 7 Visual Studio Installation 16 1

3 List of Figures 2.1 GMSH Gnuplot GFEC Installation External Applications Tab Cygwin Installation Install from Internet Cygwin Installation Download Site Cygwin Installation Select Packages Visual Studio - GFEC

4 Chapter 1 Unpacking the Zip File The GFEC zip file contains the following: The Windows installer for GFEC A directory containing a recent version of GMSH A directory containing a recent version of gnuplot A directory containing the Fortran source code for the GFEC finite element processor A directory containing the.net source code for the GFEC graphical user interface. A directory containing the script file used to generate the Windows installer These files can be unzipped to any convenient location on your computer. The Windows installer will install the actual executable file for you. 3

5 Chapter 2 External Software Installation Required external software packages needed to run GFEC include: GMSH ( gnuplot ( A internet browser such as Mozilla ( A pdf file reader such as Adobe Acrobat( A text editor such as Wordpad Additionally, to modify the user interface and rebuild the Windows installer, you will need: Microsoft Visual studio 2010 Inno Setup IMPORTANT: GFEC is built and tested on a system running Windows 7 and the latest.net 3.5 environment. It may work on older systems, but the author makes no guarantees. 2.1 GMSH GMSH is a freely available finite element pre- and post-processor. The latest source and binary files may be found on the web site listed above. It is also 4

6 part of many of the Linux repositories. To install GMSH, simply copy the executable and its associated DLL files to a convenient directory. A recent version of GMSH is included in the GFEC zip file. Figure 2.1: GMSH 2.2 Gnuplot Gnuplot is a powerful open-source scientific plotting tool. Source and binaries are available for Windows at the web site listed above. Gnuplot can be found on all Linux repositories. To install gnuplot, simply copy the executable and its associated DLL files to a convenient directory. A recent version of gnuplot is included in the GFEC zip file. 5

7 Figure 2.2: Gnuplot 6

8 Chapter 3 GFEC Installation GFEC (both the graphical user interface and the actual finite element processor) are packaged together using a windows installer, so they can both be installed by simply executing setup.exe in the GFEC zip file. An item will be added to the Windows start menu and an icon will be added to the desktop. 7

9 Figure 3.1: GFEC Installation 8

10 Chapter 4 Program Configuration GFEC must be configured such that the program can correctly locate all of the software packages that are external to the actual GFEC graphical user interface. This can most easily be done by clicking on the External Apps tab of main GFEC window (see Figure 4.1). The user can explicitly specify the location of all external applications within this tab. The pre-processor and post-processor should be specified as the GMSH executable. The finite element processor should be specified as gfec fe.exe located in the GFEC install directory. If the user modifies the finite element source code and compiles it (using Cygwin), the finite element processor should be specified as the new gfec.exe executable instead (located under the home directory in Cygwin). The 2D plotter should be specified as gnuplot (and the wgnuplot.exe file in particular). The text editor should be specified as Wordpad or an equivalent. The author recommends the use of Notepad++. See The web browser should be specified as Internet Explorer, Mozilla, or an equivalent. The PDF viewer should be specified as Adobe Reader or an equivalent. The author recommends the use of Evince. See 9

11 The user should be sure that the full path to each of these external applications is properly specified. The user should save these settings by clicking the Set as Default button on the External Apps tab. This will create (or overwrite) a file called gfec.cfg that is stored in the user s My Documents folder in a directory called GFEC. The Load Default Settings button will load this file and overwrite all external applications settings. The file is in ASCII format and may also be edited directly. A typical gfec.cfg file is shown below. 4.1 Sample gfec.cfg File C:\Documents and Settings\matts\Desktop\gmsh Windows\gmsh. exe C:\cygwin\home\matts\gfec\gfec. exe C:\Documents and Settings\matts\Desktop\gmsh Windows\gmsh. exe C:\Documents and Settings\matts\Desktop\gnuplot\bin\wgnuplot. exe C:\Program Files\Windows NT\Accessories\wordpad. exe C:\Program Files\Mozilla Firefox\firefox. exe C:\Program Files\Adobe\Reader 9.0\Reader\AcroRd32.exe Figure 4.1: External Applications Tab 10

12 Chapter 5 Example Problems Example problems for a number of common finite element are included in GFEC s context sensitive help. After launching GFEC, press F1 to access the help file. 11

13 Chapter 6 Cygwin Installation In order to modify the Fortran finite element processor, it is necessary to install Cygwin on your Windows system. Cygwin offers some of the functionality of a Linux operating system, and the gfortran compiler in particular. InordertoinstallCygwinitisnecessarytodownloadandruntheCygwin setup.exe file from When you launch setup.exe, specify that the program should be installed from the internet. See Figure 6.1. Follow the prompts on the installer until you are prompted to pick a download site (see Figure 6.2). Pick a site that is as close as possible to your geographic location. Finally, you will be prompted to specify which Cygwin applications should be downloaded. Leave everything as default except for Devel and Math group of applications. Single click on the word default and Math and the option will change to install. See Figure 6.3. Follow the remaining prompts and be patient. Cygwin can take quite a while to download and install. Once Cygwin is intalled, make sure that you create a GFEC directory within your Cygwin home directory, and transfer the Fortran source code included in the GFEC zip file. Also, make sure you specify your newly compiled finite element processor under the GFEC external applications tab. Cygwin (and any programs that Cygwin compiles) will need to access specific DLL files. The executable file gfec fe.exe is installed with the appropriate DLL files. These DLL files may or may not correspond to the latest Cygwin DLL files installed with Cygwin on your local machine. To this end, you will need to add the following two directories to your windows path: /cygwin/bin /cygwin/lib/lapack 12

14 To add these directories to the windows path (in Windows 7), please follow the following steps: 1. From the desktop, right-click My Computer and click Properties. 2. In the System Properties window, click on the Advanced tab. 3. In the Advanced section, click the Environment Variables button. 4. Finally, in the Environment Variables window (as shown below), highlight the Path variable in the Systems Variable section and click the Edit button. Add or modify the path lines with the paths you wish the computer to access. Each different directory is separated with a semicolon. Note that when you execute gfec fe.exe (which is installed with GFEC, you will be utilizing the Cygwin DLL files that were used to create this executable file. When you execute your own custom version of gfec fe.exe, you will be utilizing the Cygwin DLL files that you have just defined on the Windows path. Figure 6.1: Cygwin Installation Install from Internet 13

15 Figure 6.2: Cygwin Installation Download Site 14

16 Figure 6.3: Cygwin Installation Select Packages 15

17 Chapter 7 Visual Studio Installation The user interface is written in VB.net on the Microsoft Visual Studio 2010 platform. The gfec gui.zip can be unzipped to a convenient location. The gfec.sln can be opened directly from Visual Studio. 16

18 Figure 7.1: Visual Studio - GFEC 17

19 Index Cygwin installation, 12 example problems, 11 External Software, 4 GFEC installation, 7 GFEC zip file, 3 GMSH installation, 4 gnuplot installation, 5 program configuration, 9 Visual Studio Installation, 16 18

Sherlock Tutorial Getting Started

Sherlock Tutorial Getting Started Sherlock Tutorial Getting Started Background Sherlock is a Java-based application that allows users to analyze the reliability of circuit card assemblies based on their design files. Sherlock has been

More information

User Manual Customizing EdingCNC User Interface

User Manual Customizing EdingCNC User Interface User Customizing EdingCNC User Interface Document Release 1.00 16 October 2015 1 Published by: Bert Eding Eindhoven The Netherlands Title: Eding CNC CUSTOM GUI manual Author: Bert Eding Date: Friday, 16

More information

Using Novell Filr App to Access CECHCloud on an ipad or iphone

Using Novell Filr App to Access CECHCloud on an ipad or iphone Using Novell Filr App to Access CECHCloud on an ipad or iphone About CECHCloud... 2 Installing and Configuring the Novell Filr App... 2 Navigating the Filr App... 4 Working with Files... 7 Viewing Files...

More information

WA1884 Introduction to Java. using Oracle JDeveloper 11g. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc.

WA1884 Introduction to Java. using Oracle JDeveloper 11g. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. WA1884 Introduction to Java using Oracle JDeveloper 11g Classroom Setup Guide Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 Table of Contents Classroom Requirements...3 Part 1 - Minimum Hardware

More information

This has both postgres and postgis included. You need to enable postgis by running the following statements

This has both postgres and postgis included. You need to enable postgis by running the following statements 1 Lab 0 (2016) Installing Initial Software for Spatial Databases Course Lecturer Pat Browne This note describes how to install some of the course software on Windows 7. Lab0 only covers installation for

More information

Installation Instructions

Installation Instructions Installation Instructions Reading App Builder: Installation Instructions 2017, SIL International Last updated: 1 December 2017 You are free to print this manual for personal use and for training workshops.

More information

Communications Library Manual

Communications Library Manual Delta Tau Power PMAC Communications Library Manual Issue: Date: 1.0 10 th September 2014 NAME DATE SIGNATURE Prepared by Philip Taylor, Observatory Sciences Ltd. 21 March 2013 Andrew Wilson, Observatory

More information

QTD and Supporting Files Installation Instructions

QTD and Supporting Files Installation Instructions QTD and Supporting Files Installation Instructions April 2017 Quality Training Systems www.qualitytrainingsystems.com support@qualitytrainingsystems.com 2017, Quality Training Systems Contents Introduction...

More information

QuickTest Professional 10

QuickTest Professional 10 QuickTest Professional 10 Course Setup Instructions Important Note: This training runs under the following operating systems: Windows 2000 Professional (with SP4) Windows XP (with SP2 or SP3) Windows Vista,

More information

Digital Pack Tutorial - For Mac

Digital Pack Tutorial - For Mac Digital Pack Tutorial - For Mac Contents Before You Start 1 Step 1 2 Step 2 3 Step 3 6 Step 4 8 Please feel free to contact us! BEFORE YOU START: Important! Do you have Adobe Reader or Adobe Acrobat Professional

More information

Don t jump ahead, there is more you need to do first in order for this to work properly.

Don t jump ahead, there is more you need to do first in order for this to work properly. With the release of our new PD 502 & PD 602 portable terminals, you are required to use CPS v5.06.01.009 programming software. To maintain compatibility between the different DMR model radios, you will

More information

IBM iaccess (Java) Setup Guide for Foxtrot RPA

IBM iaccess (Java) Setup Guide for Foxtrot RPA IBM iaccess (Java) Setup Guide for Foxtrot RPA Revised 03/31/17 Setup Steps - IBM iaccess is a Java application which requires these specific setup steps before it can be automated using Foxtrot RPA: 1.

More information

Simulating a Design Circuit Using Qsim

Simulating a Design Circuit Using Qsim Simulating a Design Circuit Using Qsim 1. Start Qsim From version 11.1, Quartus II provides another simulating tool called Qsim. Qsim is bundled with both subscript edition and web edition of Quartus II.

More information

Installation Instructions

Installation Instructions Installation Instructions Last updated: 08 May 2017 Contents 1. Introduction... 3 2. Windows Installation... 3 2.1. Installing Dictionary App Builder... 3 2.2. Installing Java SE Development Kit (JDK)...

More information

SilkTest 2010 R2. Installation Guide

SilkTest 2010 R2. Installation Guide SilkTest 2010 R2 Installation Guide Borland Software Corporation 4 Hutton Centre Dr., Suite 900 Santa Ana, CA 92707 Copyright 2009-2010 Micro Focus (IP) Limited. All Rights Reserved. SilkTest contains

More information

DOCUMENT TRACKING INSTALLATION GUIDE

DOCUMENT TRACKING INSTALLATION GUIDE DOCUMENT TRACKING INSTALLATION GUIDE DOCUMENT TRACKING INSTALLATION GUIDE This document walks through the steps necessary for installing the program. TO INSTALL DTS: You should have administrator rights

More information

How to Install SprayView

How to Install SprayView How to Install SprayView 1. Installation from CD: If you have a CD with the SprayView software, you can install SprayView from the CD. To do this, 1) Put the SprayView CD into the CD drive. 2) Wait for

More information

ImageNow Interact for Microsoft Office Installation and Setup Guide

ImageNow Interact for Microsoft Office Installation and Setup Guide ImageNow Interact for Microsoft Office Installation and Setup Guide Version: 6.6.x Written by: Product Documentation, R&D Date: February 2011 ImageNow and CaptureNow are registered trademarks of Perceptive

More information

Junxure Code Upgrade Instructions

Junxure Code Upgrade Instructions Junxure Code Upgrade Instructions If at any time you run into an issue with the following process, call or email Junxure Support (866-586-9873, opt 1 or support@junxure.com) and we will assist you with

More information

Installation Reference

Installation Reference Version 5.0 March 11, 2018 Installation Reference Copyright 2005-2018 ManTech International Corporation Protected by the Document Detective End User License Agreement Installation Requirements Document

More information

How to build Simbody 2.2 from source on Windows

How to build Simbody 2.2 from source on Windows How to build Simbody 2.2 from source on Windows Michael Sherman, 30 Mar 2011 (minor revision 27 July 2011) Simbody 2.2 was re-engineered to be much easier to build from source than previous releases. One

More information

Introducing BioMA. Tutorial: Creating a component. Fumagalli D., Ferrari G.

Introducing BioMA. Tutorial: Creating a component. Fumagalli D., Ferrari G. Introducing BioMA Tutorial: Creating a component Fumagalli D., Ferrari G. 2016 This publication is a Technical report by the Joint Research Centre (JRC), the European Commission s science and knowledge

More information

Preparatory steps before you begin

Preparatory steps before you begin Preparatory steps before you begin If the course comes on a CD-ROM / DVD-ROM If your course is on a CD-ROM, it might be easiest to copy its entire content, i.e., the folder containing the course, to your

More information

1 - System Requirements

1 - System Requirements Structural Desktop - Single-Seat Workstation Professional Version 4.0 Installation Instructions Please read Section 4, Registering Your License, before registering your purchase of Structural Desktop.

More information

Document Management Upgrade Guide

Document Management Upgrade Guide Document Management Upgrade Guide March 2014, Version 8.9 Minimum Requirements Ensure that your Document Management environment conforms to the following requirements. Document Management Image Server

More information

QUICK START GUIDE. Quick Start Guide. This will assist you to setup and distribute content to a StratosMedia Player device in 4 easy steps.

QUICK START GUIDE. Quick Start Guide. This will assist you to setup and distribute content to a StratosMedia Player device in 4 easy steps. Quick Start Guide This will assist you to setup and distribute content to a StratosMedia Player device in 4 easy steps. NOTE: All devices need active internet connectivity. Google Chrome is a browser that

More information

Adding Report Folders to Entuity

Adding Report Folders to Entuity Adding Report Folders to Entuity Purpose: The purpose of this Application note is to provide a short procedure that will demonstrate how to add a new report folder to an Entuity server. The procedure will

More information

UNic Eclipse Mini Tutorial (Updated 06/09/2012) Prepared by Harald Gjermundrod

UNic Eclipse Mini Tutorial (Updated 06/09/2012) Prepared by Harald Gjermundrod Page 1 of 19 UNic Eclipse Mini Tutorial (Updated 06/09/2012) Prepared By: Harald Gjermundrod Table of Contents 1 EASY INSTALLATION... 2 1.1 DOWNLOAD... 2 1.2 INSTALLING... 2 2 CUSTOMIZED INSTALLATION...

More information

ASSET TRACKING SYSTEM INSTALLATION GUIDE

ASSET TRACKING SYSTEM INSTALLATION GUIDE ASSET TRACKING SYSTEM INSTALLATION GUIDE 1 ASSET TRACKING SYSTEM INSTALLATION GUIDE This document walks through the steps necessary for installing the program. TO INSTALL ATS: You should have administrator

More information

Installation of Perl and BioPerl with modules for MySQL databases (Windows XP)

Installation of Perl and BioPerl with modules for MySQL databases (Windows XP) Installation of Perl and BioPerl with modules for MySQL databases (Windows XP) 1. Installation of ActiveState Perl 1 2. Installation of Perl modules and BioPerl 2 3. Executing Perl scripts 5 4. Installation

More information

Guide to Using the AK240 MQS Streaming Server. Windows 7/8 (32&64bit)

Guide to Using the AK240 MQS Streaming Server. Windows 7/8 (32&64bit) Guide to Using the AK240 MQS Streaming Server Windows 7/8 (32&64bit) Installing & Running the MQS Streaming Server: The AK240 can access music files stored on computer on the same network. 1. Download

More information

Installing and Updating Templates

Installing and Updating Templates Installing and Updating Templates OrthoView customers have unlimited access to the entire template library, but initial installations do not include templates. The templates required must be downloaded,

More information

How to Order E-Transcript/Paper Transcript for Alumni

How to Order E-Transcript/Paper Transcript for Alumni How to Order E-Transcript/Paper Transcript for Alumni For alumni transcripts, Login in to: https://exchange.parchment.com/send/adds/index.php?main_page=login&action=process&s_id=nb1enkhharysgvd0 Click

More information

PC and Windows Installation 32 and 64 bit Operating Systems

PC and Windows Installation 32 and 64 bit Operating Systems SUDAAN Installation Guide PC and Windows Installation 32 and 64 bit Operating Systems Release 11.0.1 Copyright 2013 by RTI International P.O. Box 12194 Research Triangle Park, NC 27709 All rights reserved.

More information

Rhapsody. Installation Guide

Rhapsody. Installation Guide Rhapsody Installation Guide Before using the information in this manual, be sure to read the Notices section of the Help or the PDF available from Help > List of Books. This edition applies to Telelogic

More information

SIMF I T SIMULATION, FITTING, STATISTICS, AND PLOTTING. SIMD E M SIMFIT LIBRARY FOR INPUT, OUTPUT, AND PLOTTING. Running SimFIT and SimDEM in Linux bill.bardsley@simfit.org.uk https://simfit.org.uk 1 Running

More information

Accessing Diagnostic Service Documentation for Non-Beckman Coulter Users

Accessing Diagnostic Service Documentation for Non-Beckman Coulter Users Accessing Diagnostic Service Documentation for Non-Beckman Coulter Users A Windows 10 device is required now to use AirWatch Content Locker (ACL). The new ACL will not allow executable files to run, so

More information

CodeFuseAgent - User Guide. Version: 1.4

CodeFuseAgent - User Guide.   Version: 1.4 CodeFuseAgent - User Guide http://www.codefuse.io/ Version: 1.4 Contents 1. Introduction... 2 2. CodeFuseAgent Installation... 3 3. Starting CodeFuseAgent... 7 4. Executing Tests with CodeFuseAgent...

More information

JD Edwards EnterpriseOne 8.12 (Tools Release 8.96) Standalone Version

JD Edwards EnterpriseOne 8.12 (Tools Release 8.96) Standalone Version JD Edwards EnterpriseOne 8.12 (Tools Release 8.96) Standalone Version Overview: EnterpriseOne 8.12 (Tools Release 8.96) Standalone is a self-contained demo of the JD Edwards enterprise software (formerly

More information

Installing the PC-Kits SQL Database

Installing the PC-Kits SQL Database 1 Installing the PC-Kits SQL Database The Network edition of VHI PC-Kits uses a SQL database. Microsoft SQL is a database engine that allows multiple users to connect to the same database. This document

More information

Procedure: Page 1 of 11

Procedure: Page 1 of 11 PDx-Pop 4 Operation from an Intel Fortran-Compatible Desktop Shortcut William J. Bachman, Ph.D. Director, Pharmacometrics R&D ICON Development Solutions Original Document Date: May 21, 2010 Overview: Setting

More information

Cygwin Installation. Cygwin can be downloaded from the Cygwin website or from the Computer Science Mirror Server (http://mirror.cs.astate.edu).

Cygwin Installation. Cygwin can be downloaded from the Cygwin website or from the Computer Science Mirror Server (http://mirror.cs.astate.edu). Contents 1 Current Version 2 Introduction 3 Where to get Cygwin 4 Multi-User Environment 5 Installation Cygwin Installation 6 Optional Changes Current Version Last Update: August 5, 2011 Cygwin Version:

More information

Installing A-Track from the Setup File, the Full Installation Package, or the Distribution CD

Installing A-Track from the Setup File, the Full Installation Package, or the Distribution CD Installing A-Track from the Setup File, the Full Installation Package, or the Distribution CD Version 4.3.2 Note that, if you are planning to use a USB-to-Serial Converter or the NCE USB Interface unit

More information

Using a set-up file to read ASCII data into Stata

Using a set-up file to read ASCII data into Stata Using a set-up file to read ASCII data into Stata The download file is saved to the desktop. The first step is to remove the files from the zip folder that are needed to read in the data. Double-click

More information

11 Importing GP Capture Data (JPEG)

11 Importing GP Capture Data (JPEG) 11 Importing GP Capture Data (JPEG) 11.1 Capturing at Preset Timing... 11-2 11.2 Capturing Right Now... 11-22 11.3 Restrictions...11-26 11-1 11.1 Capturing at Preset Timing [Action Example] Detect the

More information

PREREQUISITES. Section 1: The SREmu Installation

PREREQUISITES. Section 1: The SREmu Installation Section 1: The SREmu Installation Thank you for trying the Sentinels Republic SWGEmu game launcher. This is a program in development, so please take note of any errors, problems, crashes and any accompanying

More information

JPdfBookmarks Manual. by Flaviano Petrocchi

JPdfBookmarks Manual. by Flaviano Petrocchi JPdfBookmarks Manual by Flaviano Petrocchi JPdfBookmarks Manual 1 Introduction 3 Installation and Uninstallation 4 Linux Instructions 4 Debian Instructions 6 Windows Instructions 6 Universal Archive Instructions

More information

Android Studio Setup Procedure

Android Studio Setup Procedure Android Studio Setup Procedure System Requirements : Windows OS Linux OS Mac OS Microsoft Windows 7/8/10 (32- or 64-bit) 3 GB RAM minimum, 8 GB RAM recommended; plus 1 GB for the Android Emulator 2 GB

More information

Abaqus Student Edition. Installation Instructions

Abaqus Student Edition. Installation Instructions Product Features And Limitations Abaqus Student Edition Installation Instructions The Abaqus Student Edition consists of Abaqus/Standard, Abaqus/Explicit, and Abaqus/CAE. Full HTML documentation is included.

More information

Software Installation: AASPI Windows Installation

Software Installation: AASPI Windows Installation AASPI Windows Installation This guide shows a step-by-step installation, running, and uninstallation of AASPI software on Windows machine. Compatibility Currently we support 64-bit Windows XP, 7, 8, 8.1,

More information

CREATING A PROGRAM OF STUDY FOR DOCUSIGN Create a Program of Study for DocuSign (GPC use only)

CREATING A PROGRAM OF STUDY FOR DOCUSIGN Create a Program of Study for DocuSign (GPC use only) CREATING A PROGRAM OF STUDY FOR DOCUSIGN Create a Program of Study for DocuSign (GPC use only) Step #1: Print DegreeWorks Main Screen From DegreeWorks Main screen, click Print. Print pop up should launch

More information

PrimePay System Requirements

PrimePay System Requirements PrimePay Web-Based System Requirements Document Title Document Goal PrimePay System Requirements Detail the system requirements for PrimePay s Web based application. Table of Contents 1.0 Minimum Software

More information

How to build MPTK with CMake SUMMARY

How to build MPTK with CMake SUMMARY How to build MPTK with CMake SUMMARY Read this document to learn how to build the Matching Pursuit Tool Kit on Win32 platform using CMake and Visual Studio LAYOUT 1Getting Started...2 1.1Required tools...2

More information

ECE112 - Lab 6. Purpose. Parts/tools needed: Make sure we have a properly working environment

ECE112 - Lab 6. Purpose. Parts/tools needed: Make sure we have a properly working environment ECE112 - Lab 6 Purpose Make sure everyone can access a Linux host Get further acquainted with Linux Create a spice netlist, run a simulation Create a lab report using Latex Parts/tools needed: Your laptop

More information

Getting Started With NetLogo

Getting Started With NetLogo Getting Started With NetLogo John Balwit 1 and Melanie Mitchell 1,2 1 Portland State University 2 Santa Fe Institute Copyright 2013 by Santa Fe Institute and Portland State University NetLogo in a Nutshell

More information

DocuTech. XDS Plus for Mac OS X. Obtaining XDS Plus

DocuTech. XDS Plus for Mac OS X. Obtaining XDS Plus DocuTech XDS Plus for Mac OS X Obtaining XDS Plus 1. Open your web browser to http://www.xerox.com. 2. Click on the red navigation bar's hot link to Support and Drivers. 3. On the resulting screen locate

More information

'phred dist acd.tar.z'

'phred dist acd.tar.z' Phred is free for academic use but does require registration and for you to obtain a licence. Please visit http://www.phrap.org/consed/consed.html#howtoget and follow the instructions. A copy of the Phred

More information

Installing Komplete 5 with Direct Install

Installing Komplete 5 with Direct Install Installing Komplete 5 with Direct Install This document discusses how to use Receptor s Direct Install feature to install and update Komplete 5, its plugins, and its libraries. In order to install Komplete

More information

Getting Started with Energia for MSP432 LaunchPad

Getting Started with Energia for MSP432 LaunchPad May 9, 2018 Getting Started with Energia for MSP432 LaunchPad This tutorial is intended for installing and getting started with Energia for Texas Instrument SimpleLink MSP432P401R LaunchPad development

More information

Getting Started with Eclipse/Java

Getting Started with Eclipse/Java Getting Started with Eclipse/Java Overview The Java programming language is based on the Java Virtual Machine. This is a piece of software that Java source code is run through to produce executables. The

More information

EMS DESKTOP CLIENT Installation Guide

EMS DESKTOP CLIENT Installation Guide EMS DESKTOP CLIENT Installation Guide Version 44.1 Last Updated: March 5, 2018 EMS Software emssoftware.com/help 800.440.3994 2018 EMS Software, LLC. All Rights Reserved. Table of Contents CHAPTER 1: Introduction

More information

Elixir Repertoire Designer

Elixir Repertoire Designer Aggregation and Transformation Intelligence on Demand Activation and Integration Navigation and Visualization Presentation and Delivery Activation and Automation Elixir Repertoire Designer Tutorial Guide

More information

Adobe Creative Cloud for Enterprise The University of Texas at San Antonio End User Guide

Adobe Creative Cloud for Enterprise The University of Texas at San Antonio End User Guide Adobe Creative Cloud for Enterprise The University of Texas at San Antonio End User Guide The Univeristy of Texas at San Antonio is offering access to Adobe products via the Adobe Creative Cloud for Enterprise.

More information

Organizer Portal Instructions by

Organizer Portal Instructions by Organizer Portal Instructions by Part one: Downloading and Completing Your Organizer 1) To begin working on your organizer, the first step is to download the organizer PDF file. To do so, click the Download

More information

An Introductory Tutorial on UNIX

An Introductory Tutorial on UNIX An Introductory Tutorial on UNIX Kevin Keay February 6 2009 Introduction The purpose of this document is to guide you through the sequence of: 1. Describing a quick method of connecting to a remote UNIX

More information

PMAPS WebPro Installed Technical Requirements Checklist

PMAPS WebPro Installed Technical Requirements Checklist PMAPS WebPro Installed Technical Requirements Checklist This document contains a checklist of items that are required prior to the PMAPS WebPro installation. Please complete this form and return a copy

More information

Uploading Files to CMS

Uploading Files to CMS Uploading Files to CMS Li Gardiner Room 1111 East Building 212-772- 4855 DesignSS@hunter.cuny.edu 1 Uploading a file (such as a PDF or an image) to your CMS Web site for the first time Log into the Hunter

More information

LearnMate Standalone Content. User Manual

LearnMate Standalone Content. User Manual LearnMate Standalone Content User Manual Catalog # 200018 Rev. C July 2005 Copyright 2005 intelitek Inc. LEARNMATE V3 STANDALONE USER MANUAL Catalog # 200018 Rev. C July 2005 Every effort has been made

More information

Quick Start Guide AUTODOC HSE

Quick Start Guide AUTODOC HSE AUTODOC HSE Quick Start Guide Table of Contents Step 1: What do you want to do?... 4 AutoDoc HSE s core functions... 5 Choose your outcome... 5 What next?... 6 Step 2: Installing AutoDoc HSE... 7 Before

More information

Rev. 02 Nov User Guide: Opening & Downloading Documents in Skandocs

Rev. 02 Nov User Guide: Opening & Downloading Documents in Skandocs Rev. 02 Nov. 2008 User Guide: Opening & Downloading Documents in Skandocs Introduction Skandocs (Skanska Document Online Collaboration System) is a purpose-built document management & control system built

More information

WebAD IISADMPWD. Replacement Tool v2.5. Installation and Configuration Guide. Instructions to Install and Configure IISADMPWD

WebAD IISADMPWD. Replacement Tool v2.5. Installation and Configuration Guide. Instructions to Install and Configure IISADMPWD WebAD IISADMPWD Replacement Tool v2.5 Installation and Configuration Guide Instructions to Install and Configure IISADMPWD Replacement Tool v2.5 Web Active Directory, LLC Contents Overview... 2 Solution

More information

SilkTest Installation Guide

SilkTest Installation Guide SilkTest 2010 Installation Guide Borland Software Corporation 4 Hutton Centre Dr., Suite 900 Santa Ana, CA 92707 Copyright 2009-2010 Micro Focus (IP) Limited. All Rights Reserved. SilkTest contains derivative

More information

WA1685 WebSphere Portal v6.1 Programming. Classroom Setup Guide. Web Age Solutions Inc. Web Age Solutions Inc

WA1685 WebSphere Portal v6.1 Programming. Classroom Setup Guide. Web Age Solutions Inc. Web Age Solutions Inc WA1685 WebSphere Portal v6.1 Programming Classroom Setup Guide Web Age Solutions Inc. Web Age Solutions Inc. 2011 1 Table of Contents Part 1 - Minimum Hardware Requirements...3 Part 2 - Minimum Software

More information

CTC BIM Suites Installation and Configuration Guide

CTC BIM Suites Installation and Configuration Guide CTC BIM Suites Installation and Configuration Guide Contents CTC Express Tools Overview...5 General Security Requirements Summary...5 Revit Workstations...5 Network Floating License Servers...6 Upgrading

More information

SAP Process Mining by Celonis. Installation Guide. Version 1.4 Corresponding Software Version: 4.2

SAP Process Mining by Celonis. Installation Guide. Version 1.4 Corresponding Software Version: 4.2 SAP Process Mining by Celonis Installation Guide Version 1.4 Corresponding Software Version: 4.2 This document is copyright of the Celonis SE. Distribution or reproduction are only permitted by written

More information

EntraPass (W10) Installation Guide Kantech-OnBoard systems

EntraPass (W10) Installation Guide Kantech-OnBoard systems Overview Purpose ExacqVision recorders now include Kantech EntraPass Corporate Edition software. The purpose of this document is to guide the technician or installer through the process of installing and

More information

Exporting Files from Succeed for use in Canvas Modules

Exporting Files from Succeed for use in Canvas Modules Canvas Support This guide will inform you how to export individual files or groups of files from Succeed modules and import them into Canvas. This technique should only be used for items to be repurposed.

More information

Document Management System User Guide

Document Management System User Guide Document Management System User Guide Rev. Feb. 21, 2013 TABLE OF CONTENTS LASERFICHE WEBLINK GUIDE... 1 INTRODUCTION... 3 CONNECTING TO THE WEBSITE... 3 WEBLINK LOG IN... 3 BROWSING... 4 SEARCHING...

More information

Abila MIP. Human Resource Management Installation Guide

Abila MIP. Human Resource Management Installation Guide Human Resource Management Installation Guide This is a publication of Abila, Inc. Version 2017.2 2017 Abila, Inc. and its affiliated entities. All rights reserved. Abila, the Abila logos, and the Abila

More information

User Guide. ThinkFree Office Server Edition June 13, Copyright(c) 2011 Hancom Inc. All rights reserved

User Guide. ThinkFree Office Server Edition June 13, Copyright(c) 2011 Hancom Inc. All rights reserved User Guide ThinkFree Office Server Edition June 13, 2011 Document Revision History This table describes the changes to ThinkFree Office Server Edition User Guide Date Note 2008-06-30 ThinkFree Office Server

More information

QClaims Launch Instructions for Windows

QClaims Launch Instructions for Windows QClaims Launch Instructions for Windows NOTE: We strongly suggest using Internet Explorer (version 11 or later) to launch QClaims Step 1: Download and Install Java from www.java.com. IMPORTANT NOTE: Please

More information

Action Plan Instructions

Action Plan Instructions Action Plan Instructions Contents For PC/laptop users 2 For Android users (phone or tablet) 4 For iphone or ipad users 6 2018 Wyndham Hotel Group 1 For PC/laptop users To properly utilize and record your

More information

CA Productivity Accelerator v Single User Installation

CA Productivity Accelerator v Single User Installation CA Productivity Accelerator v12.1.0.3 Single User Installation Congratulations on your purchase of the CA Productivity Accelerator (CA PA). This document will provide you with the information you will

More information

Index to SONISWEB Manuals

Index to SONISWEB Manuals Scholastic ONline Information System for the Web Index to SONISWEB Manuals 2003-2006 RJM Systems all rights reserved Every SONISWEB text has a table of contents. (Well, not every text; very short texts

More information

Welcome to Kmax Installing Kmax

Welcome to Kmax Installing Kmax Welcome to Kmax 10.2 Kmax is a cross-platform, Java-based application that will run on Windows, Linux, or Mac OS X. This distribution of Kmax replaces all previous releases except for Kmax on Mac OS X

More information

CMS Shado 9. Quick Start Guide

CMS Shado 9. Quick Start Guide CMS Shado 9 Quick Start Guide 1 Logging In 3 Shado Central Interface 4 Sections, Pages and Containers 7 Sections 7 Pages 7 Containers 7 The Site Tree 8 Edit Content on a Page 9 Editing Container Content

More information

CA Productivity Accelerator v Single User Installation

CA Productivity Accelerator v Single User Installation v12.1.0.2 Single User Installation Congratulations on your purchase of the (CA PA). This document will provide you with the information you will need to install the Single User Editor (or Developer) and

More information

1 Gnuplot. Installing and running. Plot

1 Gnuplot. Installing and running. Plot 1 Gnuplot gnuplot is a simple and popular scripting language and program for producing plots. You may use any software you want for producing the plots in your report. Here, we introduce gnuplot because

More information

VMware Plugin Installation for Windows 8.1 or newer

VMware Plugin Installation for Windows 8.1 or newer VMware Plugin Installation for Windows 8.1 or newer Table of Contents Access vlab and Install Plugin... 1 Firefox Settings... 5 Internet Explorer 11 Settings... 6 Installing Firefox ESR v52... 8 Access

More information

ECM583 Special Topics in Computer Systems

ECM583 Special Topics in Computer Systems ECM583 Special Topics in Computer Systems Lab 2. ARM Cross-Compilation using Eclipse In this lab, we are going to set up an environment to cross-compile ARM code (C and/or Assembly code) under Eclipse.

More information

Qlikview and TFS integration

Qlikview and TFS integration Qlikview and TFS integration The set of softwares and applications required to be installed on the system for Qlikview and TFS integration are as follows: 1. Qlikview 2. Team Foundation Server 2015 Update

More information

Revised: March 8 th, 2017 for Firefox 52.0

Revised: March 8 th, 2017 for Firefox 52.0 Configuring Mozilla Firefox for Spectrum v14 Spectrum v14 runs in a browser window. As a result, there are a number of browser settings that impact how Spectrum will function. This document covers the

More information

Apache Tomcat Installation guide step by step on windows

Apache Tomcat Installation guide step by step on windows 2012 Apache Tomcat Installation guide step by step on windows Apache tomcat installation guide step by step on windows. OraPedia Apache 12/14/2012 1 Tomcat installation guide Tomcat 6 installation guide

More information

Partner Integration Portal (PIP) Installation Guide

Partner Integration Portal (PIP) Installation Guide Partner Integration Portal (PIP) Installation Guide Last Update: 12/3/13 Digital Gateway, Inc. All rights reserved Page 1 TABLE OF CONTENTS INSTALLING PARTNER INTEGRATION PORTAL (PIP)... 3 DOWNLOADING

More information

Recommended Browser Settings

Recommended Browser Settings Recommended Browser Settings Internet Explorer Settings (PC) Mozilla Firefox Settings (PC) Mozilla Firefox Settings (Mac) Safari Settings (Mac) Chrome Settings (PC) Infinite Campus recommends modifying

More information

Silk Test 15.0 Silk4NET Web Edition. Installation Guide

Silk Test 15.0 Silk4NET Web Edition. Installation Guide Silk Test 15.0 Silk4NET Web Edition Installation Guide Micro Focus 575 Anton Blvd., Suite 510 Costa Mesa, CA 92626 Copyright Micro Focus 2014. All rights reserved. Portions Copyright 1992-2009 Borland

More information

Installing Eclipse (C++/Java)

Installing Eclipse (C++/Java) Installing Eclipse (C++/Java) The 2017 suite of text-based languages, Java and C++, utilize the current version of Eclipse as a development environment. The FRC specific tools for the chosen language are

More information

WinDocks 1.0 Administration Guide

WinDocks 1.0 Administration Guide WinDocks 1.0 Administration Guide This document is provided to support the Administration of WinDocks hosts. Please refer to the WinDocks User Guide for details on WinDocks client support. WinDocks is

More information

Sentinel Hardware Keys SDK Version for Windows Release Notes

Sentinel Hardware Keys SDK Version for Windows Release Notes Sentinel Hardware Keys SDK Version 1.2.0 for Windows Release Notes Product Overview This document contains an overview of the product, new features, and installation of the Sentinel TM Keys SDK release

More information

Ministry of Education EFIS User Set Up Guide Version 1.9

Ministry of Education EFIS User Set Up Guide Version 1.9 Ministry of Education EFIS 2.0 - User Set Up Guide Version 1.9 August 22, 2016 1 Table of Contents 1 Table of Contents... 2 2 Document History... 3 3 Description and System Requirements... 4 3.1 Description...

More information