000 -LEADER |
fixed length control field |
06713cam a2200421 a 4500 |
001 - CONTROL NUMBER |
control field |
15134309 |
003 - CONTROL NUMBER IDENTIFIER |
control field |
CITU |
005 - DATE AND TIME OF LATEST TRANSACTION |
control field |
20230915135534.0 |
007 - PHYSICAL DESCRIPTION FIXED FIELD--GENERAL INFORMATION |
fixed length control field |
co |g||||||||| |
008 - FIXED-LENGTH DATA ELEMENTS--GENERAL INFORMATION |
fixed length control field |
080110s2008 maua b 001 0 eng |
010 ## - LIBRARY OF CONGRESS CONTROL NUMBER |
LC control number |
2008000605 |
020 ## - INTERNATIONAL STANDARD BOOK NUMBER |
International Standard Book Number |
9789814272117 |
020 ## - INTERNATIONAL STANDARD BOOK NUMBER |
International Standard Book Number |
9781934015094 |
020 ## - INTERNATIONAL STANDARD BOOK NUMBER |
International Standard Book Number |
1934015091 |
035 ## - SYSTEM CONTROL NUMBER |
System control number |
(OCoLC)ocn190786100 |
040 ## - CATALOGING SOURCE |
Original cataloging agency |
CITU LRAC |
Transcribing agency |
DLC |
Modifying agency |
YDX |
-- |
BAKER |
-- |
BTCTA |
-- |
YDXCP |
-- |
DLC |
Language of cataloging |
eng |
041 ## - LANGUAGE CODE |
Language code of text/sound track or separate title |
eng |
050 00 - LIBRARY OF CONGRESS CALL NUMBER |
Classification number |
TP184 |
Item number |
.K37 2008 |
082 00 - DEWEY DECIMAL CLASSIFICATION NUMBER |
Classification number |
660.0285/536 |
Edition number |
22 |
100 1# - MAIN ENTRY--PERSONAL NAME |
Preferred name for the person |
Kapuno, Raul Raymond. |
Relator term |
author |
245 10 - TITLE STATEMENT |
Title |
Programming for chemical engineers using C, C++, and MATLAB® / |
Statement of responsibility, etc |
Raul Raymond Kapuno, Jr. |
264 #1 - PUBLICATION, DISTRIBUTION, ETC. (IMPRINT) |
Place of publication, distribution, etc |
Pasig City : |
Name of publisher, distributor, etc |
Cengage Learning, |
Date of publication, distribution, etc |
c2008. |
300 ## - PHYSICAL DESCRIPTION |
Extent |
xix, 449 pages : |
Other physical details |
illustrations ; |
Dimensions |
25 cm. + |
Accompanying material |
1 CD-ROM (4 3/4 in.) |
336 ## - CONTENT TYPE |
Source |
rdacontent |
Content type term |
text |
Content type code |
txt |
337 ## - MEDIA TYPE |
Source |
rdamedia |
Media type term |
unmediated |
Media type code |
n |
338 ## - CARRIER TYPE |
Source |
rdacarrier |
Carrier type term |
volume |
Carrier type code |
nc |
504 ## - BIBLIOGRAPHY, ETC. NOTE |
Bibliography, etc |
Includes bibliographical references (p. [419]-421) and index. |
505 ## - CONTENTS |
Formatted contents note |
Contents<br/>Introduction <br/>* Purpose of this Book <br/>* Computer Programming Languages Used <br/>* How to Use this Book <br/>* Special Note from the Author <br/>PART I Using C and C++<br/>Chapter 1 - Review on C Programming <br/>Constant and Variable Name Declaration <br/>Constant Name Declaration<br/>Variable Name Declaration<br/>Basic Output and Input Statements <br/>Output Statements<br/>Input Statements<br/>Operators <br/>Arithmetic Operators<br/>Assignment Operators<br/>Relational Operators<br/>Logical Operators<br/>Conditional Statements <br/>if - else Statement<br/>Nested if - else if Statement<br/>switch/case Statement<br/>Looping Statements <br/>for Loop Statement<br/>while Loop Statement<br/>do - while Loop Statement <br/>Arrays <br/>Creating Functions <br/>Laboratory Exercises <br/>Chapter 2 - Numerical Computation Using C <br/>Solving Simultaneous Linear Equations<br/>Matrix Algebra<br/>Cramer¿s Rule and Determinants<br/>Gauss-Jordan Method<br/>Numerical Method<br/>Jacobi Method/Gauss-Seidel Method<br/>Regression Analysis <br/>Linear Regression<br/>Linear Regression for Nonlinear Relationship<br/>Polynomial Regression<br/>Validation through Statistical Analysis <br/>Correlation Coefficient and Coefficient of Determination<br/>Standard Error of Estimate<br/>Significance Test <br/>Interpolation Analysis <br/>Linear Interpolation<br/>Lagrange Polynomial Interpolation<br/>Linear Programming <br/>Simplex Method<br/>Laboratory Exercises <br/>Chapter 3 - Physical Properties¿Prediction and Approximation <br/>Phase Equilibrium<br/>Binary System<br/>Antoine Equation<br/>Benzene-Toluene Equilibrium System <br/>Saturated Steam Data<br/>Saturated Pressure<br/>Density and Specific Volume<br/>Enthalpy<br/>Entropy<br/>Humidity <br/>Relative Humidity<br/>Dew Point<br/>Absolute Humidity <br/>Duhring Line (BPE) <br/>NaOH Water System <br/>Enthalpy-Concentration<br/>NaOH Water System<br/>Friction Factor <br/>Laminar Flow<br/>Turbulent Flow in Smooth Pipe<br/>Laboratory Exercises <br/>Chapter 4 - Applications Using C <br/>Material Balance <br/>Multiple Reactors<br/>Condensation <br/>Energy Balance <br/>Multiple Effect Evaporators<br/>Fluid Flow <br/>Pressure Drop Determination<br/>Pipe Diameter Calculation<br/>Mass and Heat Transfer <br/>Temperature Determination in Two-Dimensional Conduction<br/>Evaporation<br/>Distillation <br/>Optimization <br/>Process Design<br/>Plant Operation<br/>Laboratory Exercises <br/>Chapter 5 ¿ Overview of C++ <br/>C and C++ Syntax <br/>Basic Output and Input Stream<br/>Conditional Statements<br/>Looping Statements<br/>Arrays<br/>Functions<br/>Object-Oriented Programming (OOP) in C++<br/>Class<br/>Distillation Program Listing Revisited <br/>Laboratory Exercises <br/>PART II Using MATLAB<br/>Chapter 6 ¿ Introduction to MATLAB <br/>MATLAB Environment <br/>MATLAB Desktop<br/>Comand Window<br/>Command History Window<br/>Editor/Debugger<br/>Workspace<br/>Current Directory Window<br/>Array Editor<br/>Help Window<br/>Developing M-Files<br/>Variable and Constant Name Declaration<br/>Basic Output and Input Statements<br/>Output Statements<br/>Input Statements<br/>Operators<br/>Arithmetic and Assignment Operators<br/>Relational Operators<br/>Logical Operators<br/>Conditional Statements <br/>if - else Statement<br/>Nested if - elseif Statement<br/>switch/case Statement <br/>Looping Statements <br/>for Loop Statement<br/>while Loop Statement <br/>Scalars, Vectors and Matrices <br/>Initialization<br/>Manipulating Arrays<br/>Arithmetic Operation<br/>Creating Functions<br/>Plotting<br/>Basic 2D Plotting<br/>Axis Command Functions<br/>Titles and Labels<br/>Adding Lines to Graphs<br/>Setting Line Style and Width<br/>Basic 3D Plotting<br/>Laboratory Exercises <br/>Chapter 7 ¿ Functions for Numerical Computations <br/>Matrix Method for Linear Equations<br/>The inv() Function<br/>Matrix Left Division (\)<br/>Regression and Curve Fitting<br/>The polyfit() Function<br/>The polyval() Function<br/>Coefficient of Determination and Standard Error of Estimate<br/>Finding Roots<br/>The roots() Function<br/>The fzero() Function<br/>Interpolation<br/>One-Dimensional Interpolation<br/>Two-Dimensional Interpolation<br/>Numerical Integration<br/>Trapezoidal Integration<br/>Quadrature<br/>Ordinary Differential Equations (ODE)<br/>The ode23() and ode45()Functions<br/>Laboratory Exercises <br/>Chapter 8 ¿ Applications Using MATLAB<br/>Physical Properties Approximation<br/>Saturated Steam Pressure-Temperature Relationship<br/>Binary System ¿ Equilibrium Curve<br/>Enthalpy Concentration ¿ Magnesium Sulfate<br/> Phase Diagram ¿ Magnesium Sulfate System<br/>Chemical Engineering Sample Problems<br/>Cubic Equation of State<br/> Compressibility Factor<br/>Simple Differential Distillation<br/>Two-Dimensional Conduction<br/>Reactor Tanks<br/>Reactions in Series<br/>Crystallization<br/>Laboratory Exercises <br/>Chapter 9 ¿ Interfacing MATLAB with C <br/>Introduction to MEX-files<br/>Components of MEX-files<br/>MATLAB Supported C Compilers<br/>Handling Scalars<br/>One Scalar Input and One Scalar Output<br/>Two Scalar Inputs and One Scalar Output<br/>Handling Vectors<br/>One Vector Input and One Scalar Output<br/>Handling Matrices<br/>Multiple Matrix Inputs and One Vector Output<br/>Previous Evaporation Problems Revisited<br/>Single-Effect Evaporator Problem<br/>Triple-Effect Evaporator Problem<br/>Introduction to MATLAB Engine<br/>Components of MATLAB Engine<br/>Example on Plotting<br/>Compiling Engine Programs<br/>Modified Distillation Program<br/>Laboratory Exercises <br/>Index |
630 00 - SUBJECT ADDED ENTRY--UNIFORM TITLE |
Uniform title |
MATHLAB. |
650 #0 - SUBJECT ADDED ENTRY--TOPICAL TERM |
Topical term or geographic name as entry element |
Chemical engineering |
General subdivision |
Computer programs. |
650 #0 - SUBJECT ADDED ENTRY--TOPICAL TERM |
Topical term or geographic name as entry element |
C (Computer program language) |
650 #0 - SUBJECT ADDED ENTRY--TOPICAL TERM |
Topical term or geographic name as entry element |
C++ (Computer program language) |
856 41 - ELECTRONIC LOCATION AND ACCESS |
Materials specified |
Table of contents only |
Uniform Resource Identifier |
http://www.loc.gov/catdir/toc/ecip088/2008000605.html |
906 ## - LOCAL DATA ELEMENT F, LDF (RLIN) |
a |
7 |
b |
cbc |
c |
orignew |
d |
1 |
e |
ecip |
f |
20 |
g |
y-gencatlg |
942 ## - ADDED ENTRY ELEMENTS |
Source of classification or shelving scheme |
|
Item type |
BOOK |