Limnor Studio User s Guide

Size: px
Start display at page:

Download "Limnor Studio User s Guide"

Transcription

1 L i m n o r S t u d i o U s e r G u i d e - S c r e e n s a v e r F i l e s 1 Limnor Studio User s Guide Screensaver Contents 1 Create Screensaver Project Distribute Screensaver Test Before Distribute Develop Screensaver Create Screensaver Configuration Create Configurable Values Handle Screensaver Configuration Event Test Configuration Feedback All rights reserved by Longflow Enterprises Ltd Page 1

2 L i m n o r S t u d i o U s e r G u i d e - S c r e e n s a v e r F i l e s 2 1 Create Screensaver Project Create a new project: Select Screensaver Application and give it a name: The Screensaver project initially contains two objects. One is the screensaver application: All rights reserved by Longflow Enterprises Ltd Page 2

3 L i m n o r S t u d i o U s e r G u i d e - S c r e e n s a v e r F i l e s 3 The other object is a background form. It is a empty form with black background: Test this application: The screen becomes black. Move mouse pointer. The application closes. 2 Distribute Screensaver Add a new project to the solution: All rights reserved by Longflow Enterprises Ltd Page 3

4 L i m n o r S t u d i o U s e r G u i d e - S c r e e n s a v e r F i l e s 4 Select Setup and give a project name: Enter the product name and company name for the setup project: All rights reserved by Longflow Enterprises Ltd Page 4

5 L i m n o r S t u d i o U s e r G u i d e - S c r e e n s a v e r F i l e s 5 Check Project Build Order to make sure that the setup project is the last one to build: Let the setup project depends on the screensaver project so that the screensaver project will be built first and the setup project be built last: All rights reserved by Longflow Enterprises Ltd Page 5

6 L i m n o r S t u d i o U s e r G u i d e - S c r e e n s a v e r F i l e s 6 Build the solution: An installer for the screensaver is created: This msi file can be distributed to users. Run this msi on the users computers to install the screensaver. All rights reserved by Longflow Enterprises Ltd Page 6

7 L i m n o r S t u d i o U s e r G u i d e - S c r e e n s a v e r F i l e s 7 Once installed, the screensaver can be selected: All rights reserved by Longflow Enterprises Ltd Page 7

8 L i m n o r S t u d i o U s e r G u i d e - S c r e e n s a v e r F i l e s 8 3 Test Before Distribute Once the setup project is added to the solution, we need to turn off the compiling for it so that we may test the screensaver during development: All rights reserved by Longflow Enterprises Ltd Page 8

9 L i m n o r S t u d i o U s e r G u i d e - S c r e e n s a v e r F i l e s 9 Uncheck the Build of the setup project: Now we may start debugging the screensaver: When it is ready to distribute the screensaver, check the Build of the setup project: All rights reserved by Longflow Enterprises Ltd Page 9

10 L i m n o r S t u d i o U s e r G u i d e - S c r e e n s a v e r F i l e s 10 And build the solution to create the msi file 4 Develop Screensaver We have created a blank screensaver. You may use your innovation and imagination to create various screensaver displays. Note that this part of programming is not specific to screensavers. For example, make drawings, use Media Player to play videos, or use Flash Player to play flashes, etc. See How to in As an example, we create a moving text. Add a text to the screensaver background form: All rights reserved by Longflow Enterprises Ltd Page 10

11 L i m n o r S t u d i o U s e r G u i d e - S c r e e n s a v e r F i l e s 11 Set TextContent, Color and TextFont properties: Set ContinuousDrawingStarted to True ContinuousDrawingInterval and to 100 so that every 0.1 second the form repaints itself. All rights reserved by Longflow Enterprises Ltd Page 11

12 L i m n o r S t u d i o U s e r G u i d e - S c r e e n s a v e r F i l e s 12 Every time before painting of the form starts the method OnPrepareNextPaint is executed. We may override this method to make changes to the drawings so that every time the form paints differently, achieving an effect of animation. To override OnPrepareNextPaint, find it under Methods: Right-click it and choose Override : The override is created. Right-click and choose Edit method : All rights reserved by Longflow Enterprises Ltd Page 12

13 L i m n o r S t u d i o U s e r G u i d e - S c r e e n s a v e r F i l e s 13 By default an overridden method has an action to call the base version of the method. In our case we may remove this default action: We may add an action to move the text. For example, change its Left property. Right-click the text icon, choose Create Set Property Action All rights reserved by Longflow Enterprises Ltd Page 13

14 L i m n o r S t u d i o U s e r G u i d e - S c r e e n s a v e r F i l e s 14 Choose Math Expression: Press + Type 10 All rights reserved by Longflow Enterprises Ltd Page 14

15 L i m n o r S t u d i o U s e r G u i d e - S c r e e n s a v e r F i l e s 15 Select the first element and click the Property icon: Double-click the Property element: Select the Left property of the text: All rights reserved by Longflow Enterprises Ltd Page 15

16 L i m n o r S t u d i o U s e r G u i d e - S c r e e n s a v e r F i l e s 16 This math expression is to add 10 pixels to the Left position of the text: All rights reserved by Longflow Enterprises Ltd Page 16

17 L i m n o r S t u d i o U s e r G u i d e - S c r e e n s a v e r F i l e s 17 This action will move the text to right by 10 pixels: The action appears in the Action Pane of the Method Editor: All rights reserved by Longflow Enterprises Ltd Page 17

18 L i m n o r S t u d i o U s e r G u i d e - S c r e e n s a v e r F i l e s 18 We want to move the text to the left if the text moves over the edge of the right. Right-click the text and choose Create Set Property Action and choose Left again: Choose Math Expression: Click the Property icon: Double-click the element: All rights reserved by Longflow Enterprises Ltd Page 18

