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  (40)
  • 2025-2025  (3)
  • 2015-2019  (40)
  • 2016  (40)
  • AWI Library  (40)
  • 1
    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 ...
  • 2
    Call number: AWI S1-16-89841
    Description / Table of Contents: This book covers the basics of processing and spectral analysis of monovariate discrete-time signals. The approach is practical, the aim being to acquaint the reader with the indications for and drawbacks of the various methods and to highlight possible misuses. The book is rich in original ideas, visualized in new and illuminating ways, and is structured so that parts can be skipped without loss of continuity. Many examples are included, based on synthetic data and real measurements from the fields of physics, biology, medicine, macroeconomics etc., and a complete set of MATLAB exercises requiring no previous experience of programming is provided. Prior advanced mathematical skills are not needed in order to understand the contents: a good command of basic mathematical analysis is sufficient. Where more advanced mathematical tools are necessary, they are included in an Appendix and presented in an easy-to-follow way. With this book, digital signal processing leaves the domain of engineering to address the needs of scientists and scholars in traditionally less quantitative disciplines, now facing increasing amounts of data.
    Type of Medium: Monograph available for loan
    Pages: xxiv, 900 Seiten , Illustrationen
    ISBN: 978-3-319-25466-1
    Series Statement: Signals and Communication Technology
    Language: English
    Note: Contents: 1 Introduction. - 1.1 Chapter Summary. - 1.2 The Meaning of the Book’s Title. - 1.3 Historical Background. - 1.4 How to Read This Book. - 1.5 Further Reading. - References. - PART 1 BASIC THEORETICAL CONCEPTS. - 2 Discrete-Time Signals and Systems. - 2.1 Chapter Summary. - 2.2 Basic Definitions and Concepts. - 2.3 Discrete-Time Signals: Sequences. - 2.3.1 Basic Sequence Operations. - 2.3.2 Basic Sequences. - 2.3.3 Deterministic and Random Signals. - 2.4 Linear Time-Invariant (LTI) Systems. - 2.4.1 Impulse Response of an LTI System and Linear Convolution. - 2.4.2 An Example of Linear Convolution. - 2.4.3 Interconnections of LTI Systems. - 2.4.4 Effects of Stability and Causality Constraints on the Impulse Response of an LTI System. - 2.4.5 Finite (FIR) and Infinite (IIR) Impulse Response Systems. - 2.4.6 Linear Constant-Coefficient Difference Equation (LCCDE). - 2.4.7 Examples of LCCDE. - 2.4.8 The Solutions of an LCCDE. - 2.4.9 From the LCCDE to the Impulse Response: Examples. - 2.4.10 Eigenvalues and Eigenfunctions of LTI Systems. - References. - 3 Transforms of Discrete-Time Signals. - 3.1 Chapter Summary. - 3.2 z-Transform. - 3.2.1 Examples of z-Transforms and Special Cases. - 3.2.2 Rational z-Transforms. - 3.2.3 Inverse z-Transform. - 3.2.4 The z-Transform on the Unit Circle. - 3.2.5 Selected z-Transform Properties. - 3.2.6 Transfer Function of an LTI System. - 3.2.7 Output Sequence of an LTI System. - 3.2.8 Zeros and Poles: Forms for Rational Transfer Functions. - 3.2.9 Inverse System. - 3.3 Discrete-Time Fourier Transform (DTFT). - 3.3.1 An Example of DTFT Converging in the Mean-Square Sense. - 3.3.2 Line Spectra. - 3.3.3 Inverse DTFT. - 3.3.4 Selected DTFT Properties. - 3.3.5 The DTFT of a Finite-Length Causal Sequence. - 3.4 Discrete Fourier Series (DFS). - 3.4.1 Selected DFS Properties. - 3.4.2 Sampling in the Frequency Domain and Aliasing in the Time Domain. - 3.5 Discrete Fourier Transform (DFT). - 3.5.1 The Inverse DFT in Terms of the Direct DFT. - 3.5.2 Zero Padding. - 3.5.3 Selected DFT Properties. - 3.5.4 Circular Convolution Versus Linear Convolution. - 3.6 Fast Fourier Transform (FFT). - 3.7 Discrete Trigonometric Expansion. - 3.8 Appendix: Mathematical Foundations of Signal Representation. - 3.8.1 Vector Spaces. - 3.8.2 Inner Product Spaces. - 3.8.3 Bases in Vector Spaces. - 3.8.4 Signal Representation by Orthogonal Bases. - 3.8.5 Signal Representation by Standard Bases. - 3.8.6 Frames and Biorthogonal Bases. - 3.8.7 Summary and Complements. - References. - 4 Sampling of Continuous-Time Signals. - 4.1 Chapter Summary. - 4.2 Sampling Theorem. - 4.3 Reconstruction of a Continuous-Time Signal from Its Samples. - 4.4 Aliasing in the Frequency Domain and Anti-Aliasing Filter. - 4.5 The Uncertainty Principle for the Analog Fourier Transform. - 4.6 Support of a Continuous-Time Signal in the Time and Frequency Domains. - 4.7 Appendix: Analog and Digital Frequency Variables. - References. - 5 Spectral Analysis of Deterministic Discrete-Time Signals. - 5.1 Chapter Summary. - 5.2 Issues in Practical Spectral Analysis. - 5.2.1 The Effect of Windowing. - 5.2.2 The Effect of Spectral Sampling. - 5.3 Classical Windows. - 5.4 The Kaiser Window. - 5.5 Energy and Power Signals and Their Spectral Representations. - 5.6 Correlation of Deterministic Discrete-Time Signals. - 5.6.1 Correlation of Energy Signals. - 5.6.2 Correlation of Power Signals. - 5.6.3 Effect of an LTI System on Correlation Properties of Input and Output Signals. - 5.7 Wiener-Khinchin Theorem. - 5.7.1 Energy Signals and Energy Spectrum. - 5.7.2 Power Signals and Power Spectrum. - References. - PART 2 DIGITAL FILTERS. - 6 Digital Filter Properties and Filtering Implementation. - 6.1 Chapter Summary. - 6.2 Frequency-Selective Filters. - 6.3 Real-Causal-Stable-Rational (RCSR) Filters. - 6.4 Amplitude Response. - 6.5 Phase Response. - 6.5.1 Phase Discontinuities and Zero-Phase Response. - 6.5.2 Linear Phase (LP). - 6.5.3 Generalized Linear Phase (GLP). - 6.5.4 Constraints on GLP Filters. - 6.6 Digital Filtering Implementation. - 6.6.1 Direct Forms. - 6.6.2 Transposed-Direct Forms. - 6.6.3 FIR Direct and Transposed-Direct Forms. - 6.6.4 Direct and Transposed-Direct Forms for LP FIR Filters. - 6.6.5 Cascade and Parallel Forms. - 6.7 Zero-Phase Filtering. - 6.8 An Incorrect Approach to Filtering. - 6.9 Filtering After Downsampling. - 6.9.1 Theory of Downsampling. - 6.9.2 An Example of Filtering After Downsampling. - References. - 7 FIR Filter Design. - 7.1 Chapter Summary. - 7.2 Design Process. - 7.3 Specifications of Digital Filters. - 7.3.1 Constraints on the Magnitude Response. - 7.3.2 Constraints on the Phase Response. - 7.4 Selection of Filter Type: IIR or FIR?. - 7.5 FIR-Filter Design Methods and Approximation Criteria. - 7.6 Properties of GLP FIR Filters. - 7.6.1 Factorization of the Zero-Phase Response. - 7.6.2 Zeros of the Transfer Function. - 7.6.3 Another Form of the Adjustable Term. - 7.7 Equiripple FIR Filter Approximations: Minimax Design. - 7.8 Predicting the Minimum Filter Order. - 7.9 MPR Algorithm. - 7.10 Properties of Equiripple FIR Filters. - 7.11 The Minimax Method for Bandpass Filters. - References. - 8 IIR Filter Design. - 8.1 Chapter Summary. - 8.2 Design Process. - 8.3 Lowpass Analog Filters. - 8.3.1 Laplace Transform. - 8.3.2 Transfer Function and Design Parameters. - 8.4 Butterworth Filters. - 8.5 Chebyshev Filters. - 8.5.1 Chebyshev-I Filters. - 8.5.2 Chebyshev-II Filters. - 8.6 Elliptic Filters. - 8.7 Normalized and Non-normalized Filters. - 8.8 Comparison Among the Four Analog Filter Types. - 8.9 From the Analog Lowpass Filter to the Digital One. - 8.9.1 Bilinear Transformation. - 8.9.2 Design Procedure. - 8.9.3 Examples. - 8.10 Frequency Transformations. - 8.10.1 From a Lowpass to a Highpass Filter. - 8.10.2 From a Lowpass to a Bandpass Filter. - 8.10.3 From a Lowpass to a Bandstop Filter . - 8.11 Direct Design of IIR Filters. - 8.12 Appendix. - 8.12.1 Trigonometric Functions with Complex Argument. - 8.12.2 Elliptic Integrals. - 8.12.3 Jacobi Elliptic Functions. - 8.12.4 Landen-Gauss Transformation. - 8.12.5 Elliptic Rational Function. - References. - PART 3 SPECTRAL ANALYSIS. - 9 Statistical Approach to Signal Analysis. - 9.1 Chapter Summary. - 9.2 Preliminary Considerations. - 9.3 Random Variables. - 9.4 Ensemble Averages. - 9.5 Stationary Random Processes and Signals. - 9.6 Ergodicity. - 9.7 Wiener-Khinchin Theorem for Random Signals and Power Spectrum. - 9.8 Cross-Power Spectrum of Two Random Signals. - 9.9 Effect of an LTI System on a Random Signal. - 9.10 Estimation of the Averages of Ergodic Stationary Signals. - 9.10.1 General Concepts in Estimation Theory. - 9.10.2 Mean and Variance Estimation. - 9.10.3 Autocovariance Estimation. - 9.10.4 Cross-Covariance Estimation. - 9.11 Appendix: A Road Map to the Analysis of a Data Record. - References. - 10 Non-Parametric Spectral Methods. - 10.1 Chapter Summary. - 10.2 Power Spectrum Estimation. - 10.3 Periodogram. - 10.3.1 Bias. - 10.3.2 Variance. - 10.3.3 Examples. - 10.3.4 Variance Reduction by Band- and Ensemble-Averaging. - 10.4 Bartlett’s Method. - 10.5 Modified Periodogram. - 10.6 Welch’s Method. - 10.7 Blackman-Tukey Method. - 10.8 Statistical Significance of Spectral Peaks. - 10.9 MultiTaper Method. - 10.10 Estimation of the Cross-Power Spectrum of Two Random Signals. - 10.11 Use of the FFT in Power Spectrum Estimation. - 10.12 Power Spectrum Normalization. - References. - 11 Parametric Spectral Methods. - 11.1 Chapter Summary. - 11.2 Signals with Rational Spectra . - 11.3 Stochastic Models and Processes. - 11.3.1 Autoregressive-Moving Average (ARMA) Model. - 11.3.2 Autoregressive (AR) Model. - 11.3.3 Moving Average (MA) Model. - 11.3.4 How the AR and MA Modeling Approaches Are Theoretically Related. - 11.3.5 First-Order AR and MA Models: White, Red and Blue Noise. - 11.3.6 Higher-Order AR Models. - 11.4 The AR Approach to Spectral Estimation. - 11.5 AR Modeling and Linear Prediction. - 11.6
    Location: AWI Reading room
    Branch Library: AWI Library
    Location Call Number Expected Availability
    BibTip Others were also interested in ...
  • 3
    Call number: AWI A11-16-90009
    In: Forschungsbericht / Deutsches Zentrum für Luft- und Raumfahrt ; 2016-01, 2016-01
    Description / Table of Contents: Recent climate model simulations indicated that sulfate (SO4) formed from ship emissions may be one of the major contributors to the negative anthropogenic aerosol radiative forcing. Due to increasingly stringent regulations on the maximum sulfur content of ship fuels this contribution is expected to decrease strongly in the future. Possibly, nitrate (NO3) formation will compensate for part of the reduction, but measurements indicate that it may be crucial to include coarse mode particle interactions with condensable trace gases in order to quantify this effect. However, none of the aerosol (sub)models previously used for such assessments accounted for the coarse mode particle effects. This provided the motivation to extend one of those submodels, namely MADE, in the present work. The new submodel, MADE3, is based on the second generation of MADE, called MADE-in. It includes nine lognormal modes to represent three size ranges with three types of aerosol particles each. The associated increase in complexity w.r.t. to MADE and MADE-in required a complete revision of the code and careful reexamination of the underlying physical assumptions, as only the fine modes had been considered in the gas–particle interactions in the predecessor submodels. The main new features of MADE3 are the ability of coarse mode particles to take up condensing vapors and to coagulate with fine mode particles, and the gas–particle partitioning of chlorine, which is mainly contained in sea spray (SS) particles. In order to test the algorithms used in the new submodel it was run in a box model setup and the results were compared to those obtained in an analogous setup with the much more detailed, particle-resolved aerosol model PartMC-MOSAIC. The comparison was performed for an idealized marine boundary layer test case and showed improved performance of MADE3 over MADE in the representation of coarse mode particles and total aerosol composition. Subsequently, MADE3 was implemented into the atmospheric chemistry general circulation model EMAC. Due to the new mode structure this required extensive adaptations to other submodels, specifically to the one used for cloud and precipitation processing of aerosol particles. EMAC does not track interstitial aerosol particles separately from those immersed in cloud droplets, ice crystals, or precipitation. Hence, a sophisticated scheme was devised and implemented for the assignment of the in-cloud or in-precipitation aerosol to one of four possible modes, instead of just one possible mode in the MADE case. The coupled model, EMAC with MADE3, was thoroughly evaluated by comparison of simulation output to station network measurements of near-surface aerosol component mass concentrations, to airborne measurements of vertical aerosol mass mixing ratio and number concentration profiles, to ground-based and airborne measurements of particle size distributions, and to station network and satellite measurements of aerosol optical depth. Satisfactory agreement with the observations was obtained and it was thus shown that MADE3 is ready for application within EMAC. The results from an identically designed simulation with the predecessor submodel MADE led to the conclusion that a fraction of the secondary aerosol species partitions to the coarse modes in MADE3 and is thus removed more quickly from the atmosphere. Furthermore, a new evaluation method was developed, which allows for comparison of model output to size-resolved electron microscopy measurements of particle composition. Both submodels, MADE3 and MADE, were finally used in EMAC simulations of the effect of ship emissions on the atmospheric aerosol. As in previous studies for year 2000 conditions, SO4 was found to be the dominant species in the fine modes in this context. In contrast to SO4, the major fraction of ship emissions-induced near-surface NO3 was found to partition to the coarse modes in the MADE3 simulations. A similar amount of fine mode NO3 as in the present and former MADE simulations was also formed. Hence, fine mode particle growth due to ship emissions was also similar, and was reduced in idealized simulations of a future low-sulfur fuel scenario. Particle volume concentration decreased by about 1 % due to ship emissions in the MADE3 simulations, but not in the MADE simulations. This finding was independent of the fuel sulfur content. In summary, the inclusion of coarse mode particle interactions and the gas–particle partitioning of chlorine could alter prior conclusions on the climate effect of ship emissions-induced aerosol perturbations, mainly due to the differences in NO3 formation. This climate effect will be re-quantified in a follow-up study by coupling the MADE3 aerosol to a two-moment cloud microphysics scheme. Further planned applications of the new submodel include the quantification of climate effects of aerosol perturbations via their influence on ice clouds as well as simulations with boundary conditions specific to measurement campaigns. Results from the latter may lead to further model improvements and can also provide guidance for the interpretation of measurement results.
    Type of Medium: Dissertations
    Pages: xiv, 170 Seiten , 42 Illustrationen und Diagramme
    Edition: Als Manuskript gedruckt
    Series Statement: Forschungsbericht / DLR, Deutsches Zentrum für Luft- und Raumfahrt 2016-01
    Language: English
    Note: Contents: Abstract. - Kurzfassung. - 1 Introduction. - 1.1 Motivation. - 1.2 Scientific questions. - 1.3 Method. - 2 Background and state of the science. - 2.1 The atmospheric aerosol. - 2.1.1 Relevance. - 2.1.2 Aerosol processes. - 2.1.3 Aerosol properties. - 2.2 The influence of ship emissions. - 2.3 Aerosol modeling. - 2.3.1 Selected results. - 2.3.2 Motivation to expand on previous work. - 2.3.3 The computational approach. - 2.3.4 Existing aerosol microphysics submodels. - 2.3.5 MADE3 as a successor of MADE and MADE-in. - 3 The aerosol submodel MADE3. - 3.1 Aerosol characteristics. - 3.1.1 Modes. - 3.1.2 Species. - 3.1.3 Mathematical representation of aerosol characteristics. - 3.2 Aerosol processes. - 3.2.1 Gas–particle partitioning. - 3.2.2 Condensation of H2SO4 and organic vapors. - 3.2.3 New particle formation. - 3.2.4 Coagulation. - 3.2.5 Renaming. - 3.2.6 Aging of insoluble particles. - 4 Box model tests. - 4.1 Model description: MADE vs. MADE3. - 4.2 Model description: PartMC-MOSAIC. - 4.3 Test case scenario. - 4.4 Results: MADE3 vs. MADE. - 4.4.1 Size distributions. - 4.4.2 Composition. - 4.5 Results: MADE3 vs. PartMC-MOSAIC. - 4.5.1 Size distributions. - 4.5.2 Composition. - 4.6 Summary and conclusions. - 5 MADE3 in the atmospheric chemistry general circulation model EMAC. - 5.1 Basic settings. - 5.2 Emissions. - 5.3 Transport. - 5.4 Gas phase chemistry. - 5.5 Cloud formation. - 5.5.1 Stratiform clouds. - 5.5.2 Convective clouds. - 5.6 Cloud and precipitation processing of the aerosol. - 5.7 Wet deposition. - 5.8 Dry deposition. - 5.9 Sedimentation. - 5.10 Optical properties. - 6 Evaluation of simulated tropospheric aerosol properties. - 6.1 Data comparability. - 6.2 The MADE3 aerosol within EMAC. - 6.2.1 Near-surface mass concentrations. - 6.2.2 Vertical distributions. - 6.2.3 Size distributions. - 6.2.4 Aerosol optical depth. - 6.2.5 Global tropospheric burdens and residence times. - 6.2.6 Summary and conclusions. - 6.3 Comparison to MADE. - 6.4 New features of MADE3. - 7 Effects of oceanic ship emissions on atmospheric aerosol particles. - 7.1 Effects of year 2000 emissions. - 7.1.1 Near-surface concentrations. - 7.1.2 Near-surface size distributions. - 7.1.3 Tropospheric burdens. - 7.2 Effects of an idealized fuel sulfur content reduction. - 7.3 Summary and conclusions. - 8 Summary, conclusions, and outlook. - Appendix. - A.1 Particle evolution in the box model study. - A.2 Gas phase chemical mechanism. - A.3 Liquid phase chemical mechanism. - A.4 Mode assignment of cloud residual aerosol. - A.4.1 Terminology. - A.4.2 Basic assumptions. - A.4.3 Algorithm for residual assignment. - A.5 Year 2000 aerosol in EMAC with MADE3. - A.6 Near-surface mass concentration evaluation. - References. - Acronyms, symbols, and species names. - Acronyms. - Symbols. - Tracers and chemical species. - Danksagung.
    Location: AWI Reading room
    Branch Library: AWI Library
    Location Call Number Expected Availability
    BibTip Others were also interested in ...
  • 4
    Call number: AWI S5-16-89899
    Type of Medium: Monograph available for loan
    Pages: XXVIII, 2336 Seiten
    Edition: 7. Auflage
    ISBN: 9783452285713 (Gb.)
    Series Statement: Heymanns Taschenkommentare
    Language: German
    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
    Frankfurt am Main : Fachmedien Recht und Wirtschaft ; dfv Mediengruppe
    Associated volumes
    Call number: AWI S5-16-90229
    In: Heidelberger Musterverträge ; 79
    Type of Medium: Monograph available for loan
    Pages: 29 Seiten , 21 cm x 14.8 cm
    Edition: 4., aktualisierte Auflage 2016
    ISBN: 9783800543496 , 978-3-8005-4349-6
    Series Statement: Heidelberger Musterverträge Heft 79
    Language: German
    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
    Moskva : Izdatel'stvo Politechničeskogo muzeja
    Call number: AWI E1-16-90310
    Type of Medium: Monograph available for loan
    Pages: 172, [1] Seiten , Illustrationen
    ISBN: 978-5-98962-037-1
    Language: Russian
    Note: In kyrill. Schr.
    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
    København : Gyldendal
    Call number: AWI P8-18-91728
    Type of Medium: Monograph available for loan
    Pages: 230 Seiten , Illustrationen, Karten , 30 x 31 cm
    Edition: First edition, first print
    ISBN: 978-87-02-20964-8
    Language: German
    Note: Contents: Introduction. - A changing climate. - The emerging land. - The frozen past. - From ice to sea. - Plant adaptation. - Land of contrasts. - Sheep farming - now and in the future. - Methane in the Arctic. , Parallel texts in Danish and English
    Location: AWI Reading room
    Branch Library: AWI Library
    Location Call Number Expected Availability
    BibTip Others were also interested in ...
  • 8
    Call number: AWI G3-19-92460
    Description / Table of Contents: The Yukon Coast in Canada is an ice-rich permafrost coast and highly sensitive to changing environmental conditions. Retrogressive thaw slumps are a common thermoerosion feature along this coast, and develop through the thawing of exposed ice-rich permafrost on slopes and removal of accumulating debris. They contribute large amounts of sediment, including organic carbon and nitrogen, to the nearshore zone. The objective of this study was to 1) identify the climatic and geomorphological drivers of sediment-meltwater release, 2) quantify the amount of released meltwater, sediment, organic carbon and nitrogen, and 3) project the evolution of sediment-meltwater release of retrogressive thaw slumps in a changing future climate. The analysis is based on data collected over 18 days in July 2013 and 18 days in August 2012. A cut-throat flume was set up in the main sediment-meltwater channel of the largest retrogressive thaw slump on Herschel Island. In addition, two weather stations, one on top of the undisturbed tundra and one on the…
    Type of Medium: Monograph available for loan
    Pages: 163 Seiten , Illustrationen, Diagramme
    Language: English
    Note: Table of Contents Abstract Kurzfassung Abbreviations and nomenclature 1. Introduction 2. Scientific Background 2.1. Permafrost 2.2.Retrogressive Thaw Slumps 2.3. Inputs of Freshwater, Sediment and Carbon into the Canadian Beaufort Sea 3. Study Area 3.1. Regional Setting: Yukon Coast and Herschel Island 3.2. Retrogressive Thaw Slumps 4. Material and Methods 4.1. Field Work 4.1.1. Terrain Photography 4.1.2. Differential Global Positioning System (DGPS) 4.1.3. Light Detection And Ranging (LiDAR) and Digital Elevation Model (DEM) 4.1.4. Micrometeorology 4.1.5. Discharge Measurement 4.1.6. Multiple Regression-Statistical Relationships between Micrometeorological Variables and Discharge 4.1.7. Sampling 4.2. Laboratory Analyses 4.2.1. Sedimentological Analyses 4.2.2. Hydrochemical Analyses 4.3. Fluxes of Sediment and (In-) Organic Matter 5. Results 5.1. Field Work 5.1.1. Terrain Photography 5.1.2. Differential Global Positioning System (DGPS) 5.1.3. Light Detecting And Ranging (LiDAR) and Digital Elevation Model (DEM) 5.1.4. Micrometeorology 5.1.5. Discharge 5.1.6. Multiple Regression - Statistical Relationships between Micrometeorology and Discharge 5.2. Laboratory Analyses 5.2.1. Sedimentological Analyses 5.2.2. Hydrochemical Analyses 5.3. Fluxes of Sediment-meltwater 6. Discussion 6.1. Microclimatological and Geomorphological Factors Controlling Discharge 6.1.1. Diurnal Variations 6.1.2. Seasonal Variations 6.2. Contribution of Retrogressive Thaw Slumps to the Sediment Budget of the Yukon Coast 6.2.1. Origin of Outflow Material 6.2.2. Slump D in the Regional Context 6.2.3. Seasonal Sediment Budget Compilation for Slump D 6.2.4. Retrogressive Thaw Slump Occurrence along the Yukon Coast 6.2.5. Input to the Beaufort Sea 6.3. Projected Climatic Change and its Impact on Retrogressive Thaw Slump Outflow 6.4. Uncertainties and Limitations 6.5. Future Research 7. Conclusion 8. Appendix 8.1. Field Work 8.1.1. Slump D's northern headwall profile 8.1.2. Collinson Head slump 8.1.3. Herschel Island West Coast slump 8.1.4. Roland Bay slump 8.1.5. Kay Point slump 8.2. Laboratory Work 8.2.1. Volumetric Ice Content 8.2.2. Grain Size 8.3. Evolution of Slump D 8.3.1. Geo Eye satellite of Slump D 8.3.2. Aerial Oblique Photography of Slump D 8.3.3. LiDAR of Slump D 8.3.4. Time Lapse Photography of Slump D's Headwall 9. References 10. Financial and technical support 11. Acknowledgement - Danksagung
    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
    Bonn : Rheinwerk Verlag GmbH
    Call number: AWI S4-16-90097
    Type of Medium: Monograph available for loan
    Pages: 467 Seiten , 1 CD-ROM , 24.5 cm
    Edition: 3., aktualisierte und erweiterte Auflage (2. Auflage im Rheinwerk Verlag)
    ISBN: 9783836237789
    Series Statement: Rheinwerk Computing
    Language: German
    Location: AWI Reading room
    Branch Library: AWI Library
    Location Call Number Expected Availability
    BibTip Others were also interested in ...
  • 10
    Call number: ZSP-760/A-15
    In: Terra Antartica reports, No. 15
    Type of Medium: Series available for loan
    Pages: 15 Seiten , Illustrationen , 8 Kartenbeilagen, 1 CD-ROM
    ISBN: 978-88-88395-12-8
    Series Statement: Terra Antartica reports 15
    Language: English
    Note: 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 , 1 Kartenbeilage unter dem Titel: Reeves Névé Quadrangle (Victoria Land) 2012 / R. Casnedi, P. C. Pertusati, F. Salvini 〈1 : 250.000〉 aus der Antarctic Geological 1:250.000 Map Series , 1 Kartenbeilage unter dem Titel: Mount Murchison Quadrangle (Victoria Land) 1997 / G. Capponi, M. Meccheri & P. C. Pertusati 〈1 : 250.000〉 aus der Antarctic Geological 1:250.000 Map Series , 1 Kartenbeilage unter dem Titel: Mount Joyce Quadrangle (Victoria Land) 1999 / G. Capponi, L. Crispini, M. Meccheri, G. Musumeci & P. C. Pertusati 〈1 : 250.000〉 aus der Antarctic Geological 1:250.000 Map Series , 1 Kartenbeilage unter dem Titel: Relief Inlet Quadrangle (Victoria Land) 1999 / G. Capponi, L. Crispini, M. Meccheri, G. Musumeci & P. C. Pertusati 〈1 : 250.000〉 aus der Antarctic Geological 1:250.000 Map Series , 1 Kartenbeilage unter dem Titel: Coulman Island Quadrangle (Victoria Land) 1997 / G. Capponi, M. Meccheri & G. Oggiano 〈1 : 250.000〉 aus der Antarctic Geological 1:250.000 Map Series , 1 Kartenbeilage unter dem Titel: Sequence Hills Quadrangle (Victoria Land) 2012 / R. Carosi, M. Meccheri, G. Musumeci, P. C. Pertusati 〈1 : 250.000〉 aus der Antarctic Geological 1:250.000 Map Series , 1 Kartenbeilage unter dem Titel: Freyberg Mountains Quadrangle (Victoria Land) 2012 / G. Capponi, M. Meccheri, P. C. Pertusati 〈1 : 250.000〉 aus der Antarctic Geological 1:250.000 Map Series
    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...