Representation of Derived Units in Unitsml

Total Page:16

File Type:pdf, Size:1020Kb

Representation of Derived Units in Unitsml Representation of Derived Units in UnitsML Peter J. Linstrom∗ November 6, 2006 ∗phone: (301) 975-5422,DRAFT e-mail: [email protected] 1 INTRODUCTION 11/6/06 Contents 1 Introduction 1 2 Why this convention is needed 2 3 Information needed to define a unit 3 4 Proposed XML encoding 4 5 Important conventions 5 6 Potential problems 7 7 Possible alternatives 8 A Prefixes from the SI 10 B SI units and units acceptable for use with the SI 11 C non-SI Units 16 1 Introduction This document describes a proposed convention for defining derived units in terms of their base units. This convention is intended for use in the UnitsML markup language to allow a precise definition of a wide range of units. The goal of this convention is to improve interoperability among applications and databases which use derived units based on commonly encountered base units. It is understoodDRAFT that not all units can be represented using this convention. It is, however, Representation of Derived Units in UnitsML Page 1 2 WHY THIS CONVENTION IS NEEDED 11/6/06 anticipated that a wide range of scientific and engineering units of measure can be represented with this convention. The convention consists of representing the unit in terms of its base units and providing controlled vocabulary of base units. For example the unit centimeter per second squared would be represented in terms of the following: 1. The unit meter with the prefix centi raised to the power 1. 2. The unit second raised to the power −1. Please note that this convention seeks to address the problem of defining derived units, not to define conversion factors. For this reason it will only support multiplication by constants which have defined SI prefixes. 2 Why this convention is needed Without this convention, there is no easy way to reliably compare unit definitions from different sources to see if they are the same. The proposed symbolic identifier can be used for this purpose, but it is not parsable XML, so it requires a specialized parser and cannot be validated against an XML schema. As will be noted later, other than syntax, this proposal is similar to the symbolic identifier; the need to enumerate a set of base units and multiplicative prefixes is the same for both approaches. Other identifying data in the current XML schema lacks the qualities which would make them useful for comparing unit definitions from different sources. Numeric identifiers are assigned by the author of the definition and thus are only useful for comparison within the context in which they were assigned. Names are obviously language specific. Even within a given language there may be multiple names for a given unit, so names may not be unique identifiers. Under this proposal, information about the definition is provided in a structured format based on explicitly enumerated base units and multiplicative prefixes. This will allow comparison of unit definitions from different sources; something essential for interoperability of applications with different unit definition databases. Such comparison will be done by comparing base units, multi- plicative prefixes,DRAFT and exponents of units to see if they match. Representation of Derived Units in UnitsML Page 2 3 INFORMATION NEEDED TO DEFINE A UNIT 11/6/06 3 Information needed to define a unit In order to define a unit in terms of other units the following information is needed for each unit which will be used to in the definition: identifier A code or name which identifies the unit. prefix The SI prefix which notes a factor to multiply the unit by. exponent numerator Numerator of the exponent to raise the unit and prefix to. The exponent is expressed as a separate numerator and denominator to restrict it to rational numbers (by restricting the numerator and denominator to integers). The exponent is applied to both the unit and the prefix. exponent denominator Denominator of the exponent to raise the unit and prefix to. Proposed codes for prefixes and units are provided in the appendix. It is important to note that the codes for units are internal representations to be used by the markup language to denote spe- cific units. They are not to be confused with symbols to be used in text documents or official abbreviations for the units. In most applications, users should never see the codes defined in the appendix. It is proposed that only well defined units which are not explicitly derived units be included in the set of units which may be used for definitions. This would mean that named derived units, such as newtons, could be used, but explicitly derived units, such as acre-feet could not. Units such as acre-feet can be defined as derived units. Only those units and prefixes defined in the appendix should be used in definitions. If users are allowed to add their own unit and prefix codes, interoperability will be lost. Because of this, however, this representation scheme will not work for all units and, hence, must be an optional part of the markup language. There is one important and potentially controversial unit listed in table 23. The item unit refers to a count of items and can be used to note derived units which included such counts (e.g. neutron flux). This concept is at odds with the SI which assigns such counts a unit of 1. In this proposal it was chosen to include counts as a named unit, because doing so provides additional semantic clarity over the practiceDRAFT endorsed by the SI. The units defined in the appendix have been taken from several sources [1, 2, 3, 4, 5, 6]. Representation of Derived Units in UnitsML Page 3 4 PROPOSED XML ENCODING 11/6/06 It is important to remember that this is a working document and that the list of units in the appendix is only an initial attempt at enumerating units to be defined. It is envisioned that units will be added or removed from the list based on input from the UnitsML developers. I addition, it should be recognized that the codes defined in this document are solely for enumerating base units in the XML, schema; they are not intended for use in any way outside of representing derived units in UnitsML. 4 Proposed XML encoding A noted above, derived units can be expressed as the product of base units with a multiplicative prefix raised to a specified power. It is proposed that such definitions be contained an an element named baseUnits. This element would contain elements for each base unit in the definition. Each base unit would be noted in a baseUnit element. This element would have the following attributes: prefix One of the codes for the multiplicative prefixes defined in table 1. If omitted there is no prefix. unit One of the unit codes defined in the appendix. This attribute is required. numerator The numerator of the exponent to raise the unit and prefix to. The value should be an integer. If this attribute is omitted the value is assumed to be one. denominator The denominator of the exponent to raise the unit and prefix to. The value should be an integer, but must not be zero. If this attribute is omitted the value assumed to be one. The baseUnits element is a child of the unit element. Only one baseUnits element per unit element would be allowed. The proposed markup is best illustrated with a few examples. The text in figure 1 shows the relevant markup for a cubic international foot. Another example (showing the use of rational number exponents is the markup for centimeters to the three-halves power given in figure 2. The advantages of the proposed markup can be seen by looking at an example. Figures 3 and 4 both show markup for kilojoules per cubic meter. The markup comes from different sources and uses names in differentDRAFT languages. The elements defined in this proposal are in boldface text; all other elements are present in the current definition of UnitsML. In the two figures, the existing Representation of Derived Units in UnitsML Page 4 5 IMPORTANT CONVENTIONS 11/6/06 <baseUnits> <baseUnit unit="foot" numerator="3" /> </baseUnits> Figure 1: Representation for a cubic international foot. <baseUnits> <baseUnit unit="meter" prefix="c" numerator="3" denominator="2" /> </baseUnits> Figure 2: Representation for centimeters to the three-halves power. UnitsML provides names and a numeric identifier, neither of which can be used to compare the units. The numeric identifier cannot be used because these are tied to a specific data sets, and therefore cannot be relied on for inter-comparison. The names cannot be relied on because, in this case, they are in different languages. Even if the same language is used, names are not reliable identifiers because they may be constructed the differently for the same unit (e.g., foot-pounds versus pound-feet. Without information provided in the baseUnits element, it would be impossible to determine if the units are different or the same. In this case it can be seen that the units are the same. Figure 5 shows another unit for energy per volume. Examination of the base units quickly shows that this unit is quite different from that used noted in figures 3 and 4. 5 Important conventions A problem arises when a unit can be expressed in terms of more than one set of base units. In such cases it it possible that two identical units may not be recognized as such. There are two ways this problem can occur: 1. Dimensionless base units such as radians or steradians are omitted.
Recommended publications
  • Summer 2018 Astron 9 Week 2 FINAL
    ORDER OF MAGNITUDE PHYSICS RICHARD ANANTUA, JEFFREY FUNG AND JING LUAN WEEK 2: FUNDAMENTAL INTERACTIONS, NUCLEAR AND ATOMIC PHYSICS REVIEW OF BASICS • Units • Systems include SI and cgs • Dimensional analysis must confirm units on both sides of an equation match • BUCKINGHAM’S PI THEOREM - For a physical equation involving N variables, if there are R independent dimensions, then there are N-R independent dimensionless groups, denoted Π", …, Π%&'. UNITS REVIEW – BASE UNITS • Physical quantities may be expressed using several choices of units • Unit systems express physical quantities in terms of base units or combinations thereof Quantity SI (mks) Gaussian (cgs) Imperial Length Meter (m) Centimeter (cm) Foot (ft) Mass Kilogram (kg) Gram (g) Pound (lb) Time Second (s) Second (s) Second (s) Temperature Kelvin (K) Kelvin (K)* Farenheit (ºF) Luminous intensity Candela (cd) Candela (cd)* Amount Mole (mol) Mole (mol)* Current Ampere (A) * Sometimes not considered a base cgs unit REVIEW – DERIVED UNITS • Units may be derived from others Quantity SI cgs Momentum kg m s-1 g cm s-1 Force Newton N=kg m s-2 dyne dyn=g cm s-2 Energy Joule J=kg m2 s-2 erg=g cm2 s-2 Power Watt J=kg m2 s-3 erg/s=g cm2 s-3 Pressure Pascal Pa=kg m-1 s-2 barye Ba=g cm-1 s-2 • Some unit systems differ in which units are considered fundamental Electrostatic Units SI (mks) Gaussian cgs Charge A s (cm3 g s-2)1/2 Current A (cm3 g s-4)1/2 REVIEW – UNITS • The cgs system for electrostatics is based on the assumptions kE=1, kM =2kE/c2 • EXERCISE: Given the Gaussian cgs unit of force is g cm s-2, what is the electrostatic unit of charge? # 2 ! = ⟹ # = ! & 2 )/+ = g cm/ s1+ )/+ [&]2 REVIEW – BUCKINGHAM’S PI THEOREM • BUCKINGHAM’S PI THEOREM - For a physical equation involving N variables, if there are R independent dimensions, then there are N-R independent dimensionless groups, denoted Π", …, Π%&'.
    [Show full text]
  • Appendix A: Symbols and Prefixes
    Appendix A: Symbols and Prefixes (Appendix A last revised November 2020) This appendix of the Author's Kit provides recommendations on prefixes, unit symbols and abbreviations, and factors for conversion into units of the International System. Prefixes Recommended prefixes indicating decimal multiples or submultiples of units and their symbols are as follows: Multiple Prefix Abbreviation 1024 yotta Y 1021 zetta Z 1018 exa E 1015 peta P 1012 tera T 109 giga G 106 mega M 103 kilo k 102 hecto h 10 deka da 10-1 deci d 10-2 centi c 10-3 milli m 10-6 micro μ 10-9 nano n 10-12 pico p 10-15 femto f 10-18 atto a 10-21 zepto z 10-24 yocto y Avoid using compound prefixes, such as micromicro for pico and kilomega for giga. The abbreviation of a prefix is considered to be combined with the abbreviation/symbol to which it is directly attached, forming with it a new unit symbol, which can be raised to a positive or negative power and which can be combined with other unit abbreviations/symbols to form abbreviations/symbols for compound units. For example: 1 cm3 = (10-2 m)3 = 10-6 m3 1 μs-1 = (10-6 s)-1 = 106 s-1 1 mm2/s = (10-3 m)2/s = 10-6 m2/s Abbreviations and Symbols Whenever possible, avoid using abbreviations and symbols in paragraph text; however, when it is deemed necessary to use such, define all but the most common at first use. The following is a recommended list of abbreviations/symbols for some important units.
    [Show full text]
  • Representation of Derived Units in Unitsml (Revised December 8, 2006)
    Representation of Derived Units in UnitsML (revised December 8, 2006) Peter J. Linstrom∗ December 8, 2006 ∗phone: (301) 975-5422,DRAFT e-mail: [email protected] 1 INTRODUCTION 12/8/06 Contents 1 Introduction 1 2 Why this convention is needed 2 3 Information needed to define a unit 3 4 Proposed XML encoding 4 5 Important conventions 7 6 Potential problems 8 7 Possible alternatives 10 A Multiplicative prefixes 12 B SI units and units acceptable for use with the SI 14 C non-SI Units 19 1 Introduction This document describes a proposed convention for defining derived units in terms of their base units. This convention is intended for use in the UnitsML markup language to allow a precise definition of a wide range of units. The goal of this convention is to improve interoperability among applications and databases which use derived units based on commonly encountered base units. It is understoodDRAFT that not all units can be represented using this convention. It is, however, Representation of Derived Units in UnitsML (revised December 8, 2006) Page 1 2 WHY THIS CONVENTION IS NEEDED 12/8/06 anticipated that a wide range of scientific and engineering units of measure can be represented with this convention. The convention consists of representing the unit in terms of multiplicative combinations of base units. For example the unit centimeter per second squared would be represented in terms of the following: 1. The unit meter with the prefix centi raised to the power 1. 2. The unit second raised to the power −2.
    [Show full text]
  • Astm Metric Practice Guide
    National Bureau of Standards Library, E-01 Admrn. Bldg. A111DO cmfl4S - m 2 0 1967 METRIC PRACTICE GUIDE NATL INST OF STANDARDS & TECH R.I.C. All100991845 /NBS handbook QC1 .U51 V102;1967 C.1 NBS-PUB-C 1934 U. S. DEPARTMENT OF COMMERCE NATIONAL OUREAU OF STANDARDS HANDBOOK 102 THE NATIONAL BUREAU OF STANDARDS The National Bureau of Standards 1 provides measurement and technical information services essential to the efficiency and effectiveness of the work of the Nation’s scientists and engineers. The Bureau serves also as a focal point in the Federal Government for assuring maximum application of the physical and engineering sciences to the advancement of technology in industry and commerce. To accomplish this mission, the Bureau is organized into three institutes covering broad program areas of research and services: THE INSTITUTE FOR BASIC STANDARDS . provides the central basis within the United States for a complete and consistent system of physical measurements, coordinates that system with the measurement systems of other nations, and furnishes essential services leading to accurate and uniform physical measurements throughout the Nation’s scientific com¬ munity, industry, and commerce. This Institute comprises a series of divisions, each serving a classical subject matter area: —Applied Mathematics — Electricity—Metrology — Mechanics — Heat — Atomic Physics—Physical Chemistry—Radiation Physics—Laboratory Astrophysics2—Radio Standards Laboratory,2 which includes Radio Standards Physics and Radio Standards Engineering—Office of Standard Reference Data. THE INSTITUTE FOR MATERIALS RESEARCH . conducts materials research and provides associated materials services including mainly reference materials and data on the properties of materials. Beyond its direct interest to the Nation’s scientists and engineers, this Institute yields services which are essential to the advancement of technology in industry and commerce.
    [Show full text]
  • Foot-Candles: Photometric Units
    UPDATED EXTRACT FROM CREG JOURNAL. FILE: FOOT3-UP.DOC REV. 8. LAST SAVED: 01/02/01 15:14 PHOTOMETRICS Foot-Candles: Photometric Units More footnotes on optical topics. David Gibson describes the confusing range of photometric units. A discussion of photometric units may the ratio of luminous efficiency to luminous The non-SI unit mean spherical candle- seem out of place in an electronic journal but efficiency at the wavelength where the eye is power is the intensity of a source if its light engineers frequently have to use light sources most sensitive. Unfortunately, however, this output were spread evenly in all directions. It and detectors. The units of photometry are term can be confused with the term efficacy, is therefore equivalent to the flux [lm] ¸ 4p. some of the most confusing and least which is used to describe the efficiency at standardised of units. converting electrical to luminous power. Luminance Photometric units are not difficult to The candela measures the intensity of a understand, but can be a minefield to the Illumination, Luminous Emittance. point source. We also need to define the uninitiated since many non-SI units are still The illumination of a surface is the properties of an extended source. Each small in use, and there are subtle differences incident power flux density measured in element DS of a diffuse reflective surface will between quantities with similar names, such lumens per square metre. A formal definition scatter the incident flux DF and behave as if as illumination and luminance. would be along the lines of: if a flux DF is it were an infinitesimal point source.
    [Show full text]
  • Electric Units and Standards
    DEPARTMENT OF COMMERCE OF THE Bureau of Standards S. W. STRATTON, Director No. 60 ELECTRIC UNITS AND STANDARDS list Edition 1 Issued September 25. 1916 WASHINGTON GOVERNMENT PRINTING OFFICE DEPARTMENT OF COMMERCE Circular OF THE Bureau of Standards S. W. STRATTON, Director No. 60 ELECTRIC UNITS AND STANDARDS [1st Edition] Issued September 25, 1916 WASHINGTON GOVERNMENT PRINTING OFFICE 1916 ADDITIONAL COPIES OF THIS PUBLICATION MAY BE PROCURED FROM THE SUPERINTENDENT OF DOCUMENTS GOVERNMENT PRINTING OFFICE WASHINGTON, D. C. AT 15 CENTS PER COPY A complete list of the Bureau’s publications may be obtained free of charge on application to the Bureau of Standards, Washington, D. C. ELECTRIC UNITS AND STANDARDS CONTENTS Page I. The systems of units 4 1. Units and standards in general 4 2. The electrostatic and electromagnetic systems 8 () The numerically different systems of units 12 () Gaussian systems, and ratios of the units 13 “ ’ (c) Practical ’ electromagnetic units 15 3. The international electric units 16 II. Evolution of present system of concrete standards 18 1. Early electric standards 18 2. Basis of present laws 22 3. Progress since 1893 24 III. Units and standards of the principal electric quantities 29 1. Resistance 29 () International ohm 29 Definition 29 Mercury standards 30 Secondary standards 31 () Resistance standards in practice 31 (c) Absolute ohm 32 2. Current 33 (a) International ampere 33 Definition 34 The silver voltameter 35 ( b ) Resistance standards used in current measurement 36 (c) Absolute ampere 37 3. Electromotive force 38 (a) International volt 38 Definition 39 Weston normal cell 39 (b) Portable Weston cells 41 (c) Absolute and semiabsolute volt 42 4.
    [Show full text]
  • Alexander Graham Bell 1847-1922
    NATIONAL ACADEMY OF SCIENCES OF THE UNITED STATES OF AMERICA BIOGRAPHICAL MEMOIRS VOLUME XXIII FIRST MEMOIR BIOGRAPHICAL MEMOIR OF ALEXANDER GRAHAM BELL 1847-1922 BY HAROLD S. OSBORNE PRESENTED TO THE ACADEMY AT THE ANNUAL MEETING, 1943 It was the intention that this Biographical Memoir would be written jointly by the present author and the late Dr. Bancroft Gherardi. The scope of the memoir and plan of work were laid out in cooperation with him, but Dr. Gherardi's untimely death prevented the proposed collaboration in writing the text. The author expresses his appreciation also of the help of members of the Bell family, particularly Dr. Gilbert Grosvenor, and of Mr. R. T. Barrett and Mr. A. M. Dowling of the American Telephone & Telegraph Company staff. The courtesy of these gentlemen has included, in addition to other help, making available to the author historic documents relating to the life of Alexander Graham Bell in the files of the National Geographic Society and in the Historical Museum of the American Telephone and Telegraph Company. ALEXANDER GRAHAM BELL 1847-1922 BY HAROLD S. OSBORNE Alexander Graham Bell—teacher, scientist, inventor, gentle- man—was one whose life was devoted to the benefit of mankind with unusual success. Known throughout the world as the inventor of the telephone, he made also other inventions and scientific discoveries of first importance, greatly advanced the methods and practices for teaching the deaf and came to be admired and loved throughout the world for his accuracy of thought and expression, his rigid code of honor, punctilious courtesy, and unfailing generosity in helping others.
    [Show full text]
  • Guide for the Use of the International System of Units (SI)
    Guide for the Use of the International System of Units (SI) m kg s cd SI mol K A NIST Special Publication 811 2008 Edition Ambler Thompson and Barry N. Taylor NIST Special Publication 811 2008 Edition Guide for the Use of the International System of Units (SI) Ambler Thompson Technology Services and Barry N. Taylor Physics Laboratory National Institute of Standards and Technology Gaithersburg, MD 20899 (Supersedes NIST Special Publication 811, 1995 Edition, April 1995) March 2008 U.S. Department of Commerce Carlos M. Gutierrez, Secretary National Institute of Standards and Technology James M. Turner, Acting Director National Institute of Standards and Technology Special Publication 811, 2008 Edition (Supersedes NIST Special Publication 811, April 1995 Edition) Natl. Inst. Stand. Technol. Spec. Publ. 811, 2008 Ed., 85 pages (March 2008; 2nd printing November 2008) CODEN: NSPUE3 Note on 2nd printing: This 2nd printing dated November 2008 of NIST SP811 corrects a number of minor typographical errors present in the 1st printing dated March 2008. Guide for the Use of the International System of Units (SI) Preface The International System of Units, universally abbreviated SI (from the French Le Système International d’Unités), is the modern metric system of measurement. Long the dominant measurement system used in science, the SI is becoming the dominant measurement system used in international commerce. The Omnibus Trade and Competitiveness Act of August 1988 [Public Law (PL) 100-418] changed the name of the National Bureau of Standards (NBS) to the National Institute of Standards and Technology (NIST) and gave to NIST the added task of helping U.S.
    [Show full text]
  • Mercury Barometers and Manometers
    NBS MONOGRAPH 8 Mercuiy Barometers and Manometers U.S. DEPARTMENT OF COMMERCE NATIONAL BUREAU OF STANDARDS THE NATIONAL BUREAU OF STANDARDS Functions and Activities The functions of the National Bureau of Standards are set forth in the Act of Congress, March 3, 1901, as amended by Congress in Public Law 619, 1950. These include the development and maintenance of the national standards of measurement and the provision of means and methods for making measurements consistent with these standards; the determination of physical constants and properties of materials; the development of methods and instruments for testing materials, devices, and structures; advisory services to government agencies on scientific and technical problems; in- vention and development of devices to serve special needs of the Government; and the development of standard practices, codes, and specifications. The work includes basic and applied research, development, engineering, instrumentation, testing, evaluation, calibration services, and various consultation and information services. Research projects are also performed for other government agencies when the work relates to and supplements the basic program of the Bureau or when the Bureau's unique competence is required. The scope of activities is suggested by the listing of divisions and sections on the inside of the back cover. Publications The results of the Bureau's work take the form of either actual equipment and devices or pub- lished papers. These papers appear either in the Bureau's own series of publications or in the journals of professional and scientific societies. The Bureau itself publishes three periodicals available from the Government Printing Office: The Journal of Research, published in four separate sections, presents complete scientific and technical papers; the Technical News Bulletin presents summary and pre- liminary reports on work in progress; and Basic Radio Propagation Predictions provides data for determining the best frequencies to use for radio communications throughout the world.
    [Show full text]
  • SI and CGS Units in Electromagnetism
    SI and CGS Units in Electromagnetism Jim Napolitano January 7, 2010 These notes are meant to accompany the course Electromagnetic Theory for the Spring 2010 term at RPI. The course will use CGS units, as does our textbook Classical Electro- dynamics, 2nd Ed. by Hans Ohanian. Up to this point, however, most students have used the International System of Units (SI, also known as MKSA) for mechanics, electricity and magnetism. (I believe it is easy to argue that CGS is more appropriate for teaching elec- tromagnetism to physics students.) These notes are meant to smooth the transition, and to augment the discussion in Appendix 2 of your textbook. The base units1 for mechanics in SI are the meter, kilogram, and second (i.e. \MKS") whereas in CGS they are the centimeter, gram, and second. Conversion between these base units and all the derived units are quite simply given by an appropriate power of 10. For electromagnetism, SI adds a new base unit, the Ampere (\A"). This leads to a world of complications when converting between SI and CGS. Many of these complications are philosophical, but this note does not discuss such issues. For a good, if a bit flippant, on- line discussion see http://info.ee.surrey.ac.uk/Workshop/advice/coils/unit systems/; for a more scholarly article, see \On Electric and Magnetic Units and Dimensions", by R. T. Birge, The American Physics Teacher, 2(1934)41. Electromagnetism: A Preview Electricity and magnetism are not separate phenomena. They are different manifestations of the same phenomenon, called electromagnetism. One requires the application of special relativity to see how electricity and magnetism are united.
    [Show full text]
  • Photography Department Cerritos College
    Program Review 2010 Photography Department Cerritos College 1. Description of the Program Mission Statement The mission of the photography department is to educate students in photography by providing a balanced education in both the creative and technical aspects of the photographic medium, the history of photography and the critical analysis of photographs. The mission is accomplished through course offerings that enable students to develop their technical skills, creativity and understanding of the social and historical role and relevance of the photographic medium. a. Course and Program Content i. Course Outlines and Curriculum Development Process The following Photography Department courses have been approved by the curriculum committee: Phot 100 - Introductory Photography (revised and approved 1/25/07) Phot 102 - Intermediate Photography (revised and approved 1/27/05) Phot 110 - Introduction to Digital Photography (revised and approved 3/10/05) Phot 112 - Intermediate Digital Photography (revised and approved 3/10/05) Phot 122 - Color Photography (revised and approved 10/26/06) Phot 130 - Jour 130 - Photojournalism (revised and approved 12/13/07) Phot 150 - Photography and Society (approved 2/26/09) Phot 160 - History of Photography (revised and approved 1/25/07) Phot 171 - Occupational Work Experience in Photography (revised and approved 9/22/05) Phot 200 - Advanced Photography (revised and approved 1/27/05) Phot 230 - Portrait Photography (revised and approved 1/27/05) Phot 232 - Approaches to Studio Lighting (revised and approved 1/27/05) Phot 234 - Portfolio Development (revised and approved 1/26/06) Phot 240 - Experimental Photography (revised and approved 2/24/05) Phot 250 - Contemporary Photographic Expression (revised and approved 12/11/03) Phot 252 - Photography of the Landscape (revised and approved 1/27/05) Phot 298 - Directed Studies Phot 299 - Directed Studies The only course in the list above that has not yet been offered is Photography and Society.
    [Show full text]
  • Appendix H: Common Units and Conversions Appendices 215
    Appendix H: Common Units and Conversions Appendices 215 Appendix H: Common Units and Conversions Temperature Length Fahrenheit to Celsius: °C = (°F-32)/1.8 1 micrometer (sometimes referred centimeter (cm) meter (m) inch (in) Celsius to Fahrenheit: °F = (1.8 × °C) + 32 to as micron) = 10-6 m Fahrenheit to Kelvin: convert °F to °C, then add 273.15 centimeter (cm) 1 1.000 × 10–2 0.3937 -3 Celsius to Kelvin: add 273.15 meter (m) 100 1 39.37 1 mil = 10 in Volume inch (in) 2.540 2.540 × 10–2 1 –3 3 1 liter (l) = 1.000 × 10 cubic meters (m ) = 61.02 Area cubic inches (in3) cm2 m2 in2 circ mil Mass cm2 1 10–4 0.1550 1.974 × 105 1 kilogram (kg) = 1000 grams (g) = 2.205 pounds (lb) m2 104 1 1550 1.974 × 109 Force in2 6.452 6.452 × 10–4 1 1.273 × 106 1 newton (N) = 0.2248 pounds (lb) circ mil 5.067 × 10–6 5.067 × 10–10 7.854 × 10–7 1 Electric resistivity Pressure 1 micro-ohm-centimeter (µΩ·cm) pascal (Pa) millibar (mbar) torr (Torr) atmosphere (atm) psi (lbf/in2) = 1.000 × 10–6 ohm-centimeter (Ω·cm) –2 –3 –6 –4 = 1.000 × 10–8 ohm-meter (Ω·m) pascal (Pa) 1 1.000 × 10 7.501 × 10 9.868 × 10 1.450 × 10 = 6.015 ohm-circular mil per foot (Ω·circ mil/ft) millibar (mbar) 1.000 × 102 1 7.502 × 10–1 9.868 × 10–4 1.450 × 10–2 2 0 –3 –2 Heat flow rate torr (Torr) 1.333 × 10 1.333 × 10 1 1.316 × 10 1.934 × 10 5 3 2 1 1 watt (W) = 3.413 Btu/h atmosphere (atm) 1.013 × 10 1.013 × 10 7.600 × 10 1 1.470 × 10 1 British thermal unit per hour (Btu/h) = 0.2930 W psi (lbf/in2) 6.897 × 103 6.895 × 101 5.172 × 101 6.850 × 10–2 1 1 torr (Torr) = 133.332 pascal (Pa) 1 pascal (Pa) = 0.01 millibar (mbar) 1.33 millibar (mbar) 0.007501 torr (Torr) –6 A Note on SI 0.001316 atmosphere (atm) 9.87 × 10 atmosphere (atm) 2 –4 2 The values in this catalog are expressed in 0.01934 psi (lbf/in ) 1.45 × 10 psi (lbf/in ) International System of Units, or SI (from the Magnetic induction B French Le Système International d’Unités).
    [Show full text]