19 L i m n o r S t u d i o U s e r G u i d e - S c r e e n s a v e r F i l e s 19 Choose the text width: Make it negative: All rights reserved by Longflow Enterprises Ltd Page 19

20 L i m n o r S t u d i o U s e r G u i d e - S c r e e n s a v e r F i l e s 20 Set its ActionCondition so that this action only executes when the text is over the right edge: Use Select the first element and use the Property icon: All rights reserved by Longflow Enterprises Ltd Page 20

21 L i m n o r S t u d i o U s e r G u i d e - S c r e e n s a v e r F i l e s 21 Double-click the first element: Select the Left property of the text: Select the second element. Use Property: All rights reserved by Longflow Enterprises Ltd Page 21

22 L i m n o r S t u d i o U s e r G u i d e - S c r e e n s a v e r F i l e s 22 Double-click the element: Select the Width property of the form: All rights reserved by Longflow Enterprises Ltd Page 22

23 L i m n o r S t u d i o U s e r G u i d e - S c r e e n s a v e r F i l e s 23 Link the two actions: We are done creating this method. For more details on using Method Editor, see Users Guide We may test it now: All rights reserved by Longflow Enterprises Ltd Page 23

24 L i m n o r S t u d i o U s e r G u i d e - S c r e e n s a v e r F i l e s 24 5 Create Screensaver Configuration When the user click Settings button the ScreenSaverConfiguration event occurs: We may handle this event to let the user to modify screensaver configurations. In our text moving example, every time we move the text by 10 pixels and we repaint the screen every 100 milliseconds. We may let the user to modify these two values to modify the text moving effects. 5.1 Create Configurable Values ApplicationConfiguration component can be used to create configurable values. All rights reserved by Longflow Enterprises Ltd Page 24

25 L i m n o r S t u d i o U s e r G u i d e - S c r e e n s a v e r F i l e s 25 Set its Configurations property to create configurable values: Create a new category: Create a new configurable value under the category: All rights reserved by Longflow Enterprises Ltd Page 25

26 L i m n o r S t u d i o U s e r G u i d e - S c r e e n s a v e r F i l e s 26 Modify the name of the value: Change the type of the value: Set its default value: All rights reserved by Longflow Enterprises Ltd Page 26

27 L i m n o r S t u d i o U s e r G u i d e - S c r e e n s a v e r F i l e s 27 Create another value: Create an action to use the configurable value PaintInterval: Select Property for value: All rights reserved by Longflow Enterprises Ltd Page 27

28 L i m n o r S t u d i o U s e r G u i d e - S c r e e n s a v e r F i l e s 28 Select PaintInterval: All rights reserved by Longflow Enterprises Ltd Page 28

29 L i m n o r S t u d i o U s e r G u i d e - S c r e e n s a v e r F i l e s 29 Assign this action the Load event of the form: All rights reserved by Longflow Enterprises Ltd Page 29

30 L i m n o r S t u d i o U s e r G u i d e - S c r e e n s a v e r F i l e s 30 The action appears under the event: Modify the method OnPrepareNextPaint to modify the action inside it: The first action moves the text by 10 pixels. We replace the value 10 to the configurable value MovePixels. Select Math Expression for the value: All rights reserved by Longflow Enterprises Ltd Page 30

31 L i m n o r S t u d i o U s e r G u i d e - S c r e e n s a v e r F i l e s 31 Select value 10, click Property icon: Double-click the property element: Select the configurable value MovePixels All rights reserved by Longflow Enterprises Ltd Page 31

32 L i m n o r S t u d i o U s e r G u i d e - S c r e e n s a v e r F i l e s 32 This is the new math expression: 5.2 Handle Screensaver Configuration Event We need to handle event ScreenSaverConfiguration of the Screensaver application to let the user modify configurations. In our example, because we use ApplicationConfiguration component to create All rights reserved by Longflow Enterprises Ltd Page 32

33 L i m n o r S t u d i o U s e r G u i d e - S c r e e n s a v e r F i l e s 33 configurable values, we add an ApplicationConfiguration component to the Screensaver Application class: You may create an UI of your desire to show all the configurations and let the user to modify the values. For simplicity of this sample we create a SetValues action: All rights reserved by Longflow Enterprises Ltd Page 33

34 L i m n o r S t u d i o U s e r G u i d e - S c r e e n s a v e r F i l e s 34 Assign this action to ScreensaverConfiguration event: Select the action: The action appears under the event: All rights reserved by Longflow Enterprises Ltd Page 34

35 L i m n o r S t u d i o U s e r G u i d e - S c r e e n s a v e r F i l e s 35 We may compile the project 5.3 Test Configuration We may test the configuration by start the application with /c The configuration action is executed. It displays configurations. The value can be changed. Last reminder: before you do release build, do not forget to turn on the Build for the setup project. 6 Feedback Please send your feedback to support@limnor.com All rights reserved by Longflow Enterprises Ltd Page 35

C:\Dokumente und Einstellungen \All Users\Anwendungsdaten \Mathematica. C:\Dokumente und Einstellungen \albert.retey\anwendungsdaten \Mathematica

C:\Dokumente und Einstellungen \All Users\Anwendungsdaten \Mathematica. C:\Dokumente und Einstellungen \albert.retey\anwendungsdaten \Mathematica Installation SmartCAE`HeatTransmission` is delivered as either a Microsoft Windows Installer Package (SmartCAEHeatTransmission-1.0.msi) or a ZIP-File. If you have trouble installing the package, please

More information

MERGING (MERGE / MOSAIC) GEOSPATIAL DATA

MERGING (MERGE / MOSAIC) GEOSPATIAL DATA This help guide describes how to merge two or more feature classes (vector) or rasters into one single feature class or raster dataset. The Merge Tool The Merge Tool combines input features from input

