ALBERT

All Library Books, journals and Electronic Records Telegrafenberg

Your email was sent successfully. Check your inbox.

An error occurred while sending the email. Please try again.

Proceed reservation?

Export
Filter
  • Books  (373)
  • 2020-2024  (124)
  • 2015-2019  (252)
  • AWI Library  (373)
Collection
  • Books  (373)
Language
Years
Year
Classification
Branch Library
  • 1
    Call number: AWI G1-17-90601
    Description / Table of Contents: This innovative study presents concepts and problems in soil physics, and provides solutions using original computer programs. It provides a close examination of physical environments of soil, including an analysis of the movement of heat, water and gases. The authors employ the programming language Python, which is now widely used for numerical problem solving in the sciences. In contrast to the majority of the literature on soil physics, this text focuses on solving, not deriving, differential equations for transport. Using numerical procedures to solve differential equations allows the solution of quite difficult problems with fairly simple mathematical tools. Numerical methods convert differential into algebraic equations, which can be solved using conventional methods of linear algebra. Each chapter introduces a soil physics concept, and proceeds to develop computer programs to solve the equations and illustrate the points made in the discussion. Problems at the end of each chapter help the reader practise using the concepts introduced. The text is suitable for advanced undergraduates, graduates and researchers of soil physics. It employs an open source philosophy where computer code is presented, explained and discussed, and provides the reader with a full understanding of the solutions. Once mastered, the code can be adapted and expanded for the user's own models, fostering further developments. The Python tools provide a simple syntax, Object Oriented Programming techniques, powerful mathematical and numerical tools, and a user friendly environment.
    Type of Medium: Monograph available for loan
    Pages: X, 449 Seiten , Illustrationen
    Edition: First edition
    ISBN: 0199683093 , 9780199683093
    Language: English
    Note: Contents: 1 Introduction. - 2 Basic Physical Properties of Soil. - 2.1 Geometry of the Soil Matrix. - 2.2 Soil Structure. - 2.3 Fractal Geometry. - 2.4 Geometry of the Pore Space. - 2.5 Specific Surface Area. - 2.6 Averaging. - 2.7 Bulk Density, Water Content and Porosity. - 2.8 Relationships between Variables. - 2.9 Typical Values of Physical Properties. - 2.10 Volumes and Volumetric Fractions for a Soil Prism. - 2.11 Soil Solid Phase. - 2.12 Soil Texture. - 2.13 Sedimentation Law. - 2.14 Exercises. - 3 Soil Gas Phase and Gas Diffusion. - 3.1 Transport Equations. - 3.2 The Diffiisivity of Gases in Soil. - 3.3 Computing Gas Concentrations. - 3.4 Simulating One-Dimensional Steady-State Oxygen Diffusion in a Soil Profile. - 3.5 Numerical Implementation. - 3.6 Exercises. - 4 Soil Temperature and Heat Flow. - 4.1 Differential Equations for Heat Conduction. - 4.2 Soil Temperature Data. - 4.3 Numerical Solution of the Heat Flow Equation. - 4.4 Soil Thermal Properties. - 4.5 Numerical Implementation. - 4.6 Exercises. - 5 Soil Liquid Phase and Soil-Water Interactions. - 5.1 Properties of Water. - 5.2 Soil Water Potential. - 5.3 Water Potential-Water Content Relations. - 5.4 Liquid- and Vapour-Phase Equilibrium. - 5.5 Exercises. - 6 Steady-State Water Flow and Hydraulic Conductivity. - 6.1 Forces on Water in Porous Media. - 6.2 Water Flow in Saturated Soils. - 6.3 Saturated Hydraulic Conductivity. - 6.4 Unsaturated Hydraulic Conductivity. - 6.5 Exercises. - 7 Variation in Soil Properties. - 7.1 Frequency Distributions. - 7.2 Probability Density Functions. - 7.3 Transformations. - 7.4 Spatial Correlation. - 7.5 Approaches to Stochastic Modelling. - 7.6 Numerical Implementation. - 7.7 Exercises. - 8 Transient Water Flow. - 8.1 Mass Conservation Equation. - 8.2 Water Flow. - 8.3 Infiltration. - 8.4 Numerical Simulation of Infiltration. - 8.5 Numerical Implementation. - 8.6 Exercises. - 9 Triangulated Irregular Network. - 9.1 Digital Terrain Model. - 9.2 Triangulated Irregular Network. - 9.3 Numerical Implementation. - 9.4 Main. - 9.5 Triangulation. - 9.6 GIS Functions. - 9.7 Boundary. - 9.8 Geometrical Properties of Triangles. - 9.9 Delaunay Triangulation. - 9.10 Refinement. - 9.11 Utilities. - 9.12 Visualization. - 9.13 Exercise. - 10 Water Flow in Three Dimensions. - 10.1 Governing Equations. - 10.2 Numerical Formulation. - 10.3 Coupling Surface and Subsurface Flow. - 10.4 Numerical Implementation. - 10.5 Simulation. - 10.6 Visualization and Results. - 10.7 Exercises. - 11 Evaporation. - 11.1 General Concepts. - 11.2 Simultaneous Transport of Liquid and Vapour in Isothermal Soil. - 11.3 Modelling evaporation. - 11.4 Numerical Implementation. - 11.5 Exercises. - 12 Modelling Coupled Transport. - 12.1 Transport Equations. - 12.2 Partial Differential Equations. - 12.3 Surface Boundary Conditions. - 12.4 Numerical Implementation. - 12.5 Exercises. - 13 Solute Transport in Soils. - 13.1 Mass Flow. - 13.2 Diffusion. - 13.3 Hydrodynamic Dispersion. - 13.4 Advection-Dispersion Equation. - 13.5 Solute-Soil Interaction. - 13.6 Sources and Sinks of Solutes. - 13.7 Analytical Solutions. - 13.8 Numerical Solution. - 13.9 Numerical Implementation. - 13.10 Exercises. - 14 Transpiration and Plant-Water Relations. - 14.1 Soil Water Content and Soil Water Potential under a Vegetated Surface. - 14.2 General Features of Water Flow in the SPAC. - 14.3 Resistances to Water Flow within the Plant. - 14.4 Effect of Environment on Plant Resistance. - 14.5 Detailed Consideration of Soil and Root Resistances. - 14.6 Numerical Implementation. - 14.7 Exercises. - 15 Atmospheric Boundary Conditions. - 15.1 Radiation Balance at the Exchange Surface. - 15.2 Boundary-Layer Conductance for Heat and Water Vapour. - 15.3 Evapotranspiration and the Penman-Monteith Equation. - 15.4 Partitioning of Evapotranspiration. - 15.5 Exercise. - Appendix A: Basic Concepts and Examples of Python Programming. - A.1 Basic Python. - A.2 Basic Concepts of Computer Programming. - A.3 Data Representation: Variables. - A.4 Comments Rules and Indendation. - A.5 Arithmetic Expression. - A.6 Functions. - A.7 Flow Control. - A.8 File Input and Output. - A.9 Arrays. - A.10 Reading Date Time. - A.11 Object-Oriented Programming in Python. - A.12 Output and Visualization. - A.13 Exercises. - Appendix B: Computational Tools. - B.1 Numerical Differentiation. - B.2 Numerical Integration. - B.3 Linear Algebra. - B.4 Exercises. - List of Symbols. - List of Python Variables. - List of Python Projects. - References. - Index.
    Location: AWI Reading room
    Branch Library: AWI Library
    Location Call Number Expected Availability
    BibTip Others were also interested in ...
  • 2
    Monograph available for loan
    Monograph available for loan
    New York, NY : Cambridge University Press
    Call number: AWI A6-17-90616
    Type of Medium: Monograph available for loan
    Pages: xxxiv, 432 Seiten , Illustrationen, graphische Darstellungen
    Edition: First published
    ISBN: 9781107118140
    Language: English
    Note: Contents: Lists of figures. - List of contributors. - Preface. - 1. Challenges for ice age dynamics: a dynamical systems perspective / Michel Crucifix, Guillaume Lenoir and Takahito Mitsui. - 2. Tipping points in the climate system / Peter Ditlevsen. - 3. Atmospheric teleconnection patterns / Steven B. Feldstein and Christian L. E. Franzke. - 4. Atmospheric regimes: the link between weather and the large scale circulation / David M. Straus, Franco Molteni and Susanna Corti. - 5. Low-frequency regime transitions and predictability of regimes in a barotropic model / Balu T. Nadiga and Terence J. O'Kane. - 6. Complex network techniques for climatological data analysis / Reik V. Donner, Marc Wiedermann and Jonathan F. Donges. - 7. On inference and validation of causality relations in climate teleconnections / Illia Horenko, Susanne Gerber, Terence J. O'Kane, James S. Risbey and Didier P. Monselesan. - 8. Stochastic climate theory / Georg A. Gottwald, Daan T. Crommelin and Christian L. E. Franzke. - 9. Stochastic subgrid modelling for geophysical and three-dimensional turbulence / Jorgen S. Frederiksen, Vassili Kitsios, Terence J. O'Kane and Meelis J. Zidikheri. - 10. Model error in data assimilation / John Harlim. - 11. Long-term memory in climate: detection, extreme events, and significance of trends / Armin Bunde and Josef Ludescher. - 12. Fractional stochastic models for heavy tailed, and long-range dependent, fluctuations in physical systems / Nicholas W. Watkins. - 13. Modelling spatial extremes using Max-Stable Processes / Mathieu Ribatet. - 14. Extreme value analysis in dynamical systems: two case studies / Tamás Bódai. - Index.
    Location: AWI Reading room
    Branch Library: AWI Library
    Location Call Number Expected Availability
    BibTip Others were also interested in ...
  • 3
    Series available for loan
    Series available for loan
    Hamburg : maribus gGmbH
    Associated volumes
    Call number: AWI G2-17-91188
    In: World ocean review, 5
    Type of Medium: Series available for loan
    Pages: 207 Seiten , Illustrationen, graphische Darstellungen
    ISBN: 978-3-86648-274-6
    Series Statement: World ocean review 5
    Language: German
    Note: Inhalt: Vorwort. - 1. Die Dynamik der Küsten. - Vom Werden und Vergehen der Küsten. - Die vielen Gesichter der Küsten. - Conclusio: Die Gestalt unserer Küsten – eine lange und wechselvolle Geschichte. - 2. Mit den Küsten leben. - Die Leistung der Küsten. - Küsten unter Druck. - Conclusio: Immense Leistung, immenser Druck 3. Bedrohung durch Klimawandel und Naturgefahren. - Der Klimawandel und die Küsten. - Vom Kampf gegen Naturgefahren. - Conclusio: Klimawandel und Naturgefahren bedrohen die Küsten. - 4. Küsten besser schützen. - Die Kunst, Küsten zu verwalten. - Dem Meeresspiegelanstieg begegnen. - Conclusio: Gemeinsam für eine schonende Nutzung und einen besseren Schutz. - Gesamt-Conclusio. - Glossar. - Abkürzungen. - Quellenverzeichnis. - Abbildungsverzeichnis. - Index. - Mitwirkende. - Partner und Danksagung. - Impressum.
    Location: AWI Reading room
    Branch Library: AWI Library
    Location Call Number Expected Availability
    BibTip Others were also interested in ...
  • 4
    Call number: ZSP-760/A-16
    In: Terra Antartica reports, No. 16
    Type of Medium: Series available for loan
    Pages: 15 Seiten , Illustrationen , 4 Kartenbeilagen, 1 Erläuterungsheft (4 S.)
    ISBN: 978-88-88395-13-5
    Series Statement: Terra Antartica reports 16
    Language: English
    Note: 1 Kartenbeilage unter dem Titel: Northern Foothills and Inexpressible Island Area (Victoria Land, Antarctica) : Satellite Image Map = Northern Foothills E Area Di Inexpressible Island (Terra Vittoria, Antartide) / Flavio Borfecchia & Massimo Frezzotti 〈1 : 50.000〉 , 1 Kartenbeilage unter dem Titel: Satellite Image Mosaic of the Terra Nova Bay Area (Victoria Land, Antarctica) = Mosaico Di Immagini Da Satellite Dell'Area Di Baia Terra Nova (Terra Vittoria, Antartide) / Massimo Frezzotti, Maria Christina Salvatore & Luca Vittuari 〈1 : 250.000〉 , 1 Kartenbeilage unter dem Titel: Mount Melbourne Quadrangle (Victoria Land) = Foglio Mount Melbourne (Terra Vittoria) / Editor Carlo Baroni 〈1 : 250.000〉 aus der Antarctic Geomorphological and Glaciological 1:250.000 Map Series , 1 Kartenbeilage unter dem Titel: Mount Melbourne Quadrangle (Victoria Land) 2012 / P. C. Pertusati, G. Musumeci, R. Carosi, M. Meccheri 〈1 : 250.000〉 aus der Antarctic Geological 1:250.000 Map Series , This case with the aim to celebrate 30 years of Italian research in Antarctica, contains four geothematic maps of the Terra Nova bay area where the Italian Programma Nazionale di Ricerche in Antartide begun its activities in 1985 and the Italian coastal station Mario Zucchelli was constructed.
    Location: AWI Reading room
    Branch Library: AWI Library
    Location Call Number Expected Availability
    BibTip Others were also interested in ...
  • 5
    Monograph available for loan
    Monograph available for loan
    Hoboken, NJ : Wiley Blackwell
    Call number: AWI G3-18-91739
    Type of Medium: Monograph available for loan
    Pages: xxiii, 515 Seiten , Illustrationen, Diagramme, Karten , 26 cm
    Edition: Fourth edition
    Edition: edition first published 2018
    ISBN: 9781119132783 , 9781119132790 (electronic) , 9781119132813 (electronic)
    Language: English
    Note: Contents: Preface to Fourth Edition. - Preface to Third Edition. - Preface to Second Edition. - Preface to First Edition. - Acknowledgments. - PART I THE PERIGLACIAL DOMAIN. - 1 Introduction. - 1.1 The Periglacial Concept. - 1.2 Diagnostic Criteria. - 1.3 Periglacial Environments. - 1.4 The Periglacial Domain. - 1.5 The Periglacial Domain and the Cryosphere. - 1.6 Disciplinary Considerations. - 1.6.1 The Growth of Geocryology. - 1.6.2 The Challenge of Quaternary Science. - 1.6.3 Periglacial Geomorphology or Cold-Region Geomorphology?. - 1.7 Societal Considerations. - 1.8 The Growth of Periglacial Knowledge. - 2 Periglacial Climates. - 2.1 Boundary Conditions. - 2.2 Cold Deserts. - 2.3 Regional Climates. - 2.3.1 High Arctic Climates. - 2.3.2 Continental Climates. - 2.3.3 Alpine Climates. - 2.3.4 Montane Climates. - 2.3.5 Climates of Low Annual Temperature Range. - 2.3.6 Antarctica: A Special Case. - 2.4 Snow and Ice. - 2.5 Wind. - 2.6 Ground Climates. - 2.6.1 The 'n'-Factor. - 2.6.2 The Thermal Offset. - 2.6.3 The Ground Temperature Regime. - 2.7 Periglacial Climates and Global Climate Change. - 2.7.1 Basic Facts. - 2.7.2 Why Climate-Cryosphere Interactions Accelerate Climate Warming. - 3 Periglacial Ecosystems. - 3.1 General Statement. - 3.2 Biogeographic Zonation and Major Vegetation Types. - 3.3 Adaptations to Cold, Snow, Wind and Aridity. - 3.4 The Effect of Vegetation. - 3.5 The Polar Deserts. - 3.5.1 The High Arctic Polar Deserts. - 3.5.2 The High Arctic Polar Semi-Deserts. - 3.6 The Polar Desert-Tundra Transition. - 3.7 The Low-Arctic Tundra. - 3.8 The Forest-Tundra Bioclimatic Boundary (The Tree Line). - 3.9 The Boreal Forest. - 3.10 The Alpine and Montane Ecosystems. - 3.11 Antarctica - A Special Case. - 3.12 Periglacial Ecosystems and Climate Change. - PART II FROZEN GROUND AND PERMAFROST. - 4 Ground Freezing, Permafrost and the Active Layer. - 4.1 Introduction. - 4.2 Ground Freezing. - 4.2.1 Basic Concepts. - 4.2.2 Ice Segregation. - 4.2.3 "The Frozen Fringe'. - 4.2.4 Frost Heave. - 4.3 Perennially-Frozen Ground (Permafrost). - 4.4 Moisture and Ice Within Permafrost. - 4.5 Thermal and Physical Properties. - 4.5.1 The Geothermal Regime. - 4.5.2 The TTOP Model. - 4.5.3 Physical Properties. - 4.5.4 Thermal Properties. - 4.6 Permafrost Hydrology. - 4.6.1 Aquifers. - 4.6.2 Hydrochemistry. - 4.6.3 Groundwater Icings. - 4.7 The Active Layer. - 4.7.1 Terminology. - 4.7.2 The Active-Layer Thermal Regime. - 4.7.3 The Transient Layer. - 4.7.4 The Stefan Equation. - 5 Permafrost Distribution and Stability. - 5.1 Introduction. - 5.2 Controls over Permafrost Distribution. - 5.2.1 Relief and Aspect. - 5.2.2 Rock Type. - 5.2.3 Vegetation. - 5.2.4 Snow Cover. - 5.2.5 Fire. - 5.2.6 Lakes and Surface Water Bodies. - 5.3 Spatial Extent of Permafrost and Frozen Ground. - 5.3.1 Latitudinal Permafrost. - 5.3.2 Alpine (Mountain) Permafrost. - 5.3.3 Montane Permafrost. - 5.3.4 Seasonally-Frozen Ground. - 5.4 Sub-Sea and Relict Permafrost. - 5.4.1 Sub-Sea Permafrost. - 5.4.2 Relict (Terrestrial) Permafrost. - 5.5 Permafrost and Ecosystems. - 5.6 Permafrost Monitoring and Mapping. - 5.6.1 CALM and GTN-P (TSP). - 5.6.2 BTS and Mountain Permafrost Probability Mapping. - 5.7 Climate Warming and Permafrost. - 5.7.1 Evidence for Warming Permafrost. - 5.7.2 Evidence for Thawing Permafrost. - 6 Ground Ice and Cryostratigraphy. - 6.1 Introduction. - 6.2 Quantitative Parameters. - 6.3 Epigenetic, Syngenetic and Polygenetic Permafrost. - 6.4 Classification. - 6.4.1 The Russian Approach. - 6.4.2 The North American Approach. - 6.5 Main Ground Ice Types. - 6.5.1 Pore Ice. - 6.5.2 Segregated Ice. - 6.5.3 Intrusive Ice. - 6.5.4 Vein Ice. - 6.5.5 Other Types of Ice. - 6.6 Ice Distribution. - 6.6.1 Amounts. - 6.6.2 Distribution with Depth. - 6.6.3 Ice in Bedrock. - 6.6.4 Ice in Poorly-Lithified Sediments. - 6.7 Cryostratigraphy and Cryolithology. - 6.7.1 Cryostructural Analysis. - 6.7.2 Cryostructures of Epigenetic and Syngenetic Permafrost. - 6.7.3 Thaw Unconformities. - 6.7.4 Aggradational Ice. - 6.7.5 Icy Bodies and Ice, Sand and Soil Pseudomorphs. - 6.8 Ice Crystallography. - 6.9 Ice Geochemistry. - 6.10 Massive Ice and Massive-Icy Bodies. - 6.10.1 Nature and Extent. - 6.10.2 Intra-Sedimental Ice. - 6.10.3 Buried Glacier Ice. - 6.11 Cryostratigraphy and Past Environments. - 7 Aggradational Permafrost Landforms. - 7.1 Introduction. - 7.2 How Does Permafrost Aggrade?. - 7.2.1 The Illisarvik Drained-Lake Experiment. - 7.3 Thermal-Contraction-Crack Polygons. - 7.3.1 Coefficients of Thermal Expansion and Contraction. - 7.3.2 Ice, Sand and Soil ('Ground') Wedges. - 7.3.3 Development of the Polygon Net. - 7.3.4 Polygon Morphology. - 7.3.5 Controls over Cracking. - 7.3.6 Climatic Significance. - 7.4 Ice and Sand Wedges. - 7.4.1 Epigenetic Wedges. - 7.4.2 Syngenetic Wedges. - 7.4.3 Anti-Syngenetic Wedges. - 7.4.4 Growth and Deformation of Wedges. - 7.5 Organic Terrain. - 7.5.1 Palsas. - 7.5.2 Peat Plateaus. - 7.6 Frost Mounds. - 7.6.1 Perennial-Frost Mounds. - 7.6.2 Hydraulic (Open) System Pingos. - 7.6.3 Hydrostatic (Closed) System Pingos. - 7.6.4 Other Perennial-Frost Mounds. - 7.6.5 Seasonal-Frost Mounds. - 7.6.6 Hydrolaccoliths and Other Frost-Induced Mounds. - 8 Thermokarst Processes and Landforms. - 8.1 Introduction. - 8.2 Thawing Ground. - 8.2.1 Thaw Strain and Thaw Settlement. - 8.2.2 Potential Depths of Soil Freezing and Thawing. - 8.2.3 The Development of Thermokarst. - 8.3 Causes of Thermokarst. - 8.3.1 General Comments. - 8.3.2 Specific Causes. - 8.4 Thaw-Related Processes. - 8.4.1 Thermokarst Subsidence (Thaw Settlement). - 8.4.2 Thermal Erosion. - 8.4.3 Other Processes. - 8.5 Thermokarst Sediments and Structures. - 8.5.1 Involuted Structures. - 8.5.2 Retrogressive-Thaw-Slumps and Debris-Flow Deposits. - 8.5.3 Ice-Wedge Pseudomorphs and Composite-Wedge Casts. - 8.5.4 Ice, Silt, Sand and Gravel Pseudomorphs. - 8.6 Thermokarst Landscapes. - 8.6.1 The Alas-Thermokarst Relief of Central Yakutia. - 8.6.2 The Western North American Arctic. - 8.6.3 The Ice-Free Areas of Continental Antarctica. - 8.7 Ice-Wedge Thermokarst Relief. - 8.7.1 Low-Centred Polygons. - 8.7.2 High-Centred Polygons. - 8.7.3 Badland Thermokarst Relief. - 8.8 Thaw Lakes and Depressions. - 8.8.1 Lakes and Taliks. - 8.8.2 Morphology. - 8.8.3 Growth and Drainage. - 8.8.4 Oriented Thaw Lakes. - Part III Periglacial Geomorphology. - 9 Cold-Climate Weathering. - 9.1 Introduction. - 9.2 General Weathering Facts. - 9.3 Freezing and Thawing Indices. - 9.4 Rock (Frost?) Shattering. - 9.4.1 Frost Action and Ice Segregation. - 9.4.2 Insolation and Thermal Shock. - 9.4.3 Perspective. - 9.5 Chemical Weathering. - 9.5.1 Karkevagge. - 9.5.2 Solution and Karstification. - 9.5.3 Salt Weathering. - 9.6 Cryogenic Weathering. - 9.6.1 Cryogenic Disintegration. - 9.6.2 The Coefficient of Cryogenic Contrast. - 9.6.3 Physico-Chemical Changes. - 9.6.4 Problematic Phenomena. - 9.7 Cryobiological Weathering. - 9.8 Rates of Cold-Climate Bedrock Weathering. - 9.9 Cryosols and Cryopedology. - 9.9.1 Cryosols. - 9.9.2 Classification. - 9.9.3 Cryosolic Micromorphology. - 10 Mass-Wasting Processes and Active-Layer Phenomena. - 10.1 Introduction. - 10.2 Slow Mass-Wasting Processes. - 10.2.1 Solifluction. - 10.2.2 Frost Creep. - 10.2.3 Gelifluction. - 10.2.4 Solifluction Deposits and Phenomena. - 10.3 Rapid Mass-Wasting Processes. - 10.3.1 Active-Layer-Detachment Slides. - 10.3.2 Debris Flows, Slush Flows and Avalanches. - 10.3.3 Rockfall. - 10.4 Snow Hydrology and Slopewash Processes. - 10.4.1 Snow Hydrology and Snowbanks. - 10.4.2 Surface and Subsurface Wash. - 10.5 Active-Layer Phenomena. - 10.5.1 Frost Heaving. - 10.5.2 Bedrock Heave. - 10.5.3 Upward Heaving of Stones and Objects. - 10.5.4 Stone Tilting. - 10.5.5 Ne
    Location: AWI Reading room
    Branch Library: AWI Library
    Location Call Number Expected Availability
    BibTip Others were also interested in ...
  • 6
    Monograph available for loan
    Monograph available for loan
    Bremen : Übersee-Museum Bremen
    Call number: AWI P6-18-91708
    Type of Medium: Monograph available for loan
    Pages: 176 Seiten , Illustrationen , 24 cm
    Edition: [1. Auflage]
    ISBN: 978-3-89946-286-9
    Series Statement: TenDenZen 2018,26
    Language: German
    Note: Inhalt: Grußwort - Antje Boetius. - Vorwort - Michaela Grein. - Die Welt teilhaben lassen - Luc Jacquet über die Sonderausstellung „Antarctica". - Die Geschichte der Antarktisforschung. - Die Entdeckung und Erforschung der Antarktis / Diedrich Fritzsche. - Die Gründung des Alfred-Wegener-Instituts für Polarforschung / Gotthilf Hempel. - Frauen in der Antarktis / Gotthilf Hempel. - Geologie und Klima. - Der geologische Bau der Antarktis / Andreas Läufer. - Einfluss des Ozeans auf das Schmelzen der Eisschelfe / Sunke Schmidtko. - Aurora australis - Polarlichter in der Antarktis / Michaela Grein. - Lebensräume und Organismengruppen. - Antarktische Makroalgen / Katharina Zacher & Christian Wiencke. - Leben am Meeresboden und Wiederbesiedlungsdynamik / Julian Gutt. - Die Schwämme des antarktischen Meeres / Dorte Janussen. - Schuppenwürmer in der Antarktis / Michael Stiller. - Meiofauna: Kleine Tiere - große Wirkung / Gritta Veit-Köhler & Friederike Säring. - Der antarktische Krill, Euphausia superba, im Nahrungsnetz des Südpolarmeers / Bettina Meyer. - Der Kaiserpinguin - Bedrohte Tierart und Stellvertreter für den Südozean / Daniel P. Zitterbart. - Fliegende Vögel der Antarktis / Hans-Ulrich Peter. - Antarktische Robben / Horst Bornemann & Joachim Plötz. - Pioniere und Überlebenskünstler: Die Flechten / Ludger Kappen. - Die Evolution der Wälder in Antarktika / Laura Jane Tilley. - Pflanzen in Antarktika / Michaela Grein. - Nutzung und Schutz der Antarktis. - Umweltschutz in der Antarktis / Heike Herata. - Meeresschutz in der Antarktis / Bob Zuur. - Tourismus in der Antarktis / Heinz Klöser. - Die Autorinnen und Autoren.
    Location: AWI Reading room
    Branch Library: AWI Library
    Location Call Number Expected Availability
    BibTip Others were also interested in ...
  • 7
    Monograph available for loan
    Monograph available for loan
    Bremerhaven : Alfred Wegener Institute, Helmholtz-Centre for Polar and Marine Research
    Call number: AWI A4-19-92165
    Type of Medium: Monograph available for loan
    Pages: 86 Seiten , Illustrationen, Diagramme, Karten
    Edition: January 2018
    Series Statement: Im Fokus / Alfred-Wegener-Institut, Helmholtz-Zentrum für Polar- und Meeresforschung
    Language: German
    Note: TABLE OF CONTENTS: EDITORIAL. - Tracking Changes: research at our planet’s hotspots. - FOCUS TOPIC. - Hotspot Arktic - when the ice disappears. - OCEANOGRAPHY. - E-mails from the Filchner Ice Shelf. - SEA-ICE FORECASTING. - Great minds don’t always think alike. - CLIMATE MODELLING. - Always the right scale. - HYDROACOUSTICS. - The Music of the Ocean. - OCEANOGRAPHY. - The Pulse of Heat in the North Atlantic. - OCEANOGRAPHY. - Where is the giant iceberg from the Larsen C Ice Shelf heading?. - ATMOSPHERIC RESEARCH. - Hitchhiking across the arctic. - CLIMATE MODELLING. - The benefits of model. - REMOTE SENSING. - Minding the gaps. - ATMOSPHERIC RESEARCH. - The Ozone Story. - SEA-ICE PHYSICS. - A bird’s eye view of the ice. - RESEARCH NETWORK INITIATIVE. - Understanding the climate change on your own doorstep. - INFOGRAPHIC. - Decoding the Earth ́s climate history. - SEA LEVEL RISE. - Melting ice flooded shores. - MASTHEAD.
    Location: AWI Reading room
    Branch Library: AWI Library
    Location Call Number Expected Availability
    BibTip Others were also interested in ...
  • 8
    Call number: AWI G6-18-91326
    Type of Medium: Monograph available for loan
    Pages: 279 Seiten , Diagramme, Karten
    ISBN: 9783110402421
    Language: English
    Note: Contents: Preface. - Acknowledgements. - 1 Introduction. - 1.1 Origin and characters of silicon and its isotopes. - 1.2 A brief description of silicon geochemistry. - 1.3 The history of silicon isotope studies. - 2 Analytical methods of silicon isotope composition. - 2.1 Gas source isotope ratio mass spectrometric analysis of silicon isotopes. - 2.2 Multi-collector inductively coupled plasma mass spectrometric (MC-ICPMS) analysis of silicon isotopes. - 2.3 Secondary ion mass spectrometry analyses. - 2.4 Standards and reference materials for silicon isotope measurement. - 2.5 Comparison of different methods on silicon isotope analyses. - 3 Mechanisms of silicon isotope fractionation. - 3.1 The thermodynamic silicon isotope exchange fractionation. - 3.2 Kinetic fractionation of silicon isotopes. - 4 Distribution of silicon isotopes in nature. - 4.1 Silicon isotope compositions of extraterrestrial materials. - 4.2 Silicon isotope distribution in lithosphere. - 4.3 Silicon isotope compositions of soils. - 4.4 Hydrosphere. - 4.5 Biosphere. - 5 Several aspects of silicon isotope applications. - 5.1 Studies on global silicon cycle. - 5.2 Silicon isotope studies on environmental variation of ocean. - 5.3 Studies on mechanisms of absorption, transportation and precipitation of silicon in plant growth processes. - 5.4 Studies on silicon source and genesis of ore deposits. - References. - Index.
    Location: AWI Reading room
    Branch Library: AWI Library
    Location Call Number Expected Availability
    BibTip Others were also interested in ...
  • 9
    Monograph available for loan
    Monograph available for loan
    Berlin : Springer
    Associated volumes
    Call number: AWI S4-18-91822
    In: Texts in computational science and engineering, 6
    Type of Medium: Monograph available for loan
    Pages: XXXI, 922Seiten , Illustrationen, graphische Darstellungen
    Edition: Fifth edition
    ISBN: 9783662498873 , 9783662498866
    Series Statement: Texts in computational science and engineering 6
    Language: English
    Note: Contents: 1 Computing with Formulas. - 1.1 The First Programming Encounter: a Formula. - 1.1.1 Using a Program as a Calculator. - 1.1.2 About Programs and Programming. - 1.1.3 Tools for Writing Programs. - 1.1.4 Writing and Running Your First Python Program. - 1.1.5 Warning About Typing Program Text. - 1.1.6 Verifying the Result. - 1.1.7 Using Variables. - 1.1.8 Names of Variables. - 1.1.9 Reserved Words in Python. - 1.1.10 Comments. - 1.1.11 Formatting Text and Numbers. - 1.2 Computer Science Glossary. - 1.3 Another Formula: Celsius-Fahrenheit Conversion. - 1.3.1 Potential Error: Integer Division. - 1.3.2 Objects in Python. - 1.3.3 Avoiding Integer Division. - 1.3.4 Arithmetic Operators and Precedence. - 1.4 Evaluating Standard Mathematical Functions. - 1.4.1 Example: Using the Square Root Function. - 1.4.2 Example: Computing with sinh x. - 1.4.3 A First Glimpse of Rounding Errors. - 1.5 Interactive Computing. - 1.5.1 Using the Python Shell. - 1.5.2 Type Conversion. - 1.5.3 IPython. - 1.6 Complex Numbers. - 1.6.1 Complex Arithmetics in Python. - 1.6.2 Complex Functions in Python. - 1.6.3 Unified Treatment of Complex and Real Functions. - 1.7 Symbolic Computing. - 1.7.1 Basic Differentiation and Integration. - 1.7.2 Equation Solving. - 1.7.3 Taylor Series and More. - 1.8 Summary. - 1.8.1 Chapter Topics. - 1.8.2 Example: Trajectory of a Ball. - 1.8.3 About Typesetting Conventions in This Book. - 1.9 Exercises. - 2 Loops and Lists. - 2.1 While Loops. - 2.1.1 A Naive Solution. - 2.1.2 While Loops. - 2.1.3 Boolean Expressions. - 2.1.4 Loop Implementation of a Sum. - 2.2 Lists. - 2.2.1 Basic List Operations. - 2.2.2 For Loops. - 2.3 Alternative Implementations with Lists and Loops. - 2.3.1 While Loop Implementation of a for Loop. - 2.3.2 The Range Construction. - 2.3.3 For Loops with List Indices. - 2.3.4 Changing List Elements. - 2.3.5 List Comprehension. - 2.3.6 Traversing Multiple Lists Simultaneously. - 2.4 Nested Lists. - 2.4.1 A table as a List of Rows or Columns. - 2.4.2 Printing Objects. - 2.4.3 Extracting Sublists. - 2.4.4 Traversing Nested Lists. - 2.5 Tuples. - 2.6 Summary. - 2.6.1 Chapter Topics. - 2.6.2 Example: Analyzing List Data. - 2.6.3 How to Find More Python Information. - 2.7 Exercises. - 3 Functions and Branching. - 3.1 Functions. - 3.1.1 Mathematical Functions as Python Functions. - 3.1.2 Understanding the Program Flow. - 3.1.3 Local and Global Variables. - 3.1.4 Multiple Arguments. - 3.1.5 Function Argument or Global Variable?. - 3.1.6 Beyond Mathematical Functions. - 3.1.7 Multiple Return Values. - 3.1.8 Computing Sums. - 3.1.9 Functions with No Return Values. - 3.1.10 Keyword Arguments. - 3.1.11 Doc Strings. - 3.1.12 Functions as Arguments to Functions. - 3.1.13 The Main Program. - 3.1.14 Lambda Functions. - 3.2 Branching. - 3.2.1 If-else Blocks. - 3.2.2 Inline if Tests. - 3.3 Mixing Loops, Branching, and Functions in Bioinformatics Examples. - 3.3.1 Counting Letters in DNA Strings. - 3.3.2 Efficiency Assessment. - 3.3.3 Verifying the Implementations. - 3.4 Summary. - 3.4.1 Chapter Topics. - 3.4.2 Example: Numerical Integration. - 3.5 Exercises. - 4 User Input and Error Handling. - 4.1 Asking Questions and Reading Answers. - 4.1.1 Reading Keyboard Input. - 4.2 Reading from the Command Line. - 4.2.1 Providing Input on the Command Line. - 4.2.2 A Variable Number of Command-Line Arguments. - 4.2.3 More on Command-Line Arguments. - 4.3 Turning User Text into Live Objects. - 4.3.1 The Magic Eval Function. - 4.3.2 The Magic Exec Function. - 4.3.3 Turning String Expressions into Functions. - 4.4 Option-Value Pairs on the Command Line. - 4.4.1 Basic Usage of the Argparse Module. - 4.4.2 Mathematical Expressions as Values. - 4.5 Reading Data from File. - 4.5.1 Reading a File Line by Line. - 4.5.2 Alternative Ways of Reading a File. - 4.5.3 Reading a Mixture of Text and Numbers. - 4.6 Writing Data to File. - 4.6.1 Example: Writing a Table to File. - 4.6.2 Standard Input and Output as File Objects. - 4.6.3 What is a File, Really?. - 4.7 Handling Errors. - 4.7.1 Exception Handling. - 4.7.2 Raising Exceptions. - 4.8 A Glimpse of Graphical User Interfaces. - 4.9 Making Modules. - 4.9.1 Example: Interest on Bank Deposits. - 4.9.2 Collecting Functions in a Module File. - 4.9.3 Test Block. - 4.9.4 Verification of the Module Code. - 4.9.5 Getting Input Data. - 4.9.6 Doc Strings in Modules. - 4.9.7 Using Modules. - 4.9.8 Distributing Modules. - 4.9.9 Making Software Available on the Internet. - 4.10 Making Code for Python 2 and 3. - 4.10.1 Basic Differences Between Python 2 and 3. - 4.10.2 Turning Python 2 Code into Python 3 Code. - 4.11 Summary. - 4.11.1 Chapter Topics. - 4.11.2 Example: Bisection Root Finding. - 4.12 Exercises. - 5 Array Computing and Curve Plotting. - 5.1 Vectors. - 5.1.1 The Vector Concept. - 5.1.2 Mathematical Operations on Vectors. - 5.1.3 Vector Arithmetics and Vector Functions. - 5.2 Arrays in Python Programs. - 5.2.1 Using Lists for Collecting Function Data. - 5.2.2 Basics of Numerical Python Arrays. - 5.2.3 Computing Coordinates and Function Values. - 5.2.4 Vectorization. - 5.3 Curve Plotting. - 5.3.1 MATLAB-Style Plotting with Matplotlib. - 5.3.2 Matplotlib; Pyplot Prefix. - 5.3.3 SciTools and Easyviz. - 5.3.4 Making Animations. - 5.3.5 Making Videos. - 5.3.6 Curve Plots in Pure Text. - 5.4 Plotting Difficulties. - 5.4.1 Piecewisely Defined Functions. - 5.4.2 Rapidly Varying Functions. - 5.5 More Advanced Vectorization of Functions. - 5.5.1 Vectorization of StringFunction Objects. - 5.5.2 Vectorization of the Heaviside Function. - 5.5.3 Vectorization of a Hat Function. - 5.6 More on Numerical Python Arrays. - 5.6.1 Copying Arrays. - 5.6.2 In-Place Arithmetics. - 5.6.3 Allocating Arrays. - 5.6.4 Generalized Indexing. - 5.6.5 Testing for the Array Type. - 5.6.6 Compact Syntax for Array Generation. - 5.6.7 Shape Manipulation. - 5.7 High-Performance Computing with Arrays. - 5.7.1 Scalar Implementation. - 5.7.2 Vectorized Implementation. - 5.7.3 Memory-Saving Implementation. - 5.7.4 Analysis of Memory Usage. - 5.7.5 Analysis of the CPU Time. - 5.8 Higher-Dimensional Arrays. - 5.8.1 Matrices and Arrays. - 5.8.2 Two-Dimensional Numerical Python Arrays. - 5.8.3 Array Computing. - 5.8.4 Matrix Objects. - 5.9 Some Common Linear Algebra Operations. - 5.9.1 Inverse, Determinant, and Eigenvalues. - 5.9.2 Products. - 5.9.3 Norms. - 5.9.4 Sum and Extreme Values. - 5.9.5 Indexing. - 5.9.6 Transpose and Upper/Lower Triangular Parts. - 5.9.7 Solving Linear Systems. - 5.9.8 Matrix Row and Column Operations. - 5.9.9 Computing the Rank of a Matrix. - 5.9.10 Symbolic Linear Algebra. - 5.10 Plotting of Scalar and Vector Fields. - 5.10.1 Installation. - 5.10.2 Surface Plots. - 5.10.3 Parameterized Curve. - 5.10.4 Contour Lines. - 5.10.5 The Gradient Vector Field. - 5.11 Matplotlib. - 5.11.1 Surface Plots. - 5.11.2 Contour Plots. - 5.11.3 Vector Field Plots. - 5.12 Mayavi. - 5.12.1 Surface Plots. - 5.12.2 Contour Plots. - 5.12.3 Vector Field Plots. - 5.12.4 A 3D Scalar Field and Its Gradient Field. - 5.12.5 Animations. - 5.13 Summary. - 5.13.1 Chapter Topics. - 5.13.2 Example: Animating a Function. - 5.14 Exercises. - 6 Dictionaries and Strings. - 6.1 Dictionaries. - 6.1.1 Making Dictionaries. - 6.1.2 Dictionary Operations. - 6.1.3 Example: Polynomials as Dictionaries. - 6.1.4 Dictionaries with Default Values and Ordering. - 6.1.5 Example: Storing File Data in Dictionaries. - 6.1.6 Example: Storing File Data in Nested Dictionaries. - 6.1.7 Example: Reading and Plotting Data Recorded at Specific Dates. - 6.2 Strings. - 6.2.1 Common Operations on Strings. - 6.2.2 Example: Reading Pairs of Numbers. - 6.2.3 Example: Reading Coordinates. - 6.3 Reading Data fromWeb Pages. - 6.3.1 About Web Pages. - 6.3.2 How to Access Web Pages
    Location: AWI Reading room
    Branch Library: AWI Library
    Location Call Number Expected Availability
    BibTip Others were also interested in ...
  • 10
    Monograph available for loan
    Monograph available for loan
    Köln : Carl Heymanns Verlag
    Call number: AWI S5-19-92101
    Type of Medium: Monograph available for loan
    Pages: XXI, 311 Seiten , Illustrationen
    ISBN: 9783452291295 , 3452291294
    Language: German
    Location: AWI Reading room
    Branch Library: AWI Library
    Location Call Number Expected Availability
    BibTip Others were also interested in ...
Close ⊗
This website uses cookies and the analysis tool Matomo. More information can be found here...