More information

SuperCELL Data Programmer and ACTiSys IR Programmer User s Guide

SuperCELL Data Programmer and ACTiSys IR Programmer User s Guide SuperCELL Data Programmer and ACTiSys IR Programmer User s Guide This page is intentionally left blank. SuperCELL Data Programmer and ACTiSys IR Programmer User s Guide The ACTiSys IR Programmer and SuperCELL

More information

How to Make or Plot a Graph or Chart in Excel

How to Make or Plot a Graph or Chart in Excel This is a complete video tutorial on How to Make or Plot a Graph or Chart in Excel. To make complex chart like Gantt Chart, you have know the basic principles of making a chart. Though I have used Excel

More information

Designing a Quilt with GIMP 2011

Designing a Quilt with GIMP 2011 Planning your quilt and want to see what it will look like in the fabric you just got from your LQS? You don t need to purchase a super expensive program. Try this and the best part it s FREE!!! *** Please

More information

Winmostar tutorial LAMMPS Polymer modeling V X-Ability Co,. Ltd. 2017/7/6

Winmostar tutorial LAMMPS Polymer modeling V X-Ability Co,. Ltd. 2017/7/6 Winmostar tutorial LAMMPS Polymer modeling V7.021 X-Ability Co,. Ltd. question@winmostar.com 2017/7/6 Contents Configure I. Register a monomer II. Define a polymer III. Build a simulation cell IV. Execute

More information

Chem 1 Kinetics. Objectives. Concepts

Chem 1 Kinetics. Objectives. Concepts Chem 1 Kinetics Objectives 1. Learn some basic ideas in chemical kinetics. 2. Understand how the computer visualizations can be used to benefit the learning process. 3. Understand how the computer models

More information

Determining C-H Connectivity: ghmqc and ghmbc (VnmrJ-2.2D Version: For use with the new Software)

Determining C-H Connectivity: ghmqc and ghmbc (VnmrJ-2.2D Version: For use with the new Software) Determining C-H Connectivity: ghmqc and ghmbc (VnmrJ-2.2D Version: For use with the new Software) Heteronuclear Multiple Quantum Coherence (HMQC) and Heteronuclear Multiple Bond Coherence (HMBC) are 2-dimensional

More information

Molecular Modeling and Conformational Analysis with PC Spartan

Molecular Modeling and Conformational Analysis with PC Spartan Molecular Modeling and Conformational Analysis with PC Spartan Introduction Molecular modeling can be done in a variety of ways, from using simple hand-held models to doing sophisticated calculations on

More information

ST-Links. SpatialKit. Version 3.0.x. For ArcMap. ArcMap Extension for Directly Connecting to Spatial Databases. ST-Links Corporation.

ST-Links. SpatialKit. Version 3.0.x. For ArcMap. ArcMap Extension for Directly Connecting to Spatial Databases. ST-Links Corporation. ST-Links SpatialKit For ArcMap Version 3.0.x ArcMap Extension for Directly Connecting to Spatial Databases ST-Links Corporation www.st-links.com 2012 Contents Introduction... 3 Installation... 3 Database

More information

41. Sim Reactions Example

41. Sim Reactions Example HSC Chemistry 7.0 41-1(6) 41. Sim Reactions Example Figure 1: Sim Reactions Example, Run mode view after calculations. General This example contains instruction how to create a simple model. The example

More information

12. Petroleum Calculations

12. Petroleum Calculations 12. Petroleum Calculations Overview Calculations with the OLI Software can be used to characterize crude oils. Here is a quote from the OLI Tricks of the Trade manual (AQSim) Crude oils are complex groups

More information

Computational Chemistry Lab Module: Conformational Analysis of Alkanes

Computational Chemistry Lab Module: Conformational Analysis of Alkanes Introduction Computational Chemistry Lab Module: Conformational Analysis of Alkanes In this experiment, we will use CAChe software package to model the conformations of butane, 2-methylbutane, and substituted

More information

You w i ll f ol l ow these st eps : Before opening files, the S c e n e panel is active.

You w i ll f ol l ow these st eps : Before opening files, the S c e n e panel is active. You w i ll f ol l ow these st eps : A. O pen a n i m a g e s t a c k. B. Tr a c e t h e d e n d r i t e w i t h t h e user-guided m ode. C. D e t e c t t h e s p i n e s a u t o m a t i c a l l y. D. C

More information

OECD QSAR Toolbox v.3.3. Step-by-step example of how to categorize an inventory by mechanistic behaviour of the chemicals which it consists

OECD QSAR Toolbox v.3.3. Step-by-step example of how to categorize an inventory by mechanistic behaviour of the chemicals which it consists OECD QSAR Toolbox v.3.3 Step-by-step example of how to categorize an inventory by mechanistic behaviour of the chemicals which it consists Background Objectives Specific Aims Trend analysis The exercise

More information

OECD QSAR Toolbox v.3.0

OECD QSAR Toolbox v.3.0 OECD QSAR Toolbox v.3.0 Step-by-step example of how to categorize an inventory by mechanistic behaviour of the chemicals which it consists Background Objectives Specific Aims Trend analysis The exercise

More information

Winmostar tutorial LAMMPS Melting point V X-Ability Co,. Ltd. 2017/8/17

Winmostar tutorial LAMMPS Melting point V X-Ability Co,. Ltd. 2017/8/17 Winmostar tutorial LAMMPS Melting point V7.025 X-Ability Co,. Ltd. question@winmostar.com Contents Configure I. Build solid phase II. Equilibration of solid phase III. Equilibration of liquid phase IV.

More information

(THIS IS AN OPTIONAL BUT WORTHWHILE EXERCISE)

(THIS IS AN OPTIONAL BUT WORTHWHILE EXERCISE) PART 2: Analysis in ArcGIS (THIS IS AN OPTIONAL BUT WORTHWHILE EXERCISE) Step 1: Start ArcCatalog and open a geodatabase If you have a shortcut icon for ArcCatalog on your desktop, double-click it to start

More information

Dose-Response Analysis Report

Dose-Response Analysis Report Contents Introduction... 1 Step 1 - Treatment Selection... 2 Step 2 - Data Column Selection... 2 Step 3 - Chemical Selection... 2 Step 4 - Rate Verification... 3 Step 5 - Sample Verification... 4 Step

More information

Bloomsburg University Weather Viewer Quick Start Guide. Software Version 1.2 Date 4/7/2014

Bloomsburg University Weather Viewer Quick Start Guide. Software Version 1.2 Date 4/7/2014 Bloomsburg University Weather Viewer Quick Start Guide Software Version 1.2 Date 4/7/2014 Program Background / Objectives: The Bloomsburg Weather Viewer is a weather visualization program that is designed

More information

Description of the ED library Basic Atoms

Description of the ED library Basic Atoms Description of the ED library Basic Atoms Simulation Software / Description of the ED library BASIC ATOMS Enterprise Dynamics Copyright 2010 Incontrol Simulation Software B.V. All rights reserved Papendorpseweg

More information

McIDAS-V Tutorial Displaying Point Observations from ADDE Datasets updated July 2016 (software version 1.6)

McIDAS-V Tutorial Displaying Point Observations from ADDE Datasets updated July 2016 (software version 1.6) McIDAS-V Tutorial Displaying Point Observations from ADDE Datasets updated July 2016 (software version 1.6) McIDAS-V is a free, open source, visualization and data analysis software package that is the

More information

How to Perform a Site Based Plant Search

How to Perform a Site Based Plant Search PlantSelector Help Use PlantSelector to get detailed information and photos of plants by: Searching for plants that will grow well at your planting site. How do I do this? OR Searching for plants with

More information

Leaf Spring (Material, Contact, geometric nonlinearity)

Leaf Spring (Material, Contact, geometric nonlinearity) 00 Summary Summary Nonlinear Static Analysis - Unit: N, mm - Geometric model: Leaf Spring.x_t Leaf Spring (Material, Contact, geometric nonlinearity) Nonlinear Material configuration - Stress - Strain

More information

OECD QSAR Toolbox v.4.1. Tutorial illustrating new options for grouping with metabolism

OECD QSAR Toolbox v.4.1. Tutorial illustrating new options for grouping with metabolism OECD QSAR Toolbox v.4.1 Tutorial illustrating new options for grouping with metabolism Outlook Background Objectives Specific Aims The exercise Workflow 2 Background Grouping with metabolism is a procedure

More information

Winmostar tutorial LAMMPS Polymer Annealing V X-Ability Co., Ltd. 2018/01/15

Winmostar tutorial LAMMPS Polymer Annealing V X-Ability Co., Ltd. 2018/01/15 Winmostar tutorial LAMMPS Polymer Annealing V8.007 X-Ability Co., Ltd. question@winmostar.com 2018/01/15 Summary In this tutorial we will calculate glass transition temperature from the cooling process

More information

PolarSync Quick Start

PolarSync Quick Start PolarSync Quick Start Installation and Use In this Quick Start guide, we will cover installing the PolarSync program and using it as a teacher, student or guest. I. Installing PolarSync... 1 II. Teacher

More information

Math 261 Sampling Distributions Lab Spring 2009

Math 261 Sampling Distributions Lab Spring 2009 Math 261 Sampling Distributions Lab Spring 2009 Name: Purpose After completing this lab, you should be able to distinguish between the distribution of the population, distribution of the sample, and the

More information

Lightcloud Application

Lightcloud Application Controlling Your Lightcloud System Lightcloud Application Lightcloud Application Navigating the Application Devices Device Settings Organize Control Energy Scenes Schedules Demand Response Power Up State

More information

2010 Autodesk, Inc. All rights reserved. NOT FOR DISTRIBUTION.

2010 Autodesk, Inc. All rights reserved. NOT FOR DISTRIBUTION. Wastewater Profiles 2010 Autodesk, Inc. All rights reserved. NOT FOR DISTRIBUTION. The contents of this guide were created for Autodesk Topobase 2011. The contents of this guide are not intended for other

More information

BOUNDARY MAP USER GUIDE

BOUNDARY MAP USER GUIDE BOUNDARY MAP USER GUIDE Get Exploring. Boundaries. The Northern Ontario Boundary Map provides users with the ability to explore the many community, administrative and service provider boundaries in the

More information

TENANT INSTRUCTOR REFERENCE GUIDE

TENANT INSTRUCTOR REFERENCE GUIDE TENANT INSTRUCTOR REFERENCE GUIDE Contents About This Document... 3 Audience... 3 Overview of Instructor-Led Labs... 4 Launching the Instructor Console... 4 Using the Instructor Console s Options... 5

More information

ICM-Chemist-Pro How-To Guide. Version 3.6-1h Last Updated 12/29/2009

ICM-Chemist-Pro How-To Guide. Version 3.6-1h Last Updated 12/29/2009 ICM-Chemist-Pro How-To Guide Version 3.6-1h Last Updated 12/29/2009 ICM-Chemist-Pro ICM 3D LIGAND EDITOR: SETUP 1. Read in a ligand molecule or PDB file. How to setup the ligand in the ICM 3D Ligand Editor.

More information

Lesson Plan 2 - Middle and High School Land Use and Land Cover Introduction. Understanding Land Use and Land Cover using Google Earth

Lesson Plan 2 - Middle and High School Land Use and Land Cover Introduction. Understanding Land Use and Land Cover using Google Earth Understanding Land Use and Land Cover using Google Earth Image an image is a representation of reality. It can be a sketch, a painting, a photograph, or some other graphic representation such as satellite

More information

SciFinder Scholar Guide to Getting Started

SciFinder Scholar Guide to Getting Started SciFinder Scholar Guide to Getting Started What is SciFinder Scholar? SciFinder Scholar is the online version of Chemical Abstracts, covering chemistry publications worldwide from 1907 to the present.

More information

Table of content. Understanding workflow automation - Making the right choice Creating a workflow...05

Table of content. Understanding workflow automation - Making the right choice Creating a workflow...05 Marketers need to categorize their audience to maximize their r e a c h. Z o h o C a m p a i g n s a u t o m a t e s r e c i p i e n t c l a s s i fi c a t i o n a n d action performance to free up marketers

More information

Athena Visual Software, Inc. 1

Athena Visual Software, Inc. 1 Athena Visual Studio Visual Kinetics Tutorial VisualKinetics is an integrated tool within the Athena Visual Studio software environment, which allows scientists and engineers to simulate the dynamic behavior

More information

Account Setup. STEP 1: Create Enhanced View Account

Account Setup. STEP 1: Create Enhanced View Account SpyMeSatGov Access Guide - Android DigitalGlobe Imagery Enhanced View How to setup, search and download imagery from DigitalGlobe utilizing NGA s Enhanced View license Account Setup SpyMeSatGov uses a

More information

Yes, the Library will be accessible via the new PULSE and the existing desktop version of PULSE.

Yes, the Library will be accessible via the new PULSE and the existing desktop version of PULSE. F R E Q U E N T L Y A S K E D Q U E S T I O N S THE LIBRARY GENERAL W H A T I S T H E L I B R A R Y? The Library is the new, shorter, simpler name for the Business Development (Biz Dev) Library. It s your

More information

MotiveWave Hurst Cycles Guide Version: 1.0

MotiveWave Hurst Cycles Guide Version: 1.0 Version: 1.0 2018 MotiveWave Software Version 1.0 2018 MotiveWave Software Page 1 of 18 Acknowledgements Special thanks to Michael Richards from Time Price Analysis (https://www.timepriceanalysis.com)

More information

AAG TPoint Mapper (Version 1.40)

AAG TPoint Mapper (Version 1.40) AAG TPoint Mapper (Version 1.40) AAG_TPointMapper works together with Maxim DL, Pinpoint, TheSky6 and TPoint to automate the process of building a TPoint model for a GOTO telescope connected to TheSky6.

More information

Quick Reference Manual. Ver. 1.3

Quick Reference Manual. Ver. 1.3 Quick Reference Manual Ver. 1.3 1 EXASITE Voyage EXSITE Voyage is a web-based communication tool designed to support the following users; Ship operators who utilize Optimum Ship Routing (OSR) service in

More information

NINE CHOICE SERIAL REACTION TIME TASK

NINE CHOICE SERIAL REACTION TIME TASK instrumentation and software for research NINE CHOICE SERIAL REACTION TIME TASK MED-STATE NOTATION PROCEDURE SOF-700RA-8 USER S MANUAL DOC-025 Rev. 1.3 Copyright 2013 All Rights Reserved MED Associates

More information

SciFinder Scholar Guide to Getting Started

SciFinder Scholar Guide to Getting Started SciFinder Scholar Guide to Getting Started What is SciFinder Scholar? SciFinder Scholar is the online version of Chemical Abstracts, covering chemistry publications worldwide from 1907 to the present.

More information

Esterification in a PFR with Aspen Plus V8.0

Esterification in a PFR with Aspen Plus V8.0 Esterification in a PFR with Aspen Plus V8.0 1. Lesson Objectives Use Aspen Plus to determine whether a given reaction is technically feasible using a plug flow reactor. 2. Prerequisites Aspen Plus V8.0

More information

Automatic Watershed Delineation using ArcSWAT/Arc GIS

Automatic Watershed Delineation using ArcSWAT/Arc GIS Automatic Watershed Delineation using ArcSWAT/Arc GIS By: - Endager G. and Yalelet.F 1. Watershed Delineation This tool allows the user to delineate sub watersheds based on an automatic procedure using

More information

Spin transport in Magnetic Tunnel Junctions

Spin transport in Magnetic Tunnel Junctions Spin transport in Magnetic Tunnel Junctions Tutorial on spin transport in Fe-MgO-Fe Version 2015.2 Spin transport in Magnetic Tunnel Junctions: Tutorial on spin transport in Fe-MgO-Fe Version 2015.2 Copyright

More information

Multiphysics Modeling

Multiphysics Modeling 11 Multiphysics Modeling This chapter covers the use of FEMLAB for multiphysics modeling and coupled-field analyses. It first describes the various ways of building multiphysics models. Then a step-by-step

More information

Geodatabase Best Practices. Dave Crawford Erik Hoel

Geodatabase Best Practices. Dave Crawford Erik Hoel Geodatabase Best Practices Dave Crawford Erik Hoel Geodatabase best practices - outline Geodatabase creation Data ownership Data model Data configuration Geodatabase behaviors Data integrity and validation

More information

Geodatabase: Best Practices. Robert LeClair, Senior Instructor

Geodatabase: Best Practices. Robert LeClair, Senior Instructor Geodatabase: Best Practices Robert LeClair, Senior Instructor Agenda Geodatabase Creation Data Ownership Data Model Data Configuration Geodatabase Behaviors Data Validation Extending Performance Geodatabase

More information

MAGNETITE OXIDATION EXAMPLE

MAGNETITE OXIDATION EXAMPLE HSC Chemistry 7.0 1 MAGNETITE OXIDATION EXAMPLE Pelletized magnetite (Fe 3 O 4 ) ore may be oxidized to hematite (Fe 2 O 3 ) in shaft furnace. Typical magnetite content in ore is some 95%. Oxidation is

More information

Map My Property User Guide

Map My Property User Guide Map My Property User Guide Map My Property Table of Contents About Map My Property... 2 Accessing Map My Property... 2 Links... 3 Navigating the Map... 3 Navigating to a Specific Location... 3 Zooming

More information

Ramberg-Osgood Convertor. User Manual

Ramberg-Osgood Convertor. User Manual Ramberg-Osgood Convertor User Manual For Version: 1.0.5 Copyright 2010-2016 OPIMsoft Technology Co., Ltd. All Rights Reserved. INDEX 1 FUNCTION... 1 2 INSTALLATION... 4 3 HOW TO USE... 5 4 THEORY INSTRUCTION...

More information

ON SITE SYSTEMS Chemical Safety Assistant

ON SITE SYSTEMS Chemical Safety Assistant ON SITE SYSTEMS Chemical Safety Assistant CS ASSISTANT WEB USERS MANUAL On Site Systems 23 N. Gore Ave. Suite 200 St. Louis, MO 63119 Phone 314-963-9934 Fax 314-963-9281 Table of Contents INTRODUCTION

More information

Double Star Observations

Double Star Observations Double Star Observations Canopus now includes enhanced features for measurnig double stars. This includes easier setting of the reference position (the primary star) as well as recording the observations

More information

Space Objects. Section. When you finish this section, you should understand the following:

Space Objects. Section. When you finish this section, you should understand the following: GOLDMC02_132283433X 8/24/06 2:21 PM Page 97 Section 2 Space Objects When you finish this section, you should understand the following: How to create a 2D Space Object and label it with a Space Tag. How

More information

Planning Softproviding Meat User Documentation

Planning Softproviding Meat User Documentation Great ideas are always simple Softproviding simply makes them happen. Planning Softproviding Meat User Documentation Version: 1.00 Date: 24 August 2017 Release: v5.50 Softproviding AG Riehenring 175 CH-4058

More information

ECE 220 Laboratory 4 Volt Meter, Comparators, and Timer

ECE 220 Laboratory 4 Volt Meter, Comparators, and Timer ECE 220 Laboratory 4 Volt Meter, Comparators, and Timer Michael W. Marcellin Please follow all rules, procedures and report requirements as described at the beginning of the document entitled ECE 220 Laboratory

More information

Newton's 2 nd Law. . Your end results should only be interms of m

Newton's 2 nd Law. . Your end results should only be interms of m Newton's nd Law Introduction: In today's lab you will demonstrate the validity of Newton's Laws in predicting the motion of a simple mechanical system. The system that you will investigate consists of

More information

ArcGIS 9 ArcGIS StreetMap Tutorial

ArcGIS 9 ArcGIS StreetMap Tutorial ArcGIS 9 ArcGIS StreetMap Tutorial Copyright 2001 2008 ESRI All Rights Reserved. Printed in the United States of America. The information contained in this document is the exclusive property of ESRI. This

More information

User's Guide. DISTO online. Leica Geosystems

User's Guide. DISTO online. Leica Geosystems User's Guide DISTO online Leica Geosystems Copyright 2001 by PMS Photo Mess Systeme AG. All rights reserved. This manual describes the versions 2.x of the program DISTO online. PMS PHOTO-MESS-SYSTEME AG

More information

OECD QSAR Toolbox v.3.4. Step-by-step example of how to build and evaluate a category based on mechanism of action with protein and DNA binding

OECD QSAR Toolbox v.3.4. Step-by-step example of how to build and evaluate a category based on mechanism of action with protein and DNA binding OECD QSAR Toolbox v.3.4 Step-by-step example of how to build and evaluate a category based on mechanism of action with protein and DNA binding Outlook Background Objectives Specific Aims The exercise Workflow

More information

OECD QSAR Toolbox v.3.3. Step-by-step example of how to build and evaluate a category based on mechanism of action with protein and DNA binding

OECD QSAR Toolbox v.3.3. Step-by-step example of how to build and evaluate a category based on mechanism of action with protein and DNA binding OECD QSAR Toolbox v.3.3 Step-by-step example of how to build and evaluate a category based on mechanism of action with protein and DNA binding Outlook Background Objectives Specific Aims The exercise Workflow

More information

Splatalogue Quickstart Guide

Splatalogue Quickstart Guide Splatalogue Quickstart Guide Anthony J. Remijan NRAO STATUS: v2.1 PURPOSE: The purpose of this document is to provide a brief overview of the functionality of the Splatalogue homepage available at www.splatalogue.net.

More information

Dock Ligands from a 2D Molecule Sketch

Dock Ligands from a 2D Molecule Sketch Dock Ligands from a 2D Molecule Sketch March 31, 2016 Sample to Insight CLC bio, a QIAGEN Company Silkeborgvej 2 Prismet 8000 Aarhus C Denmark Telephone: +45 70 22 32 44 www.clcbio.com support-clcbio@qiagen.com

More information

The data for this lab comes from McDonald Forest. We will be working with spatial data representing the forest boundary, streams, roads, and stands.

The data for this lab comes from McDonald Forest. We will be working with spatial data representing the forest boundary, streams, roads, and stands. GIS LAB 6 Using the Projection Utility. Converting Data to Oregon s Approved Lambert Projection. Determining Stand Size, Stand Types, Road Length, and Stream Length. This lab will ask you to work with

More information

The OptiSage module. Use the OptiSage module for the assessment of Gibbs energy data. Table of contents

The OptiSage module. Use the OptiSage module for the assessment of Gibbs energy data. Table of contents The module Use the module for the assessment of Gibbs energy data. Various types of experimental data can be utilized in order to generate optimized parameters for the Gibbs energies of stoichiometric

More information

Preparing Spatial Data

Preparing Spatial Data 13 CHAPTER 2 Preparing Spatial Data Assessing Your Spatial Data Needs 13 Assessing Your Attribute Data 13 Determining Your Spatial Data Requirements 14 Locating a Source of Spatial Data 14 Performing Common

More information

Grid to LandGrid Volumetrics Workflow

Grid to LandGrid Volumetrics Workflow Grid to LandGrid Volumetrics Workflow Petra User Group Session Series Armin Schafer Technical Advisor Petra/Kingdom/GeoSyn/LogArc Encana Amphitheatre Nov 22, 2011 noon 1 pm PURPOSE: to demonstrate the

More information

Diffusion Tensor Imaging tutorial

Diffusion Tensor Imaging tutorial NA-MIC http://na-mic.org Diffusion Tensor Imaging tutorial Sonia Pujol, PhD Surgical Planning Laboratory Harvard University DTI tutorial This tutorial is an introduction to the advanced Diffusion MR capabilities

More information

Esterification in CSTRs in Series with Aspen Plus V8.0

Esterification in CSTRs in Series with Aspen Plus V8.0 Esterification in CSTRs in Series with Aspen Plus V8.0 1. Lesson Objectives Use Aspen Plus to determine whether a given reaction is technically feasible using three continuous stirred tank reactors in

More information

Quality Measures Green Light Report Online Management Tool. Self Guided Tutorial

Quality Measures Green Light Report Online Management Tool. Self Guided Tutorial Quality Measures Green Light Report Online Management Tool Self Guided Tutorial 1 Tutorial Contents Overview Access the QM Green Light Report Review the QM Green Light Report Tips for Success Contact PointRight

More information

Esri UC2013. Technical Workshop.

Esri UC2013. Technical Workshop. Esri International User Conference San Diego, California Technical Workshops July 9, 2013 CAD: Introduction to using CAD Data in ArcGIS Jeff Reinhart & Phil Sanchez Agenda Overview of ArcGIS CAD Support

More information

The Phase Change Lab: Freezing and Melting of Water

The Phase Change Lab: Freezing and Melting of Water The Phase Change Lab: Freezing and Melting of Water Experiment 3 Freezing temperature is the temperature at which a substance turns from a liquid to a solid. Melting temperature is the temperature at which

More information

HSC Chemistry 7.0 User's Guide

HSC Chemistry 7.0 User's Guide HSC Chemistry 7.0 47-1 HSC Chemistry 7.0 User's Guide Sim Flowsheet Module Experimental Mode Pertti Lamberg Outotec Research Oy Information Service P.O. Box 69 FIN - 28101 PORI, FINLAND Fax: +358-20 -

More information

Please click the link below to view the YouTube video offering guidance to purchasers:

Please click the link below to view the YouTube video offering guidance to purchasers: Guide Contents: Video Guide What is Quick Quote? Quick Quote Access Levels Your Quick Quote Control Panel How do I create a Quick Quote? How do I Distribute a Quick Quote? How do I Add Suppliers to a Quick

More information

SP-700 Free Chlorine Analysis TMB Method

SP-700 Free Chlorine Analysis TMB Method Data Sheet SP-700 Free Chlorine Analysis TMB Method The Pyxis SP-700 free chlorine method is based on the USEPA-accepted tetramethylbenzidine (TMB) chemistry for free chlorine analysis. The solidified

More information

CREATING CUSTOMIZED DATE RANGE COLLECTIONS IN PRESENTATION STUDIO

CREATING CUSTOMIZED DATE RANGE COLLECTIONS IN PRESENTATION STUDIO CREATING CUSTOMIZED DATE RANGE COLLECTIONS IN PRESENTATION STUDIO Date range collections are pre-defined reporting periods for performance data. You have two options: Dynamic date ranges automatically

More information

Visual Physics Forces & Acceleration Lab 3

Visual Physics Forces & Acceleration Lab 3 In this experiment you will be evaluating the vector nature of forces and Newton s 2 nd Law of Motion using a free-body diagram. You will accomplish this by performing experiments involving both static

More information

Comparing whole genomes

Comparing whole genomes BioNumerics Tutorial: Comparing whole genomes 1 Aim The Chromosome Comparison window in BioNumerics has been designed for large-scale comparison of sequences of unlimited length. In this tutorial you will

More information

Create Satellite Image, Draw Maps

Create Satellite Image, Draw Maps Create Satellite Image, Draw Maps 1. The goal Using Google Earth, we want to create and import a background file into our Adviser program. From there, we will be creating paddock boundaries. The accuracy

More information

General Chemistry Lab Molecular Modeling

General Chemistry Lab Molecular Modeling PURPOSE The objectives of this experiment are PROCEDURE General Chemistry Lab Molecular Modeling To learn how to use molecular modeling software, a commonly used tool in chemical research and industry.

More information

MOHID Land Basics Walkthrough Walkthrough for MOHID Land Basic Samples using MOHID Studio

MOHID Land Basics Walkthrough Walkthrough for MOHID Land Basic Samples using MOHID Studio ACTION MODULERS MOHID Land Basics Walkthrough Walkthrough for MOHID Land Basic Samples using MOHID Studio Frank Braunschweig Luis Fernandes Filipe Lourenço October 2011 This document is the MOHID Land

More information

User's Manual altimeter V1.1

User's Manual altimeter V1.1 User's Manual altimeter V1.1 The altimeter is completely autonomous. It can be installed on any model. It automatically detects the beginning of flights and does not record the period between two consecutive

More information

Lab 1: Dynamic Simulation Using Simulink and Matlab

Lab 1: Dynamic Simulation Using Simulink and Matlab Lab 1: Dynamic Simulation Using Simulink and Matlab Objectives In this lab you will learn how to use a program called Simulink to simulate dynamic systems. Simulink runs under Matlab and uses block diagrams

More information

Hooke s Law. Equipment. Introduction and Theory

Hooke s Law. Equipment. Introduction and Theory Hooke s Law Objective to test Hooke s Law by measuring the spring constants of different springs and spring systems to test whether all elastic objects obey Hooke s Law Equipment two nearly identical springs,

More information

v Prerequisite Tutorials GSSHA WMS Basics Watershed Delineation using DEMs and 2D Grid Generation Time minutes

v Prerequisite Tutorials GSSHA WMS Basics Watershed Delineation using DEMs and 2D Grid Generation Time minutes v. 10.1 WMS 10.1 Tutorial GSSHA WMS Basics Creating Feature Objects and Mapping Attributes to the 2D Grid Populate hydrologic parameters in a GSSHA model using land use and soil data Objectives This tutorial

More information

Best Pair II User Guide (V1.2)

Best Pair II User Guide (V1.2) Best Pair II User Guide (V1.2) Paul Rodman (paul@ilanga.com) and Jim Burrows (burrjaw@earthlink.net) Introduction Best Pair II is a port of Jim Burrows' BestPair DOS program for Macintosh and Windows computers.

More information

Gis Unit TropMed Mahidol U.

Gis Unit TropMed Mahidol U. Gis Unit TropMed Mahidol U. Database Information System Database Concepts 1. Non-Spatial Database table, document.. 2. Spatial Database locational databases (geographic) + attribute databases Gis Unit

More information

PROMAL2012 SOFTWARE PACKAGE A USER GUIDE

PROMAL2012 SOFTWARE PACKAGE A USER GUIDE PROMAL2012 SOFTWARE PACKAGE A USER GUIDE 1. This manual is only for VISTA, WINDOWS 7 and WINDOWS 8 users. The PROMAL2012 software and manual are available at http://www.eng.usf.edu/~kaw/promal2012/ 2.

More information

Demand Forecasting. for. Microsoft Dynamics 365 for Operations. User Guide. Release 7.1. April 2018

Demand Forecasting. for. Microsoft Dynamics 365 for Operations. User Guide. Release 7.1. April 2018 Demand Forecasting for Microsoft Dynamics 365 for Operations User Guide Release 7.1 April 2018 2018 Farsight Solutions Limited All Rights Reserved. Portions copyright Business Forecast Systems, Inc. This

More information

1 Introduction to Computational Chemistry (Spartan)

1 Introduction to Computational Chemistry (Spartan) 1 Introduction to Computational Chemistry (Spartan) Start Spartan by clicking Start / Programs / Spartan Then click File / New Exercise 1 Study of H-X-H Bond Angles (Suitable for general chemistry) Structure

More information

Virtual Cell Membrane Potential Tutorial IV

Virtual Cell Membrane Potential Tutorial IV Virtual Cell Membrane Potential Tutorial IV Creating the BioModel Creating the Application!" Application I -Studying voltage changes in a compartmental model!" Application II - Studying voltage, sodium,

More information

Winmostar tutorial Gromacs Interfacial Tension V X-Ability Co., Ltd. 2018/01/15

Winmostar tutorial Gromacs Interfacial Tension V X-Ability Co., Ltd. 2018/01/15 Winmostar tutorial Gromacs Interfacial Tension V8.007 X-Ability Co., Ltd. question@winmostar.com Summary In this tutorial, we will calculate density distribution and interfacial tension between liquid-liquid

More information

OpenWeatherMap Module

OpenWeatherMap Module OpenWeatherMap Module Installation and Usage Guide Revision: Date: Author(s): 1.0 Friday, October 13, 2017 Richard Mullins Contents Overview 2 Installation 3 Import the TCM in to accelerator 3 Add the

More information

LightCycler 480 Instrument Quick Guide Relative Quantification

LightCycler 480 Instrument Quick Guide Relative Quantification LightCycler 480 Instrument Quick Guide Relative Quantification Performing a Relative Quantification Analysis: 1. Open the experiment that you want to analyze in main window 1. 2. If sample information

More information

Chemistry 14CL. Worksheet for the Molecular Modeling Workshop. (Revised FULL Version 2012 J.W. Pang) (Modified A. A. Russell)

Chemistry 14CL. Worksheet for the Molecular Modeling Workshop. (Revised FULL Version 2012 J.W. Pang) (Modified A. A. Russell) Chemistry 14CL Worksheet for the Molecular Modeling Workshop (Revised FULL Version 2012 J.W. Pang) (Modified A. A. Russell) Structure of the Molecular Modeling Assignment The molecular modeling assignment

More information

Enhanced Mapping. RP Data Professional. What you will learn in this guide. CoreLogic RP Data Professional Getting Started Guide Series

Enhanced Mapping. RP Data Professional. What you will learn in this guide. CoreLogic RP Data Professional Getting Started Guide Series RP Data Professional Enhanced Mapping What you will learn in this guide This guide will show you how to use RP Data Professional enhanced mapping capabilities to research and present details about a target

More information

WindNinja Tutorial 3: Point Initialization

WindNinja Tutorial 3: Point Initialization WindNinja Tutorial 3: Point Initialization 07/20/2017 Introduction Welcome to. This tutorial will step you through the process of running a WindNinja simulation that is initialized by location specific

More information

Atom Structure Teacher s Guide

Atom Structure Teacher s Guide Atom Structure Teacher s Guide 1.0 Summary Atomic structure is the third activity to be done after the pre-test. This activity should take students approximately one class period. 2.0 Learning Goals Driving

More information