diff --git a/README.md b/README.md index b88b5f7..e51291d 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Welcome to courses-backend, an express server setup to deliver information on Georgia Tech courses. -To run the server, navigate to the root directory of the application in the cli and run the command `node app.js`. It is configured to run locally on port number 3000. +To run the server, navigate to the root directory of the application in the cli and run the command `node app.js`. It is configured to run locally on port number 8080. ## Using the routes @@ -24,10 +24,33 @@ For accessing a specific course: For example, `/api/course/ACCT/2101` +### Database Query + +This app uses `mongodb` as its database type. The app assumes that the database has a collection called `courses` which contains documents of the following structure: +```json +{ + "subject": "ACCT", + "number": "2101", + "description": "Short description.", + "name": "Accounting I" +} +``` + + +To access this data from the database, use the same queries used for the static info, with the following change to the route: + +
+/api/db/course/...
+
+ + +For example, `api/db/course/ACCT/2101` + + ### Course Critique Query There is also a route that queries the [coursecritique](https://critique.gatech.edu/) website: `/api/coursecritique/:id` -For example `/api/coursecritique/ACCT2101`. \ No newline at end of file +For example `/api/coursecritique/ACCT2101`. diff --git a/app.js b/app.js index caa5ad8..755d484 100644 --- a/app.js +++ b/app.js @@ -2,20 +2,30 @@ var express = require('express'); var path = require('path'); var bodyParser = require('body-parser'); +var assert = require('assert'); +var monk = require('monk'); +var server_port = process.env.OPENSHIFT_NODEJS_PORT || 8080 +var server_ip_address = process.env.OPENSHIFT_NODEJS_IP || '127.0.0.1' +var app = module.exports = express(); + -var routes = require('./routes/index'); -var port = process.env.PORT || '3000'; -var app = express(); +// middleware setup -// view setup -//other middleware setup +// set up mongodb +var uri = "mongodb://test:123@ds045464.mongolab.com:45464/courses-backend"; +var db = monk(uri); +app.db = db; +//console.log(courses); + +// other middleware app.use(bodyParser.json()); app.use(bodyParser.urlencoded({ extended: false })); app.use(express.static(path.join(__dirname, 'public'))); app.use(express.static(path.join(__dirname + '/views'))); //route setup +var routes = require('./routes/index'); app.use('/', routes); // error handler @@ -24,10 +34,9 @@ app.use(function(err, req, res, next) { res.send(err); }); -app.listen(port, function(success, failure) { - console.log('server is running on port ' + port); -}).on('error', function(err) { - console.log(err) +//start the server +app.listen(server_port, server_ip_address, function(){ + console.log("Listening on server_port " + server_port) }); -module.exports = app; \ No newline at end of file +//module.exports = app; \ No newline at end of file diff --git a/package.json b/package.json index df821fa..f5c8287 100644 --- a/package.json +++ b/package.json @@ -2,12 +2,20 @@ "name": "courses-backend", "version": "0.0.0", "scripts": {}, + "engines": { + "node": ">= 0.6.0", + "npm": ">= 1.0.0" + }, "dependencies": { + "assert": "^1.3.0", "body-parser": "~1.13.2", "cheerio": "^0.19.0", "debug": "~2.2.0", "express": "~4.13.1", + "mongodb": "^2.0.49", + "monk": "^1.0.1", "q": "^1.4.1", "request": "^2.65.0" - } + }, + "main": "app.js" } diff --git a/public/javascripts/courses.json b/public/javascripts/courses.json index a74a0f3..daaf282 100644 --- a/public/javascripts/courses.json +++ b/public/javascripts/courses.json @@ -3,37866 +3,37866 @@ "subject": "ACCT", "number": "2101", "name": "Accounting I ", - "description": "An introduction to the measurement and financial reporting of organizations and the interpretation of the resulting financial statements. Credit not allowed for MGT 3000 and ACCT 2101. Full Description " + "description": "An introduction to the measurement and financial reporting of organizations and the interpretation of the resulting financial statements. Credit not allowed for MGT 3000 and ACCT 2101." }, "ACCT2102": { "subject": "ACCT", "number": "2102", "name": "Accounting II ", - "description": "The course deals with determining the costs of products and services and using cost information for planning and decision making. Credit not allowed for MGT 3000 and ACCT 2102. Full Description " + "description": "The course deals with determining the costs of products and services and using cost information for planning and decision making. Credit not allowed for MGT 3000 and ACCT 2102." }, "AE1350": { "subject": "AE", "number": "1350", "name": "Intro to Aerospace Engr ", - "description": "Introduction to the field of aerospace engineering, discussion of basic aerospace systems and disciplines, working vocabulary of the field. Demonstration through examples. Wind tunnel visit. Students cannot receive credit for both AE 1350 and AE 1601. Full Description " + "description": "Introduction to the field of aerospace engineering, discussion of basic aerospace systems and disciplines, working vocabulary of the field. Demonstration through examples. Wind tunnel visit. Students cannot receive credit for both AE 1350 and AE 1601." }, "AE1355": { "subject": "AE", "number": "1355", "name": "Design Competition I ", - "description": "Team-oriented aerospace systems design project directed by a faculty advisor. Typically a national student competition in aircraft, rotorcraft, or spacecraft design. Technical role commensurate with freshman standing. Full Description " + "description": "Team-oriented aerospace systems design project directed by a faculty advisor. Typically a national student competition in aircraft, rotorcraft, or spacecraft design. Technical role commensurate with freshman standing." }, "AE1601": { "subject": "AE", "number": "1601", "name": "Introduction to AE ", - "description": "Overview of aerospace engineering. Common terminology, introduction to use of engineering models, professional and ethical standards and experience with team-based design of aerospace systems. Students cannot receive credit for both AE 1601 and AE 1350. Full Description " + "description": "Overview of aerospace engineering. Common terminology, introduction to use of engineering models, professional and ethical standards and experience with team-based design of aerospace systems. Students cannot receive credit for both AE 1601 and AE 1350." }, "AE1750": { "subject": "AE", "number": "1750", "name": "Intro to Bioengineering ", - "description": "An introduction to the field of bioengineering, including the application of engineering principles and methods to problems in biology and medicine, the integration of engineering with biology, and the emerging industrial opportunities. Crosslisted with BMED, CHE, ECE, ME, and MSE 1750. Full Description " + "description": "An introduction to the field of bioengineering, including the application of engineering principles and methods to problems in biology and medicine, the integration of engineering with biology, and the emerging industrial opportunities. Crosslisted with BMED, CHE, ECE, ME, and MSE 1750." }, "AE1770": { "subject": "AE", "number": "1770", "name": "Intro to Engr Graphics ", - "description": "Introduction to engineering graphics and visualization including sketching, line drawing, and solid modeling. Development and interpretation of drawings and specifications for product realization. Crosslisted with CEE 1770 and ME 1770. Full Description " + "description": "Introduction to engineering graphics and visualization including sketching, line drawing, and solid modeling. Development and interpretation of drawings and specifications for product realization. Crosslisted with CEE 1770 and ME 1770." }, "AE1XXX": { "subject": "AE", "number": "1XXX", "name": "Aerospace Engr Elective ", - "description": " Full Description " + "description": "" }, "AE2010": { "subject": "AE", "number": "2010", "name": "Thermodyn&Fluids Fundam ", - "description": "Thermodynamic and fluid properties. Conservation laws, Isentropic flow, shocks and expansions, introduction to flows with friction and heat transfer. Applications to aerospace devices. Students cannot receive credit for both AE 2010 and AE 3450. Full Description " + "description": "Thermodynamic and fluid properties. Conservation laws, Isentropic flow, shocks and expansions, introduction to flows with friction and heat transfer. Applications to aerospace devices. Students cannot receive credit for both AE 2010 and AE 3450." }, "AE2020": { "subject": "AE", "number": "2020", "name": "Low Speed Aerodynamics ", - "description": "Basic results, conservation laws, potential, airfoil, and wing analysis. Boundary layers on plates and airfoils. Pressure gradients. Introduction to turbulence and vortex-dominated flows. Full Description " + "description": "Basic results, conservation laws, potential, airfoil, and wing analysis. Boundary layers on plates and airfoils. Pressure gradients. Introduction to turbulence and vortex-dominated flows." }, "AE2120": { "subject": "AE", "number": "2120", "name": "Intro to Mechanics ", - "description": "Forces and movements; equilibrium in two and three dimensions; multiforce members; friction; stress and strain; axial loading, torsion, and bending of beams. Full Description " + "description": "Forces and movements; equilibrium in two and three dimensions; multiforce members; friction; stress and strain; axial loading, torsion, and bending of beams." }, "AE2220": { "subject": "AE", "number": "2220", "name": "Dynamics ", - "description": "Motion of particles and mass center of bodies, kinematics and kinetics of rigid bodies in plane motion, work-energy and impulse-momentum methods, 3-D dynamics of rigid bodies. Full Description " + "description": "Motion of particles and mass center of bodies, kinematics and kinetics of rigid bodies in plane motion, work-energy and impulse-momentum methods, 3-D dynamics of rigid bodies." }, "AE2355": { "subject": "AE", "number": "2355", "name": "Design Competition II ", - "description": "Team-oriented aerospace systems design project directed by a faculty advisor. Typically a national student competition in aircraft, rotorcraft, or spacecraft design. Technical role commensurate with sophomore standing. Full Description " + "description": "Team-oriented aerospace systems design project directed by a faculty advisor. Typically a national student competition in aircraft, rotorcraft, or spacecraft design. Technical role commensurate with sophomore standing." }, "AE2610": { "subject": "AE", "number": "2610", "name": "Intro Exper Methods AE ", - "description": "Introduction to laboratory instrumentation and measurement techniques used in aerospace. Basic application of sensor principles, uncertainty analysis, interpretation and analysis of experimental data, and documentation. Full Description " + "description": "Introduction to laboratory instrumentation and measurement techniques used in aerospace. Basic application of sensor principles, uncertainty analysis, interpretation and analysis of experimental data, and documentation." }, "AE2611": { "subject": "AE", "number": "2611", "name": "Technical Commun for AE ", - "description": "Development of technical communication skills required by aerospace engineers. Includes written, oral and visual communication methods. Full Description " + "description": "Development of technical communication skills required by aerospace engineers. Includes written, oral and visual communication methods." }, "AE2698": { "subject": "AE", "number": "2698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "AE2699": { "subject": "AE", "number": "2699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "AE2801": { "subject": "AE", "number": "2801", "name": "Special Topics ", - "description": "Normally taken by sophomores. Course material devoted to special topics in aerospace engineering. Full Description " + "description": "Normally taken by sophomores. Course material devoted to special topics in aerospace engineering." }, "AE2802": { "subject": "AE", "number": "2802", "name": "Special Topics ", - "description": "Normally taken by sophomores. Course material is devoted to special topics in aerospace engineering. Full Description " + "description": "Normally taken by sophomores. Course material is devoted to special topics in aerospace engineering." }, "AE2803": { "subject": "AE", "number": "2803", "name": "Special Topics ", - "description": "Normally taken by sophomores. Course material devoted to special topics in aerospace engineering. Full Description " + "description": "Normally taken by sophomores. Course material devoted to special topics in aerospace engineering." }, "AE2901": { "subject": "AE", "number": "2901", "name": "Special Problems ", - "description": "Research topic selected in consultation with advisor. A brief description, endorsed by the faculty advisor, must be approved by the School. Full Description " + "description": "Research topic selected in consultation with advisor. A brief description, endorsed by the faculty advisor, must be approved by the School." }, "AE2902": { "subject": "AE", "number": "2902", "name": "Special Problems ", - "description": "Research topic selected in consultation with advisor. A brief description, endorsed by the faculty advisor, must be approved by the School. Full Description " + "description": "Research topic selected in consultation with advisor. A brief description, endorsed by the faculty advisor, must be approved by the School." }, "AE2903": { "subject": "AE", "number": "2903", "name": "Special Problems ", - "description": "Research topic selected in consultation with advisor. A brief description, endorsed by the faculty advisor, must be approved by the School. Full Description " + "description": "Research topic selected in consultation with advisor. A brief description, endorsed by the faculty advisor, must be approved by the School." }, "AE2XXX": { "subject": "AE", "number": "2XXX", "name": "Aerospace Engr Elective ", - "description": " Full Description " + "description": "" }, "AE3021": { "subject": "AE", "number": "3021", "name": "High Speed Aerodynamics ", - "description": "Compressibility effects on airfoil and wing aerodynamics: supersonic potential flow: method of characteristics; boundary layer effects on airfoil and wing performance. Full Description " + "description": "Compressibility effects on airfoil and wing aerodynamics: supersonic potential flow: method of characteristics; boundary layer effects on airfoil and wing performance." }, "AE3030": { "subject": "AE", "number": "3030", "name": "Aerodynamics ", - "description": "Aerodynamics of airfoils and wings in subsonic, transonic and supersonic flight. Laminar and turbulent boundary layers and effects of viscosity on aerodynamic performance. Full Description " + "description": "Aerodynamics of airfoils and wings in subsonic, transonic and supersonic flight. Laminar and turbulent boundary layers and effects of viscosity on aerodynamic performance." }, "AE3051": { "subject": "AE", "number": "3051", "name": "Experimental Fluid Dyn ", - "description": "Experiments in fluid mechanics, aerodynamics, and propulsion with emphasis on data acquisition and analysis, e.g., measurement techniques, laboratory instrumentation, measurement errors/noise, and digital sampling. Full Description " + "description": "Experiments in fluid mechanics, aerodynamics, and propulsion with emphasis on data acquisition and analysis, e.g., measurement techniques, laboratory instrumentation, measurement errors/noise, and digital sampling." }, "AE3090": { "subject": "AE", "number": "3090", "name": "Numerical Methods For AE ", - "description": "Basic numerical methods in Aerospace Engineering taught in Fortran or C, language instruction included. Numerical integration, interpolation, FFT, linear algebra, initial and boundary value problems. Full Description " + "description": "Basic numerical methods in Aerospace Engineering taught in Fortran or C, language instruction included. Numerical integration, interpolation, FFT, linear algebra, initial and boundary value problems." }, "AE3120": { "subject": "AE", "number": "3120", "name": "Intro-Structural Analy ", - "description": "Euler-Bernoulli beam theory. Deflections due to bending. Bending of beams with unsymmetrical cross-section. Stability of beams and columns. Elements of two-dimensional elasticity. Full Description " + "description": "Euler-Bernoulli beam theory. Deflections due to bending. Bending of beams with unsymmetrical cross-section. Stability of beams and columns. Elements of two-dimensional elasticity." }, "AE3125": { "subject": "AE", "number": "3125", "name": "AE Structural Analysis ", - "description": "Principle of virtual displacement. Application to structural analysis. Basic equations of elasticity. Bendintg, shearing, and torsion of thin walled structures. Students cannot receive credit for AE 3125 and AE 3140. Full Description " + "description": "Principle of virtual displacement. Application to structural analysis. Basic equations of elasticity. Bendintg, shearing, and torsion of thin walled structures. Students cannot receive credit for AE 3125 and AE 3140." }, "AE3140": { "subject": "AE", "number": "3140", "name": "Structural Analysis ", - "description": "Application to structural analysis. Basic equations of elasticity. Bending, shearing and torsion of thin walled structures. Energy methods for structural analysis and application to finite element theory for trusses and beam structures. Students cannot receive credit for both AE 3140 and AE 3125. Full Description " + "description": "Application to structural analysis. Basic equations of elasticity. Bending, shearing and torsion of thin walled structures. Energy methods for structural analysis and application to finite element theory for trusses and beam structures. Students cannot receive credit for both AE 3140 and AE 3125." }, "AE3145": { "subject": "AE", "number": "3145", "name": "Structures Laboratory ", - "description": "Introduction to mechanical measurements, instrumentation principles and practice, measurement of stress and strain, shear center, column stability, properties of composite structural materials, fracture toughness test. Full Description " + "description": "Introduction to mechanical measurements, instrumentation principles and practice, measurement of stress and strain, shear center, column stability, properties of composite structural materials, fracture toughness test." }, "AE3310": { "subject": "AE", "number": "3310", "name": "AE Vehicle Performance ", - "description": "Introduction to aerospace vehicle performance: VTOL, STOL, CTOL aircraft and spacecraft. Drag estimation, thrust required and available, basic point and path performance, special performance items, maneuvers. Students cannot receive credit for both AE 3310 and AE 3330. Full Description " + "description": "Introduction to aerospace vehicle performance: VTOL, STOL, CTOL aircraft and spacecraft. Drag estimation, thrust required and available, basic point and path performance, special performance items, maneuvers. Students cannot receive credit for both AE 3310 and AE 3330." }, "AE3330": { "subject": "AE", "number": "3330", "name": "Intro AE Vehicle Perform ", - "description": "Orbital mechanics, orbit determination, and spacecraft maneuvers. Basics of airplane flight including climb, cruise, takeoff, and landing. Actuator disk theory and elements of rotorcraft performance. Students cannot receive credit for AE 3330 and AE 3310.. Full Description " + "description": "Orbital mechanics, orbit determination, and spacecraft maneuvers. Basics of airplane flight including climb, cruise, takeoff, and landing. Actuator disk theory and elements of rotorcraft performance. Students cannot receive credit for AE 3330 and AE 3310.." }, "AE3340": { "subject": "AE", "number": "3340", "name": "Design&System Eng Method ", - "description": "Overview of aerospace design and systems engineering. Tools to organize the design process and to support design decisions. Introduction to numerical optimization and trade studies. Full Description " + "description": "Overview of aerospace design and systems engineering. Tools to organize the design process and to support design decisions. Introduction to numerical optimization and trade studies." }, "AE3355": { "subject": "AE", "number": "3355", "name": "Design Competition III ", - "description": "Team-oriented aerospace systems design project directed by a faculty advisor. Typically a national student competition in aircraft, rotorcraft, or spacecraft design. Technical or leadership role commensurate with junior standing. Full Description " + "description": "Team-oriented aerospace systems design project directed by a faculty advisor. Typically a national student competition in aircraft, rotorcraft, or spacecraft design. Technical or leadership role commensurate with junior standing." }, "AE3450": { "subject": "AE", "number": "3450", "name": "Thermodynamics&Comp Flow ", - "description": "First and second laws of thermodynamics. Thermodynamic properties and state equations. Isentropic flow. Flows with shocks and expansions. Flows with friction and heat transfer. Students cannot receive credit for both AE 3450 and AE 2010. Full Description " + "description": "First and second laws of thermodynamics. Thermodynamic properties and state equations. Isentropic flow. Flows with shocks and expansions. Flows with friction and heat transfer. Students cannot receive credit for both AE 3450 and AE 2010." }, "AE3515": { "subject": "AE", "number": "3515", "name": "System Dynamics& Control ", - "description": "Dynamic modeling and response of systems with mechanical, hydraulic, electrical, and/or thermal elements. Classical methods of feedback control system design and analysis. Students cannot receive credit for AE 3515 and AE 3530 or AE 3515 and AE 3531. Full Description " + "description": "Dynamic modeling and response of systems with mechanical, hydraulic, electrical, and/or thermal elements. Classical methods of feedback control system design and analysis. Students cannot receive credit for AE 3515 and AE 3530 or AE 3515 and AE 3531." }, "AE3521": { "subject": "AE", "number": "3521", "name": "Flight Dynamics ", - "description": "Three-dimensional rigid body dynamics, aircraft and spacecraft equations of motion, principles of static stability and control, dynamic stability of uncontrolled motion, gyroscopic instruments. Students cannot receive credit for both AE 3521 and AE 4531. Full Description " + "description": "Three-dimensional rigid body dynamics, aircraft and spacecraft equations of motion, principles of static stability and control, dynamic stability of uncontrolled motion, gyroscopic instruments. Students cannot receive credit for both AE 3521 and AE 4531." }, "AE3530": { "subject": "AE", "number": "3530", "name": "Sys Dynamics&Vibration ", - "description": "Modeling and analysis of lumped- and distributed-parameter systems, free and forced vibration in mechanical systems, free vibration in structural systems. Students cannot receive credit for both AE 3530 and ME 3017 or AE 3530 and AE 3515. Full Description " + "description": "Modeling and analysis of lumped- and distributed-parameter systems, free and forced vibration in mechanical systems, free vibration in structural systems. Students cannot receive credit for both AE 3530 and ME 3017 or AE 3530 and AE 3515." }, "AE3531": { "subject": "AE", "number": "3531", "name": "Ctrl Sys Analysis&Design ", - "description": "Control system performance analysis and specifications, classical methods of control system analysis and design, introduction to modern control methods. Students cannot receive credit for AE 3531 and AE 3515 or AE 3531 and ME 4452. Full Description " + "description": "Control system performance analysis and specifications, classical methods of control system analysis and design, introduction to modern control methods. Students cannot receive credit for AE 3531 and AE 3515 or AE 3531 and ME 4452." }, "AE3610": { "subject": "AE", "number": "3610", "name": "Exper Fluids&Solid Mech ", - "description": "Experimental laboratory in solid and fluid mechanics, aerodynamics, propulsion. Emphasis on measurement techniques, analysis and interpretation of data, comparison to analytical predictions, and reporting. Full Description " + "description": "Experimental laboratory in solid and fluid mechanics, aerodynamics, propulsion. Emphasis on measurement techniques, analysis and interpretation of data, comparison to analytical predictions, and reporting." }, "AE3801": { "subject": "AE", "number": "3801", "name": "Special Topics ", - "description": "Normally taken by juniors. Course material devoted to special topics in aerospace engineering. Full Description " + "description": "Normally taken by juniors. Course material devoted to special topics in aerospace engineering." }, "AE3802": { "subject": "AE", "number": "3802", "name": "Special Topics ", - "description": "Normally taken by juniors. Course material devoted to special topics in aerospace engineering. Full Description " + "description": "Normally taken by juniors. Course material devoted to special topics in aerospace engineering." }, "AE3803": { "subject": "AE", "number": "3803", "name": "Special Topics ", - "description": "Normally taken by juniors. Course material devoted to special topics in aerospace engineering. Full Description " + "description": "Normally taken by juniors. Course material devoted to special topics in aerospace engineering." }, "AE3901": { "subject": "AE", "number": "3901", "name": "Special Problems ", - "description": "Research topic selected in consultation with advisor. A brief description, endorsed by the faculty advisor, must be approved by the School. Full Description " + "description": "Research topic selected in consultation with advisor. A brief description, endorsed by the faculty advisor, must be approved by the School." }, "AE3902": { "subject": "AE", "number": "3902", "name": "Special Problems ", - "description": "Research topic selected in consultation with advisor. A brief description, endorsed by the faculty advisor, must be approved by the School. Full Description " + "description": "Research topic selected in consultation with advisor. A brief description, endorsed by the faculty advisor, must be approved by the School." }, "AE3903": { "subject": "AE", "number": "3903", "name": "Special Problems ", - "description": "Research topic selected in consultation with advisor. A brief description, endorsed by the faculty advisor, must be approved by the School. Full Description " + "description": "Research topic selected in consultation with advisor. A brief description, endorsed by the faculty advisor, must be approved by the School." }, "AE3XXX": { "subject": "AE", "number": "3XXX", "name": "Aerospace Engr Elective ", - "description": " Full Description " + "description": "" }, "AE4040": { "subject": "AE", "number": "4040", "name": "Computational Fluid Dyn ", - "description": "Discretization of PDEs, stability and accuracy considerations, iterative and time/space marching schemes, aerospace applications. Full Description " + "description": "Discretization of PDEs, stability and accuracy considerations, iterative and time/space marching schemes, aerospace applications." }, "AE4051": { "subject": "AE", "number": "4051", "name": "Flow Diagnostics ", - "description": "Overview of experimental techniques. Flow visualization; statistical methods. Laboratory operation, data acquisition, analysis, interpretation, reporting. Full Description " + "description": "Overview of experimental techniques. Flow visualization; statistical methods. Laboratory operation, data acquisition, analysis, interpretation, reporting." }, "AE4060": { "subject": "AE", "number": "4060", "name": "Aeroacoustics ", - "description": "Concepts and techniques, noise sources, data acquisition and reduction, aeroacoustic resonances, commonalities in the music of wind instruments and sources of aircraft noise, community impact. Full Description " + "description": "Concepts and techniques, noise sources, data acquisition and reduction, aeroacoustic resonances, commonalities in the music of wind instruments and sources of aircraft noise, community impact." }, "AE4070": { "subject": "AE", "number": "4070", "name": "Propeller & Rotor Theory ", - "description": "A study of the theory and equations used in the design of propellers and helicopter rotors. Full Description " + "description": "A study of the theory and equations used in the design of propellers and helicopter rotors." }, "AE4080": { "subject": "AE", "number": "4080", "name": "Aerothermodynamics ", - "description": "Convective heat transfer and viscous drag in high- temperature and high-speed flowfields. Inviscid hypersonic theory, real gas effects, and wall thermal protection strategies. Full Description " + "description": "Convective heat transfer and viscous drag in high- temperature and high-speed flowfields. Inviscid hypersonic theory, real gas effects, and wall thermal protection strategies." }, "AE4120": { "subject": "AE", "number": "4120", "name": "Intr-Composite AE Struct ", - "description": "Introduction to composite systems. Principles of manufacturing, structural mechanics of laminated composites. Aerospace design applications. Damage tolerance. Full Description " + "description": "Introduction to composite systems. Principles of manufacturing, structural mechanics of laminated composites. Aerospace design applications. Damage tolerance." }, "AE4131": { "subject": "AE", "number": "4131", "name": "Intro to Finite Element ", - "description": "Finite Element Method and its application to linear structural problems. The basic formulations of various structural elements are discussed. Full Description " + "description": "Finite Element Method and its application to linear structural problems. The basic formulations of various structural elements are discussed." }, "AE4170": { "subject": "AE", "number": "4170", "name": "Struct Integrity&Dura ", - "description": "Multiaxial stress states, inelasticity in metals and polymers, yield criteria, metal fatigue, fracture, stress intensity factors, fracture toughness, fatigue crack growth, metal creep, and polymer viscoelasticity. Full Description " + "description": "Multiaxial stress states, inelasticity in metals and polymers, yield criteria, metal fatigue, fracture, stress intensity factors, fracture toughness, fatigue crack growth, metal creep, and polymer viscoelasticity." }, "AE4220": { "subject": "AE", "number": "4220", "name": "Aeroelasticity ", - "description": "Structural dynamics of one-dimensional systems. Analysis of static aeroelastic phenomena, unsteady aerodynamics, and flutter. Equations of motion for complete aeroelastic systems; solution techniques. Full Description " + "description": "Structural dynamics of one-dimensional systems. Analysis of static aeroelastic phenomena, unsteady aerodynamics, and flutter. Equations of motion for complete aeroelastic systems; solution techniques." }, "AE4310": { "subject": "AE", "number": "4310", "name": "Space Flight Mechanics ", - "description": "First course in astrodynamics that encompasses two-body orbital mechanics, orbit determination, orbital maneuvers, orbital prediction, interplanetary trajectories, launch and space vehicle performance and atmospheric entry. Students cannot receive credit for both AE 4310 and AE 4532. Full Description " + "description": "First course in astrodynamics that encompasses two-body orbital mechanics, orbit determination, orbital maneuvers, orbital prediction, interplanetary trajectories, launch and space vehicle performance and atmospheric entry. Students cannot receive credit for both AE 4310 and AE 4532." }, "AE4341": { "subject": "AE", "number": "4341", "name": "Aircraft Design ", - "description": "Aircraft Vehicle Design. Preliminary design or case study of a complete flight vehicle, including a propulsion system, a structural system, and a control system. Students cannot receive credit for both AE 4341 and AE 4350. Full Description " + "description": "Aircraft Vehicle Design. Preliminary design or case study of a complete flight vehicle, including a propulsion system, a structural system, and a control system. Students cannot receive credit for both AE 4341 and AE 4350." }, "AE4342": { "subject": "AE", "number": "4342", "name": "Space System Design ", - "description": "Spacecraft subsystems and synthesis. Students apply mission and spacecraft design principles in developing a space flight mission concept. Topics may vary. Students cannot receive credit for AE 4342 and AE 4356. Full Description " + "description": "Spacecraft subsystems and synthesis. Students apply mission and spacecraft design principles in developing a space flight mission concept. Topics may vary. Students cannot receive credit for AE 4342 and AE 4356." }, "AE4343": { "subject": "AE", "number": "4343", "name": "Rotorcraft Design ", - "description": "Rotorcraft Vehicle Design. Preliminary design or case study of a complete rotorcraft flight vehicle, including a propulsion system, a structural system, and a control system. Students cannot receive credit for both AE 4343 and AE 4358 or AE 4343 and AE 6333. Full Description " + "description": "Rotorcraft Vehicle Design. Preliminary design or case study of a complete rotorcraft flight vehicle, including a propulsion system, a structural system, and a control system. Students cannot receive credit for both AE 4343 and AE 4358 or AE 4343 and AE 6333." }, "AE4350": { "subject": "AE", "number": "4350", "name": "AE Design Project I ", - "description": "Conceptual design methodology developed and applied incorporating center of gravity, inertias, structural layout, materials, propulsion integration, stability and control, vehicle sizing, performance, and acquisition costs. Students cannot receive credit for both AE 4350 and AE 4341. Full Description " + "description": "Conceptual design methodology developed and applied incorporating center of gravity, inertias, structural layout, materials, propulsion integration, stability and control, vehicle sizing, performance, and acquisition costs. Students cannot receive credit for both AE 4350 and AE 4341." }, "AE4351": { "subject": "AE", "number": "4351", "name": "AE Design Project II ", - "description": "Design methodology further developed and applied. Teams formed to prepare competitive proposals in response to given mission requirements. Designs publicly presented and defended. Full Description " + "description": "Design methodology further developed and applied. Teams formed to prepare competitive proposals in response to given mission requirements. Designs publicly presented and defended." }, "AE4355": { "subject": "AE", "number": "4355", "name": "Design Competition IV ", - "description": "Team-oriented aerospace systems design project directed by a faculty advisor. Typically a national student competition in aircraft, rotorcraft, or spacecraft design. Technical or leadership role commensurate with senior standing. Full Description " + "description": "Team-oriented aerospace systems design project directed by a faculty advisor. Typically a national student competition in aircraft, rotorcraft, or spacecraft design. Technical or leadership role commensurate with senior standing." }, "AE4356": { "subject": "AE", "number": "4356", "name": "Space Systems Design I ", - "description": "First-semester space-oriented capstone design course. Introduction to design processes for spacecraft and launch vehicle design. Students respond to two mock-proposal requests. Topics may vary. Students cannot receive credit for both AE 4356 and AE 4342. Full Description " + "description": "First-semester space-oriented capstone design course. Introduction to design processes for spacecraft and launch vehicle design. Students respond to two mock-proposal requests. Topics may vary. Students cannot receive credit for both AE 4356 and AE 4342." }, "AE4357": { "subject": "AE", "number": "4357", "name": "Space Systems Design II ", - "description": "Second-semester team-oriented space capstone design course. Competing teams of 5-6 students respond to an instructor-provided mock-RFP for a space system. Topics may vary. Full Description " + "description": "Second-semester team-oriented space capstone design course. Competing teams of 5-6 students respond to an instructor-provided mock-RFP for a space system. Topics may vary." }, "AE4358": { "subject": "AE", "number": "4358", "name": "Rotorcraft Design I ", - "description": "Conceptual design methodology applied to rotorcraft sizing and performance estimation for a given mission. Students cannot receive credit for both AE 4358 and AE 4343. Full Description " + "description": "Conceptual design methodology applied to rotorcraft sizing and performance estimation for a given mission. Students cannot receive credit for both AE 4358 and AE 4343." }, "AE4359": { "subject": "AE", "number": "4359", "name": "Rotorcraft Design II ", - "description": "Detailed multidisciplinary design of a rotorcraft. Teams formed to prepare competitive proposals in response to given mission requirements. Designs publicly presented and defended. Full Description " + "description": "Detailed multidisciplinary design of a rotorcraft. Teams formed to prepare competitive proposals in response to given mission requirements. Designs publicly presented and defended." }, "AE4370": { "subject": "AE", "number": "4370", "name": "Life Cycle Cost Analysis ", - "description": "Modeling of total cost of complex systems over their entire life cycle. Modeling risk uncertainty for complex energy, environmental, and military systems. Full Description " + "description": "Modeling of total cost of complex systems over their entire life cycle. Modeling risk uncertainty for complex energy, environmental, and military systems." }, "AE4375": { "subject": "AE", "number": "4375", "name": "Computer-aided Design ", - "description": "Introduction to the principles of geometric modeling; 2-D systems; 3-D wireframe,surface and solid representations; mathematical representations of curves, surfaces, solids; application to aerospace design problems. Full Description " + "description": "Introduction to the principles of geometric modeling; 2-D systems; 3-D wireframe,surface and solid representations; mathematical representations of curves, surfaces, solids; application to aerospace design problems." }, "AE4451": { "subject": "AE", "number": "4451", "name": "Jet & Rocket Propulsion ", - "description": "Principles of aerospace propulsion systems. Thermodynamic cycles. Thermodynamics of combustion. Turbine engine and rocket performance characteristics. Cycle/component analysis of engines and turbomachinery. Full Description " + "description": "Principles of aerospace propulsion systems. Thermodynamic cycles. Thermodynamics of combustion. Turbine engine and rocket performance characteristics. Cycle/component analysis of engines and turbomachinery." }, "AE4461": { "subject": "AE", "number": "4461", "name": "Intro to Combustion ", - "description": "Basics of combustion and combustion devices. Chemical thermodynamics, reaction rates, premixed/nonpremixed flames, ignition, stabilization, and pollutants. Applications in turbine, rocket, and internal combustion engines. Full Description " + "description": "Basics of combustion and combustion devices. Chemical thermodynamics, reaction rates, premixed/nonpremixed flames, ignition, stabilization, and pollutants. Applications in turbine, rocket, and internal combustion engines." }, "AE4521": { "subject": "AE", "number": "4521", "name": "Vehicle Guidance&Simulat ", - "description": "Simulation of aerospace systems. Simulation as an engineering tool. Mathematical modeling. Simulation of aircraft, spacecraft, missiles, and guidance systems. Illustrative case studies. Full Description " + "description": "Simulation of aerospace systems. Simulation as an engineering tool. Mathematical modeling. Simulation of aircraft, spacecraft, missiles, and guidance systems. Illustrative case studies." }, "AE4525": { "subject": "AE", "number": "4525", "name": "Control System Dsgn Lab ", - "description": "Experiments in system dynamics and control with emphasis on vehicle flight control system design. Full Description " + "description": "Experiments in system dynamics and control with emphasis on vehicle flight control system design." }, "AE4531": { "subject": "AE", "number": "4531", "name": "Aircraft Flight Dynamics ", - "description": "Three-dimensional rigid body dynamics, aircraft equations of motion, static and dynamic stability, flight control design, introduction to aeroelastic phenomena. Students cannot receive credit for both AE 4531 and AE 3521. Full Description " + "description": "Three-dimensional rigid body dynamics, aircraft equations of motion, static and dynamic stability, flight control design, introduction to aeroelastic phenomena. Students cannot receive credit for both AE 4531 and AE 3521." }, "AE4532": { "subject": "AE", "number": "4532", "name": "Spacecraft Flight Dynam ", - "description": "Cover fundamental material in orbit and attitude dynamics. Investigate orbits, rendezvous/intercept maneuvers, interplanetary transfers, attitude coordinates, attitude stability, attitude control, and attitude estimation. Students cannot receive credit for both AE 4532 and AE 4310. Full Description " + "description": "Cover fundamental material in orbit and attitude dynamics. Investigate orbits, rendezvous/intercept maneuvers, interplanetary transfers, attitude coordinates, attitude stability, attitude control, and attitude estimation. Students cannot receive credit for both AE 4532 and AE 4310." }, "AE4552": { "subject": "AE", "number": "4552", "name": "Intro Humans & Autonomy ", - "description": "Learn the fundamental principles underlying the functions performed by humans and by autonomous systems in dynamic, complex domains. Credit will not be awarded for both AE 4552 and AE 6552. Full Description " + "description": "Learn the fundamental principles underlying the functions performed by humans and by autonomous systems in dynamic, complex domains. Credit will not be awarded for both AE 4552 and AE 6552." }, "AE4580": { "subject": "AE", "number": "4580", "name": "Avionics Integration ", - "description": "Avionics in modern aerospace vehicle systems, including impact on design and performance. Specific case-studies; covers: navigation, GPS, stability augmentation, radar, health monitoring, databases, human factors, and software. Full Description " + "description": "Avionics in modern aerospace vehicle systems, including impact on design and performance. Specific case-studies; covers: navigation, GPS, stability augmentation, radar, health monitoring, databases, human factors, and software." }, "AE4610": { "subject": "AE", "number": "4610", "name": "Dynamics & Control Lab ", - "description": "Experiments in dynamics and control related to aerospace engineering topics. Full Description " + "description": "Experiments in dynamics and control related to aerospace engineering topics." }, "AE4698": { "subject": "AE", "number": "4698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "AE4699": { "subject": "AE", "number": "4699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "AE4701": { "subject": "AE", "number": "4701", "name": "Wind Engineering ", - "description": "An introductory course on wind energy and its potential; modeling and design of wind turbines; analysis of the economic benefits of wind turbine systems. Credit not allowed for both AE 4701 and ME 4701. Full Description " + "description": "An introductory course on wind energy and its potential; modeling and design of wind turbines; analysis of the economic benefits of wind turbine systems. Credit not allowed for both AE 4701 and ME 4701." }, "AE4757": { "subject": "AE", "number": "4757", "name": "Biofluid Mechanics ", - "description": "Introduction to the study of blood flow in the cardiovascular system. Emphasis on modeling and the potential of flow studies for clinical research application. Crosslisted with CHE and ME 4757. Full Description " + "description": "Introduction to the study of blood flow in the cardiovascular system. Emphasis on modeling and the potential of flow studies for clinical research application. Crosslisted with CHE and ME 4757." }, "AE4758": { "subject": "AE", "number": "4758", "name": "Biosolid Mechanics ", - "description": "The mechanics of living tissue, e.g., arteries, skin, heart muscle, ligament, tendon, cartilage, and bone. Constitutive equations and some simple mechanical models. Mechanics of cells. Applications. Crosslisted with CHE and ME 4758. Full Description " + "description": "The mechanics of living tissue, e.g., arteries, skin, heart muscle, ligament, tendon, cartilage, and bone. Constitutive equations and some simple mechanical models. Mechanics of cells. Applications. Crosslisted with CHE and ME 4758." }, "AE4760": { "subject": "AE", "number": "4760", "name": "Acoustics& Noise Control ", - "description": "Study of acoustics related to noise and its control; acoustics terminology wave propagation, wave equation solutions, instrumentation, data processing, room acoustics, noise control, noise legislation. Crosslisted with ME 4760. Full Description " + "description": "Study of acoustics related to noise and its control; acoustics terminology wave propagation, wave equation solutions, instrumentation, data processing, room acoustics, noise control, noise legislation. Crosslisted with ME 4760." }, "AE4791": { "subject": "AE", "number": "4791", "name": "Mech Behavior-Composites ", - "description": "Stress-strain behavior of composites, property of matrix and reinforcing materials, mechanics of fiber-reinforced composites, lamina and laminate analysis, and mechanical performance. Crosslisted with CEE, CHE, ME, MSE, and PTFE 4791. Full Description " + "description": "Stress-strain behavior of composites, property of matrix and reinforcing materials, mechanics of fiber-reinforced composites, lamina and laminate analysis, and mechanical performance. Crosslisted with CEE, CHE, ME, MSE, and PTFE 4791." }, "AE4793": { "subject": "AE", "number": "4793", "name": "Composite Mater& Process ", - "description": "Basic principles of selection and design of composite materials and their manufacturing and testing. Cost factors. Laboratory exercises on manufacturing and tests. Crosslisted with CEE, CHE, ME, MSE, and PTFE 4793. Full Description " + "description": "Basic principles of selection and design of composite materials and their manufacturing and testing. Cost factors. Laboratory exercises on manufacturing and tests. Crosslisted with CEE, CHE, ME, MSE, and PTFE 4793." }, "AE4794": { "subject": "AE", "number": "4794", "name": "Composite Materials& Mfg ", - "description": "Basic principles of selection and sign of composite materials and their manufacturing and testing. Cost factors. Laboratory exercises on manufacturing and tests. Crosslisted with CEE, CHE, ME, MSE, and PTFE 4794. Full Description " + "description": "Basic principles of selection and sign of composite materials and their manufacturing and testing. Cost factors. Laboratory exercises on manufacturing and tests. Crosslisted with CEE, CHE, ME, MSE, and PTFE 4794." }, "AE4801": { "subject": "AE", "number": "4801", "name": "Special Topics ", - "description": "Normally taken by seniors. Course material devoted to special topics in aerospace engineering. Full Description " + "description": "Normally taken by seniors. Course material devoted to special topics in aerospace engineering." }, "AE4802": { "subject": "AE", "number": "4802", "name": "Special Topics ", - "description": "Normally taken by seniors. Course material devoted to special topics in aerospace engineering. Full Description " + "description": "Normally taken by seniors. Course material devoted to special topics in aerospace engineering." }, "AE4803": { "subject": "AE", "number": "4803", "name": "Special Topics ", - "description": "Normally taken by seniors. Course material devoted to special topics in aerospace engineering. Full Description " + "description": "Normally taken by seniors. Course material devoted to special topics in aerospace engineering." }, "AE4804": { "subject": "AE", "number": "4804", "name": "Spec Topic-Aerospace Egr ", - "description": "Normally taken by seniors. Course material devoted to special topics in aerospace engineering. Full Description " + "description": "Normally taken by seniors. Course material devoted to special topics in aerospace engineering." }, "AE4883": { "subject": "AE", "number": "4883", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "AE4901": { "subject": "AE", "number": "4901", "name": "Special Problems ", - "description": "Research topic selected in consultation with advisor. A brief description, endorsed by the faculty advisor, must be approved by the School. Full Description " + "description": "Research topic selected in consultation with advisor. A brief description, endorsed by the faculty advisor, must be approved by the School." }, "AE4902": { "subject": "AE", "number": "4902", "name": "Special Problems ", - "description": "Research topic selected in consultation with advisor. A brief description, endorsed by the faculty advisor, must be approved by the School. Full Description " + "description": "Research topic selected in consultation with advisor. A brief description, endorsed by the faculty advisor, must be approved by the School." }, "AE4903": { "subject": "AE", "number": "4903", "name": "Special Problems ", - "description": "Research topic selected in consultation with advisor. A brief description, endorsed by the faculty advisor, must be approved by the School. Full Description " + "description": "Research topic selected in consultation with advisor. A brief description, endorsed by the faculty advisor, must be approved by the School." }, "AE4XXX": { "subject": "AE", "number": "4XXX", "name": "Aerospace Engr Elective ", - "description": " Full Description " + "description": "" }, "AE6009": { "subject": "AE", "number": "6009", "name": "Viscous Fluid Flow ", - "description": "Fundamental conservation laws. Laminar flows, wall-bound and free shear flows. Separation, heat transfer, and compressibility effects. Introduction to flow instability and transition to turbulence. Full Description " + "description": "Fundamental conservation laws. Laminar flows, wall-bound and free shear flows. Separation, heat transfer, and compressibility effects. Introduction to flow instability and transition to turbulence." }, "AE6012": { "subject": "AE", "number": "6012", "name": "Turbulent Flows ", - "description": "Basic characteristics of turbulence. Statistical methods. Reynolds averaging, kinetic energy budget, and scaling issues. Homogeneity and isotrophy. Free and wall bounded shear flows. Simulation and modeling. Full Description " + "description": "Basic characteristics of turbulence. Statistical methods. Reynolds averaging, kinetic energy budget, and scaling issues. Homogeneity and isotrophy. Free and wall bounded shear flows. Simulation and modeling." }, "AE6015": { "subject": "AE", "number": "6015", "name": "Advanced Aerodynamics ", - "description": "Introduce concepts, derivation and application of aerodynamic fundamentals. Emphasis on advanced knowledge in analysis and design of fixed-wing, launch/atmospheric return vehicles, and rotating systems. Full Description " + "description": "Introduce concepts, derivation and application of aerodynamic fundamentals. Emphasis on advanced knowledge in analysis and design of fixed-wing, launch/atmospheric return vehicles, and rotating systems." }, "AE6020": { "subject": "AE", "number": "6020", "name": "High Speed Flow ", - "description": "Transonic small disturbance theory. Transonic potential flow modeling. Supercritical airfoil design. Physics of hypersonic flow. Newtonian flow. Modeling of hypersonic viscous and inviscid flow. Full Description " + "description": "Transonic small disturbance theory. Transonic potential flow modeling. Supercritical airfoil design. Physics of hypersonic flow. Newtonian flow. Modeling of hypersonic viscous and inviscid flow." }, "AE6030": { "subject": "AE", "number": "6030", "name": "Unsteady Aerodynamics ", - "description": "Unsteady potential theory for various speed ranges. Calculation of steady and unsteady aerodynamic loads on airfoils and wings. Vortex flows. Topics of current research interest. Full Description " + "description": "Unsteady potential theory for various speed ranges. Calculation of steady and unsteady aerodynamic loads on airfoils and wings. Vortex flows. Topics of current research interest." }, "AE6042": { "subject": "AE", "number": "6042", "name": "Computational Fluid Dyn ", - "description": "Finite-difference, finite volume methods for solution of Navier-Stokes and Euler equations. Classification of equations, stability, grids, boundary conditions, implicit and explicit methods, turbulence modeling. Full Description " + "description": "Finite-difference, finite volume methods for solution of Navier-Stokes and Euler equations. Classification of equations, stability, grids, boundary conditions, implicit and explicit methods, turbulence modeling." }, "AE6050": { "subject": "AE", "number": "6050", "name": "Gas Dynamics ", - "description": "Defining equations for compressible flows, real gas properties and their effect on the behavior of equilibrium and non-equilibrium flows. Full Description " + "description": "Defining equations for compressible flows, real gas properties and their effect on the behavior of equilibrium and non-equilibrium flows." }, "AE6052": { "subject": "AE", "number": "6052", "name": "Flow Diagnostics ", - "description": "Introduction to experimental techniques; flow visualization; statistical methods; pressure, velocity, temperature, density, particle size, reaction rate measurements. Experiment design, data acquisition, and interpretation. Flow control. Full Description " + "description": "Introduction to experimental techniques; flow visualization; statistical methods; pressure, velocity, temperature, density, particle size, reaction rate measurements. Experiment design, data acquisition, and interpretation. Flow control." }, "AE6060": { "subject": "AE", "number": "6060", "name": "Aeroacoustics ", - "description": "Lighthill's theory of aerodynamic noise and extensions, flow/acoustic interactions, feedback phenomenon, supersonic jet noise, aeroacoustics of ducts, propeller noise, helicopter noise, sonic boom. Full Description " + "description": "Lighthill's theory of aerodynamic noise and extensions, flow/acoustic interactions, feedback phenomenon, supersonic jet noise, aeroacoustics of ducts, propeller noise, helicopter noise, sonic boom." }, "AE6070": { "subject": "AE", "number": "6070", "name": "Rotary Wing Aerodynamics ", - "description": "Vortex wake modeling; analytical inflow theories; modern computational methods for rotary wing aerodynamic analysis; aerodynamic noise. Full Description " + "description": "Vortex wake modeling; analytical inflow theories; modern computational methods for rotary wing aerodynamic analysis; aerodynamic noise." }, "AE6080": { "subject": "AE", "number": "6080", "name": "Dynamics of Turbulence ", - "description": "Fundamental physics of turbulent flows. Vorticity dynamics, Kolmogorov similarity hypotheses and nonlinear interactions. Mixing and dispersion. Direct and large-eddy simulations, Reynolds stress modeling. Advanced topics. Full Description " + "description": "Fundamental physics of turbulent flows. Vorticity dynamics, Kolmogorov similarity hypotheses and nonlinear interactions. Mixing and dispersion. Direct and large-eddy simulations, Reynolds stress modeling. Advanced topics." }, "AE6100": { "subject": "AE", "number": "6100", "name": "Structural Stability I ", - "description": "Stability of elastic systems under quasi-static loads. Classical, kinetic, and potential energy approaches through rigid member models. Buckling of elastic bars and frames. Energy methods. Full Description " + "description": "Stability of elastic systems under quasi-static loads. Classical, kinetic, and potential energy approaches through rigid member models. Buckling of elastic bars and frames. Energy methods." }, "AE6101": { "subject": "AE", "number": "6101", "name": "Structural Stability II ", - "description": "Buckling of beams on elastic foundations, rings and arches; elasticity theory; torsional buckling of shafts, buckling of plates, circular cylindrical shells, rotating beams, nonconservative problems. Full Description " + "description": "Buckling of beams on elastic foundations, rings and arches; elasticity theory; torsional buckling of shafts, buckling of plates, circular cylindrical shells, rotating beams, nonconservative problems." }, "AE6104": { "subject": "AE", "number": "6104", "name": "Computational Mechanics ", - "description": "Development of finite element methods for linear, static structural analysis. The basic tools of the finite element method. The formulation of various structural elements. Full Description " + "description": "Development of finite element methods for linear, static structural analysis. The basic tools of the finite element method. The formulation of various structural elements." }, "AE6106": { "subject": "AE", "number": "6106", "name": "Analysis-Aero Structures ", - "description": "This course focuses on the analysis of advanced aerospace structures. Beam theory is reviewed, plate theory is introduced. Classical and energy solutions are presented. Full Description " + "description": "This course focuses on the analysis of advanced aerospace structures. Beam theory is reviewed, plate theory is introduced. Classical and energy solutions are presented." }, "AE6107": { "subject": "AE", "number": "6107", "name": "Aerol Structural Elements ", - "description": "This course focuses on the analysis of advanced aerospace structures. Beam theory is reviewed. Examples of nonlinear behavior of materials are discussed. Plate theory is introduced; classical and energy solution methods are studied. Full Description " + "description": "This course focuses on the analysis of advanced aerospace structures. Beam theory is reviewed. Examples of nonlinear behavior of materials are discussed. Plate theory is introduced; classical and energy solution methods are studied." }, "AE6111": { "subject": "AE", "number": "6111", "name": "Elasticity ", - "description": "Stresses and deformations in continuum media. Stress and strain measures used in nonlinear elasticity. Equilibrium equations and energy principles. Nonlinear beam, plate, and shell applications. Full Description " + "description": "Stresses and deformations in continuum media. Stress and strain measures used in nonlinear elasticity. Equilibrium equations and energy principles. Nonlinear beam, plate, and shell applications." }, "AE6112": { "subject": "AE", "number": "6112", "name": "Inelastic Response ", - "description": "Fundamentals of inelastic response relevant to aerospace and composite structures. Viscoelastic constitutive relations. Isothermal boundary value problems. Foundations of plasticity theory. Solution of plastic-elastic problems. Full Description " + "description": "Fundamentals of inelastic response relevant to aerospace and composite structures. Viscoelastic constitutive relations. Isothermal boundary value problems. Foundations of plasticity theory. Solution of plastic-elastic problems." }, "AE6114": { "subject": "AE", "number": "6114", "name": "Fundamntl Solid Mechanic ", - "description": "Unified overview of fundamental aspects of solid mechanics, from nonlinear continuum mechanics to linear elasticity, including an introduction to energy methods and other special topics. Full Description " + "description": "Unified overview of fundamental aspects of solid mechanics, from nonlinear continuum mechanics to linear elasticity, including an introduction to energy methods and other special topics." }, "AE6115": { "subject": "AE", "number": "6115", "name": "Fndmntl Aero Struct Anal ", - "description": "Overview and fundamentals of aerospace structural analysis, including virtual work and energy methods, buckling and advanced structural theories. Full Description " + "description": "Overview and fundamentals of aerospace structural analysis, including virtual work and energy methods, buckling and advanced structural theories." }, "AE6123": { "subject": "AE", "number": "6123", "name": "Fiber Reinforc Composite ", - "description": "Composite material systems, composite structures including anisotropic plate and shell theory, shear deformation, hygrothermal and interlaminar stresses. Finite element modeling. Design case studies and cost-effective applications for thin-walled sections. Full Description " + "description": "Composite material systems, composite structures including anisotropic plate and shell theory, shear deformation, hygrothermal and interlaminar stresses. Finite element modeling. Design case studies and cost-effective applications for thin-walled sections." }, "AE6161": { "subject": "AE", "number": "6161", "name": "Theory of Plates ", - "description": "Development of isotropic and anisotropic plate theories. Classical and energy solutions for various geometrics and loadings. Aerospace applications including elastically coupled composite and sandwich plates. Full Description " + "description": "Development of isotropic and anisotropic plate theories. Classical and energy solutions for various geometrics and loadings. Aerospace applications including elastically coupled composite and sandwich plates." }, "AE6162": { "subject": "AE", "number": "6162", "name": "Shell Structures ", - "description": "Analysis of stresses and deformation of shells with and without bending, shells forming surfaces of revolution, asymptote methods, buckling of shells, nonlinear theories. Full Description " + "description": "Analysis of stresses and deformation of shells with and without bending, shells forming surfaces of revolution, asymptote methods, buckling of shells, nonlinear theories." }, "AE6165": { "subject": "AE", "number": "6165", "name": "Prin-Fracture & Fatigue ", - "description": "Brittle and ductile fracture. Determination of stress intensity factors. Analytics of fracture mechanics. Elastic-plastic fracture. Energy release rate. Mechanics of fatigue. Crack growth. Environmental effects. Full Description " + "description": "Brittle and ductile fracture. Determination of stress intensity factors. Analytics of fracture mechanics. Elastic-plastic fracture. Energy release rate. Mechanics of fatigue. Crack growth. Environmental effects." }, "AE6170": { "subject": "AE", "number": "6170", "name": "Structural Optimization ", - "description": "Mathematical methods of constrained optimization, sensitivity analysis, approximation concepts, decomposition techniques, shape optimization in the context of structural design. Full Description " + "description": "Mathematical methods of constrained optimization, sensitivity analysis, approximation concepts, decomposition techniques, shape optimization in the context of structural design." }, "AE6200": { "subject": "AE", "number": "6200", "name": "Aeroelasticity ", - "description": "Understanding and analysis of aeroelastic phenomena in fixed-wing aircraft, static aeroelasticity, dynamic aeroelasticity, and dynamic response and transient stresses in aircraft structures. Full Description " + "description": "Understanding and analysis of aeroelastic phenomena in fixed-wing aircraft, static aeroelasticity, dynamic aeroelasticity, and dynamic response and transient stresses in aircraft structures." }, "AE6210": { "subject": "AE", "number": "6210", "name": "Advanced Dynamics I ", - "description": "Kinematics of particles and rigid bodies, angular velocity, inertia properties, holonomic and nonholonomic constraints, generalized forces. Full Description " + "description": "Kinematics of particles and rigid bodies, angular velocity, inertia properties, holonomic and nonholonomic constraints, generalized forces." }, "AE6211": { "subject": "AE", "number": "6211", "name": "Advanced Dynamics II ", - "description": "A continuation of AE 6210. Equations of motion, Newtonian frames, consistent linearization, energy and momentum integrals, collisions, mathematical representation of finite rotation. Full Description " + "description": "A continuation of AE 6210. Equations of motion, Newtonian frames, consistent linearization, energy and momentum integrals, collisions, mathematical representation of finite rotation." }, "AE6220": { "subject": "AE", "number": "6220", "name": "Rotorcraft Dynamics ", - "description": "Elementary blade dynamics, flap-lag dynamics, ground resonance, structural dynamics of rotating beams, nonlinear elastic blade analysis, harmonic balance and trim, Floquet theory. Full Description " + "description": "Elementary blade dynamics, flap-lag dynamics, ground resonance, structural dynamics of rotating beams, nonlinear elastic blade analysis, harmonic balance and trim, Floquet theory." }, "AE6230": { "subject": "AE", "number": "6230", "name": "Structural Dynamics ", - "description": "Dynamic response of single-degree-of-freedom systems, Lagrange's equations; modal decoupling; vibration of Euler-Bernoulli and Timoshenko beams, membranes and plates. Full Description " + "description": "Dynamic response of single-degree-of-freedom systems, Lagrange's equations; modal decoupling; vibration of Euler-Bernoulli and Timoshenko beams, membranes and plates." }, "AE6231": { "subject": "AE", "number": "6231", "name": "System ID in Struct Dyn ", - "description": "System identification by complex exponential methods, poly ref techniques, eigen-realization methods and frequency domain methods. Effects of noise, generalized least squares, and recursive online identification. Full Description " + "description": "System identification by complex exponential methods, poly ref techniques, eigen-realization methods and frequency domain methods. Effects of noise, generalized least squares, and recursive online identification." }, "AE6240": { "subject": "AE", "number": "6240", "name": "Numerical Methods ", - "description": "Rayleigh quotient, Rayleigh-Ritz and Galerkin methods; extraction of eigenvalues and eigenvectors; analysis of forced harmonic response; direct time integration of large-scale systems. Full Description " + "description": "Rayleigh quotient, Rayleigh-Ritz and Galerkin methods; extraction of eigenvalues and eigenvectors; analysis of forced harmonic response; direct time integration of large-scale systems." }, "AE6251": { "subject": "AE", "number": "6251", "name": "Exper Meth-Struct Dynam ", - "description": "Experimental methods for measurement of structural vibration, random vibration, analytical methods for analysis of vibration data, applications to single and multi-degree- of-freedom problems. Full Description " + "description": "Experimental methods for measurement of structural vibration, random vibration, analytical methods for analysis of vibration data, applications to single and multi-degree- of-freedom problems." }, "AE6252": { "subject": "AE", "number": "6252", "name": "Smart Structure Control ", - "description": "Modeling smart sensors and actuators, development of closed loop models, design of controllers, validation of controllers, application to vibration control, noise control, and shape control. Full Description " + "description": "Modeling smart sensors and actuators, development of closed loop models, design of controllers, validation of controllers, application to vibration control, noise control, and shape control." }, "AE6263": { "subject": "AE", "number": "6263", "name": "Flexible Multi-Body Dyn ", - "description": "Nonlinear, flexible multi-body dynamic systems, parameterization of finite rotations, strategies for enforcement of holonomic and non holonomic constraints, formulation of geometrically nonlinear structural elements, time-integration techniques. Full Description " + "description": "Nonlinear, flexible multi-body dynamic systems, parameterization of finite rotations, strategies for enforcement of holonomic and non holonomic constraints, formulation of geometrically nonlinear structural elements, time-integration techniques." }, "AE6270": { "subject": "AE", "number": "6270", "name": "Nonlinear Dynamics ", - "description": "Nonlinear vibration methods through averaging and multiple scales, bifurcation, periodic and quasi-periodic systems, transition to chaos, characterization of chaotic vibrations, thermodynamics of chaos, chaos control. Full Description " + "description": "Nonlinear vibration methods through averaging and multiple scales, bifurcation, periodic and quasi-periodic systems, transition to chaos, characterization of chaotic vibrations, thermodynamics of chaos, chaos control." }, "AE6280": { "subject": "AE", "number": "6280", "name": "Wave Propagation ", - "description": "Dilational, equivalue mixed waves; Rayleigh and Lamb waves, reflection, refraction, impact problems, plastic waves, N.D.E, vibration control, numerical methods, finite deformation wave propagation, constitutive equations. Full Description " + "description": "Dilational, equivalue mixed waves; Rayleigh and Lamb waves, reflection, refraction, impact problems, plastic waves, N.D.E, vibration control, numerical methods, finite deformation wave propagation, constitutive equations." }, "AE6310": { "subject": "AE", "number": "6310", "name": "Optimiz Design Engin Sys ", - "description": "Introduction to optimization problem formulations for engineering design, algorithms for constrained nonlinear programming, multiobjective and multidisciplinary optimization, and robust design optimization. Full Description " + "description": "Introduction to optimization problem formulations for engineering design, algorithms for constrained nonlinear programming, multiobjective and multidisciplinary optimization, and robust design optimization." }, "AE6322": { "subject": "AE", "number": "6322", "name": "Spacecraft Design I ", - "description": "Early design of spacecraft and launch vehicles. Emphasis on preliminary vehicle sizing and performance, effect of new technologies, and disciplinary interactions. Individual design projects. Full Description " + "description": "Early design of spacecraft and launch vehicles. Emphasis on preliminary vehicle sizing and performance, effect of new technologies, and disciplinary interactions. Individual design projects." }, "AE6323": { "subject": "AE", "number": "6323", "name": "Spacecraft Design II ", - "description": "Space Vehicle Design methodology further developed and applied. Teams formed to prepare competitive proposals in response to given mission requirements. Designs publicly presented and defended. Full Description " + "description": "Space Vehicle Design methodology further developed and applied. Teams formed to prepare competitive proposals in response to given mission requirements. Designs publicly presented and defended." }, "AE6333": { "subject": "AE", "number": "6333", "name": "Rotorcraft Design I ", - "description": "System approach to conceptual design of aerospace systems with emphasis on rotorcraft. Comprehensive methodologies for aerospace vehicle synthesis and sizing. Integration of technologies. Students cannot receive credit for both AE 6333 and AE 4343. Full Description " + "description": "System approach to conceptual design of aerospace systems with emphasis on rotorcraft. Comprehensive methodologies for aerospace vehicle synthesis and sizing. Integration of technologies. Students cannot receive credit for both AE 6333 and AE 4343." }, "AE6334": { "subject": "AE", "number": "6334", "name": "Rotorcraft Design II ", - "description": "Students work together on this application to complete the preliminary design stage of a specific rotorcraft. Participants are exposed to disciplinary and interdisciplinary issues. Full Description " + "description": "Students work together on this application to complete the preliminary design stage of a specific rotorcraft. Participants are exposed to disciplinary and interdisciplinary issues." }, "AE6343": { "subject": "AE", "number": "6343", "name": "Aircraft Design I ", - "description": "Stochastic approach to conceptual design of aerospace systems with emphasis on aircraft and missiles. Comprehensive methodologies for aerospace vehicle synthesis and sizing. Integration of technologies. Full Description " + "description": "Stochastic approach to conceptual design of aerospace systems with emphasis on aircraft and missiles. Comprehensive methodologies for aerospace vehicle synthesis and sizing. Integration of technologies." }, "AE6344": { "subject": "AE", "number": "6344", "name": "Aircraft Design II ", - "description": "Students work together on this application to complete the preliminary design stage of a specific aircraft or missile. Participants are exposed to disciplinary and interdisciplinary issues. Full Description " + "description": "Students work together on this application to complete the preliminary design stage of a specific aircraft or missile. Participants are exposed to disciplinary and interdisciplinary issues." }, "AE6353": { "subject": "AE", "number": "6353", "name": "Orbital Mechanics ", - "description": "First graduate-level astrodynamics class that includes two-body orbital mechanics, orbit determination, orbit prediction, orbital maneuvers, lunar and interplanetary trajectories, orbital rendzvous and space navigation. Full Description " + "description": "First graduate-level astrodynamics class that includes two-body orbital mechanics, orbit determination, orbit prediction, orbital maneuvers, lunar and interplanetary trajectories, orbital rendzvous and space navigation." }, "AE6354": { "subject": "AE", "number": "6354", "name": "Adv Orbital Mechanics ", - "description": "Advanced concepts in orbital mechanics including orbit determination, orbital perturbations, time of flight, rendezvous, low thrust trajectories, and multi-body problems. Taught in alternate years. Full Description " + "description": "Advanced concepts in orbital mechanics including orbit determination, orbital perturbations, time of flight, rendezvous, low thrust trajectories, and multi-body problems. Taught in alternate years." }, "AE6355": { "subject": "AE", "number": "6355", "name": "Planetary Entry & Descent ", - "description": "Entry flight mechanics and dynamics, aerothermodynamics, thermal protection systems, aerodynamic decelerators, descent and landing. Robotic and human exploration mission studies for aerobraking, planetary entry, aerocapture. Full Description " + "description": "Entry flight mechanics and dynamics, aerothermodynamics, thermal protection systems, aerodynamic decelerators, descent and landing. Robotic and human exploration mission studies for aerobraking, planetary entry, aerocapture." }, "AE6361": { "subject": "AE", "number": "6361", "name": "Propulsion Sys Design I ", - "description": "Air breathing propulsion design with emphasis on multidisciplinary design issues related to system integration, cycle selection, performance, cost, reliability, maintainability, etc. Full Description " + "description": "Air breathing propulsion design with emphasis on multidisciplinary design issues related to system integration, cycle selection, performance, cost, reliability, maintainability, etc." }, "AE6362": { "subject": "AE", "number": "6362", "name": "Safety by Design ", - "description": "Autonomous situational flight model allows students to examine complex behaviors in the \"pilot-vehicle-operational conditions\" system. Flight certification and airworthiness requirements are mapped into formal scenarios. Full Description " + "description": "Autonomous situational flight model allows students to examine complex behaviors in the \"pilot-vehicle-operational conditions\" system. Flight certification and airworthiness requirements are mapped into formal scenarios." }, "AE6372": { "subject": "AE", "number": "6372", "name": "Aerospace Systems Engr ", - "description": "Introduction to aerospace systems engineering. Systems engineering and quality engineering methods and tools. Top-down design decision support processes, computer integrated environments, Integrated Product/Process Development (IPPD). Full Description " + "description": "Introduction to aerospace systems engineering. Systems engineering and quality engineering methods and tools. Top-down design decision support processes, computer integrated environments, Integrated Product/Process Development (IPPD)." }, "AE6373": { "subject": "AE", "number": "6373", "name": "Adv Design Methods I ", - "description": "Introduction to modern probabilistic design methods and techniques. Design of experiments, Taguchi methods, response surface equations, robust design, risk and uncertainty, technology assessment and selection. Full Description " + "description": "Introduction to modern probabilistic design methods and techniques. Design of experiments, Taguchi methods, response surface equations, robust design, risk and uncertainty, technology assessment and selection." }, "AE6374": { "subject": "AE", "number": "6374", "name": "Adv Design Methods II ", - "description": "Introduction to modern multidisciplinary design optimization methods and techniques. Numerical optimization with applications, stochastic methods, Genetic Algorithms, multidisciplinary decomposition methods, multi-level optimization strategies. Full Description " + "description": "Introduction to modern multidisciplinary design optimization methods and techniques. Numerical optimization with applications, stochastic methods, Genetic Algorithms, multidisciplinary decomposition methods, multi-level optimization strategies." }, "AE6380": { "subject": "AE", "number": "6380", "name": "Computer Aided Design ", - "description": "Introduction to the principles of geometric modeling; 2-D systems; 3-D wireframe, surface and solid representations; mathematical representations of curves, surfaces, solids; application to aerospace design problems. Credit not allowed for both AE 4375 and AE 6380. Full Description " + "description": "Introduction to the principles of geometric modeling; 2-D systems; 3-D wireframe, surface and solid representations; mathematical representations of curves, surfaces, solids; application to aerospace design problems. Credit not allowed for both AE 4375 and AE 6380." }, "AE6381": { "subject": "AE", "number": "6381", "name": "Software Dev for Engr ", - "description": "Introduction to the development of engineering analysis and visualization software for UNIX workstations with emphasis on rapid prototyping, information modeling, distributed processing, and client/server architectures. Full Description " + "description": "Introduction to the development of engineering analysis and visualization software for UNIX workstations with emphasis on rapid prototyping, information modeling, distributed processing, and client/server architectures." }, "AE6382": { "subject": "AE", "number": "6382", "name": "Computing Sys Engr Lab ", - "description": "Introduction to computational systems used for engineering research. Basics of Unix and Windows operating systems, survey of the major programming languages, and computing frameworks. Full Description " + "description": "Introduction to computational systems used for engineering research. Basics of Unix and Windows operating systems, survey of the major programming languages, and computing frameworks." }, "AE6383": { "subject": "AE", "number": "6383", "name": "Applied Design Lab ", - "description": "Introduction to computing tools and processes used in subsequent applied design courses in graduate fixed wing, rotary wing, and space systems design tracks. Full Description " + "description": "Introduction to computing tools and processes used in subsequent applied design courses in graduate fixed wing, rotary wing, and space systems design tracks." }, "AE6410": { "subject": "AE", "number": "6410", "name": "Combustion Dynamics ", - "description": "Acoustic wave propagation in inhomogeneous flows, flame-acoustic wave interactions, and control of combustion-driven oscillations. Full Description " + "description": "Acoustic wave propagation in inhomogeneous flows, flame-acoustic wave interactions, and control of combustion-driven oscillations." }, "AE6412": { "subject": "AE", "number": "6412", "name": "Turbulent Combustion ", - "description": "Fundamentals of interaction between flow turbulence and reactive scalars. Theoretical, numerical, and experimental methods. Physics of premixed, non-premixed, and partially premixed turbulent combustion. Full Description " + "description": "Fundamentals of interaction between flow turbulence and reactive scalars. Theoretical, numerical, and experimental methods. Physics of premixed, non-premixed, and partially premixed turbulent combustion." }, "AE6414": { "subject": "AE", "number": "6414", "name": "Multiphase Combustion ", - "description": "Fundamentals of dispersed-phase dynamics of liquid-gas and soot aerosol flows. Fluid-particle-wall interactions. Numerical and experimental methods. Advances in spray combustion. Full Description " + "description": "Fundamentals of dispersed-phase dynamics of liquid-gas and soot aerosol flows. Fluid-particle-wall interactions. Numerical and experimental methods. Advances in spray combustion." }, "AE6440": { "subject": "AE", "number": "6440", "name": "Turbine Engine Aerotherm ", - "description": "Analysis and design of gas turbine engine components including axial flow compressors, turbines, inlets, and nozzles. Heat transfer and turbine blade cooling. Full Description " + "description": "Analysis and design of gas turbine engine components including axial flow compressors, turbines, inlets, and nozzles. Heat transfer and turbine blade cooling." }, "AE6445": { "subject": "AE", "number": "6445", "name": "Combustor Fundamentals ", - "description": "Examination of the chemical and aerothermodynamic processes that govern gas turbine combustor performance and design. Also fuel injection, noise, emissions, and testing methodologies. Full Description " + "description": "Examination of the chemical and aerothermodynamic processes that govern gas turbine combustor performance and design. Also fuel injection, noise, emissions, and testing methodologies." }, "AE6450": { "subject": "AE", "number": "6450", "name": "Rocket Propulsion ", - "description": "Analysis and design of rocket engines including liquid, solid, hybrid, and advanced propulsion systems. Full Description " + "description": "Analysis and design of rocket engines including liquid, solid, hybrid, and advanced propulsion systems." }, "AE6451": { "subject": "AE", "number": "6451", "name": "Electric Propulsion ", - "description": "The course provides a solid background of the operating principles, performance characteristics, and design features of the state-of-the-art electric propulsion systems. Full Description " + "description": "The course provides a solid background of the operating principles, performance characteristics, and design features of the state-of-the-art electric propulsion systems." }, "AE6503": { "subject": "AE", "number": "6503", "name": "Helicopter Stability&Ctl ", - "description": "Helicopter general equations of motion, rotor forces and moments, helicopter stability and control characteristics, handling qualities, flight control system design. Full Description " + "description": "Helicopter general equations of motion, rotor forces and moments, helicopter stability and control characteristics, handling qualities, flight control system design." }, "AE6504": { "subject": "AE", "number": "6504", "name": "Modern Meth-Flight Ctrl ", - "description": "Linear quadratic regulator design. Model following control. Stochastic control. Fixed structure controller design. Applications to aircraft flight control. Full Description " + "description": "Linear quadratic regulator design. Model following control. Stochastic control. Fixed structure controller design. Applications to aircraft flight control." }, "AE6505": { "subject": "AE", "number": "6505", "name": "Kalman Filtering ", - "description": "Probability and random variables and processes; correlation; shaping filters; simulation of sensor errors; Wiener filter; random vectors; covariance propagation; recursive least-squares; Kalman filter; extensions. Full Description " + "description": "Probability and random variables and processes; correlation; shaping filters; simulation of sensor errors; Wiener filter; random vectors; covariance propagation; recursive least-squares; Kalman filter; extensions." }, "AE6506": { "subject": "AE", "number": "6506", "name": "Guidance & Navigation ", - "description": "Earth's shape and gravity. Introduction to inertial navigation. GPS aiding. Error analysis. Guidance systems. Analysis of the guidance loop. Estimation of guidance variables. Adjoint analysis. Full Description " + "description": "Earth's shape and gravity. Introduction to inertial navigation. GPS aiding. Error analysis. Guidance systems. Analysis of the guidance loop. Estimation of guidance variables. Adjoint analysis." }, "AE6511": { "subject": "AE", "number": "6511", "name": "Optimal Guidance & Ctrl ", - "description": "Euler-Lagrange formulation; Hamilton-Jacobi approach; Pontryagin's minimum principle; Systems with quadratic performance index; Second variation and neighboring extremals; Singular solutions; numerical solution techniques. Full Description " + "description": "Euler-Lagrange formulation; Hamilton-Jacobi approach; Pontryagin's minimum principle; Systems with quadratic performance index; Second variation and neighboring extremals; Singular solutions; numerical solution techniques." }, "AE6520": { "subject": "AE", "number": "6520", "name": "Adv Flight Dynamics ", - "description": "Reference frames and transformations, general equations of unsteady motion, application to fixed-wing, rotary-wing and space vehicles, stability characteristics, flight in turbulent atmosphere. Full Description " + "description": "Reference frames and transformations, general equations of unsteady motion, application to fixed-wing, rotary-wing and space vehicles, stability characteristics, flight in turbulent atmosphere." }, "AE6530": { "subject": "AE", "number": "6530", "name": "Multivar Linear Sys&Ctrl ", - "description": "Techniques for analysis and description of multivariable linear systems. Tools for advanced feedback control design for these systems, including computational packages. Credit will not be awarded for both AE 6530 and ECE 6550 or AE 6530 and ME 6401. Full Description " + "description": "Techniques for analysis and description of multivariable linear systems. Tools for advanced feedback control design for these systems, including computational packages. Credit will not be awarded for both AE 6530 and ECE 6550 or AE 6530 and ME 6401." }, "AE6531": { "subject": "AE", "number": "6531", "name": "Robust Control I ", - "description": "Robustness issues in controller analysis and design. LQ analysis, H2 norm, LQR, LQG, uncertainty modeling, small gain theorem, H-infinity performance, and the mixed-norm H2/H-infinity problem. Full Description " + "description": "Robustness issues in controller analysis and design. LQ analysis, H2 norm, LQR, LQG, uncertainty modeling, small gain theorem, H-infinity performance, and the mixed-norm H2/H-infinity problem." }, "AE6532": { "subject": "AE", "number": "6532", "name": "Robust Control II ", - "description": "Advanced treatment of robustness issues. Controller analysis and design for linear and nonlinear systems with structured and non-structured uncertainty. Reduced-order control, stability, multipliers, and mixed-mu. Full Description " + "description": "Advanced treatment of robustness issues. Controller analysis and design for linear and nonlinear systems with structured and non-structured uncertainty. Reduced-order control, stability, multipliers, and mixed-mu." }, "AE6534": { "subject": "AE", "number": "6534", "name": "Control of AE Structures ", - "description": "Advanced treatment of control of flexible structures. Topics include stability of multi-degree-of-freedom systems, passive and active absorbers and isolation, positive real models, and robust control for flexible structures. Full Description " + "description": "Advanced treatment of control of flexible structures. Topics include stability of multi-degree-of-freedom systems, passive and active absorbers and isolation, positive real models, and robust control for flexible structures." }, "AE6551": { "subject": "AE", "number": "6551", "name": "Cognitive Engineering ", - "description": "Cognitive engineering addresses a range of technologies and work environments that will support human cognitive performance, including information systems, decision support, automation, and intelligent systems. Full Description " + "description": "Cognitive engineering addresses a range of technologies and work environments that will support human cognitive performance, including information systems, decision support, automation, and intelligent systems." }, "AE6552": { "subject": "AE", "number": "6552", "name": "Adv Humans & Autonomy ", - "description": "Establish a deep understanding of the theoretical basis for functions performed by humans and by autonomous systems in dynamic, complex domains. Full Description " + "description": "Establish a deep understanding of the theoretical basis for functions performed by humans and by autonomous systems in dynamic, complex domains." }, "AE6561": { "subject": "AE", "number": "6561", "name": "Reliable Contrl Software ", - "description": "Basic principles of reliable control and embedded software design, with aerospace applications. Programming languages and their specific features covered in student projects. Full Description " + "description": "Basic principles of reliable control and embedded software design, with aerospace applications. Programming languages and their specific features covered in student projects." }, "AE6571": { "subject": "AE", "number": "6571", "name": "Air Traffic Control & Mgt ", - "description": "Funtionalities and technologies of air traffic control and management in the areas of communication, navigation, surveillance; decision aiding, automation; conflict detection resolution; collaborative decision-making. Full Description " + "description": "Funtionalities and technologies of air traffic control and management in the areas of communication, navigation, surveillance; decision aiding, automation; conflict detection resolution; collaborative decision-making." }, "AE6580": { "subject": "AE", "number": "6580", "name": "Nonlinear Control ", - "description": "Advanced treatment of nonlinear robust control. Lyapunov stability theory, absolute stability, dissipativity, feedback linearization, Hamilton-Jacobi-Bellman theory, nonlinear H-infinity, backstepping control, and control Lyapunov functions. Full Description " + "description": "Advanced treatment of nonlinear robust control. Lyapunov stability theory, absolute stability, dissipativity, feedback linearization, Hamilton-Jacobi-Bellman theory, nonlinear H-infinity, backstepping control, and control Lyapunov functions." }, "AE6701": { "subject": "AE", "number": "6701", "name": "Wind Engineering ", - "description": "An introductory course on wind energy and its potential; modeling and design of wind turbines; analysis of the economic benefits of wind turbine systems. Credit will not be awarded for both AE 6701 and ME 6701. Full Description " + "description": "An introductory course on wind energy and its potential; modeling and design of wind turbines; analysis of the economic benefits of wind turbine systems. Credit will not be awarded for both AE 6701 and ME 6701." }, "AE6721": { "subject": "AE", "number": "6721", "name": "Eval Human Integ Systems ", - "description": "Evaluation of human integrated systems including translating research questions into measurable objectives, overview of evaluation methods and data analysis techniques applicable to such systems. Credit not allowed for both AE 6721 and ISYE 6231. Full Description " + "description": "Evaluation of human integrated systems including translating research questions into measurable objectives, overview of evaluation methods and data analysis techniques applicable to such systems. Credit not allowed for both AE 6721 and ISYE 6231." }, "AE6760": { "subject": "AE", "number": "6760", "name": "Acoustics I ", - "description": "Fundamental principles governing the generation, propagation, reflection, and transmission of sound waves in fluids. Crosslisted with ME 6760. Full Description " + "description": "Fundamental principles governing the generation, propagation, reflection, and transmission of sound waves in fluids. Crosslisted with ME 6760." }, "AE6761": { "subject": "AE", "number": "6761", "name": "Acoustics II ", - "description": "Radiation and scattering of sound waves in fluids, duct acoustics, dissipation phenomena. Crosslisted with ME 6761. Full Description " + "description": "Radiation and scattering of sound waves in fluids, duct acoustics, dissipation phenomena. Crosslisted with ME 6761." }, "AE6762": { "subject": "AE", "number": "6762", "name": "Applied Acoustics ", - "description": "Mufflers, resonators, acoustic materials, barriers, industrial noise, room acoustics, active noise control. Crosslisted with ME 6762. Full Description " + "description": "Mufflers, resonators, acoustic materials, barriers, industrial noise, room acoustics, active noise control. Crosslisted with ME 6762." }, "AE6765": { "subject": "AE", "number": "6765", "name": "Kinetics & Thermo Gases ", - "description": "Thermodynamics of nonreacting and reacting gas mixtures. Introductory quantum theory, statistical thermodynamics, and gas kinetic theory. Crosslisted with ME 6765. Full Description " + "description": "Thermodynamics of nonreacting and reacting gas mixtures. Introductory quantum theory, statistical thermodynamics, and gas kinetic theory. Crosslisted with ME 6765." }, "AE6766": { "subject": "AE", "number": "6766", "name": "Combustion ", - "description": "Introductory chemical kinetics, detonations and deflagrations, laminar flame propagation in premixed gases, ignition and quenching, laminar diffusion flames and droplet burning, turbulent reacting flows. Crosslisted with ME 6766. Full Description " + "description": "Introductory chemical kinetics, detonations and deflagrations, laminar flame propagation in premixed gases, ignition and quenching, laminar diffusion flames and droplet burning, turbulent reacting flows. Crosslisted with ME 6766." }, "AE6767": { "subject": "AE", "number": "6767", "name": "Adv Topics in Combustion ", - "description": "Turbulent combustion, combustion instability and control, solid propellants and explosives, chemical kinetics, pollutant formation and destruction, computational and experimental methods for reacting flows. Crosslisted with ME 6767. Full Description " + "description": "Turbulent combustion, combustion instability and control, solid propellants and explosives, chemical kinetics, pollutant formation and destruction, computational and experimental methods for reacting flows. Crosslisted with ME 6767." }, "AE6769": { "subject": "AE", "number": "6769", "name": "Linear Elasticity ", - "description": "Governing equations of linear elasticity, plane elasticity, boundary value problems, airy stress function and complex variable methods, simple three-dimensional solutions. Crosslisted with ME 6769. Full Description " + "description": "Governing equations of linear elasticity, plane elasticity, boundary value problems, airy stress function and complex variable methods, simple three-dimensional solutions. Crosslisted with ME 6769." }, "AE6770": { "subject": "AE", "number": "6770", "name": "Energy Meth-Elast&Plast ", - "description": "Applications of energy and variational methods in engineering mechanics to elastic, plastic, and dynamical behavior of deformable bodies. Crosslisted with ME 6770. Full Description " + "description": "Applications of energy and variational methods in engineering mechanics to elastic, plastic, and dynamical behavior of deformable bodies. Crosslisted with ME 6770." }, "AE6779": { "subject": "AE", "number": "6779", "name": "Dynamic System Modeling ", - "description": "Models of dynamic systems, such as aircraft, ground vehicles and machinery, and manual control. Numerical simulation techniques and applications. Interactive simulators. Student programming project. Crosslisted with ISYE 6779. Full Description " + "description": "Models of dynamic systems, such as aircraft, ground vehicles and machinery, and manual control. Numerical simulation techniques and applications. Interactive simulators. Student programming project. Crosslisted with ISYE 6779." }, "AE6XXX": { "subject": "AE", "number": "6XXX", "name": "Aerospace Engr Elective ", - "description": " Full Description " + "description": "" }, "AE7000": { "subject": "AE", "number": "7000", "name": "Master's Thesis ", - "description": " Full Description " + "description": "" }, "AE7764": { "subject": "AE", "number": "7764", "name": "Acoustic Propagation ", - "description": "Propagation of sound in inhomogeneous fluids; ray acoustics, ocean and atmospheric acoustics, nonlinear acoustics. Crosslisted with ME 7764. Full Description " + "description": "Propagation of sound in inhomogeneous fluids; ray acoustics, ocean and atmospheric acoustics, nonlinear acoustics. Crosslisted with ME 7764." }, "AE7772": { "subject": "AE", "number": "7772", "name": "Fund-Fracture Mechanics ", - "description": "Advanced study of failure of structural materials under load, mechanics of fracture, and microscopic and macroscopic aspects of the fracture of engineering materials. Crosslisted with CHE, CEE, ME, and MSE 7772. Full Description " + "description": "Advanced study of failure of structural materials under load, mechanics of fracture, and microscopic and macroscopic aspects of the fracture of engineering materials. Crosslisted with CHE, CEE, ME, and MSE 7772." }, "AE7773": { "subject": "AE", "number": "7773", "name": "Adv Fracture Mechanics ", - "description": "Nonlinear fracture mechanics including elastic-plastic and time-dependent fracture, advanced test methods, J-integral theory, and extensions. Crosslisted with CEE, CHE, ME, and MSE 7773. Full Description " + "description": "Nonlinear fracture mechanics including elastic-plastic and time-dependent fracture, advanced test methods, J-integral theory, and extensions. Crosslisted with CEE, CHE, ME, and MSE 7773." }, "AE7774": { "subject": "AE", "number": "7774", "name": "Fatigue-Materials&Struct ", - "description": "Mechanical and microstructural aspects of nucleation and growth of cracks under cyclic loading conditions, notch effects, cumulative damage, multiaxial loading, and fatigue crack propagation. Crosslisted with CEE, CHE, ME, and MSE 7774. Full Description " + "description": "Mechanical and microstructural aspects of nucleation and growth of cracks under cyclic loading conditions, notch effects, cumulative damage, multiaxial loading, and fatigue crack propagation. Crosslisted with CEE, CHE, ME, and MSE 7774." }, "AE7775": { "subject": "AE", "number": "7775", "name": "Fract&Fatigue-Structures ", - "description": "Brittle and ductile fracture criteria. Failrue prediction in composite structures. Free-edge and internal delamination. Anisotropic cracks. Fatigue behavior of composites and metal. New micromechanical models. Crosslisted with CHE, ME, and MSE 7775. Full Description " + "description": "Brittle and ductile fracture criteria. Failrue prediction in composite structures. Free-edge and internal delamination. Anisotropic cracks. Fatigue behavior of composites and metal. New micromechanical models. Crosslisted with CHE, ME, and MSE 7775." }, "AE7785": { "subject": "AE", "number": "7785", "name": "Intro Robotics Research ", - "description": "Familiarizes students with the core areas of robotics; mechanics, control, perception, AI, and autonomy. Provides an introduction to the mathematical tools required in robotics research. Full Description " + "description": "Familiarizes students with the core areas of robotics; mechanics, control, perception, AI, and autonomy. Provides an introduction to the mathematical tools required in robotics research." }, "AE7791": { "subject": "AE", "number": "7791", "name": "Damage & Fail-Composites ", - "description": "Analysis and failure of fiber-reinforced composite material systems. Mechanisms of toughening, multiple cracking mechanisms. Failure in woven fabric, braided, and special geometry composites. Crosslisted with CHE, CEE, ME, MSE, and PTFE 7791. Full Description " + "description": "Analysis and failure of fiber-reinforced composite material systems. Mechanisms of toughening, multiple cracking mechanisms. Failure in woven fabric, braided, and special geometry composites. Crosslisted with CHE, CEE, ME, MSE, and PTFE 7791." }, "AE7792": { "subject": "AE", "number": "7792", "name": "Mechanics of Composites ", - "description": "Anisotropic elasticity, hygrothermal behavior, stress analysis of laminated composites including 3D effects, stress concentrations, free-edge effects, thick laminates, adhesive and mechanical connections, fracture of composites. Crosslisted with CHE, CEE, ME, MSE, and PTFE 7792. Full Description " + "description": "Anisotropic elasticity, hygrothermal behavior, stress analysis of laminated composites including 3D effects, stress concentrations, free-edge effects, thick laminates, adhesive and mechanical connections, fracture of composites. Crosslisted with CHE, CEE, ME, MSE, and PTFE 7792." }, "AE7793": { "subject": "AE", "number": "7793", "name": "Manufacture-Composites ", - "description": "Major manufacturing techniques of metal-ceramic and polymer-matrix composites. Modeling of processes with emphasis on fundamental mechanisms and effects. Crosslisted with CHE, CEE, ME, MSE, and PTFE 7793. Full Description " + "description": "Major manufacturing techniques of metal-ceramic and polymer-matrix composites. Modeling of processes with emphasis on fundamental mechanisms and effects. Crosslisted with CHE, CEE, ME, MSE, and PTFE 7793." }, "AE8001": { "subject": "AE", "number": "8001", "name": "Design Seminar ", - "description": "Case studies of existing aerospace systems; assessment of design payoffs and risks; industry experts provide case examples and knowledge transfer to course participants; field trips. Full Description " + "description": "Case studies of existing aerospace systems; assessment of design payoffs and risks; industry experts provide case examples and knowledge transfer to course participants; field trips." }, "AE8750": { "subject": "AE", "number": "8750", "name": "Robotics Research Fnd I ", - "description": "Multidisciplinary research course supervised by two robotics faculty from different schools participating in the robotics Ph.D. program. Full Description " + "description": "Multidisciplinary research course supervised by two robotics faculty from different schools participating in the robotics Ph.D. program." }, "AE8751": { "subject": "AE", "number": "8751", "name": "Robotics Research Fnd II ", - "description": "Continuation of AE 8751 (Robotics Research Foundation I). Full Description " + "description": "Continuation of AE 8751 (Robotics Research Foundation I)." }, "AE8801": { "subject": "AE", "number": "8801", "name": "Special Topics ", - "description": "Special topics of current interest. Full Description " + "description": "Special topics of current interest." }, "AE8802": { "subject": "AE", "number": "8802", "name": "Special Topics ", - "description": "Special topics of current interest. Full Description " + "description": "Special topics of current interest." }, "AE8803": { "subject": "AE", "number": "8803", "name": "Special Topics ", - "description": "Special topics of current interest. Full Description " + "description": "Special topics of current interest." }, "AE8804": { "subject": "AE", "number": "8804", "name": "Special Topics ", - "description": "Special topics of current interest. Full Description " + "description": "Special topics of current interest." }, "AE8805": { "subject": "AE", "number": "8805", "name": "Special Topics ", - "description": "Special topics of current interest. Full Description " + "description": "Special topics of current interest." }, "AE8883": { "subject": "AE", "number": "8883", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "AE8900": { "subject": "AE", "number": "8900", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "AE8901": { "subject": "AE", "number": "8901", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "AE8902": { "subject": "AE", "number": "8902", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "AE8903": { "subject": "AE", "number": "8903", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "AE8997": { "subject": "AE", "number": "8997", "name": "Teaching Assistantship ", - "description": "For graduate students holding graduate teaching assistantships. Full Description " + "description": "For graduate students holding graduate teaching assistantships." }, "AE8998": { "subject": "AE", "number": "8998", "name": "Research Assistantship ", - "description": "For graduate students holding graduate research assistantships. Full Description " + "description": "For graduate students holding graduate research assistantships." }, "AE8999": { "subject": "AE", "number": "8999", "name": "Prep-Doctoral Disserta'n ", - "description": " Full Description " + "description": "" }, "AE9000": { "subject": "AE", "number": "9000", "name": "Doctoral Thesis ", - "description": " Full Description " + "description": "" }, "APPH1040": { "subject": "APPH", "number": "1040", "name": "Sci Foundation of Health ", - "description": "Students will learn how genetics, the environment and human behavior influence well-being. Topics include health fitness, immunity, nutrition, stress management and chronic disease prevention. Credit not allowed for both APPH 1040 and APPH 1050 or APPH 1040 or HPS 1040. Full Description " + "description": "Students will learn how genetics, the environment and human behavior influence well-being. Topics include health fitness, immunity, nutrition, stress management and chronic disease prevention. Credit not allowed for both APPH 1040 and APPH 1050 or APPH 1040 or HPS 1040." }, "APPH1050": { "subject": "APPH", "number": "1050", "name": "Sci of Phys Act & Health ", - "description": "Students will learn the importance of health fitness, good nutrition, stress management and chronic disease prevention. Activity portion of course will focus on training to improve fitness. Credit not allowed for both APPH 1050 and HPS 1040 or APPH 1050 or APPH 1040. Full Description " + "description": "Students will learn the importance of health fitness, good nutrition, stress management and chronic disease prevention. Activity portion of course will focus on training to improve fitness. Credit not allowed for both APPH 1050 and HPS 1040 or APPH 1050 or APPH 1040." }, "APPH2500": { "subject": "APPH", "number": "2500", "name": "Intro to Sport Science ", - "description": "Students will apply scientific principles to human performance related to sport and movement across an array of topics (e.g., rehabilitation, exercise physiology, locomotion biomechanics, prosthetics). Full Description " + "description": "Students will apply scientific principles to human performance related to sport and movement across an array of topics (e.g., rehabilitation, exercise physiology, locomotion biomechanics, prosthetics)." }, "APPH2698": { "subject": "APPH", "number": "2698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "APPH2699": { "subject": "APPH", "number": "2699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "APPH3000": { "subject": "APPH", "number": "3000", "name": "Survey of Medicine ", - "description": "Content focuses on scientific, social, and cultural aspects of illness, how perceptions and behavior influence disease concept and fundamental aspects of medical diagnosis and treatment. Full Description " + "description": "Content focuses on scientific, social, and cultural aspects of illness, how perceptions and behavior influence disease concept and fundamental aspects of medical diagnosis and treatment." }, "APPH3300": { "subject": "APPH", "number": "3300", "name": "Health Promotion ", - "description": "Through small group discussions and lectures, this class examines contemporary health issues facing college students and the theory and skill required to conduct health promotion activities. Full Description " + "description": "Through small group discussions and lectures, this class examines contemporary health issues facing college students and the theory and skill required to conduct health promotion activities." }, "APPH3500": { "subject": "APPH", "number": "3500", "name": "Nutrition and Health ", - "description": "Study of human nutrition as an applied science. Nutrition physiology: metabolism, energy, production, biochemical aspect, role of nutrients, weight control mechanisms, and preventative nutrition in health management will be covered. Full Description " + "description": "Study of human nutrition as an applied science. Nutrition physiology: metabolism, energy, production, biochemical aspect, role of nutrients, weight control mechanisms, and preventative nutrition in health management will be covered." }, "APPH3751": { "subject": "APPH", "number": "3751", "name": "Anatomy & Physiology ", - "description": "The study of human anatomy and fundamental physiological mechanisms with concentration in skeletal, muscular, nervous, circulatory, respiratory, digestive, urinary, endocrine, and reproductive systems. Crosslisted with BIOL 3751. Full Description " + "description": "The study of human anatomy and fundamental physiological mechanisms with concentration in skeletal, muscular, nervous, circulatory, respiratory, digestive, urinary, endocrine, and reproductive systems. Crosslisted with BIOL 3751." }, "APPH3753": { "subject": "APPH", "number": "3753", "name": "Anatomy ", - "description": "Detailed studies of human body structures using a regional and systems approach. Emphasis is placed on structural relationships and the integration of body systems. Full Description " + "description": "Detailed studies of human body structures using a regional and systems approach. Emphasis is placed on structural relationships and the integration of body systems." }, "APPH3754": { "subject": "APPH", "number": "3754", "name": "Anatomy Lab ", - "description": "A detailed hands-on study of human structure using high resolution models, specialized specimens and dissection of selected mammalian organs and tissues. Full Description " + "description": "A detailed hands-on study of human structure using high resolution models, specialized specimens and dissection of selected mammalian organs and tissues." }, "APPH3755": { "subject": "APPH", "number": "3755", "name": "Human Physiology ", - "description": "Students will explore the function and adaptation of the human body emphasizing neuromuscular, cardio-respiratory, gastointestinal, endocrine, and urinary systems to maintain homeostasis and human health. Full Description " + "description": "Students will explore the function and adaptation of the human body emphasizing neuromuscular, cardio-respiratory, gastointestinal, endocrine, and urinary systems to maintain homeostasis and human health." }, "APPH3756": { "subject": "APPH", "number": "3756", "name": "Physiology Lab ", - "description": "A laboratory application of concepts in Physiology, providing hands-on experience focusing primarily on non-invasive human experiments supplemented with vitro tissues experiments. Full Description " + "description": "A laboratory application of concepts in Physiology, providing hands-on experience focusing primarily on non-invasive human experiments supplemented with vitro tissues experiments." }, "APPH3801": { "subject": "APPH", "number": "3801", "name": "Special Topics ", - "description": "Topics of current interest in applied physiology. Full Description " + "description": "Topics of current interest in applied physiology." }, "APPH3802": { "subject": "APPH", "number": "3802", "name": "Special Topics ", - "description": "Topics of current interest in applied physiology. Full Description " + "description": "Topics of current interest in applied physiology." }, "APPH3803": { "subject": "APPH", "number": "3803", "name": "Special Topics ", - "description": "Topics of current interest in applied physiology. Full Description " + "description": "Topics of current interest in applied physiology." }, "APPH3804": { "subject": "APPH", "number": "3804", "name": "Special Topics ", - "description": "Topics of current interest in applied physiology. Full Description " + "description": "Topics of current interest in applied physiology." }, "APPH3831": { "subject": "APPH", "number": "3831", "name": "Special Topics ", - "description": "Topics of current interest in applied physiology. Full Description " + "description": "Topics of current interest in applied physiology." }, "APPH3832": { "subject": "APPH", "number": "3832", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "APPH3833": { "subject": "APPH", "number": "3833", "name": "Special Topics ", - "description": "Topics of current interest in applied physiology. Full Description " + "description": "Topics of current interest in applied physiology." }, "APPH3834": { "subject": "APPH", "number": "3834", "name": "Special Topics ", - "description": "Topics of current interest in applied physiology. Full Description " + "description": "Topics of current interest in applied physiology." }, "APPH3901": { "subject": "APPH", "number": "3901", "name": "Special Problems ", - "description": "Individual studies in applied physiology. Full Description " + "description": "Individual studies in applied physiology." }, "APPH3902": { "subject": "APPH", "number": "3902", "name": "Special Problems ", - "description": "Individual studies in applied physiology. Full Description " + "description": "Individual studies in applied physiology." }, "APPH3903": { "subject": "APPH", "number": "3903", "name": "Special Problems ", - "description": "Individual studies in applied physiology. Full Description " + "description": "Individual studies in applied physiology." }, "APPH3904": { "subject": "APPH", "number": "3904", "name": "Special Problems ", - "description": "Individual studies in applied physiology. Full Description " + "description": "Individual studies in applied physiology." }, "APPH4100": { "subject": "APPH", "number": "4100", "name": "Exercise Physiology ", - "description": "Physiology of human movement with emphasis on metabolic, cardiorespiratory, and musculoskeletal aspects; associated topics include body composition, thermoregulation, and ergogenic aids. Full Description " + "description": "Physiology of human movement with emphasis on metabolic, cardiorespiratory, and musculoskeletal aspects; associated topics include body composition, thermoregulation, and ergogenic aids." }, "APPH4200": { "subject": "APPH", "number": "4200", "name": "Kinesiology ", - "description": "Analysis of human movement from a kinesiological, neural and anatomical perspective including the study of locomotion and the mechanisms of selected musculoskeletal injuries, chronic and acute. Full Description " + "description": "Analysis of human movement from a kinesiological, neural and anatomical perspective including the study of locomotion and the mechanisms of selected musculoskeletal injuries, chronic and acute." }, "APPH4400": { "subject": "APPH", "number": "4400", "name": "Human Neuroanatomy ", - "description": "The purpose of this course is to learn the anatomical makeup of the human nervous system. In this course we will closely examine details of central and peripheral neuranatomy with links to function. As well, comparisons with non-human vertebrate neuroanatomy will be made. Credit not allowed for both APPH 4400 and APPH 6400. Full Description " + "description": "The purpose of this course is to learn the anatomical makeup of the human nervous system. In this course we will closely examine details of central and peripheral neuranatomy with links to function. As well, comparisons with non-human vertebrate neuroanatomy will be made. Credit not allowed for both APPH 4400 and APPH 6400." }, "APPH4600": { "subject": "APPH", "number": "4600", "name": "Muscle Struct&Plasticity ", - "description": "To provide an in-depth understanding of the biological processes underlying skeletal muscle structure and function. Full Description " + "description": "To provide an in-depth understanding of the biological processes underlying skeletal muscle structure and function." }, "APPH4651": { "subject": "APPH", "number": "4651", "name": "Human Anatomy ", - "description": "The study of human system anatomy involving cadaver dissection, lectures and practical exams. The human muscular, nervous, skeletal and cardiorespiratory systems will be emphasized. Full Description " + "description": "The study of human system anatomy involving cadaver dissection, lectures and practical exams. The human muscular, nervous, skeletal and cardiorespiratory systems will be emphasized." }, "APPH4698": { "subject": "APPH", "number": "4698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "APPH4699": { "subject": "APPH", "number": "4699", "name": "Undergraduate Research ", - "description": "Independent research under the guidance of a faculty member. Full Description " + "description": "Independent research under the guidance of a faculty member." }, "APPH4801": { "subject": "APPH", "number": "4801", "name": "Special Topics ", - "description": "Topics of current interest in applied physiology. Full Description " + "description": "Topics of current interest in applied physiology." }, "APPH4802": { "subject": "APPH", "number": "4802", "name": "Special Topics ", - "description": "Topics of current interest in applied physiology. Full Description " + "description": "Topics of current interest in applied physiology." }, "APPH4803": { "subject": "APPH", "number": "4803", "name": "Special Topics ", - "description": "Topics of current interest in applied physiology. Full Description " + "description": "Topics of current interest in applied physiology." }, "APPH4804": { "subject": "APPH", "number": "4804", "name": "Special Topics ", - "description": "Topics of current interest in applied physiology. Full Description " + "description": "Topics of current interest in applied physiology." }, "APPH4831": { "subject": "APPH", "number": "4831", "name": "Special Topics ", - "description": "Topics of current interest in applied physiology. Full Description " + "description": "Topics of current interest in applied physiology." }, "APPH4832": { "subject": "APPH", "number": "4832", "name": "Special Topics ", - "description": "Topics of current interest in applied physiology. Full Description " + "description": "Topics of current interest in applied physiology." }, "APPH4833": { "subject": "APPH", "number": "4833", "name": "Special Topics ", - "description": "Topics of current interest in applied physiology. Full Description " + "description": "Topics of current interest in applied physiology." }, "APPH4834": { "subject": "APPH", "number": "4834", "name": "Special Topics ", - "description": "Topics of current interest in applied physiology. Full Description " + "description": "Topics of current interest in applied physiology." }, "APPH6202": { "subject": "APPH", "number": "6202", "name": "Clinical Gait Analysis ", - "description": "Analysis of normal and pathological human locomotion. Study of theory and instrumentation for measurement of temporal and spatial kinematics and kinetics, electromyography, and plantar pressure. Full Description " + "description": "Analysis of normal and pathological human locomotion. Study of theory and instrumentation for measurement of temporal and spatial kinematics and kinetics, electromyography, and plantar pressure." }, "APPH6203": { "subject": "APPH", "number": "6203", "name": "Biomech & Kines in P&O ", - "description": "Mechanics of human movement applied to the study of artifical limbs and braces. Emphasis on neuromuscular control, Newtonian mechanics, kinematics and kinetics. Full Description " + "description": "Mechanics of human movement applied to the study of artifical limbs and braces. Emphasis on neuromuscular control, Newtonian mechanics, kinematics and kinetics." }, "APPH6209": { "subject": "APPH", "number": "6209", "name": "Clinical Pathology ", - "description": "Systems level overview of human pathology with emphasis on the effect of disease on human movement and neuromechanical function. Full Description " + "description": "Systems level overview of human pathology with emphasis on the effect of disease on human movement and neuromechanical function." }, "APPH6211": { "subject": "APPH", "number": "6211", "name": "Systems Physiology I ", - "description": "The course will focus on adaptations of skeletal, muscular, and neural systems at the cellular level. Full Description " + "description": "The course will focus on adaptations of skeletal, muscular, and neural systems at the cellular level." }, "APPH6212": { "subject": "APPH", "number": "6212", "name": "Systems Physiology II ", - "description": "The course will focus on function and adaptations of skeletal, muscular, and neural systems. Interactions among the various systems and their plasticity will be emphasized. Full Description " + "description": "The course will focus on function and adaptations of skeletal, muscular, and neural systems. Interactions among the various systems and their plasticity will be emphasized." }, "APPH6213": { "subject": "APPH", "number": "6213", "name": "Systems Physiology III ", - "description": "The course will focus on integrative mechanism impacting motor system performance. Interactions among the various systems and their plasticity will be emphasized. Full Description " + "description": "The course will focus on integrative mechanism impacting motor system performance. Interactions among the various systems and their plasticity will be emphasized." }, "APPH6214": { "subject": "APPH", "number": "6214", "name": "Lab Rotations In P&O ", - "description": "This course will provide the opportunity for students in individual laboratories to support their graduate training in prosthetics and orthotics. Full Description " + "description": "This course will provide the opportunity for students in individual laboratories to support their graduate training in prosthetics and orthotics." }, "APPH6215": { "subject": "APPH", "number": "6215", "name": "RCR in P&O ", - "description": "This course will cover areas related to research ethics, the responsible use of animial and human models and collaborative research issues in prosthetics and orthotics. Full Description " + "description": "This course will cover areas related to research ethics, the responsible use of animial and human models and collaborative research issues in prosthetics and orthotics." }, "APPH6216": { "subject": "APPH", "number": "6216", "name": "Rehabilitation Research ", - "description": "This course will provide students in the PhD Training Program in Prosthetics and Orthotics to study issues in Rehabilitation Medicine. Full Description " + "description": "This course will provide students in the PhD Training Program in Prosthetics and Orthotics to study issues in Rehabilitation Medicine." }, "APPH6223": { "subject": "APPH", "number": "6223", "name": "CAD/CAM-Prosth/Orth Lab ", - "description": "Theoretical and practical analysis of the application of computer-aided design and manufacturing to prosthetics and orthotics. Includes methods of digitization and multiple manufacturing processes. Full Description " + "description": "Theoretical and practical analysis of the application of computer-aided design and manufacturing to prosthetics and orthotics. Includes methods of digitization and multiple manufacturing processes." }, "APPH6225": { "subject": "APPH", "number": "6225", "name": "Biostatistics ", - "description": "Introductory statistical principles and methods of experimental design, sampling, power estimation, and hypothesis testing using ANOVA and regression. Full Description " + "description": "Introductory statistical principles and methods of experimental design, sampling, power estimation, and hypothesis testing using ANOVA and regression." }, "APPH6230": { "subject": "APPH", "number": "6230", "name": "Exercise Metabolism ", - "description": "The course will focus on the biochemical pathways that provide fuel for the human body during rest and various levels of physical activity. Full Description " + "description": "The course will focus on the biochemical pathways that provide fuel for the human body during rest and various levels of physical activity." }, "APPH6231": { "subject": "APPH", "number": "6231", "name": "Human Motor Control ", - "description": "The course will examine selected motor control problems that the nervous system faces in the process of managing this mechanical complexity. Full Description " + "description": "The course will examine selected motor control problems that the nervous system faces in the process of managing this mechanical complexity." }, "APPH6232": { "subject": "APPH", "number": "6232", "name": "Locomotion Neuromechanic ", - "description": "This is a course that will introduce topics on the biomechanical and neural aspects of the control of limbed locomotion and movement. Full Description " + "description": "This is a course that will introduce topics on the biomechanical and neural aspects of the control of limbed locomotion and movement." }, "APPH6233": { "subject": "APPH", "number": "6233", "name": "Aging Movement Control ", - "description": "The aim of this course is to review research literature dealing with the effects of advances in age on the CNS and motor performance. Full Description " + "description": "The aim of this course is to review research literature dealing with the effects of advances in age on the CNS and motor performance." }, "APPH6234": { "subject": "APPH", "number": "6234", "name": "Physical Act-Human Behav ", - "description": "Focus is on understanding physical activity as a behavior using health behavior change models. An interdisciplinary perspective integrating research from the fields of epidemiology, physiology, and psychology. Full Description " + "description": "Focus is on understanding physical activity as a behavior using health behavior change models. An interdisciplinary perspective integrating research from the fields of epidemiology, physiology, and psychology." }, "APPH6235": { "subject": "APPH", "number": "6235", "name": "Mechanics of Movement ", - "description": "This course is designed to understand the potential effects of selected disorders of the neuromuscular system on movement control. Full Description " + "description": "This course is designed to understand the potential effects of selected disorders of the neuromuscular system on movement control." }, "APPH6236": { "subject": "APPH", "number": "6236", "name": "Neuromuscular Physiology ", - "description": "This course discusses the application of current experimental techniques in human studies in vivo. Full Description " + "description": "This course discusses the application of current experimental techniques in human studies in vivo." }, "APPH6237": { "subject": "APPH", "number": "6237", "name": "Human Neuroimaging ", - "description": "The purpose of the course is to introduce various methods of functional neuroimaging in humans. Full Description " + "description": "The purpose of the course is to introduce various methods of functional neuroimaging in humans." }, "APPH6238": { "subject": "APPH", "number": "6238", "name": "Ion Channel Structure ", - "description": "This course will examine the structure, function and regulation of ion channels from both excitable and non-excitable cells. Full Description " + "description": "This course will examine the structure, function and regulation of ion channels from both excitable and non-excitable cells." }, "APPH6239": { "subject": "APPH", "number": "6239", "name": "Movement Disorders ", - "description": "This course serves as an introduction to the clinical and research aspects of movement disorders. Full Description " + "description": "This course serves as an introduction to the clinical and research aspects of movement disorders." }, "APPH6400": { "subject": "APPH", "number": "6400", "name": "Human Neuroanatomy ", - "description": "The purpose of this course is to learn the anatomical makeup of the human nervous system. In this course we will closely examine details of central and peripheral neuroanatomy with links to function. As well, comparisons with non-human vertebrate neuroanatomy will be made. Full Description " + "description": "The purpose of this course is to learn the anatomical makeup of the human nervous system. In this course we will closely examine details of central and peripheral neuroanatomy with links to function. As well, comparisons with non-human vertebrate neuroanatomy will be made." }, "APPH6500": { "subject": "APPH", "number": "6500", "name": "Classics in Neuroscience ", - "description": "The purpose of this seminar is to learn and explore the history of neuroscience from a perspective of reading classic papers that have evolved. Full Description " + "description": "The purpose of this seminar is to learn and explore the history of neuroscience from a perspective of reading classic papers that have evolved." }, "APPH6600": { "subject": "APPH", "number": "6600", "name": "Muscle Struct & Plasticity ", - "description": "Covers the biological processes underlying skeletal muscle structure and function, as well as rigorous mathematical models of those processes. Full Description " + "description": "Covers the biological processes underlying skeletal muscle structure and function, as well as rigorous mathematical models of those processes." }, "APPH6651": { "subject": "APPH", "number": "6651", "name": "Human Anatomy ", - "description": "The study of human system anatomy involving cadaver dissection, lectures and practical exams. The human muscular, nervous, skeletal and cardiorespiratory systems will be emphasized. Full Description " + "description": "The study of human system anatomy involving cadaver dissection, lectures and practical exams. The human muscular, nervous, skeletal and cardiorespiratory systems will be emphasized." }, "APPH6746": { "subject": "APPH", "number": "6746", "name": "Rehab Engineering ", - "description": "Students will participate in rehabilitation engineering as practiced in the assistive technology industry. Credit not allowed for both APPH 6746 and ME 6746. Full Description " + "description": "Students will participate in rehabilitation engineering as practiced in the assistive technology industry. Credit not allowed for both APPH 6746 and ME 6746." }, "APPH6895": { "subject": "APPH", "number": "6895", "name": "Lower Limb Orthotics I ", - "description": "This course is the first part of a two course series and sets the essential elements of theory, technical design and patient management. Full Description " + "description": "This course is the first part of a two course series and sets the essential elements of theory, technical design and patient management." }, "APPH6896": { "subject": "APPH", "number": "6896", "name": "Lower Limb Orthotics II ", - "description": "This course is the second in a two part course series and applies more advanced elements of theory, technical design and patient management. Full Description " + "description": "This course is the second in a two part course series and applies more advanced elements of theory, technical design and patient management." }, "APPH6971": { "subject": "APPH", "number": "6971", "name": "Intro to P&O Processes ", - "description": "This course introduces basic processes for fabrication of prostheses and orthoses. Clinical methods associated with the provision of prostheses and orthoses will also be introduced. Full Description " + "description": "This course introduces basic processes for fabrication of prostheses and orthoses. Clinical methods associated with the provision of prostheses and orthoses will also be introduced." }, "APPH6975": { "subject": "APPH", "number": "6975", "name": "Intro to Prosthetics ", - "description": "This course introduces the history and development of external limb prostheses including their design, alignment, socket interfaces, suspension mechanisms, and components. Full Description " + "description": "This course introduces the history and development of external limb prostheses including their design, alignment, socket interfaces, suspension mechanisms, and components." }, "APPH6981": { "subject": "APPH", "number": "6981", "name": "Upper Limb Prosthetics ", - "description": "Clinical training for the practice of prosthetics emphasizing adult and pediatric upper limb prostheses. Full Description " + "description": "Clinical training for the practice of prosthetics emphasizing adult and pediatric upper limb prostheses." }, "APPH6982": { "subject": "APPH", "number": "6982", "name": "Spinal Orthotics ", - "description": "Clinical training for the practice of orthotics emphasizing adult and pediatric spinal orthoses. Full Description " + "description": "Clinical training for the practice of orthotics emphasizing adult and pediatric spinal orthoses." }, "APPH6983": { "subject": "APPH", "number": "6983", "name": "Upper Limb Orthotics ", - "description": "Clinical training for the practice of orthotics emphasizing adult and pediatric upper limb orthoses. Full Description " + "description": "Clinical training for the practice of orthotics emphasizing adult and pediatric upper limb orthoses." }, "APPH6984": { "subject": "APPH", "number": "6984", "name": "Transtibial Prosthetics ", - "description": "Clinical training for the practice of prosthetics emphasizing adult and pediatric transtibial (below knee) prostheses. Full Description " + "description": "Clinical training for the practice of prosthetics emphasizing adult and pediatric transtibial (below knee) prostheses." }, "APPH6985": { "subject": "APPH", "number": "6985", "name": "Transfemoral Prosthetics ", - "description": "Clinical training for the practice of prosthetics emphasizing adult and pediatric transfemoral (above knee) prostheses. Full Description " + "description": "Clinical training for the practice of prosthetics emphasizing adult and pediatric transfemoral (above knee) prostheses." }, "APPH6997": { "subject": "APPH", "number": "6997", "name": "Assistive Technology ", - "description": "Theories and devices associated with assistive technology and mobility aids, emphasizing topics important to clinical practice in prosthetics and orthotics. Full Description " + "description": "Theories and devices associated with assistive technology and mobility aids, emphasizing topics important to clinical practice in prosthetics and orthotics." }, "APPH6999": { "subject": "APPH", "number": "6999", "name": "Clinical Practicum ", - "description": "Clinical observation of the practice of prosthetics and orthotics and related medical disciplines. Full Description " + "description": "Clinical observation of the practice of prosthetics and orthotics and related medical disciplines." }, "APPH8000": { "subject": "APPH", "number": "8000", "name": "Seminar ", - "description": "The purpose of this course is for students to learn the research process from the early stage of identifying a question through publication of work. Full Description " + "description": "The purpose of this course is for students to learn the research process from the early stage of identifying a question through publication of work." }, "APPH8009": { "subject": "APPH", "number": "8009", "name": "Research Seminar I ", - "description": "A forum for graduate students in prosthetics and orthotics to present topics related to their research interests. Full Description " + "description": "A forum for graduate students in prosthetics and orthotics to present topics related to their research interests." }, "APPH8010": { "subject": "APPH", "number": "8010", "name": "Research Seminar II ", - "description": "A forum for graduate students in prosthetics and orthotics to present and discuss topics related to their research interests. Full Description " + "description": "A forum for graduate students in prosthetics and orthotics to present and discuss topics related to their research interests." }, "APPH8012": { "subject": "APPH", "number": "8012", "name": "Research Seminar III ", - "description": "A forum for graduate students in prosthetics and orthotics to present topics related to their research interests. Full Description " + "description": "A forum for graduate students in prosthetics and orthotics to present topics related to their research interests." }, "APPH8801": { "subject": "APPH", "number": "8801", "name": "Special Topics ", - "description": "Topics of special interest not covered in the regular course offerings. Full Description " + "description": "Topics of special interest not covered in the regular course offerings." }, "APPH8802": { "subject": "APPH", "number": "8802", "name": "Special Topics ", - "description": "Topics of special interest not covered in the regular course offerings. Full Description " + "description": "Topics of special interest not covered in the regular course offerings." }, "APPH8803": { "subject": "APPH", "number": "8803", "name": "Special Topics ", - "description": "Topics of special interest not covered in the regular course offerings. Full Description " + "description": "Topics of special interest not covered in the regular course offerings." }, "APPH8804": { "subject": "APPH", "number": "8804", "name": "Special Topics ", - "description": "Topics of special interest not covered in the regular course offerings. Full Description " + "description": "Topics of special interest not covered in the regular course offerings." }, "APPH8813": { "subject": "APPH", "number": "8813", "name": "Special Topics ", - "description": "Topics of current interest not covered in other courses. Full Description " + "description": "Topics of current interest not covered in other courses." }, "APPH8823": { "subject": "APPH", "number": "8823", "name": "Special Topics ", - "description": "Topics of current interest not covered in other courses. Full Description " + "description": "Topics of current interest not covered in other courses." }, "APPH8833": { "subject": "APPH", "number": "8833", "name": "Special Topics ", - "description": "Topics of current interest not covered in other courses. Full Description " + "description": "Topics of current interest not covered in other courses." }, "APPH8901": { "subject": "APPH", "number": "8901", "name": "Special Problems ", - "description": "Individual studies and/or experimental investigations of problems of current interest. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest." }, "APPH8902": { "subject": "APPH", "number": "8902", "name": "Special Problems ", - "description": "Individual studies and/or experimental investigations of problems of current interest. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest." }, "APPH8903": { "subject": "APPH", "number": "8903", "name": "Special Problems ", - "description": "Individual studies and/or experimental investigations of problems of current interest. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest." }, "APPH8904": { "subject": "APPH", "number": "8904", "name": "Special Topics ", - "description": "Individual studies and/or experimental investigations of problems of current interest. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest." }, "APPH8997": { "subject": "APPH", "number": "8997", "name": "Teaching Assistantship ", - "description": "This course if for students holding a graduate teaching assistantship. Full Description " + "description": "This course if for students holding a graduate teaching assistantship." }, "APPH8998": { "subject": "APPH", "number": "8998", "name": "Research Assistantship ", - "description": "For graduate students holding research assistantships. Full Description " + "description": "For graduate students holding research assistantships." }, "APPH9000": { "subject": "APPH", "number": "9000", "name": "Doctoral Thesis ", - "description": " Full Description " + "description": "" }, "ARBC1001": { "subject": "ARBC", "number": "1001", "name": "Elementary Arabic I ", - "description": "Development of basic communication skills in the spoken language. Introduction to the writing system, the reading of simple texts, and basic grammatical structures. Full Description " + "description": "Development of basic communication skills in the spoken language. Introduction to the writing system, the reading of simple texts, and basic grammatical structures." }, "ARBC1002": { "subject": "ARBC", "number": "1002", "name": "Elementary Arabic II ", - "description": "Continuation of Arabic I. Full Description " + "description": "Continuation of Arabic I." }, "ARBC10X1": { "subject": "ARBC", "number": "10X1", "name": "Trans Arabic Elementary I ", - "description": " Full Description " + "description": "" }, "ARBC10X2": { "subject": "ARBC", "number": "10X2", "name": "Trans Arabic Elementary II ", - "description": " Full Description " + "description": "" }, "ARBC1501": { "subject": "ARBC", "number": "1501", "name": "Understand Arab Culture ", - "description": "Arab beliefs and values regarding topics such as religion, society, family, the dynamics between men and women, and social norms are discussed. Taught in English. Full Description " + "description": "Arab beliefs and values regarding topics such as religion, society, family, the dynamics between men and women, and social norms are discussed. Taught in English." }, "ARBC1801": { "subject": "ARBC", "number": "1801", "name": "Special Topics ", - "description": "Topics of current interest in Arabic. Full Description " + "description": "Topics of current interest in Arabic." }, "ARBC1813": { "subject": "ARBC", "number": "1813", "name": "Special Topics ", - "description": "Topics of current interest in Arabic. Full Description " + "description": "Topics of current interest in Arabic." }, "ARBC1814": { "subject": "ARBC", "number": "1814", "name": "Special Topics ", - "description": "Topics of current interest in Arabic. Full Description " + "description": "Topics of current interest in Arabic." }, "ARBC1XXX": { "subject": "ARBC", "number": "1XXX", "name": "Arabic Elective ", - "description": " Full Description " + "description": "" }, "ARBC2001": { "subject": "ARBC", "number": "2001", "name": "Intermediate Arabic I ", - "description": "This course continues the introduction to features of Arabic in the context of Arab culture at large. Students are exposed to features of several Arabic dialects. Full Description " + "description": "This course continues the introduction to features of Arabic in the context of Arab culture at large. Students are exposed to features of several Arabic dialects." }, "ARBC2002": { "subject": "ARBC", "number": "2002", "name": "Intermediate Arabic II ", - "description": "This course is a continuation of ARBC 2001. Full Description " + "description": "This course is a continuation of ARBC 2001." }, "ARBC2301": { "subject": "ARBC", "number": "2301", "name": "Arts Sci Tech Thru Hist ", - "description": "An examination of Arab accomplishments in Sciences, Technology, Philosophy and Art (700-1300 AD) through historical documents, books and movies. Taught in English. Full Description " + "description": "An examination of Arab accomplishments in Sciences, Technology, Philosophy and Art (700-1300 AD) through historical documents, books and movies. Taught in English." }, "ARBC2698": { "subject": "ARBC", "number": "2698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "ARBC2699": { "subject": "ARBC", "number": "2699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "ARBC2813": { "subject": "ARBC", "number": "2813", "name": "Special Topics ", - "description": "Topics of current interest in Arabic. Full Description " + "description": "Topics of current interest in Arabic." }, "ARBC2823": { "subject": "ARBC", "number": "2823", "name": "Special Topics ", - "description": "Topics of current interest in Arabic. Full Description " + "description": "Topics of current interest in Arabic." }, "ARBC2833": { "subject": "ARBC", "number": "2833", "name": "Special Topics ", - "description": "Topics of current interest in Arabic. Full Description " + "description": "Topics of current interest in Arabic." }, "ARBC2XXX": { "subject": "ARBC", "number": "2XXX", "name": "Arabic Elective ", - "description": " Full Description " + "description": "" }, "ARBC3001": { "subject": "ARBC", "number": "3001", "name": "Advanced Arabic I ", - "description": "Advanced grammar, listening, reading, writing, speaking, the language of contemporary Arabic society, politics and culture through task-based language teaching. Taught in Arabic. Full Description " + "description": "Advanced grammar, listening, reading, writing, speaking, the language of contemporary Arabic society, politics and culture through task-based language teaching. Taught in Arabic." }, "ARBC3002": { "subject": "ARBC", "number": "3002", "name": "Advanced Arabic II ", - "description": "Listening, reading, writing, speaking the language of contemporary Arabic society, politics and culture through task-based language teaching. Taught in Arabic. Full Description " + "description": "Listening, reading, writing, speaking the language of contemporary Arabic society, politics and culture through task-based language teaching. Taught in Arabic." }, "ARBC3501": { "subject": "ARBC", "number": "3501", "name": "Men-Women In Islam ", - "description": "The course discusses contemorary Arab women and men writers' interpretation of the Qur'an demonstrating the egalitarian and anti-patriarchal nature of its teachings. Taught in English. Full Description " + "description": "The course discusses contemorary Arab women and men writers' interpretation of the Qur'an demonstrating the egalitarian and anti-patriarchal nature of its teachings. Taught in English." }, "ARBC3691": { "subject": "ARBC", "number": "3691", "name": "Intensive Advanced ARBC ", - "description": "Develops students' receptive & communicative skills in Arabic while capitalizing on the rich linguistic & cultural surroundings. Part of ARBC LBAT summer program. Full Description " + "description": "Develops students' receptive & communicative skills in Arabic while capitalizing on the rich linguistic & cultural surroundings. Part of ARBC LBAT summer program." }, "ARBC3692": { "subject": "ARBC", "number": "3692", "name": "Arabic Business & Tech I ", - "description": "The first sequence of two courses in which students learn the linguistic and pragmatic language of business culture in the Arab World. Taught in Arabic. Full Description " + "description": "The first sequence of two courses in which students learn the linguistic and pragmatic language of business culture in the Arab World. Taught in Arabic." }, "ARBC3693": { "subject": "ARBC", "number": "3693", "name": "Arabic Business &Tech II ", - "description": "The continuation of two courses in which students learn the linguistic and pragmatic language of business culture in the Arab World. Taught in Arabic. Full Description " + "description": "The continuation of two courses in which students learn the linguistic and pragmatic language of business culture in the Arab World. Taught in Arabic." }, "ARBC3813": { "subject": "ARBC", "number": "3813", "name": "Special Topics ", - "description": "Topics of current interest in Arabic. Full Description " + "description": "Topics of current interest in Arabic." }, "ARBC3823": { "subject": "ARBC", "number": "3823", "name": "Special Topics ", - "description": "Topics of current interest in Arabic. Full Description " + "description": "Topics of current interest in Arabic." }, "ARBC3833": { "subject": "ARBC", "number": "3833", "name": "Special Topics ", - "description": "Topics of current interest in Arabic. Full Description " + "description": "Topics of current interest in Arabic." }, "ARBC3XXX": { "subject": "ARBC", "number": "3XXX", "name": "Arabic Elective ", - "description": " Full Description " + "description": "" }, "ARBC4698": { "subject": "ARBC", "number": "4698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "ARBC4699": { "subject": "ARBC", "number": "4699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "ARBC4813": { "subject": "ARBC", "number": "4813", "name": "Special Topics ", - "description": "Topics of current interest in Arabic. Full Description " + "description": "Topics of current interest in Arabic." }, "ARBC4823": { "subject": "ARBC", "number": "4823", "name": "Special Topics ", - "description": "Topics of current interest in Arabic. Full Description " + "description": "Topics of current interest in Arabic." }, "ARBC4833": { "subject": "ARBC", "number": "4833", "name": "Special Topics ", - "description": "Topics of current interest in Arabic. Full Description " + "description": "Topics of current interest in Arabic." }, "ARBC4901": { "subject": "ARBC", "number": "4901", "name": "Special Problems ", - "description": "Special problems course for advanced students. Topics to be arranged with instructor. Full Description " + "description": "Special problems course for advanced students. Topics to be arranged with instructor." }, "ARBC4902": { "subject": "ARBC", "number": "4902", "name": "Special Problems ", - "description": "Special problems course for advanced students. Topics to be arranged with instructor. Full Description " + "description": "Special problems course for advanced students. Topics to be arranged with instructor." }, "ARBC4XXX": { "subject": "ARBC", "number": "4XXX", "name": "Arabic Elective ", - "description": " Full Description " + "description": "" }, "ARCH1XXX": { "subject": "ARCH", "number": "1XXX", "name": "Architecture Elective ", - "description": " Full Description " + "description": "" }, "ARCH2011": { "subject": "ARCH", "number": "2011", "name": "Arch Design Studio I ", - "description": "Elementary design exercises exploring fundamental issues of form and space through analysis of architectural elements and compositions and their use in creative problem solving. Full Description " + "description": "Elementary design exercises exploring fundamental issues of form and space through analysis of architectural elements and compositions and their use in creative problem solving." }, "ARCH2012": { "subject": "ARCH", "number": "2012", "name": "Arch Design Studio II ", - "description": "Elementary design exercises focusing upon the compositional integration of building and site through the creative assimilation of programmatic, technical, and contextual requirements. Full Description " + "description": "Elementary design exercises focusing upon the compositional integration of building and site through the creative assimilation of programmatic, technical, and contextual requirements." }, "ARCH2111": { "subject": "ARCH", "number": "2111", "name": "History of Arch I ", - "description": "Architectural history from antiquity through the eighteenth century emphasizing buildings in their cultural context as informed by social, technological, and constructive factors and theoretical positions. Full Description " + "description": "Architectural history from antiquity through the eighteenth century emphasizing buildings in their cultural context as informed by social, technological, and constructive factors and theoretical positions." }, "ARCH2112": { "subject": "ARCH", "number": "2112", "name": "History of Arch II ", - "description": "Architectural history during the nineteenth and twentieth centuries emphasizing buildings in their cultural context as informed by social, technological, and constructive factors and theoretical positions. Full Description " + "description": "Architectural history during the nineteenth and twentieth centuries emphasizing buildings in their cultural context as informed by social, technological, and constructive factors and theoretical positions." }, "ARCH2115": { "subject": "ARCH", "number": "2115", "name": "Modern Arch & Art ", - "description": "A brief survey of architecture and art in the nineteenth and twentieth centuries, including a discussion of related influences on developments in those fields. Full Description " + "description": "A brief survey of architecture and art in the nineteenth and twentieth centuries, including a discussion of related influences on developments in those fields." }, "ARCH2211": { "subject": "ARCH", "number": "2211", "name": "Construction Tech I ", - "description": "Introduction to building anatomy, technical and expressive characteristics of materials and their organizational assembly. Full Description " + "description": "Introduction to building anatomy, technical and expressive characteristics of materials and their organizational assembly." }, "ARCH2472": { "subject": "ARCH", "number": "2472", "name": "Arch Modeling & Media 2 ", - "description": "Intermediate approaches to two and three dimensional modeling and representation in architecture using both manual and digital media and techniques. Full Description " + "description": "Intermediate approaches to two and three dimensional modeling and representation in architecture using both manual and digital media and techniques." }, "ARCH2474": { "subject": "ARCH", "number": "2474", "name": "Arch Modeling & Media 3 ", - "description": "Advanced approaches to two and three dimensional modeling and representation in architecture using both manual and digital media and techniques. Full Description " + "description": "Advanced approaches to two and three dimensional modeling and representation in architecture using both manual and digital media and techniques." }, "ARCH2698": { "subject": "ARCH", "number": "2698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "ARCH2699": { "subject": "ARCH", "number": "2699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "ARCH2XXX": { "subject": "ARCH", "number": "2XXX", "name": "Architecture Elective ", - "description": " Full Description " + "description": "" }, "ARCH3011": { "subject": "ARCH", "number": "3011", "name": "Arch Design Studio III ", - "description": "Intermediate architectural design projects emphasizing the functional priorities and expressive potential of building technologies through studio problems of varying programmatic and contextual complexity. Full Description " + "description": "Intermediate architectural design projects emphasizing the functional priorities and expressive potential of building technologies through studio problems of varying programmatic and contextual complexity." }, "ARCH3012": { "subject": "ARCH", "number": "3012", "name": "Arch Design Studio IV ", - "description": "Intermediate architectural design projects exploring the inter-relationships of various programmatic models, normative building types, and technological themes within specific physical, urban, and cultural contexts. Full Description " + "description": "Intermediate architectural design projects exploring the inter-relationships of various programmatic models, normative building types, and technological themes within specific physical, urban, and cultural contexts." }, "ARCH3135": { "subject": "ARCH", "number": "3135", "name": "City Literacy ", - "description": "The course frames the city as material and social space, focusing on everyday experience in exemplary cities to explore how they are conceived and negotiated. Full Description " + "description": "The course frames the city as material and social space, focusing on everyday experience in exemplary cities to explore how they are conceived and negotiated." }, "ARCH3231": { "subject": "ARCH", "number": "3231", "name": "Environmental Systems I ", - "description": "Human physiology, the occupation of space, and principles of sustainability. Micro-climate, energy consumption, thermal loading, passive solar strategies, daylighting, optics, and acoustics. Full Description " + "description": "Human physiology, the occupation of space, and principles of sustainability. Micro-climate, energy consumption, thermal loading, passive solar strategies, daylighting, optics, and acoustics." }, "ARCH3241": { "subject": "ARCH", "number": "3241", "name": "Fund of Structures ", - "description": "Physics of structure: principles of statics, strengths of materials, and the dynamic forces acting upon them. Full Description " + "description": "Physics of structure: principles of statics, strengths of materials, and the dynamic forces acting upon them." }, "ARCH3XXX": { "subject": "ARCH", "number": "3XXX", "name": "Architecture Elective ", - "description": " Full Description " + "description": "" }, "ARCH4011": { "subject": "ARCH", "number": "4011", "name": "Arch Design Studio V ", - "description": "Advanced studies in architectural design emphasizing application of analytical, conceptual, and representational skills within projects that engage and problematize urban context culturally, ecologically, and technologically. Full Description " + "description": "Advanced studies in architectural design emphasizing application of analytical, conceptual, and representational skills within projects that engage and problematize urban context culturally, ecologically, and technologically." }, "ARCH4012": { "subject": "ARCH", "number": "4012", "name": "Arch Design Studio VI ", - "description": "Advanced studies in architectural design emphasizing application of analytical, conceptual, and representational skills within projects that engage and problematize context culturally, ecologically, and technologically. Full Description " + "description": "Advanced studies in architectural design emphasizing application of analytical, conceptual, and representational skills within projects that engage and problematize context culturally, ecologically, and technologically." }, "ARCH4107": { "subject": "ARCH", "number": "4107", "name": "Intro to Historic Preser ", - "description": "This course provides an overview of the history, philosophy, organization, current legislation, policies, and practice of historic preservation. Full Description " + "description": "This course provides an overview of the history, philosophy, organization, current legislation, policies, and practice of historic preservation." }, "ARCH4109": { "subject": "ARCH", "number": "4109", "name": "Arch and Minimalism ", - "description": "This course examines the influence of \"minimalism,\" the 1960s art phenomenon, upon architecture culture and production from 1968-present. Full Description " + "description": "This course examines the influence of \"minimalism,\" the 1960s art phenomenon, upon architecture culture and production from 1968-present." }, "ARCH4110": { "subject": "ARCH", "number": "4110", "name": "Public Space ", - "description": "This course addresses questions concerning present-day configurations of public space as a platform for analysis of the contemporary city. Full Description " + "description": "This course addresses questions concerning present-day configurations of public space as a platform for analysis of the contemporary city." }, "ARCH4112": { "subject": "ARCH", "number": "4112", "name": "Arch in Georgia ", - "description": "A field study and archival research on the architecture of the state of Georgia outside of Atlanta. Full Description " + "description": "A field study and archival research on the architecture of the state of Georgia outside of Atlanta." }, "ARCH4113": { "subject": "ARCH", "number": "4113", "name": "Renaissance&Manner Arch ", - "description": "Investigation of the history and theory of Renaissance and Mannerist architecture with a primary emphasis on Italy. Full Description " + "description": "Investigation of the history and theory of Renaissance and Mannerist architecture with a primary emphasis on Italy." }, "ARCH4114": { "subject": "ARCH", "number": "4114", "name": "Medieval Architecture ", - "description": "Investigations of the architecture of Medieval Europe with an emphasis on English and French Romanesque and Gothic, including towns and castles. Full Description " + "description": "Investigations of the architecture of Medieval Europe with an emphasis on English and French Romanesque and Gothic, including towns and castles." }, "ARCH4115": { "subject": "ARCH", "number": "4115", "name": "Intro Classical Design ", - "description": "An introduction to the principles of Classical and traditional architectural design through readings, discussions, and site visits with Classical architects. Full Description " + "description": "An introduction to the principles of Classical and traditional architectural design through readings, discussions, and site visits with Classical architects." }, "ARCH4117": { "subject": "ARCH", "number": "4117", "name": "Arts and Crafts Arch ", - "description": "Investigations in the theory, design, and building methods of English and American architects associated with the Arts and Crafts Movement. Full Description " + "description": "Investigations in the theory, design, and building methods of English and American architects associated with the Arts and Crafts Movement." }, "ARCH4118": { "subject": "ARCH", "number": "4118", "name": "American Academic Arch ", - "description": "Investigations of the history and theory of late nineteenth- and twentieth-century classicism in America. Full Description " + "description": "Investigations of the history and theory of late nineteenth- and twentieth-century classicism in America." }, "ARCH4119": { "subject": "ARCH", "number": "4119", "name": "Arch-Frank Lloyd Wright ", - "description": "Investigations on the life and work of Frank Lloyd Wright. Full Description " + "description": "Investigations on the life and work of Frank Lloyd Wright." }, "ARCH4120": { "subject": "ARCH", "number": "4120", "name": "Atlanta Architecture ", - "description": "Investigations through lectures, reading, and research of the history of Atlanta architecture and significant architectural firms from the city's founding to the present. Full Description " + "description": "Investigations through lectures, reading, and research of the history of Atlanta architecture and significant architectural firms from the city's founding to the present." }, "ARCH4123": { "subject": "ARCH", "number": "4123", "name": "European Modernism ", - "description": "Survey of European architecture from Art Nouveau to LeCorbusier. Full Description " + "description": "Survey of European architecture from Art Nouveau to LeCorbusier." }, "ARCH4124": { "subject": "ARCH", "number": "4124", "name": "Hist of Arch in the U.S. ", - "description": "History investigations of architecture within the continental United States from the colonial period to the present. Full Description " + "description": "History investigations of architecture within the continental United States from the colonial period to the present." }, "ARCH4125": { "subject": "ARCH", "number": "4125", "name": "French Arch ", - "description": "History of French architecture from Ledoux to LeCorbusier with special emphasis on Paris. Full Description " + "description": "History of French architecture from Ledoux to LeCorbusier with special emphasis on Paris." }, "ARCH4126": { "subject": "ARCH", "number": "4126", "name": "Paris Urban History ", - "description": "The social, cultural, urban, and architectural history of the city of Paris, from its founding until the present. Course offered in Paris only. Full Description " + "description": "The social, cultural, urban, and architectural history of the city of Paris, from its founding until the present. Course offered in Paris only." }, "ARCH4127": { "subject": "ARCH", "number": "4127", "name": "Intro to Art & Arch in Italy ", - "description": "Required preparation for the COA Summer Program in Italy. The course includes the fundamentals of art and architecture, basic Italian language skills, and library research for required summer program projects. Full Description " + "description": "Required preparation for the COA Summer Program in Italy. The course includes the fundamentals of art and architecture, basic Italian language skills, and library research for required summer program projects." }, "ARCH4128": { "subject": "ARCH", "number": "4128", "name": "Barcelona Architecture ", - "description": "Architectural history of the city of Barcelona and its public spaces, with a focus on the major urban and architectural projects since 1850. Offered through the Studies Abroad Program. Full Description " + "description": "Architectural history of the city of Barcelona and its public spaces, with a focus on the major urban and architectural projects since 1850. Offered through the Studies Abroad Program." }, "ARCH4129": { "subject": "ARCH", "number": "4129", "name": "Form and Narrative ", - "description": "This theory course will involve an extended comparison between architecture and related art forms, especially painting, film, and writing. Full Description " + "description": "This theory course will involve an extended comparison between architecture and related art forms, especially painting, film, and writing." }, "ARCH4133": { "subject": "ARCH", "number": "4133", "name": "Arch& Discourse Everyday ", - "description": "Application of the concept of the everyday to architectural practice from perspectives of European social theory, American cultural landscape studies, and contemporary architectural theory. Full Description " + "description": "Application of the concept of the everyday to architectural practice from perspectives of European social theory, American cultural landscape studies, and contemporary architectural theory." }, "ARCH4137": { "subject": "ARCH", "number": "4137", "name": "Postwar Arch & Urbanism ", - "description": "Introduction to the economic, social, political, cultural, and technological forces that shape architecture and cities in the United States after World War II. Full Description " + "description": "Introduction to the economic, social, political, cultural, and technological forces that shape architecture and cities in the United States after World War II." }, "ARCH4140": { "subject": "ARCH", "number": "4140", "name": "Modern Arch Theory ", - "description": "Introduction to modern and contemporary architectural theory and criticism, including writings and manifestoes, analyses, projects and buildings. Full Description " + "description": "Introduction to modern and contemporary architectural theory and criticism, including writings and manifestoes, analyses, projects and buildings." }, "ARCH4142": { "subject": "ARCH", "number": "4142", "name": "Dwelling Env Behav Des ", - "description": "Explores scholarship and case studies from multiple disciplines relating to issues of place, community identity and memory, culturally constructed meaning, and appropriate use of resources. Full Description " + "description": "Explores scholarship and case studies from multiple disciplines relating to issues of place, community identity and memory, culturally constructed meaning, and appropriate use of resources." }, "ARCH4143": { "subject": "ARCH", "number": "4143", "name": "Museums Hist Theo Des ", - "description": "Investigates museums as manifestations of the construction and content of knowledge, the public mission of cultural and scientific institutions and the framing of visitors experience. Full Description " + "description": "Investigates museums as manifestations of the construction and content of knowledge, the public mission of cultural and scientific institutions and the framing of visitors experience." }, "ARCH4151": { "subject": "ARCH", "number": "4151", "name": "History of Urban Form ", - "description": "History of the city as a collective work of architecture with an emphasis on the city's physical form and space. Credit not allowed for both ARCH 4151 and COA 6151. Full Description " + "description": "History of the city as a collective work of architecture with an emphasis on the city's physical form and space. Credit not allowed for both ARCH 4151 and COA 6151." }, "ARCH4220": { "subject": "ARCH", "number": "4220", "name": "Construction Tech II ", - "description": "Integration, representation, and constructability of building assemblies and structural systems. Grading, drainage, foundations, structure, and enclosure in relation to building codes and principles of sustainability. Full Description " + "description": "Integration, representation, and constructability of building assemblies and structural systems. Grading, drainage, foundations, structure, and enclosure in relation to building codes and principles of sustainability." }, "ARCH4225": { "subject": "ARCH", "number": "4225", "name": "Reinvestigating Details ", - "description": "Explores the role of the detail in contemporary architectural practice. Full Description " + "description": "Explores the role of the detail in contemporary architectural practice." }, "ARCH4227": { "subject": "ARCH", "number": "4227", "name": "Architecture & Ecology ", - "description": "Introduction to ecological design theory, research, and practice in architecture, including writings, criticism, and analyses of buildings and projects. Full Description " + "description": "Introduction to ecological design theory, research, and practice in architecture, including writings, criticism, and analyses of buildings and projects." }, "ARCH4231": { "subject": "ARCH", "number": "4231", "name": "Environmental Systems II ", - "description": "Active building systems design: artificial lighting, mechanical, electrical, communication, transportation systems. Case studies of integrated and sustainable building assemblies. Full Description " + "description": "Active building systems design: artificial lighting, mechanical, electrical, communication, transportation systems. Case studies of integrated and sustainable building assemblies." }, "ARCH4251": { "subject": "ARCH", "number": "4251", "name": "Structures I ", - "description": "Gravity loads on building structures. Introduction to structural planning. Design of wood and steel structures. Properties of wood and architectural metals. Computer-based analysis of structures. Full Description " + "description": "Gravity loads on building structures. Introduction to structural planning. Design of wood and steel structures. Properties of wood and architectural metals. Computer-based analysis of structures." }, "ARCH4252": { "subject": "ARCH", "number": "4252", "name": "Structures II ", - "description": "Lateral loads and lateral load resisting systems for building structures. Design and application of Portland cement concrete mixtures. Design of reinforced concrete structures. Building foundations. Full Description " + "description": "Lateral loads and lateral load resisting systems for building structures. Design and application of Portland cement concrete mixtures. Design of reinforced concrete structures. Building foundations." }, "ARCH4253": { "subject": "ARCH", "number": "4253", "name": "Adv Structures Seminar ", - "description": "Fundamentals of steel and concrete design and the computerized design of steel and concrete structural systems for multi-story buildings. Full Description " + "description": "Fundamentals of steel and concrete design and the computerized design of steel and concrete structural systems for multi-story buildings." }, "ARCH4303": { "subject": "ARCH", "number": "4303", "name": "Programming & Bldg Eval ", - "description": "Building programming and evaluation of building performance with respect to the aims of organizational users, policy development, and the process of planning and design decisions. Full Description " + "description": "Building programming and evaluation of building performance with respect to the aims of organizational users, policy development, and the process of planning and design decisions." }, "ARCH4305": { "subject": "ARCH", "number": "4305", "name": "Cross-Cultural Practice ", - "description": "This course will address the material culture of globalization and cultural diffusion, emphasizing the multicultural registers of work produced between and across geographical, cultural, and disciplinary boundaries. Full Description " + "description": "This course will address the material culture of globalization and cultural diffusion, emphasizing the multicultural registers of work produced between and across geographical, cultural, and disciplinary boundaries." }, "ARCH4315": { "subject": "ARCH", "number": "4315", "name": "Professional Practice ", - "description": "Principles and framework of professional practice including ethics, legal climate, business practices and contracts, project process and management, office organization, and methods of building production. Full Description " + "description": "Principles and framework of professional practice including ethics, legal climate, business practices and contracts, project process and management, office organization, and methods of building production." }, "ARCH4316": { "subject": "ARCH", "number": "4316", "name": "Traditions of Practice ", - "description": "Critical examination of architectural practice. Cultural derivation and technological transformation of various conventions of representation, construction, and design; speculation about future paradigms of architectural practice. Full Description " + "description": "Critical examination of architectural practice. Cultural derivation and technological transformation of various conventions of representation, construction, and design; speculation about future paradigms of architectural practice." }, "ARCH4330": { "subject": "ARCH", "number": "4330", "name": "Clients and Users ", - "description": "Theories and methods of architectural programming and evaluation. Full Description " + "description": "Theories and methods of architectural programming and evaluation." }, "ARCH4334": { "subject": "ARCH", "number": "4334", "name": "Housing and Culture ", - "description": "Examination of social, cultural, and behavioral issues as they influence the form of houses and housing. Full Description " + "description": "Examination of social, cultural, and behavioral issues as they influence the form of houses and housing." }, "ARCH4335": { "subject": "ARCH", "number": "4335", "name": "Social Practice of Arch ", - "description": "Introduction to theories and findings about human use and experience of architecture. Full Description " + "description": "Introduction to theories and findings about human use and experience of architecture." }, "ARCH4411": { "subject": "ARCH", "number": "4411", "name": "Intro to Visual Arts ", - "description": "Orientation to issues of visual perception and representation of form and space through freehand drawing, composition, color, texture, mixed-media, and journal making. Full Description " + "description": "Orientation to issues of visual perception and representation of form and space through freehand drawing, composition, color, texture, mixed-media, and journal making." }, "ARCH4412": { "subject": "ARCH", "number": "4412", "name": "Life Drawing ", - "description": "Studio instruction in figure drawing from the live model with emphasis on the structure and dynamics of the human figure. Full Description " + "description": "Studio instruction in figure drawing from the live model with emphasis on the structure and dynamics of the human figure." }, "ARCH4413": { "subject": "ARCH", "number": "4413", "name": "Collage Making ", - "description": "Concepts of collage within art, architecture, and culture; manual and electronic approaches to two and three-dimensional collage making. Full Description " + "description": "Concepts of collage within art, architecture, and culture; manual and electronic approaches to two and three-dimensional collage making." }, "ARCH4414": { "subject": "ARCH", "number": "4414", "name": "Represent in Watercolor ", - "description": "Introductory course in the use of transparent watercolor for field painting and architectural representation. Theory of pigment characteristics in applied painting. Full Description " + "description": "Introductory course in the use of transparent watercolor for field painting and architectural representation. Theory of pigment characteristics in applied painting." }, "ARCH4415": { "subject": "ARCH", "number": "4415", "name": "Photography I ", - "description": "Introduction to studio, darkroom, and field photography with emphasis on composition, processing, and printing. Full Description " + "description": "Introduction to studio, darkroom, and field photography with emphasis on composition, processing, and printing." }, "ARCH4416": { "subject": "ARCH", "number": "4416", "name": "Photography II ", - "description": "Advanced techniques in photography. Use of color, filters, four-by- five format cameras with emphasis on architectural photography. Full Description " + "description": "Advanced techniques in photography. Use of color, filters, four-by- five format cameras with emphasis on architectural photography." }, "ARCH4417": { "subject": "ARCH", "number": "4417", "name": "Furnishing Buildings ", - "description": "A course that focuses on schematic design development of furniture. The emphasis of this course is on conceptual development and material and structural clarity. Full Description " + "description": "A course that focuses on schematic design development of furniture. The emphasis of this course is on conceptual development and material and structural clarity." }, "ARCH4698": { "subject": "ARCH", "number": "4698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "ARCH4699": { "subject": "ARCH", "number": "4699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "ARCH4770": { "subject": "ARCH", "number": "4770", "name": "Environmental Design ", - "description": "Introduction to psychological concepts relevant to environmental design. Survey of selected methods for assessing human-made environments. Crosslisted with PSYC 4770. Full Description " + "description": "Introduction to psychological concepts relevant to environmental design. Survey of selected methods for assessing human-made environments. Crosslisted with PSYC 4770." }, "ARCH4801": { "subject": "ARCH", "number": "4801", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ARCH4802": { "subject": "ARCH", "number": "4802", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ARCH4803": { "subject": "ARCH", "number": "4803", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ARCH4804": { "subject": "ARCH", "number": "4804", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ARCH4805": { "subject": "ARCH", "number": "4805", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ARCH4811": { "subject": "ARCH", "number": "4811", "name": "Spec Topic-Arch Design ", - "description": " Full Description " + "description": "" }, "ARCH4812": { "subject": "ARCH", "number": "4812", "name": "Spec Topic-Arch Design ", - "description": " Full Description " + "description": "" }, "ARCH4813": { "subject": "ARCH", "number": "4813", "name": "Spec Topic-Arch Design ", - "description": " Full Description " + "description": "" }, "ARCH4814": { "subject": "ARCH", "number": "4814", "name": "Spec Topic-Arch Design ", - "description": " Full Description " + "description": "" }, "ARCH4815": { "subject": "ARCH", "number": "4815", "name": "Spec Topic-Arch Design ", - "description": " Full Description " + "description": "" }, "ARCH4821": { "subject": "ARCH", "number": "4821", "name": "Spec Top-Hist,Theor&Crit ", - "description": " Full Description " + "description": "" }, "ARCH4822": { "subject": "ARCH", "number": "4822", "name": "Spec Top-Hist,Theor&Crit ", - "description": " Full Description " + "description": "" }, "ARCH4823": { "subject": "ARCH", "number": "4823", "name": "Spec Top-Hist,Theor,Crit ", - "description": " Full Description " + "description": "" }, "ARCH4831": { "subject": "ARCH", "number": "4831", "name": "Special Topics-Arch Tech ", - "description": " Full Description " + "description": "" }, "ARCH4832": { "subject": "ARCH", "number": "4832", "name": "Special Topics-Arch Tech ", - "description": " Full Description " + "description": "" }, "ARCH4833": { "subject": "ARCH", "number": "4833", "name": "Special Topics-Arch Tech ", - "description": " Full Description " + "description": "" }, "ARCH4841": { "subject": "ARCH", "number": "4841", "name": "Spec Topic: Practice ", - "description": " Full Description " + "description": "" }, "ARCH4842": { "subject": "ARCH", "number": "4842", "name": "Spec Topic: Practice ", - "description": " Full Description " + "description": "" }, "ARCH4843": { "subject": "ARCH", "number": "4843", "name": "Spec Topic: Practice ", - "description": " Full Description " + "description": "" }, "ARCH4851": { "subject": "ARCH", "number": "4851", "name": "Spec Top-Vis Arts&Comput ", - "description": " Full Description " + "description": "" }, "ARCH4852": { "subject": "ARCH", "number": "4852", "name": "Spec Top-Vis Arts&Comput ", - "description": " Full Description " + "description": "" }, "ARCH4853": { "subject": "ARCH", "number": "4853", "name": "Spec Top-Vis Arts&Comput ", - "description": " Full Description " + "description": "" }, "ARCH4863": { "subject": "ARCH", "number": "4863", "name": "Special Topics ", - "description": "Topics of current interest in architecture. Full Description " + "description": "Topics of current interest in architecture." }, "ARCH4901": { "subject": "ARCH", "number": "4901", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "ARCH4902": { "subject": "ARCH", "number": "4902", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "ARCH4903": { "subject": "ARCH", "number": "4903", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "ARCH4904": { "subject": "ARCH", "number": "4904", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "ARCH4905": { "subject": "ARCH", "number": "4905", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "ARCH4911": { "subject": "ARCH", "number": "4911", "name": "Spec Prob: Arch Design ", - "description": " Full Description " + "description": "" }, "ARCH4912": { "subject": "ARCH", "number": "4912", "name": "Spec Prob: Arch Design ", - "description": " Full Description " + "description": "" }, "ARCH4913": { "subject": "ARCH", "number": "4913", "name": "Spec Prob: Arch Design ", - "description": " Full Description " + "description": "" }, "ARCH4914": { "subject": "ARCH", "number": "4914", "name": "Spec Prob: Arch Design ", - "description": " Full Description " + "description": "" }, "ARCH4915": { "subject": "ARCH", "number": "4915", "name": "Spec Prob: Arch Design ", - "description": " Full Description " + "description": "" }, "ARCH4921": { "subject": "ARCH", "number": "4921", "name": "Spec Prob:Hist,Theo,Crit ", - "description": " Full Description " + "description": "" }, "ARCH4922": { "subject": "ARCH", "number": "4922", "name": "Spec Prob:Hist,Theo,Crit ", - "description": " Full Description " + "description": "" }, "ARCH4923": { "subject": "ARCH", "number": "4923", "name": "Spec Prob:Hist,Theo,Crit ", - "description": " Full Description " + "description": "" }, "ARCH4931": { "subject": "ARCH", "number": "4931", "name": "Spec Prob; Arch Tech ", - "description": " Full Description " + "description": "" }, "ARCH4932": { "subject": "ARCH", "number": "4932", "name": "Spec Prob: Arch Tech ", - "description": " Full Description " + "description": "" }, "ARCH4933": { "subject": "ARCH", "number": "4933", "name": "Spec Prob: Arch Tech ", - "description": " Full Description " + "description": "" }, "ARCH4941": { "subject": "ARCH", "number": "4941", "name": "Special Prob: Practice ", - "description": " Full Description " + "description": "" }, "ARCH4942": { "subject": "ARCH", "number": "4942", "name": "Special Prob: Practice ", - "description": " Full Description " + "description": "" }, "ARCH4943": { "subject": "ARCH", "number": "4943", "name": "Special Prob: Practice ", - "description": " Full Description " + "description": "" }, "ARCH4951": { "subject": "ARCH", "number": "4951", "name": "Spec Prob:Vis Art&Comput ", - "description": " Full Description " + "description": "" }, "ARCH4952": { "subject": "ARCH", "number": "4952", "name": "Spec Prob:Vis Art&Comput ", - "description": " Full Description " + "description": "" }, "ARCH4953": { "subject": "ARCH", "number": "4953", "name": "Spec Prob:Vis Art&Comput ", - "description": " Full Description " + "description": "" }, "ARCH4XXX": { "subject": "ARCH", "number": "4XXX", "name": "Architecture Elective ", - "description": " Full Description " + "description": "" }, "ARCH6024": { "subject": "ARCH", "number": "6024", "name": "Arch Core I Studio ", - "description": "Foundation studies in architectural design emphasizing enalytical and analogical generative strategies applied to studio problems that engage architectural representation, composition, and fabrication. Credit not allowed for both ARCH 6024 and ARCH 4021. Full Description " + "description": "Foundation studies in architectural design emphasizing enalytical and analogical generative strategies applied to studio problems that engage architectural representation, composition, and fabrication. Credit not allowed for both ARCH 6024 and ARCH 4021." }, "ARCH6026": { "subject": "ARCH", "number": "6026", "name": "Arch Core II Studio ", - "description": "Intermediate studies in architectural design emphasizing integrative design strategies that engage the programmatic, contextual, and constructed dimentions of architecure and its representations. Credit not allowed for both ARCH 6026 and ARCH 4022. Full Description " + "description": "Intermediate studies in architectural design emphasizing integrative design strategies that engage the programmatic, contextual, and constructed dimentions of architecure and its representations. Credit not allowed for both ARCH 6026 and ARCH 4022." }, "ARCH6027": { "subject": "ARCH", "number": "6027", "name": "Arch Core III Studio ", - "description": "Intermediate studies in architectural design emphasizing integrative design strategies that engage the programmatic, contextual, and constructed dimensions of architecture and its representations. Credit not allowed for both ARCH 6027 and ARCH 4023. Full Description " + "description": "Intermediate studies in architectural design emphasizing integrative design strategies that engage the programmatic, contextual, and constructed dimensions of architecture and its representations. Credit not allowed for both ARCH 6027 and ARCH 4023." }, "ARCH6051": { "subject": "ARCH", "number": "6051", "name": "Arch Options Studio I ", - "description": "Advance studion problems in Architecture emphasizing research and application in the areas of history and theory, urban and environmental design, culture and practice, electronic media, and construction technology. Full Description " + "description": "Advance studion problems in Architecture emphasizing research and application in the areas of history and theory, urban and environmental design, culture and practice, electronic media, and construction technology." }, "ARCH6052": { "subject": "ARCH", "number": "6052", "name": "Arch Options Studio II ", - "description": "Advanced studio problems in architecure emphasizing research and application in the areas of history and theory, urban and environmental design, culture and practice, electronic media, and construction technology. Full Description " + "description": "Advanced studio problems in architecure emphasizing research and application in the areas of history and theory, urban and environmental design, culture and practice, electronic media, and construction technology." }, "ARCH6069": { "subject": "ARCH", "number": "6069", "name": "Advanced Arch Design I ", - "description": "Architectural design studio exploring advanced issues in architecture from the perspectives of professional practice, sustainability, technology and urban design. Full Description " + "description": "Architectural design studio exploring advanced issues in architecture from the perspectives of professional practice, sustainability, technology and urban design." }, "ARCH6070": { "subject": "ARCH", "number": "6070", "name": "Advanced Arch Design II ", - "description": "Architectural design studio exploring advanced issues in architecture from the perspectives of professional practice, sustainability, technology and urban design. Full Description " + "description": "Architectural design studio exploring advanced issues in architecture from the perspectives of professional practice, sustainability, technology and urban design." }, "ARCH6071": { "subject": "ARCH", "number": "6071", "name": "Arch Des & Res Studio I ", - "description": "Advanced architectural design emphasizing innovation through applied research. Emerging methods of design generation/evaluation. Changing topics: healthcare, fabrication, urbanism, ecology, building performance, cultural institutions. Full Description " + "description": "Advanced architectural design emphasizing innovation through applied research. Emerging methods of design generation/evaluation. Changing topics: healthcare, fabrication, urbanism, ecology, building performance, cultural institutions." }, "ARCH6072": { "subject": "ARCH", "number": "6072", "name": "Arch Des & Res Studio 2 ", - "description": "Advanced architectural design emphasizing innovation through applied research. Emerging methods of design generation/evaluation. Changing topics: healthcare, fabrication, urbanism, ecology, building performance, cultural institutions. Full Description " + "description": "Advanced architectural design emphasizing innovation through applied research. Emerging methods of design generation/evaluation. Changing topics: healthcare, fabrication, urbanism, ecology, building performance, cultural institutions." }, "ARCH6105": { "subject": "ARCH", "number": "6105", "name": "Arch History I ", - "description": "Architectural history from aniquity through the 18th century emphasizing buildings in their cultural context as informed by social, technological, and constructive factors and theoretical positions. Credit not allowed for both ARCH 6105 and ARCH 4105 or ARCH 2111. Full Description " + "description": "Architectural history from aniquity through the 18th century emphasizing buildings in their cultural context as informed by social, technological, and constructive factors and theoretical positions. Credit not allowed for both ARCH 6105 and ARCH 4105 or ARCH 2111." }, "ARCH6106": { "subject": "ARCH", "number": "6106", "name": "Arch History II ", - "description": "Architectural history during the 19th and 20th centuries emphasizing buildings in their cultural context as informed by social, technological, and constructive factors and theoretical positions. Credit not allowed for both ARCH 6106 and ARCH 4106 or ARCH 2112. Full Description " + "description": "Architectural history during the 19th and 20th centuries emphasizing buildings in their cultural context as informed by social, technological, and constructive factors and theoretical positions. Credit not allowed for both ARCH 6106 and ARCH 4106 or ARCH 2112." }, "ARCH6107": { "subject": "ARCH", "number": "6107", "name": "Intro to Historic Preser ", - "description": "This course provides an overview of the history, philosophy, organization, current legislation, policies, and practice of historic preservation. Full Description " + "description": "This course provides an overview of the history, philosophy, organization, current legislation, policies, and practice of historic preservation." }, "ARCH6109": { "subject": "ARCH", "number": "6109", "name": "Arch and Minimalism ", - "description": "This course examines the influence of \"minimalism,\" the 1960s art phenomenon, upon architecture culture and production from 1968-present. Full Description " + "description": "This course examines the influence of \"minimalism,\" the 1960s art phenomenon, upon architecture culture and production from 1968-present." }, "ARCH6110": { "subject": "ARCH", "number": "6110", "name": "Public Space ", - "description": "This course addresses questions concerning present-day configurations of public spaces as a platform for analysis of the contemporary city. Full Description " + "description": "This course addresses questions concerning present-day configurations of public spaces as a platform for analysis of the contemporary city." }, "ARCH6112": { "subject": "ARCH", "number": "6112", "name": "Islamic Arch & Urbanism ", - "description": "Two-part survey of Asian architecture and urbanism (excluding East Asia). The Islamic world up to the 18th century: the Mughal, Raj, and post-independence periods in Indian subcontinent. Full Description " + "description": "Two-part survey of Asian architecture and urbanism (excluding East Asia). The Islamic world up to the 18th century: the Mughal, Raj, and post-independence periods in Indian subcontinent." }, "ARCH6113": { "subject": "ARCH", "number": "6113", "name": "Hist Renaiss&Manner Arch ", - "description": "Investigation of the history and theory of Renaissance and Mannerist architecture with a primary emphasis on Italy. Full Description " + "description": "Investigation of the history and theory of Renaissance and Mannerist architecture with a primary emphasis on Italy." }, "ARCH6114": { "subject": "ARCH", "number": "6114", "name": "Arch&Discourse Everyday ", - "description": "Application of the concept of the everyday to architectural practice from perspectives of European social theory, American cultural landscape studies, and contemporary architectural theory. Full Description " + "description": "Application of the concept of the everyday to architectural practice from perspectives of European social theory, American cultural landscape studies, and contemporary architectural theory." }, "ARCH6115": { "subject": "ARCH", "number": "6115", "name": "Intro Classical Design ", - "description": "An introduction to the principles of Classical and traditional architectural design through readings, discussions, and site visits with Classical architects. Full Description " + "description": "An introduction to the principles of Classical and traditional architectural design through readings, discussions, and site visits with Classical architects." }, "ARCH6117": { "subject": "ARCH", "number": "6117", "name": "Arch-Arts&Crafts Movemnt ", - "description": "Study of the theory, design, and construction of the \"artistic\" house as embodied in the English and American Arts and Crafts Movement and in related developments elsewhere. Full Description " + "description": "Study of the theory, design, and construction of the \"artistic\" house as embodied in the English and American Arts and Crafts Movement and in related developments elsewhere." }, "ARCH6119": { "subject": "ARCH", "number": "6119", "name": "FL Wright& His Influence ", - "description": "Study of the life, work, and influence of Frank Lloyd Wright, including work of his apprentices and followers. Full Description " + "description": "Study of the life, work, and influence of Frank Lloyd Wright, including work of his apprentices and followers." }, "ARCH6120": { "subject": "ARCH", "number": "6120", "name": "History of Atlanta Arch ", - "description": "Study of the architecture of the Atlanta metro area. Full Description " + "description": "Study of the architecture of the Atlanta metro area." }, "ARCH6127": { "subject": "ARCH", "number": "6127", "name": "Intro-Art& Arch in Italy ", - "description": "Required preparation for the COA Summer Program in Italy. Includes the fundamentals of art and architecture; basic Italian language skills; library research for required summer program projects. Full Description " + "description": "Required preparation for the COA Summer Program in Italy. Includes the fundamentals of art and architecture; basic Italian language skills; library research for required summer program projects." }, "ARCH6129": { "subject": "ARCH", "number": "6129", "name": "Form and Narrative ", - "description": "This theory course will involve an extended comparison between architecture and related art forms, especially painting, film, and writing. Full Description " + "description": "This theory course will involve an extended comparison between architecture and related art forms, especially painting, film, and writing." }, "ARCH6135": { "subject": "ARCH", "number": "6135", "name": "Arch Representation ", - "description": "Systems of architectural representation and codes of thinking, drawing, and reading architecture. Full Description " + "description": "Systems of architectural representation and codes of thinking, drawing, and reading architecture." }, "ARCH6136": { "subject": "ARCH", "number": "6136", "name": "Arch and Ideology ", - "description": "Architecture and politics in Italy, Germany, and the Soviet Union between the wars. Full Description " + "description": "Architecture and politics in Italy, Germany, and the Soviet Union between the wars." }, "ARCH6137": { "subject": "ARCH", "number": "6137", "name": "Postwar Arch & Urbanism ", - "description": "Introduction to the economic, social, political, cultural, and technological forces that shape architecture and cities in the United States after World War II. Full Description " + "description": "Introduction to the economic, social, political, cultural, and technological forces that shape architecture and cities in the United States after World War II." }, "ARCH6142": { "subject": "ARCH", "number": "6142", "name": "Dwelling Env Behav Des ", - "description": "Explores scholarship and case studies from multiple disciplines relating to issues of place, community identity and memory, culturally contstructed meaning, and appropriate use of resources. Full Description " + "description": "Explores scholarship and case studies from multiple disciplines relating to issues of place, community identity and memory, culturally contstructed meaning, and appropriate use of resources." }, "ARCH6143": { "subject": "ARCH", "number": "6143", "name": "Museums Hist Thry Design ", - "description": "Investigates museums as manifestations of the construction and content of knowledge, the public mission of cultural and scientific institutions and the framing of visitors experience. Full Description " + "description": "Investigates museums as manifestations of the construction and content of knowledge, the public mission of cultural and scientific institutions and the framing of visitors experience." }, "ARCH6151": { "subject": "ARCH", "number": "6151", "name": "Theories of Urban Design ", - "description": "Contemporary theories of urban design and their relationship to the contemporary city examined through architects' writings, urban projects, and interdisciplinary criticism. Full Description " + "description": "Contemporary theories of urban design and their relationship to the contemporary city examined through architects' writings, urban projects, and interdisciplinary criticism." }, "ARCH6152": { "subject": "ARCH", "number": "6152", "name": "Landscape Architecture ", - "description": "History and theory of the designed landscape and garden from the ancient world to the present. Full Description " + "description": "History and theory of the designed landscape and garden from the ancient world to the present." }, "ARCH6153": { "subject": "ARCH", "number": "6153", "name": "Hist&Theory-Modern City ", - "description": "An examination of the evolution of the modern city in the nineteenth and twentieth centuries with particular reference to architectural, city planning, and urban design theories. Full Description " + "description": "An examination of the evolution of the modern city in the nineteenth and twentieth centuries with particular reference to architectural, city planning, and urban design theories." }, "ARCH6154": { "subject": "ARCH", "number": "6154", "name": "Intro to Urban Design ", - "description": "Introduction of urban design ideas, research, and practice, examining traditional qualities of the American city and their possible applications in the contemporary city. Full Description " + "description": "Introduction of urban design ideas, research, and practice, examining traditional qualities of the American city and their possible applications in the contemporary city." }, "ARCH6155": { "subject": "ARCH", "number": "6155", "name": "Contemp Arch in Europe ", - "description": "A course on contemporary architecture and urban projects in Europe, including the architect's writings, published criticism, and analyses of the buildings and projects. Full Description " + "description": "A course on contemporary architecture and urban projects in Europe, including the architect's writings, published criticism, and analyses of the buildings and projects." }, "ARCH6160": { "subject": "ARCH", "number": "6160", "name": "Race and Space ", - "description": "This course examines the relationship between architecture - as social practice and as a labor market - and race in the United States. Full Description " + "description": "This course examines the relationship between architecture - as social practice and as a labor market - and race in the United States." }, "ARCH6171": { "subject": "ARCH", "number": "6171", "name": "Design Intention in Arch ", - "description": "Reviews theories of interpretive criticism in architecture, and develops methodological approaches to interpreting criticizing, and formulating conceptual intent in architectural design. Full Description " + "description": "Reviews theories of interpretive criticism in architecture, and develops methodological approaches to interpreting criticizing, and formulating conceptual intent in architectural design." }, "ARCH6206": { "subject": "ARCH", "number": "6206", "name": "Building Assemblies ", - "description": "Structural and cladding systems integration, environmental control, and tectonic representation explored through historical and contemporary case studies and applied design solutions. Full Description " + "description": "Structural and cladding systems integration, environmental control, and tectonic representation explored through historical and contemporary case studies and applied design solutions." }, "ARCH6209": { "subject": "ARCH", "number": "6209", "name": "Building Enclosure ", - "description": "Investigations of enclosure design from three perspectives (technology, form, and culture), analyzing relationships of the four Semperian elements and Alberti's three parts of the enclosure. Full Description " + "description": "Investigations of enclosure design from three perspectives (technology, form, and culture), analyzing relationships of the four Semperian elements and Alberti's three parts of the enclosure." }, "ARCH6210": { "subject": "ARCH", "number": "6210", "name": "Architectonics ", - "description": "The study of architecture of form from both an historical and a mathematical perspective. The formal theory is applied mathematics, group theory, combinatroics, as well as recent studies in the history of mathematics. Full Description " + "description": "The study of architecture of form from both an historical and a mathematical perspective. The formal theory is applied mathematics, group theory, combinatroics, as well as recent studies in the history of mathematics." }, "ARCH6215": { "subject": "ARCH", "number": "6215", "name": "Contemp Arch&Constr Tech ", - "description": "General exposure to questions pertaining to the production of building systems and assemblies through a series of case study projects by contemporary practicing architects. Full Description " + "description": "General exposure to questions pertaining to the production of building systems and assemblies through a series of case study projects by contemporary practicing architects." }, "ARCH6216": { "subject": "ARCH", "number": "6216", "name": "Eco-Tectonics ", - "description": "Strategies of ecologically sustainable design and construction and the role of the architect in the stewardship of the environment. Full Description " + "description": "Strategies of ecologically sustainable design and construction and the role of the architect in the stewardship of the environment." }, "ARCH6218": { "subject": "ARCH", "number": "6218", "name": "Material Logic of Arch ", - "description": "Introduction to scientific and practical nature of architectural materials: soils, cements, metals, plastics, and glazing materials. Laboratory includes fabrication of, and experiments on, architectural materials. Full Description " + "description": "Introduction to scientific and practical nature of architectural materials: soils, cements, metals, plastics, and glazing materials. Laboratory includes fabrication of, and experiments on, architectural materials." }, "ARCH6225": { "subject": "ARCH", "number": "6225", "name": "Reinvestigating Details ", - "description": "Explores the role of the detail in contemporary architectural practice. Full Description " + "description": "Explores the role of the detail in contemporary architectural practice." }, "ARCH6226": { "subject": "ARCH", "number": "6226", "name": "Green Construction ", - "description": "This course focuses on the means, methods, strategies, and technologies to improve the energy efficiency and performance of buildings, and to reduce the environmental impact of buildings. Full Description " + "description": "This course focuses on the means, methods, strategies, and technologies to improve the energy efficiency and performance of buildings, and to reduce the environmental impact of buildings." }, "ARCH6227": { "subject": "ARCH", "number": "6227", "name": "Architecture + Ecology ", - "description": "Introduction to ecological design theory, research, and practice in architecture, including writings, criticism, and analyses of buildings and projects. Full Description " + "description": "Introduction to ecological design theory, research, and practice in architecture, including writings, criticism, and analyses of buildings and projects." }, "ARCH6228": { "subject": "ARCH", "number": "6228", "name": "Analyt Invest Urb Design ", - "description": "Measures of urban and spatial form. Analysis of street connectivity. Models of space use and spatial congnition. Comparison and evaluation of design alternatives. Full Description " + "description": "Measures of urban and spatial form. Analysis of street connectivity. Models of space use and spatial congnition. Comparison and evaluation of design alternatives." }, "ARCH6229": { "subject": "ARCH", "number": "6229", "name": "Construction Tech I ", - "description": "Introduction to building anatomy, technical and expressive characteristics of materials and their organizational assembly. Credit not allowed for both ARCH 6229 and ARCH 4219. Full Description " + "description": "Introduction to building anatomy, technical and expressive characteristics of materials and their organizational assembly. Credit not allowed for both ARCH 6229 and ARCH 4219." }, "ARCH6230": { "subject": "ARCH", "number": "6230", "name": "Construction Tech 2 ", - "description": "Integration, representation, and constructability of building assemblies and structural systems. Grading, drainage, foundations, structure, and enclosure in relation to building codes and principles of sustainability. Full Description " + "description": "Integration, representation, and constructability of building assemblies and structural systems. Grading, drainage, foundations, structure, and enclosure in relation to building codes and principles of sustainability." }, "ARCH6241": { "subject": "ARCH", "number": "6241", "name": "Bldg Simula Design Pract ", - "description": "Learn to use mainstream simulation packages to support building design in domains of Energy, CFD, Lighting, Ventilation Full Description " + "description": "Learn to use mainstream simulation packages to support building design in domains of Energy, CFD, Lighting, Ventilation" }, "ARCH6242": { "subject": "ARCH", "number": "6242", "name": "Bldg Physics Modeling ", - "description": "Survey of basic thermo-fluid energy and mass flows in buildings, the interrelations between these flows, physical system modeling, and implications for building performance goals. Full Description " + "description": "Survey of basic thermo-fluid energy and mass flows in buildings, the interrelations between these flows, physical system modeling, and implications for building performance goals." }, "ARCH6243": { "subject": "ARCH", "number": "6243", "name": "Evidence-Based Design ", - "description": " Full Description " + "description": "" }, "ARCH6251": { "subject": "ARCH", "number": "6251", "name": "Building Structures I ", - "description": "Introduction to design and analysis of building structures and ordering of structural systems to resist gravity and lateral loads. Emphasis on wood structures. Full Description " + "description": "Introduction to design and analysis of building structures and ordering of structural systems to resist gravity and lateral loads. Emphasis on wood structures." }, "ARCH6252": { "subject": "ARCH", "number": "6252", "name": "Building Structures II ", - "description": "Introduction to structural design and framing systems for steel and concrete with consideration of lateral loads and lateral load resisting systems. Full Description " + "description": "Introduction to structural design and framing systems for steel and concrete with consideration of lateral loads and lateral load resisting systems." }, "ARCH6268": { "subject": "ARCH", "number": "6268", "name": "Adv Arch, Cult & Behav ", - "description": "Theories, models, methods and case studies linking architectural design to culture and behavior. Full Description " + "description": "Theories, models, methods and case studies linking architectural design to culture and behavior." }, "ARCH6271": { "subject": "ARCH", "number": "6271", "name": "Healthcare Des Of Future ", - "description": "Introduction to research-based approaches to integrated healthcare design innovation. Full Description " + "description": "Introduction to research-based approaches to integrated healthcare design innovation." }, "ARCH6303": { "subject": "ARCH", "number": "6303", "name": "Urban Design Policy ", - "description": "Introduction to urban design policy and practice across a range of scales including planning, architecture, landscape architecture, civil engineering, public policy and administration. Credit not allowed for both ARCH 6303 and CP 6834. Full Description " + "description": "Introduction to urban design policy and practice across a range of scales including planning, architecture, landscape architecture, civil engineering, public policy and administration. Credit not allowed for both ARCH 6303 and CP 6834." }, "ARCH6305": { "subject": "ARCH", "number": "6305", "name": "Cross-Cultural Practice ", - "description": "This course will address the material culture of globalization and cultural diffusion, emphasizing the multicultural registers of work produced between and across geographical, cultural, and disciplinary boundaries. Full Description " + "description": "This course will address the material culture of globalization and cultural diffusion, emphasizing the multicultural registers of work produced between and across geographical, cultural, and disciplinary boundaries." }, "ARCH6312": { "subject": "ARCH", "number": "6312", "name": "Ecological Practice ", - "description": "An historically and culturally grounded examination of the ecological perspective. Critical and productive engagement with green guidelines, laws, products, design briefs, and procedures. Full Description " + "description": "An historically and culturally grounded examination of the ecological perspective. Critical and productive engagement with green guidelines, laws, products, design briefs, and procedures." }, "ARCH6313": { "subject": "ARCH", "number": "6313", "name": "Traditions Arch Practice ", - "description": "Critical examination of architectural practice. Cultural derivation and technological transformation of various conventions of representation, construction, and design; speculations about future paradigms of architectural practice. Full Description " + "description": "Critical examination of architectural practice. Cultural derivation and technological transformation of various conventions of representation, construction, and design; speculations about future paradigms of architectural practice." }, "ARCH6315": { "subject": "ARCH", "number": "6315", "name": "Practice of Arch I ", - "description": "Architectural practice from historical, sociological, and ethical perspectives with focus on professional leadership, practice management, and entrepreneurship. Full Description " + "description": "Architectural practice from historical, sociological, and ethical perspectives with focus on professional leadership, practice management, and entrepreneurship." }, "ARCH6316": { "subject": "ARCH", "number": "6316", "name": "Practice of Arch 2 ", - "description": "Methods of architectural project delivery and project management. Fundamentals of building economics. Emergent models of research-driven architectural practice. Full Description " + "description": "Methods of architectural project delivery and project management. Fundamentals of building economics. Emergent models of research-driven architectural practice." }, "ARCH6350": { "subject": "ARCH", "number": "6350", "name": "Theory of Architecture I ", - "description": "Architectural program. Building types from functional and morphological perspectives. Design responses to building programs in the context of culture and politics. Architectural responses to site. Full Description " + "description": "Architectural program. Building types from functional and morphological perspectives. Design responses to building programs in the context of culture and politics. Architectural responses to site." }, "ARCH6352": { "subject": "ARCH", "number": "6352", "name": "Theory of Architecture 2 ", - "description": "Approaches to architectural form, style, and tectonics from aesthetic, social, and technological perspectives. Instrumental and symbolic uses of architectural media in design and building production. Full Description " + "description": "Approaches to architectural form, style, and tectonics from aesthetic, social, and technological perspectives. Instrumental and symbolic uses of architectural media in design and building production." }, "ARCH6404": { "subject": "ARCH", "number": "6404", "name": "Electronic Media ", - "description": "The influence of electronic media upon representation and invention in architecture. Full Description " + "description": "The influence of electronic media upon representation and invention in architecture." }, "ARCH6412": { "subject": "ARCH", "number": "6412", "name": "Dwelling Env Behav Des ", - "description": "Explores scholarship and case studies from multiple disciplines relating to issues of place, community identity and memory, culturally constructed meaning, and appropriate use of resources. Full Description " + "description": "Explores scholarship and case studies from multiple disciplines relating to issues of place, community identity and memory, culturally constructed meaning, and appropriate use of resources." }, "ARCH6417": { "subject": "ARCH", "number": "6417", "name": "Furnishing Buildings ", - "description": "A course that focuses on schematic design and design development of furniture. The emphasis of this course is on conceptual and material/structural clarity. Full Description " + "description": "A course that focuses on schematic design and design development of furniture. The emphasis of this course is on conceptual and material/structural clarity." }, "ARCH6420": { "subject": "ARCH", "number": "6420", "name": "Design Computing ", - "description": "Survey of computer representations and modeling techniques, including pixel-based images, vector-based drawing systems, and surface and solid modeling; use of applications built upon these systems. Credit not allowed for both ARCH 6420 and ARCH 4420. Full Description " + "description": "Survey of computer representations and modeling techniques, including pixel-based images, vector-based drawing systems, and surface and solid modeling; use of applications built upon these systems. Credit not allowed for both ARCH 6420 and ARCH 4420." }, "ARCH6426": { "subject": "ARCH", "number": "6426", "name": "3D Modeling ", - "description": "Construction of 3D computer models of architectural structures. Topics include: geometry creation, light and materials property, rendering, data exchange, and basic animation. Full Description " + "description": "Construction of 3D computer models of architectural structures. Topics include: geometry creation, light and materials property, rendering, data exchange, and basic animation." }, "ARCH6427": { "subject": "ARCH", "number": "6427", "name": "Adv Modeling & Animation ", - "description": "Advanced computer modeling of architectural form. Topics include: parametric design, parametric materials, special effects, object libraries, animation, and video production. Full Description " + "description": "Advanced computer modeling of architectural form. Topics include: parametric design, parametric materials, special effects, object libraries, animation, and video production." }, "ARCH6428": { "subject": "ARCH", "number": "6428", "name": "Formal Sys-Dgn,Art&Arch ", - "description": "This course will examine generative descriptions of languages of design, art, and architecture and explore various computational approaches to design with a special emphasis on shape grammars. Full Description " + "description": "This course will examine generative descriptions of languages of design, art, and architecture and explore various computational approaches to design with a special emphasis on shape grammars." }, "ARCH6447": { "subject": "ARCH", "number": "6447", "name": "Urban Ecological Design ", - "description": "This course engages the contemporary issues of urban ecology and its articulation to design. It explores relationship between urban forms and flows of ecology, energy, material, water and information. Credit not allowed for both ARCH 6447 and CP 6836. Full Description " + "description": "This course engages the contemporary issues of urban ecology and its articulation to design. It explores relationship between urban forms and flows of ecology, energy, material, water and information. Credit not allowed for both ARCH 6447 and CP 6836." }, "ARCH6470": { "subject": "ARCH", "number": "6470", "name": "Arch Modeling & Media I ", - "description": "Introductory approaches to two and three dimensional modeling and representation in architecture using both manual and digital media and techniques. Full Description " + "description": "Introductory approaches to two and three dimensional modeling and representation in architecture using both manual and digital media and techniques." }, "ARCH6472": { "subject": "ARCH", "number": "6472", "name": "Arch Modeling & Media 2 ", - "description": "Intermediate approaches to two dimensional modeling and representation in architecture using both manual and digital media and techniques. Full Description " + "description": "Intermediate approaches to two dimensional modeling and representation in architecture using both manual and digital media and techniques." }, "ARCH6474": { "subject": "ARCH", "number": "6474", "name": "Arch Modeling & Media 3 ", - "description": "Advanced approaches to two and three dimensional modeling and representation in architecture using both manual and digital media and techniques. Full Description " + "description": "Advanced approaches to two and three dimensional modeling and representation in architecture using both manual and digital media and techniques." }, "ARCH6501": { "subject": "ARCH", "number": "6501", "name": "Analog-Digital Des Comp ", - "description": "Analog and digital approaches in design computation. Visual and symbolic representations. Algorithmic and computational tools. History and logic. Full Description " + "description": "Analog and digital approaches in design computation. Visual and symbolic representations. Algorithmic and computational tools. History and logic." }, "ARCH6502": { "subject": "ARCH", "number": "6502", "name": "Design Scripting ", - "description": "Learning the concepts and application of scripting languages in architecture and form generation. Full Description " + "description": "Learning the concepts and application of scripting languages in architecture and form generation." }, "ARCH6503": { "subject": "ARCH", "number": "6503", "name": "BIM Applications ", - "description": "Survey of Building Information Modeling - its technologies exploration of new technologies to be applied and new procedures of project execution. Full Description " + "description": "Survey of Building Information Modeling - its technologies exploration of new technologies to be applied and new procedures of project execution." }, "ARCH6504": { "subject": "ARCH", "number": "6504", "name": "Fabrication Workshop ", - "description": "Parametric design, planning and programming. Develop design for fabrication in specific materials including wood, plastic, metals, concrete, or composite. Full Description " + "description": "Parametric design, planning and programming. Develop design for fabrication in specific materials including wood, plastic, metals, concrete, or composite." }, "ARCH6505": { "subject": "ARCH", "number": "6505", "name": "Geometric Constructs ", - "description": "Geometric surface and solid construction fundamentals using parametric modeling tools; use of sketching workbenches. Full Description " + "description": "Geometric surface and solid construction fundamentals using parametric modeling tools; use of sketching workbenches." }, "ARCH6506": { "subject": "ARCH", "number": "6506", "name": "Materials/Fabrications ", - "description": "Physical and constructional properties of building materials. Fabrication techniques for building components. Digital representations of materials, components, and fabrication processes. Full Description " + "description": "Physical and constructional properties of building materials. Fabrication techniques for building components. Digital representations of materials, components, and fabrication processes." }, "ARCH6507": { "subject": "ARCH", "number": "6507", "name": "Parametric Design ", - "description": "Design using parametric modeling tools; use of sketching workbenches and development of custom parametric models. Full Description " + "description": "Design using parametric modeling tools; use of sketching workbenches and development of custom parametric models." }, "ARCH6508": { "subject": "ARCH", "number": "6508", "name": "Shape Grammars ", - "description": "Shape grammars are a powerful formal system for the generative description, interpretation and evaluation of designs. Full Description " + "description": "Shape grammars are a powerful formal system for the generative description, interpretation and evaluation of designs." }, "ARCH6509": { "subject": "ARCH", "number": "6509", "name": "Comp Creativity Des Cogn ", - "description": "This course investigates computational methods, models tools that support design creativity and cognition. Credit not allowed for both ARCH 6509 and ID 6509. Full Description " + "description": "This course investigates computational methods, models tools that support design creativity and cognition. Credit not allowed for both ARCH 6509 and ID 6509." }, "ARCH6531": { "subject": "ARCH", "number": "6531", "name": "Environmental Systems I ", - "description": "Basics of heat, light, and sound applied to buildings. Thermal loading, passive thermal control, thermal comfort, climate, passive solar strategies, light and daylighting, acoustics. Full Description " + "description": "Basics of heat, light, and sound applied to buildings. Thermal loading, passive thermal control, thermal comfort, climate, passive solar strategies, light and daylighting, acoustics." }, "ARCH6532": { "subject": "ARCH", "number": "6532", "name": "Environmental Systems II ", - "description": "Survey of active building systems: artificial lighting, mechanical (HVAC), electrical plumbing, transportation systems. Choice of active systems for sustainability, cost, etc. Full Description " + "description": "Survey of active building systems: artificial lighting, mechanical (HVAC), electrical plumbing, transportation systems. Choice of active systems for sustainability, cost, etc." }, "ARCH6731": { "subject": "ARCH", "number": "6731", "name": "Zero Energy House ", - "description": "Design, analysis, operation, construction, and cost feasibility of so-called \"zero energy\" houses. Credit not allowed for both ARCH 6731 and BC 6731. Full Description " + "description": "Design, analysis, operation, construction, and cost feasibility of so-called \"zero energy\" houses. Credit not allowed for both ARCH 6731 and BC 6731." }, "ARCH6XXX": { "subject": "ARCH", "number": "6XXX", "name": "Architecture Elective ", - "description": " Full Description " + "description": "" }, "ARCH7000": { "subject": "ARCH", "number": "7000", "name": "Master's Thesis ", - "description": " Full Description " + "description": "" }, "ARCH7042": { "subject": "ARCH", "number": "7042", "name": "Urban Design Workshop ", - "description": "Advanced problems in urban design and development focusing on the Atlanta region. Integration of urban design theory and methods, economic development, political registration, and communication. Full Description " + "description": "Advanced problems in urban design and development focusing on the Atlanta region. Integration of urban design theory and methods, economic development, political registration, and communication." }, "ARCH7043": { "subject": "ARCH", "number": "7043", "name": "Urban Design Workshop ", - "description": "Advanced problems in urban design and development focusing on the Atlanta region. Integration of urban design theory and methods, economic development, political registration, and communication. Full Description " + "description": "Advanced problems in urban design and development focusing on the Atlanta region. Integration of urban design theory and methods, economic development, political registration, and communication." }, "ARCH7044": { "subject": "ARCH", "number": "7044", "name": "Urban Design Workshop ", - "description": "Advanced problems in urban design and development focusing on the Atlanta region. Integration of urban design theory and methods, economic development, political registration, and communication. Full Description " + "description": "Advanced problems in urban design and development focusing on the Atlanta region. Integration of urban design theory and methods, economic development, political registration, and communication." }, "ARCH7045": { "subject": "ARCH", "number": "7045", "name": "Urban Design Workshop ", - "description": "Advanced problems in urban design and development focusing on the Atlanta region. Integration of urban design theory and methods, economic development, political registration, and communication. Full Description " + "description": "Advanced problems in urban design and development focusing on the Atlanta region. Integration of urban design theory and methods, economic development, political registration, and communication." }, "ARCH7060": { "subject": "ARCH", "number": "7060", "name": "Critical Positions ", - "description": "Advanced topics in the theory of architectural production focusing upon contemporary ethical dilemmas and the development of critical positions of design. Full Description " + "description": "Advanced topics in the theory of architectural production focusing upon contemporary ethical dilemmas and the development of critical positions of design." }, "ARCH7252": { "subject": "ARCH", "number": "7252", "name": "Computa Bldg Simulation ", - "description": "Students learn how to develop their own extensible Building Simulation software using Finite Element discretization in Matlab and apply it to research problem. Full Description " + "description": "Students learn how to develop their own extensible Building Simulation software using Finite Element discretization in Matlab and apply it to research problem." }, "ARCH7471": { "subject": "ARCH", "number": "7471", "name": "Cogn Funct Visual Design ", - "description": "Presents fundamentals of imaginative and cognitive functioning of visual design in buildings, and develops inter-disciplinary approaches to investigating visual form of buildings. Full Description " + "description": "Presents fundamentals of imaginative and cognitive functioning of visual design in buildings, and develops inter-disciplinary approaches to investigating visual form of buildings." }, "ARCH8100": { "subject": "ARCH", "number": "8100", "name": "Intro to Arch Research 1 ", - "description": "Fundamental issues and methods across specializations in architectural research modules on causation and simulation. Full Description " + "description": "Fundamental issues and methods across specializations in architectural research modules on causation and simulation." }, "ARCH8101": { "subject": "ARCH", "number": "8101", "name": "Intro to Arch Research 2 ", - "description": "Fundamental issues and methods across specializations in architectural research; modules on representation and interpretation. Full Description " + "description": "Fundamental issues and methods across specializations in architectural research; modules on representation and interpretation." }, "ARCH8102": { "subject": "ARCH", "number": "8102", "name": "Intro To Arch Research 3 ", - "description": "Fundamental issues and methods across specializations in architectural research; modules on historiography and epistemology and on theories of design. Full Description " + "description": "Fundamental issues and methods across specializations in architectural research; modules on historiography and epistemology and on theories of design." }, "ARCH8801": { "subject": "ARCH", "number": "8801", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ARCH8802": { "subject": "ARCH", "number": "8802", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ARCH8803": { "subject": "ARCH", "number": "8803", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ARCH8804": { "subject": "ARCH", "number": "8804", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ARCH8805": { "subject": "ARCH", "number": "8805", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ARCH8806": { "subject": "ARCH", "number": "8806", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ARCH8811": { "subject": "ARCH", "number": "8811", "name": "Spec Top-Arch Design ", - "description": " Full Description " + "description": "" }, "ARCH8812": { "subject": "ARCH", "number": "8812", "name": "Spec Top-Arch Design ", - "description": " Full Description " + "description": "" }, "ARCH8813": { "subject": "ARCH", "number": "8813", "name": "Spec Top-Arch Design ", - "description": " Full Description " + "description": "" }, "ARCH8814": { "subject": "ARCH", "number": "8814", "name": "Spec Top-Arch Design ", - "description": " Full Description " + "description": "" }, "ARCH8815": { "subject": "ARCH", "number": "8815", "name": "Spec Top-Arch Design ", - "description": " Full Description " + "description": "" }, "ARCH8821": { "subject": "ARCH", "number": "8821", "name": "Spec Top-Hist,Theor&Crit ", - "description": " Full Description " + "description": "" }, "ARCH8822": { "subject": "ARCH", "number": "8822", "name": "Spec Top-Hist,Theor&Crit ", - "description": " Full Description " + "description": "" }, "ARCH8823": { "subject": "ARCH", "number": "8823", "name": "Spec Top-Hist,Theor,Crit ", - "description": " Full Description " + "description": "" }, "ARCH8831": { "subject": "ARCH", "number": "8831", "name": "Spec Top-Arch Tech ", - "description": " Full Description " + "description": "" }, "ARCH8832": { "subject": "ARCH", "number": "8832", "name": "Spec Top-Arch Tech ", - "description": " Full Description " + "description": "" }, "ARCH8833": { "subject": "ARCH", "number": "8833", "name": "Spec Top-Arch Tech ", - "description": " Full Description " + "description": "" }, "ARCH8841": { "subject": "ARCH", "number": "8841", "name": "Spec Top-Practice ", - "description": " Full Description " + "description": "" }, "ARCH8842": { "subject": "ARCH", "number": "8842", "name": "Spec Top-Practice ", - "description": " Full Description " + "description": "" }, "ARCH8843": { "subject": "ARCH", "number": "8843", "name": "Spec Top-Practice ", - "description": " Full Description " + "description": "" }, "ARCH8851": { "subject": "ARCH", "number": "8851", "name": "Spec Top-Arts& Computing ", - "description": " Full Description " + "description": "" }, "ARCH8852": { "subject": "ARCH", "number": "8852", "name": "Spec Top-Arts& Computing ", - "description": " Full Description " + "description": "" }, "ARCH8853": { "subject": "ARCH", "number": "8853", "name": "Spec Top-Arts& Computing ", - "description": " Full Description " + "description": "" }, "ARCH8863": { "subject": "ARCH", "number": "8863", "name": "Special Topics ", - "description": "Topics of current interest in architecture. Full Description " + "description": "Topics of current interest in architecture." }, "ARCH8901": { "subject": "ARCH", "number": "8901", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "ARCH8902": { "subject": "ARCH", "number": "8902", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "ARCH8903": { "subject": "ARCH", "number": "8903", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "ARCH8911": { "subject": "ARCH", "number": "8911", "name": "Spec Prob-Arch Design ", - "description": " Full Description " + "description": "" }, "ARCH8912": { "subject": "ARCH", "number": "8912", "name": "Spec Prob-Arch Design ", - "description": " Full Description " + "description": "" }, "ARCH8913": { "subject": "ARCH", "number": "8913", "name": "Spec Prob-Arch Design ", - "description": " Full Description " + "description": "" }, "ARCH8914": { "subject": "ARCH", "number": "8914", "name": "Spec Prob-Arch Design ", - "description": " Full Description " + "description": "" }, "ARCH8915": { "subject": "ARCH", "number": "8915", "name": "Spec Prob-Arch Design ", - "description": " Full Description " + "description": "" }, "ARCH8921": { "subject": "ARCH", "number": "8921", "name": "Spec Prob-Hist,Theo&Crit ", - "description": " Full Description " + "description": "" }, "ARCH8922": { "subject": "ARCH", "number": "8922", "name": "Spec Prob-Hist,Theo&Crit ", - "description": " Full Description " + "description": "" }, "ARCH8923": { "subject": "ARCH", "number": "8923", "name": "Spec Prob-Hist,Theo,Crit ", - "description": " Full Description " + "description": "" }, "ARCH8924": { "subject": "ARCH", "number": "8924", "name": "Spec Prob:Hist,Theo&Crit ", - "description": " Full Description " + "description": "" }, "ARCH8925": { "subject": "ARCH", "number": "8925", "name": "Spec Prob:Hist,Theo&Crit ", - "description": " Full Description " + "description": "" }, "ARCH8931": { "subject": "ARCH", "number": "8931", "name": "Spec Prob-Arch Tech ", - "description": " Full Description " + "description": "" }, "ARCH8932": { "subject": "ARCH", "number": "8932", "name": "Spec Prob-Arch Tech ", - "description": " Full Description " + "description": "" }, "ARCH8933": { "subject": "ARCH", "number": "8933", "name": "Spec Prob-Arch Tech ", - "description": " Full Description " + "description": "" }, "ARCH8941": { "subject": "ARCH", "number": "8941", "name": "Spec Prob-Practice ", - "description": " Full Description " + "description": "" }, "ARCH8942": { "subject": "ARCH", "number": "8942", "name": "Spec Prob-Practice ", - "description": " Full Description " + "description": "" }, "ARCH8943": { "subject": "ARCH", "number": "8943", "name": "Spec Prob-Practice ", - "description": " Full Description " + "description": "" }, "ARCH8951": { "subject": "ARCH", "number": "8951", "name": "Spec Prob-Arts&Computing ", - "description": " Full Description " + "description": "" }, "ARCH8952": { "subject": "ARCH", "number": "8952", "name": "Spec Prob-Arts&Computing ", - "description": " Full Description " + "description": "" }, "ARCH8953": { "subject": "ARCH", "number": "8953", "name": "Spec Prob-Arts&Computing ", - "description": " Full Description " + "description": "" }, "ARCH8997": { "subject": "ARCH", "number": "8997", "name": "Teaching Assistantship ", - "description": "For graduate students holding graduate teaching assistantships. Full Description " + "description": "For graduate students holding graduate teaching assistantships." }, "ARCH8998": { "subject": "ARCH", "number": "8998", "name": "Research Assistantship ", - "description": "For gratuate students holding graduate research assistantships. Full Description " + "description": "For gratuate students holding graduate research assistantships." }, "AS1110": { "subject": "AS", "number": "1110", "name": "Foundations of the AF I ", - "description": "A survey course designed to introduce students to the United States Air Force and Air Force Reserve Officer Training Corps. Topics include: military customs and courtesies, Air Force officer opportunities, and an introduction to communication skills. Leadership Laboratory is mandatory for AFROTC cadets, and complements this course by providing cadets with followership experiences. Full Description " + "description": "A survey course designed to introduce students to the United States Air Force and Air Force Reserve Officer Training Corps. Topics include: military customs and courtesies, Air Force officer opportunities, and an introduction to communication skills. Leadership Laboratory is mandatory for AFROTC cadets, and complements this course by providing cadets with followership experiences." }, "AS1111": { "subject": "AS", "number": "1111", "name": "Leadership Laboratory ", - "description": "Introduction to the customs, traditions, and courtesies of the Air Force through drill and ceremonies, guest speakers, physical fitness activities, sports, and base visits. Full Description " + "description": "Introduction to the customs, traditions, and courtesies of the Air Force through drill and ceremonies, guest speakers, physical fitness activities, sports, and base visits." }, "AS1120": { "subject": "AS", "number": "1120", "name": "Foundations of the AF II ", - "description": "A survey course designed to introduce students to the United States Air Force and Air Force Reserve Officer Training Corps. Featured topics include: mission and organization of the Air Force, officership, and professionalism. Leadership Laboratory is mandatory for AFROTC cadets and complements this course. Full Description " + "description": "A survey course designed to introduce students to the United States Air Force and Air Force Reserve Officer Training Corps. Featured topics include: mission and organization of the Air Force, officership, and professionalism. Leadership Laboratory is mandatory for AFROTC cadets and complements this course." }, "AS1121": { "subject": "AS", "number": "1121", "name": "Leadership Laboratory ", - "description": "Continuation of AS 1111. Emphasis on role and responsibilities of an Air Force junior officer. Air Force customs and courtesies, drill and ceremonies, and introduction to the military environment. Full Description " + "description": "Continuation of AS 1111. Emphasis on role and responsibilities of an Air Force junior officer. Air Force customs and courtesies, drill and ceremonies, and introduction to the military environment." }, "AS2210": { "subject": "AS", "number": "2210", "name": "US Air & Space Power I ", - "description": "This course provides the students with a knowledge level of understanding for the general element and employment of air and space power, and is designed to examine general aspects of it through a historical perspective covering a time period from the first balloons and dirigibles to the beginning of the Vietnam War. Leadership Laboratory is mandatory for AFROTC cadets and complements this course by providing cadets with followership experiences. Full Description " + "description": "This course provides the students with a knowledge level of understanding for the general element and employment of air and space power, and is designed to examine general aspects of it through a historical perspective covering a time period from the first balloons and dirigibles to the beginning of the Vietnam War. Leadership Laboratory is mandatory for AFROTC cadets and complements this course by providing cadets with followership experiences." }, "AS2211": { "subject": "AS", "number": "2211", "name": "Leadership Laboratory ", - "description": "Emphasizes development of techniques used to direct and inform. Prepares students for field training. Full Description " + "description": "Emphasizes development of techniques used to direct and inform. Prepares students for field training." }, "AS2220": { "subject": "AS", "number": "2220", "name": "US Air & Space Power II ", - "description": "This course is a continuation of AS 2210 and examines the use of air and space power from Southeast Asia to the space age global positioning systems of the Persian Gulf War. In addition, the students will continue to discuss the importance of the Air Force Core Values with the use of operational examples and historical Air Force leaders, and will continue to develop their communication skills. Leadership Laboratory is mandatory for AFROTC cadets and complements this course. Full Description " + "description": "This course is a continuation of AS 2210 and examines the use of air and space power from Southeast Asia to the space age global positioning systems of the Persian Gulf War. In addition, the students will continue to discuss the importance of the Air Force Core Values with the use of operational examples and historical Air Force leaders, and will continue to develop their communication skills. Leadership Laboratory is mandatory for AFROTC cadets and complements this course." }, "AS2221": { "subject": "AS", "number": "2221", "name": "Leadership Laboratory ", - "description": "Continuation of AS 2211. Emphasis on preparation for field training. Full Description " + "description": "Continuation of AS 2211. Emphasis on preparation for field training." }, "AS3310": { "subject": "AS", "number": "3310", "name": "Leadership Studies I ", - "description": "A study of leadership, management fundamentals, professional knowledge, and communication skills required of an Air Force junior officer. Case studies are used to examine Air Force leadership and management situations as a means of demonstrating and exercising practical application of the concepts being studied. A mandatory Leadership Laboratory for AFROTC cadets complements this course. Full Description " + "description": "A study of leadership, management fundamentals, professional knowledge, and communication skills required of an Air Force junior officer. Case studies are used to examine Air Force leadership and management situations as a means of demonstrating and exercising practical application of the concepts being studied. A mandatory Leadership Laboratory for AFROTC cadets complements this course." }, "AS3311": { "subject": "AS", "number": "3311", "name": "Leadership Laboratory ", - "description": "Supervisory practice and exercise of leadership functions in controlling and directing activities of the cadet corps. Practical development of leadership potential. Full Description " + "description": "Supervisory practice and exercise of leadership functions in controlling and directing activities of the cadet corps. Practical development of leadership potential." }, "AS3320": { "subject": "AS", "number": "3320", "name": "Leadership Studies II ", - "description": "Examine the Air Force personnel and evaluation systems, leadership ethics, and Air Force supervision and counseling techniques. A mandatory Leadership Laboratory for AFROTC cadets complements this course by providing advanced leadership experiences in office-type activities, giving students the opportunity to apply the leadership and management principles of this course. Full Description " + "description": "Examine the Air Force personnel and evaluation systems, leadership ethics, and Air Force supervision and counseling techniques. A mandatory Leadership Laboratory for AFROTC cadets complements this course by providing advanced leadership experiences in office-type activities, giving students the opportunity to apply the leadership and management principles of this course." }, "AS3321": { "subject": "AS", "number": "3321", "name": "Leadership Laboratory ", - "description": "Continues AS 3311 with emphasis on supervisory and leadership skills, and advantages of an Air Force career. Full Description " + "description": "Continues AS 3311 with emphasis on supervisory and leadership skills, and advantages of an Air Force career." }, "AS4410": { "subject": "AS", "number": "4410", "name": "National Security Affair ", - "description": "Examines the national security process, Air Force structure, and doctrine. Special topics of interest focus on civilian control of the military and joint operations with the Army, Navy, and Marines. Within this structure, continued emphasis is given to refining communication skills. A mandatory Leadership Laboratory for AFROTC cadets complements this course. Full Description " + "description": "Examines the national security process, Air Force structure, and doctrine. Special topics of interest focus on civilian control of the military and joint operations with the Army, Navy, and Marines. Within this structure, continued emphasis is given to refining communication skills. A mandatory Leadership Laboratory for AFROTC cadets complements this course." }, "AS4411": { "subject": "AS", "number": "4411", "name": "Leadership Laboratory ", - "description": "Exercise of management functions in planning, supervising, and directing cadet corps activities. Emphasis on acquiring proficiency in military leadership skills. Full Description " + "description": "Exercise of management functions in planning, supervising, and directing cadet corps activities. Emphasis on acquiring proficiency in military leadership skills." }, "AS4420": { "subject": "AS", "number": "4420", "name": "Prep for Active Duty ", - "description": "Topics include the military as a profession, regional studies, officership, military justice, advanced leadership ethics, preparation for active duty, and current issues affecting military professionalism. A mandatory Leadership Laboratory for AFROTC cadets complements this course. Full Description " + "description": "Topics include the military as a profession, regional studies, officership, military justice, advanced leadership ethics, preparation for active duty, and current issues affecting military professionalism. A mandatory Leadership Laboratory for AFROTC cadets complements this course." }, "AS4421": { "subject": "AS", "number": "4421", "name": "Leadership Laboratory ", - "description": "Continues AS 4411. Emphasis on developing top-level management skills. Includes the planning, organizing, and implementation of cadet military training. Full Description " + "description": "Continues AS 4411. Emphasis on developing top-level management skills. Includes the planning, organizing, and implementation of cadet military training." }, "ASE6001": { "subject": "ASE", "number": "6001", "name": "Fund Modern Sys Eng ", - "description": "Explore a wide range of modern systems engineering principles and development methodologies. Address requirements engineering, systems definition, design and analysis, implementation, operation, and technical management. Full Description " + "description": "Explore a wide range of modern systems engineering principles and development methodologies. Address requirements engineering, systems definition, design and analysis, implementation, operation, and technical management." }, "ASE6002": { "subject": "ASE", "number": "6002", "name": "Systems Design/Analysis ", - "description": "Introduce emerging techniques for systems and systems-of-systems analysis including IPPD, DOE, Taguchi methods, response surface equations, multi-attribute decision making, and concept feasibility assessment. Full Description " + "description": "Introduce emerging techniques for systems and systems-of-systems analysis including IPPD, DOE, Taguchi methods, response surface equations, multi-attribute decision making, and concept feasibility assessment." }, "ASE6003": { "subject": "ASE", "number": "6003", "name": "Modeling/Sim Sys Eng ", - "description": "Introduction to modeling and simulation for systems engineers. Topics include problem formulation, conceptual modeling, simulation methodologies, verification and validation, DOE, simulation execution, and output analysis. Full Description " + "description": "Introduction to modeling and simulation for systems engineers. Topics include problem formulation, conceptual modeling, simulation methodologies, verification and validation, DOE, simulation execution, and output analysis." }, "ASE6004": { "subject": "ASE", "number": "6004", "name": "Leading Sys Eng Teams ", - "description": "Systems engineering processes provide a model for successfully managing complex systems. Learn to apply management and development techniques used for successful commercial and government programs. Full Description " + "description": "Systems engineering processes provide a model for successfully managing complex systems. Learn to apply management and development techniques used for successful commercial and government programs." }, "ASE6005": { "subject": "ASE", "number": "6005", "name": "Adv Topics SE - SysML ", - "description": "This core elective introduces SymML as a system modeling and design tool, with example applications, guidelines for application, and student projects on implementations in practice. Full Description " + "description": "This core elective introduces SymML as a system modeling and design tool, with example applications, guidelines for application, and student projects on implementations in practice." }, "ASE6006": { "subject": "ASE", "number": "6006", "name": "Systems Engineering Lab ", - "description": "Application of working knowledge of systems engineering techniques applied to a \"case study\" in an applicable domain. Full Description " + "description": "Application of working knowledge of systems engineering techniques applied to a \"case study\" in an applicable domain." }, "ASE6101": { "subject": "ASE", "number": "6101", "name": "Analysis & Synth-Vehicle ", - "description": "Vehicle Preliminary Design involves design iteration with disciplinary physics-based methods and tools. Includes geometry and databases from conceptual design, six DOF modeling, analysis, and synthesized baseline. Full Description " + "description": "Vehicle Preliminary Design involves design iteration with disciplinary physics-based methods and tools. Includes geometry and databases from conceptual design, six DOF modeling, analysis, and synthesized baseline." }, "ASE6102": { "subject": "ASE", "number": "6102", "name": "System of Systems & Arch ", - "description": "Develop a broader understanding of the interdependencies and interoperability issues, interfaces, and processes for creating and defining Systems Architecture for complex systems. Full Description " + "description": "Develop a broader understanding of the interdependencies and interoperability issues, interfaces, and processes for creating and defining Systems Architecture for complex systems." }, "ASE6103": { "subject": "ASE", "number": "6103", "name": "System Lifecycle & Integ ", - "description": "System preliminary design must address product and process design throughout system lifecycle from integration through manufacturing to phase-out along with interfaces to other emerging systems. Full Description " + "description": "System preliminary design must address product and process design throughout system lifecycle from integration through manufacturing to phase-out along with interfaces to other emerging systems." }, "ASE6104": { "subject": "ASE", "number": "6104", "name": "Capstone Complex Systems ", - "description": "Student teams apply methods and techniques taught throughout the program to conduct complex system Conceptual Design based on requirements provided in a Request for Proposal. Full Description " + "description": "Student teams apply methods and techniques taught throughout the program to conduct complex system Conceptual Design based on requirements provided in a Request for Proposal." }, "ASE6111": { "subject": "ASE", "number": "6111", "name": "Analysis & Synth-Sensors ", - "description": "Defines, classifies, and examines technology used in stand-alone sensor systems. Centers on system-engineering trades useful in designing systems of sensors and systems of systems. Full Description " + "description": "Defines, classifies, and examines technology used in stand-alone sensor systems. Centers on system-engineering trades useful in designing systems of sensors and systems of systems." }, "ASE6121": { "subject": "ASE", "number": "6121", "name": "Analysis & Synth-InfoSys ", - "description": "Tools and approaches for analysis and synthesis of enterprise information systems. Topics include user-centered requirement, scenario-based design, UML, network/communications, iterative prototyping, and enterprise support. Full Description " + "description": "Tools and approaches for analysis and synthesis of enterprise information systems. Topics include user-centered requirement, scenario-based design, UML, network/communications, iterative prototyping, and enterprise support." }, "ASE8803": { "subject": "ASE", "number": "8803", "name": "Special Topics ", - "description": "Topics of current interest in Applied Systems Engineering. Full Description " + "description": "Topics of current interest in Applied Systems Engineering." }, "BC1XXX": { "subject": "BC", "number": "1XXX", "name": "Bldg Construction Elect ", - "description": " Full Description " + "description": "" }, "BC2600": { "subject": "BC", "number": "2600", "name": "Construction Contracting ", - "description": "The goal of this course is to teach students the basics of construction contracting, business methods, organizational models, bidding, construction insurance, and labor relations. Full Description " + "description": "The goal of this course is to teach students the basics of construction contracting, business methods, organizational models, bidding, construction insurance, and labor relations." }, "BC2610": { "subject": "BC", "number": "2610", "name": "Construction Tech I ", - "description": "An introduction to the planning and physical development process for the construction of projects of residential and light construction scale. Full Description " + "description": "An introduction to the planning and physical development process for the construction of projects of residential and light construction scale." }, "BC2620": { "subject": "BC", "number": "2620", "name": "Construction Tech II ", - "description": "A continuation of Construction Technology I with an emphasis on large- scale and high-rise building, i.e., commercial building construction. Full Description " + "description": "A continuation of Construction Technology I with an emphasis on large- scale and high-rise building, i.e., commercial building construction." }, "BC2630": { "subject": "BC", "number": "2630", "name": "Construction Seminar ", - "description": "Provides an introduction to the construction industry with emphasis on exploring career opportunities in construction. Full Description " + "description": "Provides an introduction to the construction industry with emphasis on exploring career opportunities in construction." }, "BC2698": { "subject": "BC", "number": "2698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "BC2699": { "subject": "BC", "number": "2699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "BC2XXX": { "subject": "BC", "number": "2XXX", "name": "Bldg Construction Elect ", - "description": " Full Description " + "description": "" }, "BC3600": { "subject": "BC", "number": "3600", "name": "Construction Cost Mgt ", - "description": "Introduction to cost principles and cost analysis of construction projects, including classification of work, quantity survey techniques, construction operation costs, and bid proposals. Full Description " + "description": "Introduction to cost principles and cost analysis of construction projects, including classification of work, quantity survey techniques, construction operation costs, and bid proposals." }, "BC3610": { "subject": "BC", "number": "3610", "name": "Construction Law ", - "description": "Legal aspects of construction contracts, bonds, insurance, and bidding. Owner, architect, contractor, and subcontractor relationships. Full Description " + "description": "Legal aspects of construction contracts, bonds, insurance, and bidding. Owner, architect, contractor, and subcontractor relationships." }, "BC3620": { "subject": "BC", "number": "3620", "name": "Real Est&Cnst Fin&Acct ", - "description": "General introduction to the financing of construction and real estate development projects. Emphasis on financing requirements, activities, sources, and uses. Full Description " + "description": "General introduction to the financing of construction and real estate development projects. Emphasis on financing requirements, activities, sources, and uses." }, "BC3630": { "subject": "BC", "number": "3630", "name": "Project Management I ", - "description": "This course will offer construction planning and management techniques for project design and construction with a focus on different scheduling methods and their use. Full Description " + "description": "This course will offer construction planning and management techniques for project design and construction with a focus on different scheduling methods and their use." }, "BC3640": { "subject": "BC", "number": "3640", "name": "Construction Mechanics ", - "description": "An introductory course to the evaluation of behavior of buildings, the properties of structural materials, and the behavior of load-resisting members. Full Description " + "description": "An introductory course to the evaluation of behavior of buildings, the properties of structural materials, and the behavior of load-resisting members." }, "BC3XXX": { "subject": "BC", "number": "3XXX", "name": "Bldg Construction Elect ", - "description": " Full Description " + "description": "" }, "BC4050": { "subject": "BC", "number": "4050", "name": "Building Info Modeling ", - "description": "This course introduces students to BIM and the changes it has been causing to the traditional design, planning, management, construction, facility management, and contracting practices. Full Description " + "description": "This course introduces students to BIM and the changes it has been causing to the traditional design, planning, management, construction, facility management, and contracting practices." }, "BC4110": { "subject": "BC", "number": "4110", "name": "Trends & Pol For Res Dev ", - "description": "An overview of development in the United States, current trends in residential development, and the impact of external factors on residential development. This course is designed to help Building Construction students understand how their development impacts the social environment and quality of life of the community. Full Description " + "description": "An overview of development in the United States, current trends in residential development, and the impact of external factors on residential development. This course is designed to help Building Construction students understand how their development impacts the social environment and quality of life of the community." }, "BC4120": { "subject": "BC", "number": "4120", "name": "Community Dsgn & Constr ", - "description": "An overview of the principles of smart growth, livable communities and new urbanism and how these principles are implemented in the process from design to construction and marketing. Full Description " + "description": "An overview of the principles of smart growth, livable communities and new urbanism and how these principles are implemented in the process from design to construction and marketing." }, "BC4130": { "subject": "BC", "number": "4130", "name": "Intg Design Constr & Dev ", - "description": "A study of contemporary examples of an integrated approach to design, construction and development. Course involves real-world project analysis from multiple points of view. Full Description " + "description": "A study of contemporary examples of an integrated approach to design, construction and development. Course involves real-world project analysis from multiple points of view." }, "BC4600": { "subject": "BC", "number": "4600", "name": "Project Management II ", - "description": "This course covers practical project management, technology, and tools for this approach and the required management skills for successful execution of projects. Full Description " + "description": "This course covers practical project management, technology, and tools for this approach and the required management skills for successful execution of projects." }, "BC4610": { "subject": "BC", "number": "4610", "name": "Value Engr & Bldg Econ ", - "description": "First part is an introduction to principles and methodology. Second part is an introduction to economic principles and theories and how to apply the concepts and methods of building economics. Full Description " + "description": "First part is an introduction to principles and methodology. Second part is an introduction to economic principles and theories and how to apply the concepts and methods of building economics." }, "BC4620": { "subject": "BC", "number": "4620", "name": "Bldg Structural Analysis ", - "description": "Emphasis being placed on the practical design and construction of structural elements. The course includes basic design principles with a heavy emphasis on constructability and buildability. Full Description " + "description": "Emphasis being placed on the practical design and construction of structural elements. The course includes basic design principles with a heavy emphasis on constructability and buildability." }, "BC4630": { "subject": "BC", "number": "4630", "name": "Senior Capstone Project ", - "description": "A senior construction project that includes redevelopment analysis and feasibility study, project development, and construction. Full Description " + "description": "A senior construction project that includes redevelopment analysis and feasibility study, project development, and construction." }, "BC4640": { "subject": "BC", "number": "4640", "name": "Construction Marketing ", - "description": "Methods of construction marketing and business development. Innovative computer applications, verbal skills development, professional strategies, market segmentation, and buyer behavior. Full Description " + "description": "Methods of construction marketing and business development. Innovative computer applications, verbal skills development, professional strategies, market segmentation, and buyer behavior." }, "BC4650": { "subject": "BC", "number": "4650", "name": "Lab for Sustainable Dsgn ", - "description": "The goal of the laboratory is to teach students a comprehensive sustainable design and construction information system and a program of real-world, hands-on projects. Full Description " + "description": "The goal of the laboratory is to teach students a comprehensive sustainable design and construction information system and a program of real-world, hands-on projects." }, "BC4660": { "subject": "BC", "number": "4660", "name": "Entrepreneurship-Constru ", - "description": "Basics of construction business risk assessment, looking for construction opportunities, capital investment, computerized construction business, and business failures. Full Description " + "description": "Basics of construction business risk assessment, looking for construction opportunities, capital investment, computerized construction business, and business failures." }, "BC4672": { "subject": "BC", "number": "4672", "name": "MEP Systems ", - "description": "The course will cover the fundamentals of design, selection, installation, commissioning, and maintenance of mechanical, electrical and plumbing systems. Credit not allowed for both BC 4672 and BC4670. Full Description " + "description": "The course will cover the fundamentals of design, selection, installation, commissioning, and maintenance of mechanical, electrical and plumbing systems. Credit not allowed for both BC 4672 and BC4670." }, "BC4680": { "subject": "BC", "number": "4680", "name": "Professional Internship ", - "description": "Students work for a professional architecture/engineering/ construction company in which they learn, first-hand, about the construction industry. Full Description " + "description": "Students work for a professional architecture/engineering/ construction company in which they learn, first-hand, about the construction industry." }, "BC4698": { "subject": "BC", "number": "4698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "BC4699": { "subject": "BC", "number": "4699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "BC4700": { "subject": "BC", "number": "4700", "name": "Construction Management ", - "description": "An accelerated-pace course designed to provide a basic understanding of fundamental topics including planning, budgeting, estimation, scheduling, and project close out. Full Description " + "description": "An accelerated-pace course designed to provide a basic understanding of fundamental topics including planning, budgeting, estimation, scheduling, and project close out." }, "BC4710": { "subject": "BC", "number": "4710", "name": "Green Construction ", - "description": "This course focuses on the means, methods, strategies, and technologies to improve the energy efficiency and performance of buildings, and to reduce the environmental impact of buildings. Full Description " + "description": "This course focuses on the means, methods, strategies, and technologies to improve the energy efficiency and performance of buildings, and to reduce the environmental impact of buildings." }, "BC4720": { "subject": "BC", "number": "4720", "name": "Resident Constr&Prop Mgt ", - "description": "A course designed to orient students to the basics of apartment management and includes the business functions of marketing, leasing, and financing. Full Description " + "description": "A course designed to orient students to the basics of apartment management and includes the business functions of marketing, leasing, and financing." }, "BC4730": { "subject": "BC", "number": "4730", "name": "Best Prac Multi-Fam Prop ", - "description": "A course designed to provide students with a broad range of the best practices related to the management of all types of multi-family residential property. Full Description " + "description": "A course designed to provide students with a broad range of the best practices related to the management of all types of multi-family residential property." }, "BC4735": { "subject": "BC", "number": "4735", "name": "Real Estate Dev&Construc ", - "description": "Provides an overview of the real estate development process as it pertains to construction development including trends and current issues. Full Description " + "description": "Provides an overview of the real estate development process as it pertains to construction development including trends and current issues." }, "BC4801": { "subject": "BC", "number": "4801", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "BC4802": { "subject": "BC", "number": "4802", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "BC4803": { "subject": "BC", "number": "4803", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "BC4823": { "subject": "BC", "number": "4823", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "BC4833": { "subject": "BC", "number": "4833", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "BC4843": { "subject": "BC", "number": "4843", "name": "Special Topics ", - "description": "Topics of current interest in building construction. Full Description " + "description": "Topics of current interest in building construction." }, "BC4900": { "subject": "BC", "number": "4900", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "BC4XXX": { "subject": "BC", "number": "4XXX", "name": "Bldg Construction Elect ", - "description": " Full Description " + "description": "" }, "BC6002": { "subject": "BC", "number": "6002", "name": "Issues In Sust Construct ", - "description": "Course designed to help students achieve a basic understanding of the materials used in the commercial segments in the construction industry and how these relate to sustainable construction. Full Description " + "description": "Course designed to help students achieve a basic understanding of the materials used in the commercial segments in the construction industry and how these relate to sustainable construction." }, "BC6004": { "subject": "BC", "number": "6004", "name": "Sustainable Energy AEC ", - "description": "An introductory course on sustainale energy in architecture, engineering and construction. The goal of the course is to introduce students to fundamental concepts of sustainable sources of energy to power buildings and address the impact of these sources to applicable green building rating systems Full Description " + "description": "An introductory course on sustainale energy in architecture, engineering and construction. The goal of the course is to introduce students to fundamental concepts of sustainable sources of energy to power buildings and address the impact of these sources to applicable green building rating systems" }, "BC6025": { "subject": "BC", "number": "6025", "name": "Construction Management ", - "description": "An accelerated paced course providing graduate students a basic understanding of fundamental topics including planning, budgeting, estimating, scheduling and project closeout. Full Description " + "description": "An accelerated paced course providing graduate students a basic understanding of fundamental topics including planning, budgeting, estimating, scheduling and project closeout." }, "BC6050": { "subject": "BC", "number": "6050", "name": "Building Info Modeling ", - "description": "This course introduces students to BIM and the changes it has been causing to the traditional design, planning, management, construction, facility management, and contracting practices. Credit will not be awarded for both BC 4050 and BC 6050. Full Description " + "description": "This course introduces students to BIM and the changes it has been causing to the traditional design, planning, management, construction, facility management, and contracting practices. Credit will not be awarded for both BC 4050 and BC 6050." }, "BC6100": { "subject": "BC", "number": "6100", "name": "Prof Trends-Facility Mgt ", - "description": "An introductory course covering the organizational, managerial, ethical, and legal principles for the delivery of facility management services. Includes contracts and risk management. Full Description " + "description": "An introductory course covering the organizational, managerial, ethical, and legal principles for the delivery of facility management services. Includes contracts and risk management." }, "BC6125": { "subject": "BC", "number": "6125", "name": "Professional Internship ", - "description": "A course in which students work for a professional architecture/engineering/construction company in which they learn, first-hand, about the construction industry. Full Description " + "description": "A course in which students work for a professional architecture/engineering/construction company in which they learn, first-hand, about the construction industry." }, "BC6150": { "subject": "BC", "number": "6150", "name": "Design-Build Orgn & Mgt ", - "description": "Introduction to Design-Build (DB) as a project delivery system. Provides information about the organization, the process, and the effects of DB on the industry. Full Description " + "description": "Introduction to Design-Build (DB) as a project delivery system. Provides information about the organization, the process, and the effects of DB on the industry." }, "BC6175": { "subject": "BC", "number": "6175", "name": "Real Estate Dev & Constr ", - "description": "Provides an overview of the real estate development process as it pertains to construction development including trends and current issues. Full Description " + "description": "Provides an overview of the real estate development process as it pertains to construction development including trends and current issues." }, "BC6185": { "subject": "BC", "number": "6185", "name": "Intro to Const Prog Mgt ", - "description": "Survey of the construction program management profession, focusing on the comprehensive management of single and multiple building programs including pre-design, design, construction and post-construction activities. Full Description " + "description": "Survey of the construction program management profession, focusing on the comprehensive management of single and multiple building programs including pre-design, design, construction and post-construction activities." }, "BC6200": { "subject": "BC", "number": "6200", "name": "Maint Mgt-Built Assets ", - "description": "This course covers the processes by which a facility and its systems are serviced and maintained during the facility's life cycle. Includes acquisition, installation, operation, maintenance, and disposal of built assets. Full Description " + "description": "This course covers the processes by which a facility and its systems are serviced and maintained during the facility's life cycle. Includes acquisition, installation, operation, maintenance, and disposal of built assets." }, "BC6250": { "subject": "BC", "number": "6250", "name": "Value Mgt-Integrated Dgn ", - "description": "Principles and methodology of value management analysis concepts and an examination of future values and worth criteria affecting building design, construction, furnishings, and operations performance. Full Description " + "description": "Principles and methodology of value management analysis concepts and an examination of future values and worth criteria affecting building design, construction, furnishings, and operations performance." }, "BC6275": { "subject": "BC", "number": "6275", "name": "Community Dsgn & Constr ", - "description": "An overview of the principles of smart growth, livable communities and new urbanism and how these principles are implemented in the process from design to construction and marketing. Full Description " + "description": "An overview of the principles of smart growth, livable communities and new urbanism and how these principles are implemented in the process from design to construction and marketing." }, "BC6285": { "subject": "BC", "number": "6285", "name": "Mgt of Predesign Phase ", - "description": "Examination of the Program Manager's role and responsibilities as owner during the pre-design phase including feasibility, organization, financing, legal, entitlement, planning, budgeting, scheduling, and team selection. Full Description " + "description": "Examination of the Program Manager's role and responsibilities as owner during the pre-design phase including feasibility, organization, financing, legal, entitlement, planning, budgeting, scheduling, and team selection." }, "BC6300": { "subject": "BC", "number": "6300", "name": "Safety & Environ Issues ", - "description": "This course covers the environmental issues related to the performance of buildings and the health and risk factors for new and existing buildings. Full Description " + "description": "This course covers the environmental issues related to the performance of buildings and the health and risk factors for new and existing buildings." }, "BC6350": { "subject": "BC", "number": "6350", "name": "Design& Construction Law ", - "description": "Overview of construction law and legal issues encountered by the construction manager including U.S. laws, general concepts and definitions, contractor relationships, and relevant case studies. Full Description " + "description": "Overview of construction law and legal issues encountered by the construction manager including U.S. laws, general concepts and definitions, contractor relationships, and relevant case studies." }, "BC6375": { "subject": "BC", "number": "6375", "name": "Trends & Pol For Res Dev ", - "description": "An overview of development in the United States, current trends in residential development, and the impact of governmental regulations on residential development. This course is designed to help Building Construction students understand how their development impacts the social environment and quality of life of the community. Full Description " + "description": "An overview of development in the United States, current trends in residential development, and the impact of governmental regulations on residential development. This course is designed to help Building Construction students understand how their development impacts the social environment and quality of life of the community." }, "BC6385": { "subject": "BC", "number": "6385", "name": "Mgt of Design Phase ", - "description": "Examination of the Program Manager's role and responsibilities as Owner during the design phase. Full Description " + "description": "Examination of the Program Manager's role and responsibilities as Owner during the design phase." }, "BC6400": { "subject": "BC", "number": "6400", "name": "Fac Pln,Proj Mgt&Benchmk ", - "description": "This course introduces the techniques of planning project management, benchmarking, and their applications to facility management. Includes space forecasting, scheduling and control of projects, and benchmarking studies. Full Description " + "description": "This course introduces the techniques of planning project management, benchmarking, and their applications to facility management. Includes space forecasting, scheduling and control of projects, and benchmarking studies." }, "BC6500": { "subject": "BC", "number": "6500", "name": "Real Est Assest&Prop Mgt ", - "description": "This course covers real estate financial management and performance topics from a decision making and strategic planning orientation for facilities management professionals. Full Description " + "description": "This course covers real estate financial management and performance topics from a decision making and strategic planning orientation for facilities management professionals." }, "BC6550": { "subject": "BC", "number": "6550", "name": "Design&Constr Processes ", - "description": "Offers a framework for use and application of design, contract, and performance documents for successful execution of various forms of integrated project delivery systems. Full Description " + "description": "Offers a framework for use and application of design, contract, and performance documents for successful execution of various forms of integrated project delivery systems." }, "BC6575": { "subject": "BC", "number": "6575", "name": "Real Estate Prod Finance ", - "description": "Business model and financing process required to produce new real estate developments through an investigation of land acquisition, development and construction financial management. Full Description " + "description": "Business model and financing process required to produce new real estate developments through an investigation of land acquisition, development and construction financial management." }, "BC6585": { "subject": "BC", "number": "6585", "name": "Mgt of Constr as Owner ", - "description": "Survey of construction management from the owner's perspective. Full Description " + "description": "Survey of construction management from the owner's perspective." }, "BC6600": { "subject": "BC", "number": "6600", "name": "Fac Mgt Financial Analy ", - "description": "This course covers real property concepts, issues, and topics pertinent to the facility management professional. The topics include site selection, property market analysis, legal documents, and land use control. Full Description " + "description": "This course covers real property concepts, issues, and topics pertinent to the facility management professional. The topics include site selection, property market analysis, legal documents, and land use control." }, "BC6650": { "subject": "BC", "number": "6650", "name": "Advanced Project Mgt ", - "description": "A four-phased coverage of project management including organization, planning and scheduling, control, budgeting, and ending with project testing, evaluation, and termination. Full Description " + "description": "A four-phased coverage of project management including organization, planning and scheduling, control, budgeting, and ending with project testing, evaluation, and termination." }, "BC6675": { "subject": "BC", "number": "6675", "name": "Res Design & Constr ", - "description": "Course will examine the application of market, community, and regulatory factors to single family housing design and construction; construction management process required for efficient delivery. Full Description " + "description": "Course will examine the application of market, community, and regulatory factors to single family housing design and construction; construction management process required for efficient delivery." }, "BC6685": { "subject": "BC", "number": "6685", "name": "Leadership in Des&Constr ", - "description": "Framework and guidelines for effective leadership and communications during design and construction. Full Description " + "description": "Framework and guidelines for effective leadership and communications during design and construction." }, "BC6700": { "subject": "BC", "number": "6700", "name": "Adv Facility Mgt Practic ", - "description": "Students apply specific methods and procedures from core courses to actual business situations in the facility and property management industry. Full Description " + "description": "Students apply specific methods and procedures from core courses to actual business situations in the facility and property management industry." }, "BC6731": { "subject": "BC", "number": "6731", "name": "Zero Energy Housing ", - "description": "Design, analysis, operation, construction, and cost feasibility of so-called \"zero energy\" houses. Credit not allowed for both BC 6731 and ARCH 6731. Full Description " + "description": "Design, analysis, operation, construction, and cost feasibility of so-called \"zero energy\" houses. Credit not allowed for both BC 6731 and ARCH 6731." }, "BC6800": { "subject": "BC", "number": "6800", "name": "Facil&Prop Mgt Capstone ", - "description": "Designed to integrate the learning from basic topics through the use of actual case studies and situations found within the facility and property management industry. Full Description " + "description": "Designed to integrate the learning from basic topics through the use of actual case studies and situations found within the facility and property management industry." }, "BC6910": { "subject": "BC", "number": "6910", "name": "Best Prac Multi-Fam Prop ", - "description": "A course designed to provide students with a broad range of the best practices related to the management of all types of multi-family residential property. Full Description " + "description": "A course designed to provide students with a broad range of the best practices related to the management of all types of multi-family residential property." }, "BC6920": { "subject": "BC", "number": "6920", "name": "Intro-Resident Prop Mgt ", - "description": "A course designed to orient students to the basics of apartment management and includes the business functions of marketing, leasing, and financing. Full Description " + "description": "A course designed to orient students to the basics of apartment management and includes the business functions of marketing, leasing, and financing." }, "BC6930": { "subject": "BC", "number": "6930", "name": "Intg Design Constr & Dev ", - "description": "This course will focus on contemporary integrated approach to design, construction and development. Course involves real-world project analysis from multiple points aof view. Examples to be selected from the Atlanta region. Full Description " + "description": "This course will focus on contemporary integrated approach to design, construction and development. Course involves real-world project analysis from multiple points aof view. Examples to be selected from the Atlanta region." }, "BC6XXX": { "subject": "BC", "number": "6XXX", "name": "Bldg Construct Elective ", - "description": " Full Description " + "description": "" }, "BC7000": { "subject": "BC", "number": "7000", "name": "Master's Thesis ", - "description": " Full Description " + "description": "" }, "BC7100": { "subject": "BC", "number": "7100", "name": "Quant Meth Constr Resch ", - "description": "Introductory course in graduate research in the building construction industry. Covers types of research, sampling methods, and basic analysis and evaluation techniques. Full Description " + "description": "Introductory course in graduate research in the building construction industry. Covers types of research, sampling methods, and basic analysis and evaluation techniques." }, "BC7200": { "subject": "BC", "number": "7200", "name": "Adv Readings In BC ", - "description": "This course is designed around advanced readings in research and practice for PhD students working in the building construction area. Full Description " + "description": "This course is designed around advanced readings in research and practice for PhD students working in the building construction area." }, "BC8000": { "subject": "BC", "number": "8000", "name": "PhD Seminar ", - "description": "This is an introduction to PhD-level research in Building Construction. Full Description " + "description": "This is an introduction to PhD-level research in Building Construction." }, "BC8100": { "subject": "BC", "number": "8100", "name": "Research Methodology ", - "description": "Research design course that teaches the basics of creating credible scientific research plans with examples from construction related research. Full Description " + "description": "Research design course that teaches the basics of creating credible scientific research plans with examples from construction related research." }, "BC8803": { "subject": "BC", "number": "8803", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "BC8811": { "subject": "BC", "number": "8811", "name": "Special Topics ", - "description": "Topics of current interest in building construction. Full Description " + "description": "Topics of current interest in building construction." }, "BC8812": { "subject": "BC", "number": "8812", "name": "Special Topics ", - "description": "Topics of current interest in building construction. Full Description " + "description": "Topics of current interest in building construction." }, "BC8813": { "subject": "BC", "number": "8813", "name": "Special Topics ", - "description": "Topics of current interest in building construction. Full Description " + "description": "Topics of current interest in building construction." }, "BC8814": { "subject": "BC", "number": "8814", "name": "Special Topics ", - "description": "Topics of current interest in building construction. Full Description " + "description": "Topics of current interest in building construction." }, "BC8815": { "subject": "BC", "number": "8815", "name": "Special Topics ", - "description": "Topics of current interest in building construction. Full Description " + "description": "Topics of current interest in building construction." }, "BC8823": { "subject": "BC", "number": "8823", "name": "Special Topics ", - "description": "Topics of current interest in building construction. Full Description " + "description": "Topics of current interest in building construction." }, "BC8833": { "subject": "BC", "number": "8833", "name": "Special Topics ", - "description": "Topics of current interest in building construction. Full Description " + "description": "Topics of current interest in building construction." }, "BC8843": { "subject": "BC", "number": "8843", "name": "Special Topics ", - "description": "Topics of current interest in building construction. Full Description " + "description": "Topics of current interest in building construction." }, "BC8901": { "subject": "BC", "number": "8901", "name": "Spec Prob-Build Construc ", - "description": " Full Description " + "description": "" }, "BC8902": { "subject": "BC", "number": "8902", "name": "Spec Prob-Build Construc ", - "description": " Full Description " + "description": "" }, "BC8903": { "subject": "BC", "number": "8903", "name": "Spec Prob-Build Construc ", - "description": " Full Description " + "description": "" }, "BC8997": { "subject": "BC", "number": "8997", "name": "Teaching Assistantship ", - "description": "For graduate students holding graduate teaching assistantship. Full Description " + "description": "For graduate students holding graduate teaching assistantship." }, "BC8998": { "subject": "BC", "number": "8998", "name": "Research Assistantship ", - "description": "For graduate students holding graduate research assistantship. Full Description " + "description": "For graduate students holding graduate research assistantship." }, "BC8999": { "subject": "BC", "number": "8999", "name": "Doctorial Thesis Prep ", - "description": "This course is designed to synthesize the knowledge and skills developed in previous research courses and apply them to the doctoral dissertation process for students in Building Construction. Full Description " + "description": "This course is designed to synthesize the knowledge and skills developed in previous research courses and apply them to the doctoral dissertation process for students in Building Construction." }, "BC9000": { "subject": "BC", "number": "9000", "name": "Doctoral Thesis ", - "description": "Preparation of doctoral thesis for Ph.D. in Building Construction. Full Description " + "description": "Preparation of doctoral thesis for Ph.D. in Building Construction." }, "BIOL1510": { "subject": "BIOL", "number": "1510", "name": "Biological Principles ", - "description": "An introduction to the basic principles of modern biology, including biomacromolecules, bioenergetics, cell structure, genetics, homeostasis, evolution, and ecological relationships. Full Description " + "description": "An introduction to the basic principles of modern biology, including biomacromolecules, bioenergetics, cell structure, genetics, homeostasis, evolution, and ecological relationships." }, "BIOL1511": { "subject": "BIOL", "number": "1511", "name": "Honors Biological Prin ", - "description": "An advanced introduction to the principles of modern biology, including biomacromolecules, bioenergetics, cell structure, genetics, homeostasis, evolution, and ecological relationships. Full Description " + "description": "An advanced introduction to the principles of modern biology, including biomacromolecules, bioenergetics, cell structure, genetics, homeostasis, evolution, and ecological relationships." }, "BIOL1520": { "subject": "BIOL", "number": "1520", "name": "Intro to Organismal Biol ", - "description": "An introduction to biology at the organ and organismal levels, with emphasis on physiological processes and integration of growth and development. Full Description " + "description": "An introduction to biology at the organ and organismal levels, with emphasis on physiological processes and integration of growth and development." }, "BIOL1521": { "subject": "BIOL", "number": "1521", "name": "Honors Organismal Biol ", - "description": "Introduction to biology at the organ and organismal levels, with emphasis on biodiversity, physiological processes, and integration of growth, reproduction and development. Full Description " + "description": "Introduction to biology at the organ and organismal levels, with emphasis on biodiversity, physiological processes, and integration of growth, reproduction and development." }, "BIOL1XXX": { "subject": "BIOL", "number": "1XXX", "name": "Biology Elective ", - "description": " Full Description " + "description": "" }, "BIOL2100": { "subject": "BIOL", "number": "2100", "name": "Biogeography-New Zealand ", - "description": "Introduction to theory of island biogeography focused on New Zealand's geological history and unique biota. Full Description " + "description": "Introduction to theory of island biogeography focused on New Zealand's geological history and unique biota." }, "BIOL2335": { "subject": "BIOL", "number": "2335", "name": "General Ecology ", - "description": "Introduction to ecological processes at individual, population, and community levels that occur in plant, animal, and microbial taxa, and their relevance to current environmental problems. Full Description " + "description": "Introduction to ecological processes at individual, population, and community levels that occur in plant, animal, and microbial taxa, and their relevance to current environmental problems." }, "BIOL2336": { "subject": "BIOL", "number": "2336", "name": "General Ecology Lab ", - "description": "The companion laboratory for BIOL 2335 (Ecology). This course stresses understanding ecological concepts through a combination of lab and field experiments, and computer simulations. 0 Full Description " + "description": "The companion laboratory for BIOL 2335 (Ecology). This course stresses understanding ecological concepts through a combination of lab and field experiments, and computer simulations. 0" }, "BIOL2337": { "subject": "BIOL", "number": "2337", "name": "Honors Ecology ", - "description": "A problem-based learning course in ecology. Student teams will do research and solve challenges typically faced by ecologists and environmental scientists. Full Description " + "description": "A problem-based learning course in ecology. Student teams will do research and solve challenges typically faced by ecologists and environmental scientists." }, "BIOL2338": { "subject": "BIOL", "number": "2338", "name": "Honors Ecology Lab ", - "description": "Companion course to Honors Ecology. Student teams will explore solutions to ecological challenges using experiments and mathematical models. Full Description " + "description": "Companion course to Honors Ecology. Student teams will explore solutions to ecological challenges using experiments and mathematical models." }, "BIOL2344": { "subject": "BIOL", "number": "2344", "name": "Genetics ", - "description": "Mendelian and molecular genetics; principles of inheritance, gene structure and function, foundations of recombinant DNA technology, genetic basis of variation and evolution. Full Description " + "description": "Mendelian and molecular genetics; principles of inheritance, gene structure and function, foundations of recombinant DNA technology, genetic basis of variation and evolution." }, "BIOL2345": { "subject": "BIOL", "number": "2345", "name": "Genetics Laboratory ", - "description": "A laboratory course in the fundamental techniques of genetic analysis. Full Description " + "description": "A laboratory course in the fundamental techniques of genetic analysis." }, "BIOL2354": { "subject": "BIOL", "number": "2354", "name": "Honors Genetics ", - "description": "A comprehensive genetics course incorporating discussions of primary literature. Topics include molecular genetics and gene action, transfer systems and mapping, cytological, quantitative and population genetics. Credit not allowed for bothBIOL 2354 and BIOL 2344. Full Description " + "description": "A comprehensive genetics course incorporating discussions of primary literature. Topics include molecular genetics and gene action, transfer systems and mapping, cytological, quantitative and population genetics. Credit not allowed for bothBIOL 2354 and BIOL 2344." }, "BIOL2355": { "subject": "BIOL", "number": "2355", "name": "Honors Genetics Lab ", - "description": "Hands-on introduction to practical techniques, critical thinking, and important concepts in genetics. Students carry out laboratory experiments that explore transmission, population, and molecular genetics. Full Description " + "description": "Hands-on introduction to practical techniques, critical thinking, and important concepts in genetics. Students carry out laboratory experiments that explore transmission, population, and molecular genetics." }, "BIOL2400": { "subject": "BIOL", "number": "2400", "name": "Math Models in Biol ", - "description": "Introductory probability and deterministic models in biology, including discrete and continuous probability distributions and dynamic models from molecular and cellular biology to ecology and epidemiology. Full Description " + "description": "Introductory probability and deterministic models in biology, including discrete and continuous probability distributions and dynamic models from molecular and cellular biology to ecology and epidemiology." }, "BIOL2694": { "subject": "BIOL", "number": "2694", "name": "Intern Assistantship ", - "description": "Biology Undergraduate Internship for pay for freshmen and sophomores, by permit only. The internship experience must be at a unit or agency approved by the School of Biology. Full Description " + "description": "Biology Undergraduate Internship for pay for freshmen and sophomores, by permit only. The internship experience must be at a unit or agency approved by the School of Biology." }, "BIOL2695": { "subject": "BIOL", "number": "2695", "name": "Undergraduate Internship ", - "description": "Biology Undergraduate Internship for credit freshmen and sophomores, by permit only. The internship experience must be at a unit or agency approved by the School of Biology. Full Description " + "description": "Biology Undergraduate Internship for credit freshmen and sophomores, by permit only. The internship experience must be at a unit or agency approved by the School of Biology." }, "BIOL2698": { "subject": "BIOL", "number": "2698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "BIOL2699": { "subject": "BIOL", "number": "2699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "BIOL2801": { "subject": "BIOL", "number": "2801", "name": "Special Topics ", - "description": "This designation enables the School of Biology to provide new lecture courses dealing with areas of current interest in biological sciences. Full Description " + "description": "This designation enables the School of Biology to provide new lecture courses dealing with areas of current interest in biological sciences." }, "BIOL2802": { "subject": "BIOL", "number": "2802", "name": "Special Topics ", - "description": "This designation enables the School of Biology to provide new lecture courses dealing with areas of current interest in biological sciences. Full Description " + "description": "This designation enables the School of Biology to provide new lecture courses dealing with areas of current interest in biological sciences." }, "BIOL2803": { "subject": "BIOL", "number": "2803", "name": "Special Topics ", - "description": "This designation enables the School of Biology to provide new lecture courses dealing with areas of current interest in biological sciences. Full Description " + "description": "This designation enables the School of Biology to provide new lecture courses dealing with areas of current interest in biological sciences." }, "BIOL2804": { "subject": "BIOL", "number": "2804", "name": "Special Topics ", - "description": "This designation enables the School of Biology to provide new lecture courses dealing with areas of current interest in biological sciences. Full Description " + "description": "This designation enables the School of Biology to provide new lecture courses dealing with areas of current interest in biological sciences." }, "BIOL2805": { "subject": "BIOL", "number": "2805", "name": "Special Topics ", - "description": "This designation enables the School of Biology to provide new lecture courses dealing with areas of current interest in biological sciences. Full Description " + "description": "This designation enables the School of Biology to provide new lecture courses dealing with areas of current interest in biological sciences." }, "BIOL2901": { "subject": "BIOL", "number": "2901", "name": "Special Problems ", - "description": "Research problems in biology under the supervision of a faculty member. Full Description " + "description": "Research problems in biology under the supervision of a faculty member." }, "BIOL2902": { "subject": "BIOL", "number": "2902", "name": "Special Problems ", - "description": "Research problems in biology under the supervision of a faculty member. Full Description " + "description": "Research problems in biology under the supervision of a faculty member." }, "BIOL2903": { "subject": "BIOL", "number": "2903", "name": "Special Problems ", - "description": "Research problems in biology under the supervision of a faculty member. Full Description " + "description": "Research problems in biology under the supervision of a faculty member." }, "BIOL2904": { "subject": "BIOL", "number": "2904", "name": "Special Problem ", - "description": "Research problems in biology under the supervision of a faculty member. Full Description " + "description": "Research problems in biology under the supervision of a faculty member." }, "BIOL2905": { "subject": "BIOL", "number": "2905", "name": "Special Problems ", - "description": "Research problems in biology under the supervision of a faculty member. Full Description " + "description": "Research problems in biology under the supervision of a faculty member." }, "BIOL2XXX": { "subject": "BIOL", "number": "2XXX", "name": "Biology Elective ", - "description": " Full Description " + "description": "" }, "BIOL3100": { "subject": "BIOL", "number": "3100", "name": "Ecology&Evol-Australia ", - "description": "Evolution and ecology of Australian ecosystems, including rainforests, open woodlands, coastal habitats; conservation of endangered ecosystems. Earns Biology technical credit. Research project required. Full Description " + "description": "Evolution and ecology of Australian ecosystems, including rainforests, open woodlands, coastal habitats; conservation of endangered ecosystems. Earns Biology technical credit. Research project required." }, "BIOL3300": { "subject": "BIOL", "number": "3300", "name": "Tropical Ecology ", - "description": "Ecological processes in the tropics including community organizations, biotic interactions, biodiversity, coevolution. Students perform research projects in rain forest, cloud forest, and seashore. Full Description " + "description": "Ecological processes in the tropics including community organizations, biotic interactions, biodiversity, coevolution. Students perform research projects in rain forest, cloud forest, and seashore." }, "BIOL3380": { "subject": "BIOL", "number": "3380", "name": "Intro Microbiology ", - "description": "Basic biology of bacteria, fungi, algae, and viruses, with emphasis on bacteriology. Full Description " + "description": "Basic biology of bacteria, fungi, algae, and viruses, with emphasis on bacteriology." }, "BIOL3381": { "subject": "BIOL", "number": "3381", "name": "Intro Microbiology Lab ", - "description": "Fundamental laboratory techniques in microbiology. Full Description " + "description": "Fundamental laboratory techniques in microbiology." }, "BIOL3450": { "subject": "BIOL", "number": "3450", "name": "Cell Molecular Biol ", - "description": "An introduction to the structure and function of cells and their organelles with emphasis on eucaryotic cellular and molecular processes. Credit not allowed for both BIOL 3450 and BIOL 3340. Full Description " + "description": "An introduction to the structure and function of cells and their organelles with emphasis on eucaryotic cellular and molecular processes. Credit not allowed for both BIOL 3450 and BIOL 3340." }, "BIOL3451": { "subject": "BIOL", "number": "3451", "name": "Cell Molecular Biol Lab ", - "description": "An introduction to experimental methods of cell and molecular biology research that will cover some fundamental topics of cell biology. Credit not allowed for both BIOL 3451 and BIOL 3341. Full Description " + "description": "An introduction to experimental methods of cell and molecular biology research that will cover some fundamental topics of cell biology. Credit not allowed for both BIOL 3451 and BIOL 3341." }, "BIOL3600": { "subject": "BIOL", "number": "3600", "name": "Intro Evolutionary Biol ", - "description": "Comprehensive introduction to evolutionary biology. Includes focus on processes (natural selection, genetic drift) and resulting patterns (genome organization, phylogeny) illustrated with prokaryote and eukaryote examples. Full Description " + "description": "Comprehensive introduction to evolutionary biology. Includes focus on processes (natural selection, genetic drift) and resulting patterns (genome organization, phylogeny) illustrated with prokaryote and eukaryote examples." }, "BIOL3751": { "subject": "BIOL", "number": "3751", "name": "Anatomy & Physiology ", - "description": "Study of human anatomy and fundamental physiological mechanisms. Topics include nervous, musculoskeletal, and cardiorespiratory systems. Free elective for biology majors. Crosslisted with AP 3751. Full Description " + "description": "Study of human anatomy and fundamental physiological mechanisms. Topics include nervous, musculoskeletal, and cardiorespiratory systems. Free elective for biology majors. Crosslisted with AP 3751." }, "BIOL3753": { "subject": "BIOL", "number": "3753", "name": "Anatomy ", - "description": "Detailed study of human body structures using a regional and systems approach. Emphasis is placed on structural relationships and the integration of body systems. Full Description " + "description": "Detailed study of human body structures using a regional and systems approach. Emphasis is placed on structural relationships and the integration of body systems." }, "BIOL3754": { "subject": "BIOL", "number": "3754", "name": "Anatomy Lab ", - "description": "A detailed hands-on study of human structure using high-resolution models, specialized specimens and dissection of selected mammalian organs and tissues. Full Description " + "description": "A detailed hands-on study of human structure using high-resolution models, specialized specimens and dissection of selected mammalian organs and tissues." }, "BIOL3755": { "subject": "BIOL", "number": "3755", "name": "Human Physiology ", - "description": "Students will explore the function and adaptation of the human body emphasizing neuromuscular, cardio-respiratory, gastrointenstinal, endocrine, and urinary systems to maintain homeostasis and human health. Full Description " + "description": "Students will explore the function and adaptation of the human body emphasizing neuromuscular, cardio-respiratory, gastrointenstinal, endocrine, and urinary systems to maintain homeostasis and human health." }, "BIOL3756": { "subject": "BIOL", "number": "3756", "name": "Physiology Lab ", - "description": "A laboratory application of concepts in Physiology, providing hands-on experience focusing on primarily on non-invasive human experiments supplemented with in vitro tissues experiments. Full Description " + "description": "A laboratory application of concepts in Physiology, providing hands-on experience focusing on primarily on non-invasive human experiments supplemented with in vitro tissues experiments." }, "BIOL3813": { "subject": "BIOL", "number": "3813", "name": "Special Topics ", - "description": "Topics of current interest not covered in other courses in the department. Full Description " + "description": "Topics of current interest not covered in other courses in the department." }, "BIOL3XXX": { "subject": "BIOL", "number": "3XXX", "name": "Biology Elective ", - "description": " Full Description " + "description": "" }, "BIOL4012": { "subject": "BIOL", "number": "4012", "name": "Protein Biology ", - "description": "Biological view of proteins, including protein biosynthesis, processing, modification, folding, trafficking, interactions, degradation, natural and directed evolution, assembly diseases, amyloids, prions and protein-based inheritance. Full Description " + "description": "Biological view of proteins, including protein biosynthesis, processing, modification, folding, trafficking, interactions, degradation, natural and directed evolution, assembly diseases, amyloids, prions and protein-based inheritance." }, "BIOL4015": { "subject": "BIOL", "number": "4015", "name": "Cancer Bio/Tech ", - "description": "This course covers basic concepts of cancer biology and new technologies that are being developed to understand, detect, treat, and prevent cancer. Credit not allowed for both BIOL 4015 and BIOL 7015. Full Description " + "description": "This course covers basic concepts of cancer biology and new technologies that are being developed to understand, detect, treat, and prevent cancer. Credit not allowed for both BIOL 4015 and BIOL 7015." }, "BIOL4101": { "subject": "BIOL", "number": "4101", "name": "Sensory Ecology ", - "description": "A quantitative analyses of communication channels and information acquisition involving visual, auditory, mechanosensory, and olfactory modalities across a range of species and habitats. Full Description " + "description": "A quantitative analyses of communication channels and information acquisition involving visual, auditory, mechanosensory, and olfactory modalities across a range of species and habitats." }, "BIOL4105": { "subject": "BIOL", "number": "4105", "name": "Macromolecular Modeling ", - "description": "Principles and practices in the use of molecular mechanics methods (minimization; molecular dynamics) to study structure-function relationships in biological macromolecules. Full Description " + "description": "Principles and practices in the use of molecular mechanics methods (minimization; molecular dynamics) to study structure-function relationships in biological macromolecules." }, "BIOL4150": { "subject": "BIOL", "number": "4150", "name": "Genomics&Appl Bioinfor ", - "description": "Retrieval and analysis of biological sequence, gene expression, and proteomics data from public databases and other sources; applying standard bioinformatics tools to investigate biological questions. Credit not allowed for both BIOL 4150 and BIOL 6150. Full Description " + "description": "Retrieval and analysis of biological sequence, gene expression, and proteomics data from public databases and other sources; applying standard bioinformatics tools to investigate biological questions. Credit not allowed for both BIOL 4150 and BIOL 6150." }, "BIOL4221": { "subject": "BIOL", "number": "4221", "name": "Biological Oceanography ", - "description": "An introduction to the major biological processes in the ocean including primary production, elemental cycling, food webs, and fisheries. Full Description " + "description": "An introduction to the major biological processes in the ocean including primary production, elemental cycling, food webs, and fisheries." }, "BIOL4225": { "subject": "BIOL", "number": "4225", "name": "Molecular Evolution ", - "description": "Evolutionary processes at molecular level, organizations of genomes and genetic systems. Students will read and present up-to-date research articles in various topics in molecular evolution. Full Description " + "description": "Evolutionary processes at molecular level, organizations of genomes and genetic systems. Students will read and present up-to-date research articles in various topics in molecular evolution." }, "BIOL4340": { "subject": "BIOL", "number": "4340", "name": "Medical Microbiology ", - "description": "Advanced study of bacteria, protozoa, fungi, and viruses that cause human diseases; emphasis on epidemiology, mechanisms of disease causation, prevention, and treatment. Full Description " + "description": "Advanced study of bacteria, protozoa, fungi, and viruses that cause human diseases; emphasis on epidemiology, mechanisms of disease causation, prevention, and treatment." }, "BIOL4401": { "subject": "BIOL", "number": "4401", "name": "Exper Dgn&Statis Methods ", - "description": "Introductory course on experimental design, hypothesis testing and basic statistical techniques commonly applied in biological research. Exercises based on computer statistical software packages. Full Description " + "description": "Introductory course on experimental design, hypothesis testing and basic statistical techniques commonly applied in biological research. Exercises based on computer statistical software packages." }, "BIOL4410": { "subject": "BIOL", "number": "4410", "name": "Microbial Ecology ", - "description": "Advanced studies of microbial ecosystems, the specific roles of bacteria in maintaining ecological balance, and the evolution of the ecosystem in response to changing environments. Full Description " + "description": "Advanced studies of microbial ecosystems, the specific roles of bacteria in maintaining ecological balance, and the evolution of the ecosystem in response to changing environments." }, "BIOL4417": { "subject": "BIOL", "number": "4417", "name": "Marine Ecology ", - "description": "An overview of the physical forces and biotic interactions structuring marine communities and of the major threats to these communities. Credit not allowed for both BIOL 4417 and BIOL 6417. Full Description " + "description": "An overview of the physical forces and biotic interactions structuring marine communities and of the major threats to these communities. Credit not allowed for both BIOL 4417 and BIOL 6417." }, "BIOL4418": { "subject": "BIOL", "number": "4418", "name": "Microbial Physiology ", - "description": "Study of the physiology of growth and metabolic activities of microorganisms. Full Description " + "description": "Study of the physiology of growth and metabolic activities of microorganisms." }, "BIOL4422": { "subject": "BIOL", "number": "4422", "name": "Theoretical Ecology ", - "description": "Theoretical foundations of ecology, from the population to the community and ecosystem levels. Full Description " + "description": "Theoretical foundations of ecology, from the population to the community and ecosystem levels." }, "BIOL4428": { "subject": "BIOL", "number": "4428", "name": "Population Dynamics ", - "description": "Students will examine the ecological factors that affect dynamics, regulation, and evolution of natural populations, emphasizing the connections with mathematical models, genetics, and ecology. Credit will not be awarded for both BIOL 4428 and BIOL 6428. Full Description " + "description": "Students will examine the ecological factors that affect dynamics, regulation, and evolution of natural populations, emphasizing the connections with mathematical models, genetics, and ecology. Credit will not be awarded for both BIOL 4428 and BIOL 6428." }, "BIOL4440": { "subject": "BIOL", "number": "4440", "name": "Plant Physiology ", - "description": "Chemical transformation in photosynthesis, photophysiology and water relationships, organic nutrition and effects of hormones on growth and development of plants. Full Description " + "description": "Chemical transformation in photosynthesis, photophysiology and water relationships, organic nutrition and effects of hormones on growth and development of plants." }, "BIOL4446": { "subject": "BIOL", "number": "4446", "name": "Animal Physiology ", - "description": "Systems physiology including nerves, muscles, kidney, digestion, circulation, endocrinology, reproduction, and respiration. Full Description " + "description": "Systems physiology including nerves, muscles, kidney, digestion, circulation, endocrinology, reproduction, and respiration." }, "BIOL4460": { "subject": "BIOL", "number": "4460", "name": "Comm Biological Research ", - "description": "Students learn to convey the importance of research findings in the biological sciences and to critically evaluate research results through discussions and scientific presentations. Credit will not be awarded for both BIOL 4450 and BIOL 4460. Full Description " + "description": "Students learn to convey the importance of research findings in the biological sciences and to critically evaluate research results through discussions and scientific presentations. Credit will not be awarded for both BIOL 4450 and BIOL 4460." }, "BIOL4464": { "subject": "BIOL", "number": "4464", "name": "Developmental Biology ", - "description": "Investigations of cell differentiation and development using the tools of molecular genetics and cell biology. Full Description " + "description": "Investigations of cell differentiation and development using the tools of molecular genetics and cell biology." }, "BIOL4471": { "subject": "BIOL", "number": "4471", "name": "Behavior Biology ", - "description": "An introduction to the study of the principles of behavior of all kinds of organisms, from microbes to mammals. Full Description " + "description": "An introduction to the study of the principles of behavior of all kinds of organisms, from microbes to mammals." }, "BIOL4478": { "subject": "BIOL", "number": "4478", "name": "Biophysics ", - "description": "Biophysical aspects of nucleic acids, proteins, and their interactions. Full Description " + "description": "Biophysical aspects of nucleic acids, proteins, and their interactions." }, "BIOL4480": { "subject": "BIOL", "number": "4480", "name": "Evolution-Develop Biol ", - "description": "This course teaches students how the process of development from embryo to adult impacts evolutionary diversity and human health. Credit not allowed for both BIOL 4480 and BIOL 6480. Full Description " + "description": "This course teaches students how the process of development from embryo to adult impacts evolutionary diversity and human health. Credit not allowed for both BIOL 4480 and BIOL 6480." }, "BIOL4545": { "subject": "BIOL", "number": "4545", "name": "Human Genetics ", - "description": "Introduction to the genetics and evolution of complex human traits, focusing on contemporary approaches to understanding susceptibility to malignant, metabolic, immune and psychological diseases. Full Description " + "description": "Introduction to the genetics and evolution of complex human traits, focusing on contemporary approaches to understanding susceptibility to malignant, metabolic, immune and psychological diseases." }, "BIOL4570": { "subject": "BIOL", "number": "4570", "name": "Immunology & Immunochem ", - "description": "A survey of modern immunology and its applications. Full Description " + "description": "A survey of modern immunology and its applications." }, "BIOL4590": { "subject": "BIOL", "number": "4590", "name": "Research Project Lab ", - "description": "Experience in designing, implementing, and communicating a biology research project, and practical training in modern approaches for biological research. Full Description " + "description": "Experience in designing, implementing, and communicating a biology research project, and practical training in modern approaches for biological research." }, "BIOL4607": { "subject": "BIOL", "number": "4607", "name": "Molecular Microbiology ", - "description": "Molecular genetics of bacteria with an emphasis on experimental approaches, regulatory mechanisms in disease-causing and environmental bacteria, and biotechnology applications derived from microbes. Credit not awarded for both BIOL 4607 and BIOL 4608 or BIOL 4607 and BIOL 6608 or BIOL 4607 and BIOL 6607. Full Description " + "description": "Molecular genetics of bacteria with an emphasis on experimental approaches, regulatory mechanisms in disease-causing and environmental bacteria, and biotechnology applications derived from microbes. Credit not awarded for both BIOL 4607 and BIOL 4608 or BIOL 4607 and BIOL 6608 or BIOL 4607 and BIOL 6607." }, "BIOL4608": { "subject": "BIOL", "number": "4608", "name": "Prokaryotic Mole Genetics ", - "description": "The molecular genetics of bacteria and their viruses, with emphasis in the organization, replication, expression, transfer and experimental manipulation of prokaryotic genes and genomes. Credit not allowed for both BIOL 4220 and BIOL 4608 or BIOL 4608 and BIOL 4607 or BIOL 4608 and BIOL 6607. Full Description " + "description": "The molecular genetics of bacteria and their viruses, with emphasis in the organization, replication, expression, transfer and experimental manipulation of prokaryotic genes and genomes. Credit not allowed for both BIOL 4220 and BIOL 4608 or BIOL 4608 and BIOL 4607 or BIOL 4608 and BIOL 6607." }, "BIOL4620": { "subject": "BIOL", "number": "4620", "name": "Aquatic Chemical Ecology ", - "description": "Focuses on understanding the chemical mechanisms of aquatic signaling and the cascading effects on population regulation, community organization, and ecosystem function. Credit not allowed for both BIOL 4620 and BIOL 6620. Full Description " + "description": "Focuses on understanding the chemical mechanisms of aquatic signaling and the cascading effects on population regulation, community organization, and ecosystem function. Credit not allowed for both BIOL 4620 and BIOL 6620." }, "BIOL4650": { "subject": "BIOL", "number": "4650", "name": "Bioethics ", - "description": "This course will examine the process of scientific inquiry and the ethical implications of research in the biological sciences. Full Description " + "description": "This course will examine the process of scientific inquiry and the ethical implications of research in the biological sciences." }, "BIOL4668": { "subject": "BIOL", "number": "4668", "name": "Eukaryotic Mol Genetics ", - "description": "Topics in molecular genetics, including genetic engineering techniques, gene expression and regulation, genetic structure, stability and evolution, with emphasis on eukaryotic organisms. Full Description " + "description": "Topics in molecular genetics, including genetic engineering techniques, gene expression and regulation, genetic structure, stability and evolution, with emphasis on eukaryotic organisms." }, "BIOL4690": { "subject": "BIOL", "number": "4690", "name": "Independnt Research Proj ", - "description": "Independent research with proposal and manuscript writing, conducted with the guidance of a faculty member. Full Description " + "description": "Independent research with proposal and manuscript writing, conducted with the guidance of a faculty member." }, "BIOL4694": { "subject": "BIOL", "number": "4694", "name": "Intern Assistantship ", - "description": "Biology Undergraduate Internship for pay for juniors and seniors, by permit only. The internship experience must at a unit or agency approved by the School of Biology. Full Description " + "description": "Biology Undergraduate Internship for pay for juniors and seniors, by permit only. The internship experience must at a unit or agency approved by the School of Biology." }, "BIOL4695": { "subject": "BIOL", "number": "4695", "name": "Undergraduate Internship ", - "description": "Biology Undergraduate Internship for credit for juniors and seniors, by permit only. The internship experience must be at a unit or agency approved by the School of Biology. Full Description " + "description": "Biology Undergraduate Internship for credit for juniors and seniors, by permit only. The internship experience must be at a unit or agency approved by the School of Biology." }, "BIOL4696": { "subject": "BIOL", "number": "4696", "name": "Biol Teaching Assistant ", - "description": "Biology teaching carried out under the guidance of a faculty member. Credit not allowed for both BIOL 4696 and BIOL 4697. Full Description " + "description": "Biology teaching carried out under the guidance of a faculty member. Credit not allowed for both BIOL 4696 and BIOL 4697." }, "BIOL4697": { "subject": "BIOL", "number": "4697", "name": "Biol Undergrad Teaching ", - "description": "An introduction to teaching biology for undergraduate teaching assistants, with a focus on effective teaching active engagement of students, and development of innovative classroom activities. Credit not allowed for both BIOL 4696 and BIOL 4697. Full Description " + "description": "An introduction to teaching biology for undergraduate teaching assistants, with a focus on effective teaching active engagement of students, and development of innovative classroom activities. Credit not allowed for both BIOL 4696 and BIOL 4697." }, "BIOL4698": { "subject": "BIOL", "number": "4698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "BIOL4699": { "subject": "BIOL", "number": "4699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "BIOL4740": { "subject": "BIOL", "number": "4740", "name": "Bio-Inspired Design ", - "description": "We examine evolutionary adaptation as a source for engineering design inspiration, utilizing principles of scaling, adaptability, and robust multifunctionality that characterize biological systems. Credit not allowed for both BIOL 4740 and (ISYE 4740 or PTFE 4740 or MSE 4740 or ME 4740). Full Description " + "description": "We examine evolutionary adaptation as a source for engineering design inspiration, utilizing principles of scaling, adaptability, and robust multifunctionality that characterize biological systems. Credit not allowed for both BIOL 4740 and (ISYE 4740 or PTFE 4740 or MSE 4740 or ME 4740)." }, "BIOL4746": { "subject": "BIOL", "number": "4746", "name": "Signaling Molecules ", - "description": "The diversity of chemical signals between organisms and their structural specifications will be presented along with chemical and biological methods for isolating signaling molecules. Full Description " + "description": "The diversity of chemical signals between organisms and their structural specifications will be presented along with chemical and biological methods for isolating signaling molecules." }, "BIOL4752": { "subject": "BIOL", "number": "4752", "name": "Intro Neuroscience ", - "description": "Goals are to understand the components of the nervous system and their functional interactions, and appreciate the complexity of higher order brain functions and pathways. Crosslisted with BMED 4752. Full Description " + "description": "Goals are to understand the components of the nervous system and their functional interactions, and appreciate the complexity of higher order brain functions and pathways. Crosslisted with BMED 4752." }, "BIOL4755": { "subject": "BIOL", "number": "4755", "name": "Mathematical Biology ", - "description": "An introduction to practical applications of mathematical models to help unravel the underlying mechanisms involved in biological processes. Crosslisted with MATH 4755. Full Description " + "description": "An introduction to practical applications of mathematical models to help unravel the underlying mechanisms involved in biological processes. Crosslisted with MATH 4755." }, "BIOL4801": { "subject": "BIOL", "number": "4801", "name": "Special Topics ", - "description": "This designation enables the School of Biology to provide new lecture courses dealing with areas of current interest in biological science. Full Description " + "description": "This designation enables the School of Biology to provide new lecture courses dealing with areas of current interest in biological science." }, "BIOL4802": { "subject": "BIOL", "number": "4802", "name": "Special Topics ", - "description": "This designation enables the School of Biology to provide new lecture courses dealing with areas of current interest in biological science. Full Description " + "description": "This designation enables the School of Biology to provide new lecture courses dealing with areas of current interest in biological science." }, "BIOL4803": { "subject": "BIOL", "number": "4803", "name": "Special Topics ", - "description": "This designation enables the School of Biology to provide new lecture courses dealing with areas of current interest in biological science. Full Description " + "description": "This designation enables the School of Biology to provide new lecture courses dealing with areas of current interest in biological science." }, "BIOL4804": { "subject": "BIOL", "number": "4804", "name": "Special Topics ", - "description": "This designation enables the School of Biology to provide new lecture courses dealing with areas of current interest in biological science. Full Description " + "description": "This designation enables the School of Biology to provide new lecture courses dealing with areas of current interest in biological science." }, "BIOL4805": { "subject": "BIOL", "number": "4805", "name": "Special Topics ", - "description": "This designation enables the School of Biology to provide new lecture courses dealing with areas of current interest in biological science. Full Description " + "description": "This designation enables the School of Biology to provide new lecture courses dealing with areas of current interest in biological science." }, "BIOL4901": { "subject": "BIOL", "number": "4901", "name": "Special Problems ", - "description": "Research problem in biology under supervision of a faculty member. To be offered any term with credit to be arranged. Seven hours (four hours technical electives + three hours free elective) are the maximum credits allowed toward the Bachelor of Science in Biology degree. Full Description " + "description": "Research problem in biology under supervision of a faculty member. To be offered any term with credit to be arranged. Seven hours (four hours technical electives + three hours free elective) are the maximum credits allowed toward the Bachelor of Science in Biology degree." }, "BIOL4902": { "subject": "BIOL", "number": "4902", "name": "Special Problems ", - "description": "Research problem in biology under supervision of a faculty member. To be offered any quarter with credit to be arranged. Seven hours (four hours technical electives + three hours free electives) are the maximum credits allowed toward the Bachelor of Science in Biology degree. Full Description " + "description": "Research problem in biology under supervision of a faculty member. To be offered any quarter with credit to be arranged. Seven hours (four hours technical electives + three hours free electives) are the maximum credits allowed toward the Bachelor of Science in Biology degree." }, "BIOL4903": { "subject": "BIOL", "number": "4903", "name": "Special Problems ", - "description": "Research problem in biology under supervision of a faculty member. To be offered any quarter with credit to be arranged. Seven hours (four hours technical electives + three hours free electives) are the maximum credits allowed toward the Bachelor of Science in Biology degree. Full Description " + "description": "Research problem in biology under supervision of a faculty member. To be offered any quarter with credit to be arranged. Seven hours (four hours technical electives + three hours free electives) are the maximum credits allowed toward the Bachelor of Science in Biology degree." }, "BIOL4904": { "subject": "BIOL", "number": "4904", "name": "Special Problems ", - "description": "Research problem in biology under supervision of a faculty member. To be offered any quarter with credit to be arranged. Seven hours ( four hours technical electives + three hours free electives) are the maximum credits allowed toward the Bachelor of Science in Biology degree. Full Description " + "description": "Research problem in biology under supervision of a faculty member. To be offered any quarter with credit to be arranged. Seven hours ( four hours technical electives + three hours free electives) are the maximum credits allowed toward the Bachelor of Science in Biology degree." }, "BIOL4905": { "subject": "BIOL", "number": "4905", "name": "Special Problems ", - "description": "Special problem in biology under supervision of a faculty member. To be offered any quarter with credit to be arranged. Seven hours (four hours technical electives + three hours free electives) are the maximum credits allowed toward the Bachelor of Science in Biology degree. Full Description " + "description": "Special problem in biology under supervision of a faculty member. To be offered any quarter with credit to be arranged. Seven hours (four hours technical electives + three hours free electives) are the maximum credits allowed toward the Bachelor of Science in Biology degree." }, "BIOL4910": { "subject": "BIOL", "number": "4910", "name": "Honors Research Thesis ", - "description": "Writing and submission of an Undergraduate Research Thesis describing research accomplishments with a biology faculty member. Full Description " + "description": "Writing and submission of an Undergraduate Research Thesis describing research accomplishments with a biology faculty member." }, "BIOL4XXX": { "subject": "BIOL", "number": "4XXX", "name": "Biology Elective ", - "description": " Full Description " + "description": "" }, "BIOL6150": { "subject": "BIOL", "number": "6150", "name": "Genomics Appl Bioinf ", - "description": "Retrieval and analysis of biological sequence, gene expression, and proteomics data from public databases and other sources; applying standard bioinformatics tools to investigate biological questions. Credit not allowed for both BIOL 6150 and BIOL 4150. Full Description " + "description": "Retrieval and analysis of biological sequence, gene expression, and proteomics data from public databases and other sources; applying standard bioinformatics tools to investigate biological questions. Credit not allowed for both BIOL 6150 and BIOL 4150." }, "BIOL6221": { "subject": "BIOL", "number": "6221", "name": "Biological Oceanography ", - "description": "An introduction to the major biological processes in the ocean, including primary production, elemental cycling, food webs, and fisheries. Full Description " + "description": "An introduction to the major biological processes in the ocean, including primary production, elemental cycling, food webs, and fisheries." }, "BIOL6410": { "subject": "BIOL", "number": "6410", "name": "Microbial Ecology ", - "description": "Advanced studies of microbial ecosystems, the specific roles of bacteria in maintaining ecological balance, and the evolution of the ecosystem in response to changing environments. Full Description " + "description": "Advanced studies of microbial ecosystems, the specific roles of bacteria in maintaining ecological balance, and the evolution of the ecosystem in response to changing environments." }, "BIOL6417": { "subject": "BIOL", "number": "6417", "name": "Marine Ecology ", - "description": "An overview of the ecological and evolutionary patterns, processes, and mechanisms affecting the organization, structure, and function of a broad variety of marine communities. Credit not allowed for both BIOL 6417 and BIOL 4417. Full Description " + "description": "An overview of the ecological and evolutionary patterns, processes, and mechanisms affecting the organization, structure, and function of a broad variety of marine communities. Credit not allowed for both BIOL 6417 and BIOL 4417." }, "BIOL6418": { "subject": "BIOL", "number": "6418", "name": "Microbial Physiology ", - "description": "Study of the physiology of growth and metabolic activities of microorganisms. Full Description " + "description": "Study of the physiology of growth and metabolic activities of microorganisms." }, "BIOL6422": { "subject": "BIOL", "number": "6422", "name": "Theoretical Ecology ", - "description": "Theoretical foundations of ecology, from the population to the community and ecosystem levels. Full Description " + "description": "Theoretical foundations of ecology, from the population to the community and ecosystem levels." }, "BIOL6478": { "subject": "BIOL", "number": "6478", "name": "Methods Molec Biophysics ", - "description": "An introduction to biophysical methods that are employed to study biological macromolecules and their interaction to gain understanding of how they function. Credit not allowed for both BIOL 6478 and BIOL 4478. Full Description " + "description": "An introduction to biophysical methods that are employed to study biological macromolecules and their interaction to gain understanding of how they function. Credit not allowed for both BIOL 6478 and BIOL 4478." }, "BIOL6480": { "subject": "BIOL", "number": "6480", "name": "Evolution-Develop Biol ", - "description": "This course teaches students how the process of development from embryo to adult impacts evolutionary diversity and human health. Credit not allowed for both BIOL 6480 and BIOL 4480. Full Description " + "description": "This course teaches students how the process of development from embryo to adult impacts evolutionary diversity and human health. Credit not allowed for both BIOL 6480 and BIOL 4480." }, "BIOL6570": { "subject": "BIOL", "number": "6570", "name": "Immunology ", - "description": "A survey of modern immunology and its applications, with emphasis on immunological methods used in molecular and cell biological research. Full Description " + "description": "A survey of modern immunology and its applications, with emphasis on immunological methods used in molecular and cell biological research." }, "BIOL6600": { "subject": "BIOL", "number": "6600", "name": "Evolution ", - "description": "An introduction to evolutionary patterns and processes, including the history of life, phylogenetics, population genetics, quantitative genetics, molecular evolution, and other important topics in evolutionary biology. Full Description " + "description": "An introduction to evolutionary patterns and processes, including the history of life, phylogenetics, population genetics, quantitative genetics, molecular evolution, and other important topics in evolutionary biology." }, "BIOL6608": { "subject": "BIOL", "number": "6608", "name": "Prokaryotic Molec Gene ", - "description": "Molecular mechanisms of bacterial and plasmid genetic processes. Topics covered include genome organization, DNA replication, transcription, and translation. Credit will not be awarded for both BIOL 6608 and BIOL 4607 or BIOL 6608 and BIOL 6607. Full Description " + "description": "Molecular mechanisms of bacterial and plasmid genetic processes. Topics covered include genome organization, DNA replication, transcription, and translation. Credit will not be awarded for both BIOL 6608 and BIOL 4607 or BIOL 6608 and BIOL 6607." }, "BIOL6611": { "subject": "BIOL", "number": "6611", "name": "Adv Microbial Physiology ", - "description": "Advanced studies of selected aspects of the physiololgy of prokaryotic and eukaryotic microorganisms. Full Description " + "description": "Advanced studies of selected aspects of the physiololgy of prokaryotic and eukaryotic microorganisms." }, "BIOL6620": { "subject": "BIOL", "number": "6620", "name": "Aquatic Chemical Ecology ", - "description": "The course focuses on understanding the chemical mechanisms of aquatic signaling and the cascading effects on population regulation, community organization, and ecosystem function. Credit not allowed for both BIOL 6620 and BIOL 4620. Full Description " + "description": "The course focuses on understanding the chemical mechanisms of aquatic signaling and the cascading effects on population regulation, community organization, and ecosystem function. Credit not allowed for both BIOL 6620 and BIOL 4620." }, "BIOL6623": { "subject": "BIOL", "number": "6623", "name": "Exper-Aquatic Signaling ", - "description": "A full-time commitment to student-originated, but faculty-guided, interdisciplinary research in aquatic chemical signaling using field, lab, and flume facilities at Skidaway Institution of Oceanography on the coast. Full Description " + "description": "A full-time commitment to student-originated, but faculty-guided, interdisciplinary research in aquatic chemical signaling using field, lab, and flume facilities at Skidaway Institution of Oceanography on the coast." }, "BIOL6626": { "subject": "BIOL", "number": "6626", "name": "Physiological Ecology ", - "description": "Study of the basic physiological processes and systems in vertebrates and invertebrates. Comparative study on how these systems are adapted for specific environments and functions. Full Description " + "description": "Study of the basic physiological processes and systems in vertebrates and invertebrates. Comparative study on how these systems are adapted for specific environments and functions." }, "BIOL6628": { "subject": "BIOL", "number": "6628", "name": "Aquatic Toxicology ", - "description": "Study of the biological effects of toxicants on aquatic organisms-mechanisms of toxicity, biotransformation, toxicity tests, ecological risk assessment. Full Description " + "description": "Study of the biological effects of toxicants on aquatic organisms-mechanisms of toxicity, biotransformation, toxicity tests, ecological risk assessment." }, "BIOL6630": { "subject": "BIOL", "number": "6630", "name": "Adv Microbial Ecology ", - "description": "Advanced studies of selected aspects of the ecology of prokaryotic and eukaryotic organisms. Full Description " + "description": "Advanced studies of selected aspects of the ecology of prokaryotic and eukaryotic organisms." }, "BIOL6720": { "subject": "BIOL", "number": "6720", "name": "Env Microbial Genomics ", - "description": "To introduce advanced concepts and principles of contemporary environmental microbiological research and assosciated bioinformatics techniques through representative examples from recent literature. Full Description " + "description": "To introduce advanced concepts and principles of contemporary environmental microbiological research and assosciated bioinformatics techniques through representative examples from recent literature." }, "BIOL6756": { "subject": "BIOL", "number": "6756", "name": "Signaling Molecules ", - "description": "The diversity of chemical signals between organisms and their structural specificities will be presented along with chemical and biological methods for isolating signaling molecules. Crosslisted with CEE 6756 and CHEM 6756. Full Description " + "description": "The diversity of chemical signals between organisms and their structural specificities will be presented along with chemical and biological methods for isolating signaling molecules. Crosslisted with CEE 6756 and CHEM 6756." }, "BIOL6765": { "subject": "BIOL", "number": "6765", "name": "Geomicrobiology ", - "description": "Interactions between microorganisms and the geosphere, microbial energetics and genetics; geochemical controls on microbial diversity and activity. Crosslisted with EAS 6765. Full Description " + "description": "Interactions between microorganisms and the geosphere, microbial energetics and genetics; geochemical controls on microbial diversity and activity. Crosslisted with EAS 6765." }, "BIOL6XXX": { "subject": "BIOL", "number": "6XXX", "name": "Biology Elective ", - "description": " Full Description " + "description": "" }, "BIOL7000": { "subject": "BIOL", "number": "7000", "name": "Master's Thesis ", - "description": " Full Description " + "description": "" }, "BIOL7001": { "subject": "BIOL", "number": "7001", "name": "Found-Molecul&Cell Biol ", - "description": "The goal of this course is to provide new students with fundamental knowledge in the general areas of prokaryotic and eukaryotic molecular biology, biochemistry, structural biology, and bioinformatics. Full Description " + "description": "The goal of this course is to provide new students with fundamental knowledge in the general areas of prokaryotic and eukaryotic molecular biology, biochemistry, structural biology, and bioinformatics." }, "BIOL7010": { "subject": "BIOL", "number": "7010", "name": "Advanced Cell Biology ", - "description": "Current topics in eukarytotic cell biology including membrane functions, intracellular sorting and compartmentalization, cell signaling, cell cycle, cytoskeleton, cell adhesion, motility, and current experimental approaches. Full Description " + "description": "Current topics in eukarytotic cell biology including membrane functions, intracellular sorting and compartmentalization, cell signaling, cell cycle, cytoskeleton, cell adhesion, motility, and current experimental approaches." }, "BIOL7015": { "subject": "BIOL", "number": "7015", "name": "Cancer Biol/Tech ", - "description": "This course covers the major concepts of cancer biology as well as to state-of-the-art technologies that are being applied to cancer research, detection and treatment. Credit not allowed for both BIOL 7015 and BIOL 4015. Full Description " + "description": "This course covers the major concepts of cancer biology as well as to state-of-the-art technologies that are being applied to cancer research, detection and treatment. Credit not allowed for both BIOL 7015 and BIOL 4015." }, "BIOL7023": { "subject": "BIOL", "number": "7023", "name": "Bioinformatics ", - "description": "Introduction to mathematical, statistical, and computer methods of nucleic acid and protein sequence analysis and interpretation. Algorithms for gene finding, protein structure and function prediction, constructing phylogenetic trees. Full Description " + "description": "Introduction to mathematical, statistical, and computer methods of nucleic acid and protein sequence analysis and interpretation. Algorithms for gene finding, protein structure and function prediction, constructing phylogenetic trees." }, "BIOL7101": { "subject": "BIOL", "number": "7101", "name": "Advanced Sensory Ecology ", - "description": "A quantitative analysis of how organisms of all kinds obtain information about their environment, and how they use it to guide locomotions. Full Description " + "description": "A quantitative analysis of how organisms of all kinds obtain information about their environment, and how they use it to guide locomotions." }, "BIOL7110": { "subject": "BIOL", "number": "7110", "name": "Macromolecular Modeling ", - "description": "Principles and practices in the use of molecular mechanics methods (minimization: molecular dynamics) to study structure-function relationships in biological macromolecules. Full Description " + "description": "Principles and practices in the use of molecular mechanics methods (minimization: molecular dynamics) to study structure-function relationships in biological macromolecules." }, "BIOL7111": { "subject": "BIOL", "number": "7111", "name": "Molecular Evolution ", - "description": "Evolutionary processes at the molecular level, organizations of genomes and genetic systems. Students will read and present up-to-date research articles in various topics in molecular evolution. Full Description " + "description": "Evolutionary processes at the molecular level, organizations of genomes and genetic systems. Students will read and present up-to-date research articles in various topics in molecular evolution." }, "BIOL7210": { "subject": "BIOL", "number": "7210", "name": "Computational Genomics ", - "description": "In this active learning class, students will learn to convert sequence information into knowledge through the use of computational genomics tools, applications and databases. Full Description " + "description": "In this active learning class, students will learn to convert sequence information into knowledge through the use of computational genomics tools, applications and databases." }, "BIOL7668": { "subject": "BIOL", "number": "7668", "name": "Eukaryotic Molec Genetic ", - "description": "Topics in molecular genetics of eukaryotic organisms, including: gene structure and expression, protein processing and folding, genome stability, and molecular evolution. Full Description " + "description": "Topics in molecular genetics of eukaryotic organisms, including: gene structure and expression, protein processing and folding, genome stability, and molecular evolution." }, "BIOL7913": { "subject": "BIOL", "number": "7913", "name": "Advances in Microbiology ", - "description": "Topics of current interest in microbial physiology, applied microbiology, microbial ecology, and medical microbiology. Full Description " + "description": "Topics of current interest in microbial physiology, applied microbiology, microbial ecology, and medical microbiology." }, "BIOL7914": { "subject": "BIOL", "number": "7914", "name": "Advances in Bacteriology ", - "description": "Topics of current interest in the physiology and ecology of bacteria and applications to practical problems. Full Description " + "description": "Topics of current interest in the physiology and ecology of bacteria and applications to practical problems." }, "BIOL7923": { "subject": "BIOL", "number": "7923", "name": "Advances in Ecology ", - "description": "Topics of current interest in the general areas of population growth and limitation, and the structure and stability of ecosystems. Full Description " + "description": "Topics of current interest in the general areas of population growth and limitation, and the structure and stability of ecosystems." }, "BIOL7924": { "subject": "BIOL", "number": "7924", "name": "Adv-Environmental Biol ", - "description": "Topics of current interest in environmental biology. Full Description " + "description": "Topics of current interest in environmental biology." }, "BIOL7963": { "subject": "BIOL", "number": "7963", "name": "Advances-Molecular Biol ", - "description": "Topics of current interest in molecular biology. Full Description " + "description": "Topics of current interest in molecular biology." }, "BIOL7964": { "subject": "BIOL", "number": "7964", "name": "Advances in Genetics ", - "description": "Topics of current interest in genetics. Full Description " + "description": "Topics of current interest in genetics." }, "BIOL8000": { "subject": "BIOL", "number": "8000", "name": "Integrative Biol Seminar ", - "description": "A reading and discussion course structured around the School of Biology weekly seminar. Full Description " + "description": "A reading and discussion course structured around the School of Biology weekly seminar." }, "BIOL8001": { "subject": "BIOL", "number": "8001", "name": "Seminar ", - "description": "Presentation of research seminar. Full Description " + "description": "Presentation of research seminar." }, "BIOL8002": { "subject": "BIOL", "number": "8002", "name": "Seminar ", - "description": "Weekly seminars on current research presented by various scientists in the field of biology. Full Description " + "description": "Weekly seminars on current research presented by various scientists in the field of biology." }, "BIOL8003": { "subject": "BIOL", "number": "8003", "name": "Seminar ", - "description": "Weekly seminars on current research presented by various scientists in the field of biology. Full Description " + "description": "Weekly seminars on current research presented by various scientists in the field of biology." }, "BIOL8005": { "subject": "BIOL", "number": "8005", "name": "Signals in the Sea Sem ", - "description": "Students and invited authorities in the field will present seminars and lead discussions focused on currently emerging topics in aquatic chemical ecology and signaling. Full Description " + "description": "Students and invited authorities in the field will present seminars and lead discussions focused on currently emerging topics in aquatic chemical ecology and signaling." }, "BIOL8006": { "subject": "BIOL", "number": "8006", "name": "Integrative Systems Biol ", - "description": "This course will investigate, using samples from the literature and faculty research, the general principles of biological systems, from gene expression circuits to ecological communities. Full Description " + "description": "This course will investigate, using samples from the literature and faculty research, the general principles of biological systems, from gene expression circuits to ecological communities." }, "BIOL8106": { "subject": "BIOL", "number": "8106", "name": "Tools of Science Seminar ", - "description": "This course addresses issues important to all successful scientists and engineers such as: research ethics; collaborations between industry, academics, and government; women and minorities in science; balancing research, teaching and service; writing, editing, and reviewing, presentations; job interviews; time management; speaking to the public and media; and scientific and university politics. Full Description " + "description": "This course addresses issues important to all successful scientists and engineers such as: research ethics; collaborations between industry, academics, and government; women and minorities in science; balancing research, teaching and service; writing, editing, and reviewing, presentations; job interviews; time management; speaking to the public and media; and scientific and university politics." }, "BIOL8801": { "subject": "BIOL", "number": "8801", "name": "Special Topics ", - "description": "New graduate lecture courses in areas of current interest. Full Description " + "description": "New graduate lecture courses in areas of current interest." }, "BIOL8802": { "subject": "BIOL", "number": "8802", "name": "Special Topics ", - "description": "New graduate lecture courses in areas of current interest. Full Description " + "description": "New graduate lecture courses in areas of current interest." }, "BIOL8803": { "subject": "BIOL", "number": "8803", "name": "Special Topics ", - "description": "New graduate lecture courses in areas of current interest. Full Description " + "description": "New graduate lecture courses in areas of current interest." }, "BIOL8804": { "subject": "BIOL", "number": "8804", "name": "Special Topics ", - "description": "New graduate lecture courses in areas of current interest. Full Description " + "description": "New graduate lecture courses in areas of current interest." }, "BIOL8805": { "subject": "BIOL", "number": "8805", "name": "Special Topics ", - "description": "New graduate lecture courses in areas of current interest. Full Description " + "description": "New graduate lecture courses in areas of current interest." }, "BIOL8901": { "subject": "BIOL", "number": "8901", "name": "Special Problems ", - "description": "Research problems in biology under the supervision of a faculty member. Full Description " + "description": "Research problems in biology under the supervision of a faculty member." }, "BIOL8902": { "subject": "BIOL", "number": "8902", "name": "Special Problems ", - "description": "Research problems in biology under the supervision of a faculty member. Full Description " + "description": "Research problems in biology under the supervision of a faculty member." }, "BIOL8997": { "subject": "BIOL", "number": "8997", "name": "Teaching Assistantship ", - "description": "For graduate students holding a teaching assistantship. Full Description " + "description": "For graduate students holding a teaching assistantship." }, "BIOL8998": { "subject": "BIOL", "number": "8998", "name": "Research Assistantship ", - "description": "For graduate students holding research assistantships. Full Description " + "description": "For graduate students holding research assistantships." }, "BIOL9000": { "subject": "BIOL", "number": "9000", "name": "Doctoral Thesis ", - "description": " Full Description " + "description": "" }, "BMED1000": { "subject": "BMED", "number": "1000", "name": "Intro to Biomedical Engr ", - "description": "An introduction to the field of biomedical engineering, with an emphasis on career preparation. Full Description " + "description": "An introduction to the field of biomedical engineering, with an emphasis on career preparation." }, "BMED1300": { "subject": "BMED", "number": "1300", "name": "Problems-Biomed Engr I ", - "description": "Biomedical engineering problems from industrial and clinical applications are addressed and solved in small groups using problem-based learning methodologies. Full Description " + "description": "Biomedical engineering problems from industrial and clinical applications are addressed and solved in small groups using problem-based learning methodologies." }, "BMED1750": { "subject": "BMED", "number": "1750", "name": "Intro to Bioengineering ", - "description": "An introduction to the field of bioengineering, including the application of engineering principles and methods to problems in biology and medicine, the integration of engineering with biology, and the emerging industrial opportunities. Crosslisted with AE, CHE, ECE, ME, and MSE 1750. Full Description " + "description": "An introduction to the field of bioengineering, including the application of engineering principles and methods to problems in biology and medicine, the integration of engineering with biology, and the emerging industrial opportunities. Crosslisted with AE, CHE, ECE, ME, and MSE 1750." }, "BMED1801": { "subject": "BMED", "number": "1801", "name": "Special Topics ", - "description": "Courses in special topics of current interest not included in the regular course offerings. Full Description " + "description": "Courses in special topics of current interest not included in the regular course offerings." }, "BMED1802": { "subject": "BMED", "number": "1802", "name": "Special Topics ", - "description": "Courses in special topics of current interest not included in the regular course offerings. Full Description " + "description": "Courses in special topics of current interest not included in the regular course offerings." }, "BMED1803": { "subject": "BMED", "number": "1803", "name": "Special Topics ", - "description": "Courses in special topics of current interest not included in the regular course offerings. Full Description " + "description": "Courses in special topics of current interest not included in the regular course offerings." }, "BMED1804": { "subject": "BMED", "number": "1804", "name": "Special Topics ", - "description": "Courses in special topics of current interest not included in the regular course offerings. Full Description " + "description": "Courses in special topics of current interest not included in the regular course offerings." }, "BMED1805": { "subject": "BMED", "number": "1805", "name": "Special Topics ", - "description": "Courses in special topics of current interest not included in the regular course offerings. Full Description " + "description": "Courses in special topics of current interest not included in the regular course offerings." }, "BMED1811": { "subject": "BMED", "number": "1811", "name": "Special Topics ", - "description": "Courses in special topics of current interest not included in the regular course offerings. Full Description " + "description": "Courses in special topics of current interest not included in the regular course offerings." }, "BMED1812": { "subject": "BMED", "number": "1812", "name": "Special Topics ", - "description": "Courses in special topics of current interest not included in the regular course offerings. Full Description " + "description": "Courses in special topics of current interest not included in the regular course offerings." }, "BMED1813": { "subject": "BMED", "number": "1813", "name": "Special Topics ", - "description": "Courses in special topics of current interest not included in the regular course offerings. Full Description " + "description": "Courses in special topics of current interest not included in the regular course offerings." }, "BMED1814": { "subject": "BMED", "number": "1814", "name": "Special Topics ", - "description": "Courses in special topics of current interest not included in the regular course offerings. Full Description " + "description": "Courses in special topics of current interest not included in the regular course offerings." }, "BMED1815": { "subject": "BMED", "number": "1815", "name": "Special Topics ", - "description": "Courses in special topics of current interest not included in the regular course offerings. Full Description " + "description": "Courses in special topics of current interest not included in the regular course offerings." }, "BMED1XXX": { "subject": "BMED", "number": "1XXX", "name": "Bioengineering Elective ", - "description": " Full Description " + "description": "" }, "BMED2210": { "subject": "BMED", "number": "2210", "name": "Conservation Prin in BME ", - "description": "A study of material and energy balances applied to problems in biomedical engineering. Full Description " + "description": "A study of material and energy balances applied to problems in biomedical engineering." }, "BMED2250": { "subject": "BMED", "number": "2250", "name": "Problems in Biomed Engr ", - "description": "Biomedical engineering problems from industrial and clinical applications are addressed and solved in small groups using problem-based learning methodologies. Credit will not be awarded for both BMED 2250 and BMED 1300. Full Description " + "description": "Biomedical engineering problems from industrial and clinical applications are addressed and solved in small groups using problem-based learning methodologies. Credit will not be awarded for both BMED 2250 and BMED 1300." }, "BMED2300": { "subject": "BMED", "number": "2300", "name": "Problems-Biomed Engr II ", - "description": "Biomedical engineering problems from industrial and clinical applications are addressed and solved in small groups using problem-based learning methods. Full Description " + "description": "Biomedical engineering problems from industrial and clinical applications are addressed and solved in small groups using problem-based learning methods." }, "BMED2310": { "subject": "BMED", "number": "2310", "name": "Intro Biomed Engr Design ", - "description": "In small teams students will apply problem-based learning and human centered design to reverse engineer, analyze, and redesign medical devices. Credit will not be awareded for both BMED 2310 and BMED 2300. Full Description " + "description": "In small teams students will apply problem-based learning and human centered design to reverse engineer, analyze, and redesign medical devices. Credit will not be awareded for both BMED 2310 and BMED 2300." }, "BMED2400": { "subject": "BMED", "number": "2400", "name": "Intro-Bioengr Stats ", - "description": "Introduction to statistical modeling and data analysis in bioscientific and bioengineering applications. Topics include estimation, testing, regression, and experimental design. Full Description " + "description": "Introduction to statistical modeling and data analysis in bioscientific and bioengineering applications. Topics include estimation, testing, regression, and experimental design." }, "BMED2698": { "subject": "BMED", "number": "2698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "BMED2699": { "subject": "BMED", "number": "2699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "BMED2801": { "subject": "BMED", "number": "2801", "name": "Special Topics ", - "description": "Courses in special topics of current interest not included in the regular course offerings. Full Description " + "description": "Courses in special topics of current interest not included in the regular course offerings." }, "BMED2802": { "subject": "BMED", "number": "2802", "name": "Special Topics ", - "description": "Courses in special topics of current interest not included in the regular course offerings. Full Description " + "description": "Courses in special topics of current interest not included in the regular course offerings." }, "BMED2803": { "subject": "BMED", "number": "2803", "name": "Special Topics ", - "description": "Courses in special topics of current interest not included in the regular course offerings. Full Description " + "description": "Courses in special topics of current interest not included in the regular course offerings." }, "BMED2804": { "subject": "BMED", "number": "2804", "name": "Special Topics ", - "description": "Courses in special topics of current interest not included in the regular course offerings. Full Description " + "description": "Courses in special topics of current interest not included in the regular course offerings." }, "BMED2805": { "subject": "BMED", "number": "2805", "name": "Special Topics ", - "description": "Courses in special topics of current interest not included in the regular course offerings. Full Description " + "description": "Courses in special topics of current interest not included in the regular course offerings." }, "BMED2811": { "subject": "BMED", "number": "2811", "name": "Special Topics ", - "description": "Courses in special topics of current interest not included in the regular course offerings. Full Description " + "description": "Courses in special topics of current interest not included in the regular course offerings." }, "BMED2812": { "subject": "BMED", "number": "2812", "name": "Special Topics ", - "description": "Courses in special topics of current interest not included in the regular course offerings. Full Description " + "description": "Courses in special topics of current interest not included in the regular course offerings." }, "BMED2813": { "subject": "BMED", "number": "2813", "name": "Special Topics ", - "description": "Courses in special topics of current interest not included in the regular course offerings. Full Description " + "description": "Courses in special topics of current interest not included in the regular course offerings." }, "BMED2814": { "subject": "BMED", "number": "2814", "name": "Special Topics ", - "description": "Courses in special topics of current interest not included in the regular course offerings. Full Description " + "description": "Courses in special topics of current interest not included in the regular course offerings." }, "BMED2815": { "subject": "BMED", "number": "2815", "name": "Special Topics ", - "description": "Courses in special topics of current interest not included in the regular course offerings. Full Description " + "description": "Courses in special topics of current interest not included in the regular course offerings." }, "BMED2XXX": { "subject": "BMED", "number": "2XXX", "name": "Bioengineering Elective ", - "description": " Full Description " + "description": "" }, "BMED3100": { "subject": "BMED", "number": "3100", "name": "Systems Physiology ", - "description": "An introduction to human physiology emphasizing biomedical engineering aproaches to the understanding of basic organ function, disease states, and medical intervention. Full Description " + "description": "An introduction to human physiology emphasizing biomedical engineering aproaches to the understanding of basic organ function, disease states, and medical intervention." }, "BMED3110": { "subject": "BMED", "number": "3110", "name": "Quant Engr Physio Lab I ", - "description": "A hands-on lab providing an active learning team environment to reinforce selected engineering principles of physiology, emphasizing a quantitative model-oriented approach to physiological systems. Full Description " + "description": "A hands-on lab providing an active learning team environment to reinforce selected engineering principles of physiology, emphasizing a quantitative model-oriented approach to physiological systems." }, "BMED3300": { "subject": "BMED", "number": "3300", "name": "Biotransport ", - "description": "Fundamental principles of fluid, heat, and mass transfer with particular emphasis on physiological and biomedical systems. Full Description " + "description": "Fundamental principles of fluid, heat, and mass transfer with particular emphasis on physiological and biomedical systems." }, "BMED3310": { "subject": "BMED", "number": "3310", "name": "Biotransport ", - "description": "Fundamental principles of fluid, heat, and mass transfer with particular emphasis on physiological and biomedical systems. Credit will not be awarded for both BMED 3310 and BMED 3300. Full Description " + "description": "Fundamental principles of fluid, heat, and mass transfer with particular emphasis on physiological and biomedical systems. Credit will not be awarded for both BMED 3310 and BMED 3300." }, "BMED3400": { "subject": "BMED", "number": "3400", "name": "Intro to Biomechanics ", - "description": "An introduction to the basic concepts and methods in biomechanics, including statistics and the mechanics of biomaterials. The biomedical applications of mechanics will be illustrated. Full Description " + "description": "An introduction to the basic concepts and methods in biomechanics, including statistics and the mechanics of biomaterials. The biomedical applications of mechanics will be illustrated." }, "BMED3500": { "subject": "BMED", "number": "3500", "name": "Sensors& Instrumentation ", - "description": "A study of basic concepts and design of electronic sensors and instrumentation used in biomedical measurements. Standard clinical measurement techniques will also be examined. Full Description " + "description": "A study of basic concepts and design of electronic sensors and instrumentation used in biomedical measurements. Standard clinical measurement techniques will also be examined." }, "BMED3510": { "subject": "BMED", "number": "3510", "name": "Biomed Systems & Model ", - "description": "Basic concepts, modeling tools and analysis techniques for the study of biochemical, bioelectrical and biomedical systems. Full Description " + "description": "Basic concepts, modeling tools and analysis techniques for the study of biochemical, bioelectrical and biomedical systems." }, "BMED3520": { "subject": "BMED", "number": "3520", "name": "Biomed Sys & Modeling ", - "description": "Introduction of computational systems biology, including the modeling process, various types of models, standard analysis and simulation of systems, and applications in real-world biological systems. Credit will not be awarded for both BMED 3520 and BMED 3510. Full Description " + "description": "Introduction of computational systems biology, including the modeling process, various types of models, standard analysis and simulation of systems, and applications in real-world biological systems. Credit will not be awarded for both BMED 3520 and BMED 3510." }, "BMED3600": { "subject": "BMED", "number": "3600", "name": "Physio Cell & Mol Syst ", - "description": "In depth cell and molecular physiology focused on cellular responses to stimuli, including cell organization/ reorganization, membrane transport/kinetics, cell signaling/ molecular biology, mechanobiology and energy requirements. Full Description " + "description": "In depth cell and molecular physiology focused on cellular responses to stimuli, including cell organization/ reorganization, membrane transport/kinetics, cell signaling/ molecular biology, mechanobiology and energy requirements." }, "BMED3610": { "subject": "BMED", "number": "3610", "name": "Quant Engr Physio Lab II ", - "description": "This lab provides an active learning team environment, incorporating common cell/molecular biology techniques, to reinforce selected engineering principles in an in vitro cell culture setting. Full Description " + "description": "This lab provides an active learning team environment, incorporating common cell/molecular biology techniques, to reinforce selected engineering principles in an in vitro cell culture setting." }, "BMED3XXX": { "subject": "BMED", "number": "3XXX", "name": "Bioengineering Elective ", - "description": " Full Description " + "description": "" }, "BMED4400": { "subject": "BMED", "number": "4400", "name": "Neuroengineering Fund ", - "description": "Lab and lecture on current topics in Neuroengineering, including electrophysiology, clinical and diagnostic neuroengineering, neural prosthetics, sensory-motor integration, neuromorphic VLSI, neurodynamics and neurorobotics. Full Description " + "description": "Lab and lecture on current topics in Neuroengineering, including electrophysiology, clinical and diagnostic neuroengineering, neural prosthetics, sensory-motor integration, neuromorphic VLSI, neurodynamics and neurorobotics." }, "BMED4477": { "subject": "BMED", "number": "4477", "name": "Bio Networks & Genomics ", - "description": "Introduction to modeling of biological networks involved in gene regulation, cell signaling and metabolism. Mathematical modeling of cellular processes, such as gene expression, using genomic data. Full Description " + "description": "Introduction to modeling of biological networks involved in gene regulation, cell signaling and metabolism. Mathematical modeling of cellular processes, such as gene expression, using genomic data." }, "BMED4500": { "subject": "BMED", "number": "4500", "name": "Cell & Tissue Engr Lab ", - "description": "The principles of cell and tissue engineering will be presented as a laboratory course to give students a hands-on experience. Cell engineering topics include receptor/ligand interactions, cell cycle/metabolism, cell adhesion, cellular mechanics, cell signal transduction, and cell transfection. Tissue engineering topics include applications, biomaterials/scaffolds and cells for reparative medicine, bioreactors and bioprocessing, functional assessment, in vivo issues. Full Description " + "description": "The principles of cell and tissue engineering will be presented as a laboratory course to give students a hands-on experience. Cell engineering topics include receptor/ligand interactions, cell cycle/metabolism, cell adhesion, cellular mechanics, cell signal transduction, and cell transfection. Tissue engineering topics include applications, biomaterials/scaffolds and cells for reparative medicine, bioreactors and bioprocessing, functional assessment, in vivo issues." }, "BMED4600": { "subject": "BMED", "number": "4600", "name": "Senior Design Project I ", - "description": "Team-oriented major design project in biomedical engineering, incorporating engineering standards and realistic design constraints. Credit not allowed for BMED 4600 and BMED 4603 (or BMED 4601). Full Description " + "description": "Team-oriented major design project in biomedical engineering, incorporating engineering standards and realistic design constraints. Credit not allowed for BMED 4600 and BMED 4603 (or BMED 4601)." }, "BMED4601": { "subject": "BMED", "number": "4601", "name": "Senior Design Project II ", - "description": "Team-oriented major design project in biomedical engineering, incorporating engineering standards and realistic design constraints. Credit not allowed for both BMED 4601 and BMED 4603 (or BMED 4600). Full Description " + "description": "Team-oriented major design project in biomedical engineering, incorporating engineering standards and realistic design constraints. Credit not allowed for both BMED 4601 and BMED 4603 (or BMED 4600)." }, "BMED4602": { "subject": "BMED", "number": "4602", "name": "Capstone Design ", - "description": "Team-oriented design project in biomedical engineering, incorporating engineering standards and realistic design constraints. Includes introduction to relevant regulatory, intellectual property, and business management topics. Full Description " + "description": "Team-oriented design project in biomedical engineering, incorporating engineering standards and realistic design constraints. Includes introduction to relevant regulatory, intellectual property, and business management topics." }, "BMED4603": { "subject": "BMED", "number": "4603", "name": "Advanced Design ", - "description": "Continuation of a team-oriented design experience initiated in BMED 4602 Capstone Design. Includes more advanced relevant regulatory. intellectual property, and business management topics. Credit not allowed for both BMED 4603 and BMED 4600 (or BMED 4601). Full Description " + "description": "Continuation of a team-oriented design experience initiated in BMED 4602 Capstone Design. Includes more advanced relevant regulatory. intellectual property, and business management topics. Credit not allowed for both BMED 4603 and BMED 4600 (or BMED 4601)." }, "BMED4698": { "subject": "BMED", "number": "4698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "BMED4699": { "subject": "BMED", "number": "4699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "BMED4740": { "subject": "BMED", "number": "4740", "name": "Bio-Inspired Design ", - "description": "We examine evolutionary adaptation as a source for engineering design inspiration, utilizing principles of scaling, adaptability, and robust multifunctionality that characterize biological systems. Full Description " + "description": "We examine evolutionary adaptation as a source for engineering design inspiration, utilizing principles of scaling, adaptability, and robust multifunctionality that characterize biological systems." }, "BMED4750": { "subject": "BMED", "number": "4750", "name": "Diagnostic Imaging Phys ", - "description": "Physics and image formation methods for conventional X-ray, digital X-ray CT, nuclear medicine, and magnetic resonance and ultrasound imaging. Crosslisted with MP 4750 and NRE 4750. Full Description " + "description": "Physics and image formation methods for conventional X-ray, digital X-ray CT, nuclear medicine, and magnetic resonance and ultrasound imaging. Crosslisted with MP 4750 and NRE 4750." }, "BMED4751": { "subject": "BMED", "number": "4751", "name": "Intro to Biomaterials ", - "description": "Introduction to different classes of biomaterials (polymers, metals, ceramics) and physiological responses to biomaterial implantation. Topics include material properties, host response, and biomaterial characterization techniques. Crosslisted with MSE 4751. Full Description " + "description": "Introduction to different classes of biomaterials (polymers, metals, ceramics) and physiological responses to biomaterial implantation. Topics include material properties, host response, and biomaterial characterization techniques. Crosslisted with MSE 4751." }, "BMED4752": { "subject": "BMED", "number": "4752", "name": "Intro Neuroscience ", - "description": "Goals are to understand the components of the nervous system and their functional interactions, and appreciate the complexity of higher order brain functions and pathways. Crosslisted with BIOL 4752. Full Description " + "description": "Goals are to understand the components of the nervous system and their functional interactions, and appreciate the complexity of higher order brain functions and pathways. Crosslisted with BIOL 4752." }, "BMED4757": { "subject": "BMED", "number": "4757", "name": "Biofluid Mechanics ", - "description": "Introduction to the study of blood flow in the cardiovascular system. Emphasis on modeling and the potential of flow studies for clinical research application. Crosslisted with AE, CHE and ME 4757. Full Description " + "description": "Introduction to the study of blood flow in the cardiovascular system. Emphasis on modeling and the potential of flow studies for clinical research application. Crosslisted with AE, CHE and ME 4757." }, "BMED4758": { "subject": "BMED", "number": "4758", "name": "Biosolid Mechanics ", - "description": "The mechanics of living tissue, e.g., arteries, skin, heart muscle, ligament, tendon, cartilage, and bone. Constitutive equations and some simple mechanical models. Mechanics of cells. Applications. Crosslisted with AE, CHE, and ME 4758. Full Description " + "description": "The mechanics of living tissue, e.g., arteries, skin, heart muscle, ligament, tendon, cartilage, and bone. Constitutive equations and some simple mechanical models. Mechanics of cells. Applications. Crosslisted with AE, CHE, and ME 4758." }, "BMED4765": { "subject": "BMED", "number": "4765", "name": "Drug Design,Devlpmnt&Delivery ", - "description": "Introduction to the pharmaceutical development process, including design of new drugs, synthesis and manufacturing issues, and methods for delivery into the body. Includes student presentations. Crosslisted with CHEM and CHBE 4765. Full Description " + "description": "Introduction to the pharmaceutical development process, including design of new drugs, synthesis and manufacturing issues, and methods for delivery into the body. Includes student presentations. Crosslisted with CHEM and CHBE 4765." }, "BMED4781": { "subject": "BMED", "number": "4781", "name": "Biomed Instrumentation ", - "description": "A study of medical instrumentation from a systems viewpoint. Pertinent physiological and electro-physiological concepts will be covered. Credit not allowed for both BMED 4781 and (CHE 4781 or ME 4781 or CHBE 4781 or ECE 4781). Full Description " + "description": "A study of medical instrumentation from a systems viewpoint. Pertinent physiological and electro-physiological concepts will be covered. Credit not allowed for both BMED 4781 and (CHE 4781 or ME 4781 or CHBE 4781 or ECE 4781)." }, "BMED4782": { "subject": "BMED", "number": "4782", "name": "Biosystems Analysis ", - "description": "Analytical methods for modeling biological systems, including white-noise protocols for characterizing nonlinear systems. Crosslisted with CHE, ECE, and ME 4782. Full Description " + "description": "Analytical methods for modeling biological systems, including white-noise protocols for characterizing nonlinear systems. Crosslisted with CHE, ECE, and ME 4782." }, "BMED4783": { "subject": "BMED", "number": "4783", "name": "Intro-Medical Image Proc ", - "description": "A study of mathematical methods used in medical image acquisition and processing. Concepts, algorithms, and methods associated with acquisition, processing, and display of two- and three-dimensional medical imaged are studied. Crosslisted with ECE 4783. Full Description " + "description": "A study of mathematical methods used in medical image acquisition and processing. Concepts, algorithms, and methods associated with acquisition, processing, and display of two- and three-dimensional medical imaged are studied. Crosslisted with ECE 4783." }, "BMED4784": { "subject": "BMED", "number": "4784", "name": "Engr Electrophysiology ", - "description": "Basic concepts of electrophysiology from an engineering perspective. Functionality of relevant organs and systems; instrumentation tools which monitor electrophysiology function. Crosslisted with ECE 4784. Full Description " + "description": "Basic concepts of electrophysiology from an engineering perspective. Functionality of relevant organs and systems; instrumentation tools which monitor electrophysiology function. Crosslisted with ECE 4784." }, "BMED4801": { "subject": "BMED", "number": "4801", "name": "Special Topics ", - "description": "Courses in special topics of current interest not included in the regular course offerings. Full Description " + "description": "Courses in special topics of current interest not included in the regular course offerings." }, "BMED4802": { "subject": "BMED", "number": "4802", "name": "Special Topics ", - "description": "Courses in special topics of current interest not included in the regular course offerings. Full Description " + "description": "Courses in special topics of current interest not included in the regular course offerings." }, "BMED4803": { "subject": "BMED", "number": "4803", "name": "Special Topics ", - "description": "Courses in special topics of current interest not included in the regular course offerings. Full Description " + "description": "Courses in special topics of current interest not included in the regular course offerings." }, "BMED4804": { "subject": "BMED", "number": "4804", "name": "Special Topics ", - "description": "Courses in special topics of current interest not included in the regular course offerings. Full Description " + "description": "Courses in special topics of current interest not included in the regular course offerings." }, "BMED4805": { "subject": "BMED", "number": "4805", "name": "Special Topics ", - "description": "Courses in special topics of current interest not included in the regular course offerings. Full Description " + "description": "Courses in special topics of current interest not included in the regular course offerings." }, "BMED4811": { "subject": "BMED", "number": "4811", "name": "Special Topics ", - "description": "Courses in special topics of current interest not included in the regular course offerings. Full Description " + "description": "Courses in special topics of current interest not included in the regular course offerings." }, "BMED4812": { "subject": "BMED", "number": "4812", "name": "Special Topics ", - "description": "Courses in special topics of current interest not included in the regular course offerings. Full Description " + "description": "Courses in special topics of current interest not included in the regular course offerings." }, "BMED4813": { "subject": "BMED", "number": "4813", "name": "Special Topics ", - "description": "Courses in special topics of current interest not included in the regular course offerings. Full Description " + "description": "Courses in special topics of current interest not included in the regular course offerings." }, "BMED4814": { "subject": "BMED", "number": "4814", "name": "Special Topics ", - "description": "Courses in special topics of current interest not included in the regular course offerings. Full Description " + "description": "Courses in special topics of current interest not included in the regular course offerings." }, "BMED4815": { "subject": "BMED", "number": "4815", "name": "Special Topics ", - "description": "Courses in special topics of current interest not included in the regular course offerings. Full Description " + "description": "Courses in special topics of current interest not included in the regular course offerings." }, "BMED4823": { "subject": "BMED", "number": "4823", "name": "Special Topics ", - "description": "Courses in special topics of current interest not included in the regular course offerings. Full Description " + "description": "Courses in special topics of current interest not included in the regular course offerings." }, "BMED4833": { "subject": "BMED", "number": "4833", "name": "Special Topics ", - "description": "Courses in special topics of current interest not included in the regular course offerings. Full Description " + "description": "Courses in special topics of current interest not included in the regular course offerings." }, "BMED4843": { "subject": "BMED", "number": "4843", "name": "Special Topics ", - "description": "Courses in special topics of current interest not included in the regular course offerings Full Description " + "description": "Courses in special topics of current interest not included in the regular course offerings" }, "BMED4900": { "subject": "BMED", "number": "4900", "name": "Special Problems ", - "description": "Individualized studies in certain specialized areas of interest in biomedical engineering. Full Description " + "description": "Individualized studies in certain specialized areas of interest in biomedical engineering." }, "BMED4901": { "subject": "BMED", "number": "4901", "name": "Special Problems ", - "description": "Individualized studies in certain specialized areas of interest in biomedical engineering. Full Description " + "description": "Individualized studies in certain specialized areas of interest in biomedical engineering." }, "BMED4902": { "subject": "BMED", "number": "4902", "name": "Special Problems ", - "description": "Individualized studies in certain specialized areas of interest in biomedical engineering. Full Description " + "description": "Individualized studies in certain specialized areas of interest in biomedical engineering." }, "BMED4903": { "subject": "BMED", "number": "4903", "name": "Special Problems ", - "description": "Individualized studies in certain specialized areas of interest in biomedical engineering. Full Description " + "description": "Individualized studies in certain specialized areas of interest in biomedical engineering." }, "BMED4XXX": { "subject": "BMED", "number": "4XXX", "name": "Bioengineering Elective ", - "description": " Full Description " + "description": "" }, "BMED6041": { "subject": "BMED", "number": "6041", "name": "Analytical Methods ", - "description": "Basic analytical approaches to solve mathematical problems involved in biomedical engineering applications. Course focuses on ordinary and partial differential equations and on integral transform methods. Full Description " + "description": "Basic analytical approaches to solve mathematical problems involved in biomedical engineering applications. Course focuses on ordinary and partial differential equations and on integral transform methods." }, "BMED6042": { "subject": "BMED", "number": "6042", "name": "Systems Physiology ", - "description": "Regulation of physiological functions in the cardio-respiratory-renal, musculoskeletal, and gastrointestinal systems, and their interactions with the neural, endocrine, and immune systems. Full Description " + "description": "Regulation of physiological functions in the cardio-respiratory-renal, musculoskeletal, and gastrointestinal systems, and their interactions with the neural, endocrine, and immune systems." }, "BMED6210": { "subject": "BMED", "number": "6210", "name": "Magnetic Resonance Imag ", - "description": "This course covers the basic physics and engineering principles, advanced techniques and major applications of magnetic resonance imaging. Full Description " + "description": "This course covers the basic physics and engineering principles, advanced techniques and major applications of magnetic resonance imaging." }, "BMED6501": { "subject": "BMED", "number": "6501", "name": "Funda BioID Process ", - "description": "Key steps, multiple stakeholders and interdependencies in the design and commercialization process for medical products. Full Description " + "description": "Key steps, multiple stakeholders and interdependencies in the design and commercialization process for medical products." }, "BMED6502": { "subject": "BMED", "number": "6502", "name": "Clinical Literacy Experi ", - "description": "Education in interfacing with medical healthcare professionals, medical terminology, on-site clinical observations, needs-finding, case analysis, creating design solutions for improved methods, products and procedures. Full Description " + "description": "Education in interfacing with medical healthcare professionals, medical terminology, on-site clinical observations, needs-finding, case analysis, creating design solutions for improved methods, products and procedures." }, "BMED6503": { "subject": "BMED", "number": "6503", "name": "Med Mkts & Clinical Spec ", - "description": "Introduction to medical device and biologics industries, interdependencies of commercial companies, vendors and suppliers required for development, commercialization and sales of products and equipment. Full Description " + "description": "Introduction to medical device and biologics industries, interdependencies of commercial companies, vendors and suppliers required for development, commercialization and sales of products and equipment." }, "BMED6504": { "subject": "BMED", "number": "6504", "name": "Fina Planning for Projs ", - "description": "Finance planning for development projects including: costing, forecasting, time value of money, breakeven analysis, return on investment analysis, capital budgeting, risk and return, working capital management. Full Description " + "description": "Finance planning for development projects including: costing, forecasting, time value of money, breakeven analysis, return on investment analysis, capital budgeting, risk and return, working capital management." }, "BMED6505": { "subject": "BMED", "number": "6505", "name": "Prod Plan & Project Mgt ", - "description": "Strategy and analysis techniques to evaluate and manage new product innovations, product improvements and product line extensions in context of an entity's mission and goals. Full Description " + "description": "Strategy and analysis techniques to evaluate and manage new product innovations, product improvements and product line extensions in context of an entity's mission and goals." }, "BMED6506": { "subject": "BMED", "number": "6506", "name": "Prof Communication BioID ", - "description": "Techniques and practice of effective oral presentations project/grant proposal writing, technical and project report writing to support medical device engineering, design and business. Full Description " + "description": "Techniques and practice of effective oral presentations project/grant proposal writing, technical and project report writing to support medical device engineering, design and business." }, "BMED6507": { "subject": "BMED", "number": "6507", "name": "Medical Device Reg Req ", - "description": "FDA Regulations for medical devices including clearance-approval pathways to commercialization, Quality Systems Regulations and ISO Standards for medical devices in the European Economic Community. Full Description " + "description": "FDA Regulations for medical devices including clearance-approval pathways to commercialization, Quality Systems Regulations and ISO Standards for medical devices in the European Economic Community." }, "BMED6508": { "subject": "BMED", "number": "6508", "name": "BioID Masters Project I ", - "description": "Team project to address an unmet medical need and develop an innovative solution including the engineering design document package and proof-of-concept prototyhpe. Full Description " + "description": "Team project to address an unmet medical need and develop an innovative solution including the engineering design document package and proof-of-concept prototyhpe." }, "BMED6509": { "subject": "BMED", "number": "6509", "name": "BioID Masters Project II ", - "description": "Teams will construct prototypes for Course I biomedical device project solution, conduct and analyze performance testing, prepare FDA 510(k) submission, and prepare project commercialization plan. Full Description " + "description": "Teams will construct prototypes for Course I biomedical device project solution, conduct and analyze performance testing, prepare FDA 510(k) submission, and prepare project commercialization plan." }, "BMED6700": { "subject": "BMED", "number": "6700", "name": "Biostatistics ", - "description": "An introduction to fundamental ideas and techniques in Biostatistics, with an emphasis on conceptual understanding and on the analysis of real data sets. Full Description " + "description": "An introduction to fundamental ideas and techniques in Biostatistics, with an emphasis on conceptual understanding and on the analysis of real data sets." }, "BMED6710": { "subject": "BMED", "number": "6710", "name": "Rational Design Biomat ", - "description": "The goal of this course is to give graduate students the ability to rationally design new biomaterials by integrating organic chemistry concepts with molecular biology. Full Description " + "description": "The goal of this course is to give graduate students the ability to rationally design new biomaterials by integrating organic chemistry concepts with molecular biology." }, "BMED6711": { "subject": "BMED", "number": "6711", "name": "Rational Design Biom Lab ", - "description": "The goal of this course is to teach students the laboratory skills needed to design and synthesize new biomaterials. Full Description " + "description": "The goal of this course is to teach students the laboratory skills needed to design and synthesize new biomaterials." }, "BMED6720": { "subject": "BMED", "number": "6720", "name": "Biotransport ", - "description": "This graduate level course covers the analysis of fluid flow phenomena in the human body, cardiovasculature, respiratory system and other organ systems. Full Description " + "description": "This graduate level course covers the analysis of fluid flow phenomena in the human body, cardiovasculature, respiratory system and other organ systems." }, "BMED6730": { "subject": "BMED", "number": "6730", "name": "Mat Sci Cell Components ", - "description": "Addresses structure-property relationship of cellular components. Credit not allowed for both BMED 6730 and MSE 6730. Full Description " + "description": "Addresses structure-property relationship of cellular components. Credit not allowed for both BMED 6730 and MSE 6730." }, "BMED6740": { "subject": "BMED", "number": "6740", "name": "Living System Modeling ", - "description": "The purpose of this course is to introduce graduate students to living system models as pre-clinical test beds for a wide variety of biotechnologies. Full Description " + "description": "The purpose of this course is to introduce graduate students to living system models as pre-clinical test beds for a wide variety of biotechnologies." }, "BMED6743": { "subject": "BMED", "number": "6743", "name": "Tissue Mechanics ", - "description": "Structure-function relationships and constitutive models for a variety of biological tissues, with an emphasis on understanding the mechanical behaviors of normal and pathological tissues. Credit not given for both BMED/ME 6783 and BMED/ME 6743. Crosslisted with ME 6743. Full Description " + "description": "Structure-function relationships and constitutive models for a variety of biological tissues, with an emphasis on understanding the mechanical behaviors of normal and pathological tissues. Credit not given for both BMED/ME 6783 and BMED/ME 6743. Crosslisted with ME 6743." }, "BMED6753": { "subject": "BMED", "number": "6753", "name": "Prin-Mgt for Engineers ", - "description": "The course will provide an introduction to selected topics needed to be successful in the technology industries. Cannot count toward major area requirements in M.S. or Ph.D. programs of study. Full Description " + "description": "The course will provide an introduction to selected topics needed to be successful in the technology industries. Cannot count toward major area requirements in M.S. or Ph.D. programs of study." }, "BMED6760": { "subject": "BMED", "number": "6760", "name": "Info Process Model Neura ", - "description": "This course will examine \"top down\" modeling approaches for sensorineural systems, where an optimal computational principle used in engineering (e.g., information theory, Bayesian inference, control theory) explains observed information processing. Full Description " + "description": "This course will examine \"top down\" modeling approaches for sensorineural systems, where an optimal computational principle used in engineering (e.g., information theory, Bayesian inference, control theory) explains observed information processing." }, "BMED6765": { "subject": "BMED", "number": "6765", "name": "Drug Development ", - "description": "Introduction to the pharmaceutical development process, including design of new drugs, synthesis and manufacturing issues, and methods of delivery into the body. Includes student presentations. Crosslisted with BMED 6765 and CHBE 6765. Full Description " + "description": "Introduction to the pharmaceutical development process, including design of new drugs, synthesis and manufacturing issues, and methods of delivery into the body. Includes student presentations. Crosslisted with BMED 6765 and CHBE 6765." }, "BMED6774": { "subject": "BMED", "number": "6774", "name": "Biomaterial:Struct&Funct ", - "description": "Structure-function relationships of biomaterials and biomaterial characterization will be covered. Materials for medial implants, tissue engineering, biosensing, imaging, and drug delivery will be covered. Crosslisted with CHE, ME, and MSE 6774. Full Description " + "description": "Structure-function relationships of biomaterials and biomaterial characterization will be covered. Materials for medial implants, tissue engineering, biosensing, imaging, and drug delivery will be covered. Crosslisted with CHE, ME, and MSE 6774." }, "BMED6777": { "subject": "BMED", "number": "6777", "name": "Advanced Biomaterials ", - "description": "Advanced topics of biomaterials performance and engineering, including biointerfaces, host reactions to materials, and bio-inspired/smart-materials strategies. Crosslisted with CHE, ME, and MSE 6777. Full Description " + "description": "Advanced topics of biomaterials performance and engineering, including biointerfaces, host reactions to materials, and bio-inspired/smart-materials strategies. Crosslisted with CHE, ME, and MSE 6777." }, "BMED6779": { "subject": "BMED", "number": "6779", "name": "Bioprocess Engineering ", - "description": "Study of enzymes and microbial and mammalian cells for production of biochemicals and protein therapeutics in bioreactors; downstream separation and purification; integrated view of bioprocesses. Crosslisted with CHE 6779. Full Description " + "description": "Study of enzymes and microbial and mammalian cells for production of biochemicals and protein therapeutics in bioreactors; downstream separation and purification; integrated view of bioprocesses. Crosslisted with CHE 6779." }, "BMED6780": { "subject": "BMED", "number": "6780", "name": "Medical Image Processing ", - "description": "A study of methods for enhancing, analyzing, interpreting, and visualizing information from two- and three-dimensional data obtained from a variety of medical imaging modalities. Crosslisted with ECE and CS 6780. Full Description " + "description": "A study of methods for enhancing, analyzing, interpreting, and visualizing information from two- and three-dimensional data obtained from a variety of medical imaging modalities. Crosslisted with ECE and CS 6780." }, "BMED6782": { "subject": "BMED", "number": "6782", "name": "Cellular Engineering ", - "description": "Engineering analysis of cellular systems. Crosslisted with CHE and ME 6782. Full Description " + "description": "Engineering analysis of cellular systems. Crosslisted with CHE and ME 6782." }, "BMED6784": { "subject": "BMED", "number": "6784", "name": "Cardiovascular Biomech ", - "description": "Mechanical analysis of the cardiovascular system emphasizing the normal and pathologic function in relation to clinical cardiovascular medicine. Crosslisted with CHE and ME 6784. Full Description " + "description": "Mechanical analysis of the cardiovascular system emphasizing the normal and pathologic function in relation to clinical cardiovascular medicine. Crosslisted with CHE and ME 6784." }, "BMED6786": { "subject": "BMED", "number": "6786", "name": "Medical Imaging Systems ", - "description": "A study of the principles and design of medical imaging systems such as X-ray, ultrasound, nuclear medicine, and nuclear magnetic resonance. Crosslisted with ECE 6786. Full Description " + "description": "A study of the principles and design of medical imaging systems such as X-ray, ultrasound, nuclear medicine, and nuclear magnetic resonance. Crosslisted with ECE 6786." }, "BMED6787": { "subject": "BMED", "number": "6787", "name": "Quantitative Electrophys ", - "description": "A quantitative presentation of electrophysiological systems in biological organisms, emphasizing the electrical properties and modeling of neural and cardiac cells and systems. Crosslisted with PHYS and ECE 6787. Full Description " + "description": "A quantitative presentation of electrophysiological systems in biological organisms, emphasizing the electrical properties and modeling of neural and cardiac cells and systems. Crosslisted with PHYS and ECE 6787." }, "BMED6789": { "subject": "BMED", "number": "6789", "name": "Technology Ventures ", - "description": "Team discussion and case studies in biomedical engineering technology transfer, including licensing, financial capital, safety and efficacy studies, clinical trials, and strategic planning. Crosslisted with ECE, CHE, ME, and MGT 6789. Full Description " + "description": "Team discussion and case studies in biomedical engineering technology transfer, including licensing, financial capital, safety and efficacy studies, clinical trials, and strategic planning. Crosslisted with ECE, CHE, ME, and MGT 6789." }, "BMED6790": { "subject": "BMED", "number": "6790", "name": "Info Proc Model Neur Sys ", - "description": "Examines \"top-down\" modeling approaches for sensorineural systems, where optimal computational principles used in engineering(e.g., information theory, Bayesian inference, control theory) explain observed information processing. Full Description " + "description": "Examines \"top-down\" modeling approaches for sensorineural systems, where optimal computational principles used in engineering(e.g., information theory, Bayesian inference, control theory) explain observed information processing." }, "BMED6793": { "subject": "BMED", "number": "6793", "name": "Systems Pathophysiology ", - "description": "Overview of human pathophysiology from a quantitative perspective. A brief introduction to the application of quantitative models to the understanding of biological systems. Crosslisted with CHE, ECE, and ME 6793. Full Description " + "description": "Overview of human pathophysiology from a quantitative perspective. A brief introduction to the application of quantitative models to the understanding of biological systems. Crosslisted with CHE, ECE, and ME 6793." }, "BMED6794": { "subject": "BMED", "number": "6794", "name": "Tissue Engineering ", - "description": "Biological, engineering, and medical issues in developing tissue engineered constructs. Emphasis in the integration of these disciplines at a basic molecular and cell biology level. Crosslisted with CHE and ME 6794. Full Description " + "description": "Biological, engineering, and medical issues in developing tissue engineered constructs. Emphasis in the integration of these disciplines at a basic molecular and cell biology level. Crosslisted with CHE and ME 6794." }, "BMED6799": { "subject": "BMED", "number": "6799", "name": "Legal Issues-Tech Transf ", - "description": "Study and analysis of U.S. law as it applies to the patenting and licensing processes. Crosslisted with CHE, ME, and MGT 6799. Full Description " + "description": "Study and analysis of U.S. law as it applies to the patenting and licensing processes. Crosslisted with CHE, ME, and MGT 6799." }, "BMED6XXX": { "subject": "BMED", "number": "6XXX", "name": "Bioengineering Elective ", - "description": " Full Description " + "description": "" }, "BMED7000": { "subject": "BMED", "number": "7000", "name": "Master's Thesis ", - "description": " Full Description " + "description": "" }, "BMED7001": { "subject": "BMED", "number": "7001", "name": "Biomed Engineer Seminar ", - "description": "Graduate students of the Biomedical Engineering department (all programs) participate in seminars involving current research projects presented by faculty and invited speakers. Full Description " + "description": "Graduate students of the Biomedical Engineering department (all programs) participate in seminars involving current research projects presented by faculty and invited speakers." }, "BMED7002": { "subject": "BMED", "number": "7002", "name": "Teaching Practicum I ", - "description": "This course provides discipline-specific training that addresses intellectual problems and teaching strategies from the perspective of the discipline. Credit not allowed for both BMED 7002 and BMED 8696. Full Description " + "description": "This course provides discipline-specific training that addresses intellectual problems and teaching strategies from the perspective of the discipline. Credit not allowed for both BMED 7002 and BMED 8696." }, "BMED7003": { "subject": "BMED", "number": "7003", "name": "Teaching Practicum II ", - "description": "This course provides discipline-specific training that addresses intellectual problems and teaching strategies from the perspective of the discipline. Credit not allowed for both BMED 7003 and BMED 8697. Full Description " + "description": "This course provides discipline-specific training that addresses intellectual problems and teaching strategies from the perspective of the discipline. Credit not allowed for both BMED 7003 and BMED 8697." }, "BMED7004": { "subject": "BMED", "number": "7004", "name": "Teaching & Research I ", - "description": "This course provides the practicial framework for understanding challenges faced during teaching, research, and academic life. This course includes topical materials required for BME RCR requirements. Full Description " + "description": "This course provides the practicial framework for understanding challenges faced during teaching, research, and academic life. This course includes topical materials required for BME RCR requirements." }, "BMED7005": { "subject": "BMED", "number": "7005", "name": "Teaching & Research II ", - "description": "This course provides the practical framework for understanding challenges faced during teaching, research, and academic life. Full Description " + "description": "This course provides the practical framework for understanding challenges faced during teaching, research, and academic life." }, "BMED7011": { "subject": "BMED", "number": "7011", "name": "Integ Core-Int Exp&Model ", - "description": "An introduction to how engineers approach problems - via conceptual models that are then used to create wet lab models and in silico models. Full Description " + "description": "An introduction to how engineers approach problems - via conceptual models that are then used to create wet lab models and in silico models." }, "BMED7012": { "subject": "BMED", "number": "7012", "name": "Integ Core-Experi Design ", - "description": "This integrative core course focuses on the design of experiments to answer scientific questions, with an emphasis on the spatial and temporal scales of measurements. Full Description " + "description": "This integrative core course focuses on the design of experiments to answer scientific questions, with an emphasis on the spatial and temporal scales of measurements." }, "BMED7013": { "subject": "BMED", "number": "7013", "name": "Integ Core-Prob Solv Com ", - "description": "An introduction to computational model methodologies for complex biomedical/biological systems. Emphasis is placed on developing well-posed scientific hypotheses through the use of simulations. Full Description " + "description": "An introduction to computational model methodologies for complex biomedical/biological systems. Emphasis is placed on developing well-posed scientific hypotheses through the use of simulations." }, "BMED7101": { "subject": "BMED", "number": "7101", "name": "Adv Sem-Biomat&Regen Med ", - "description": "This course is intended to promote critical review of the \"State-of-the-art\" biomaterial technologies to identify knowledge gaps that must be overcome to further biomaterials development. Full Description " + "description": "This course is intended to promote critical review of the \"State-of-the-art\" biomaterial technologies to identify knowledge gaps that must be overcome to further biomaterials development." }, "BMED7201": { "subject": "BMED", "number": "7201", "name": "Adv Sem-Cardio Biol&Biom ", - "description": "To review current topics in cardiovascular engineering, biology and diseases through critical literature review. In addition, each student will develop and present a \"Proposal\" by the end of the class. Full Description " + "description": "To review current topics in cardiovascular engineering, biology and diseases through critical literature review. In addition, each student will develop and present a \"Proposal\" by the end of the class." }, "BMED7301": { "subject": "BMED", "number": "7301", "name": "Adv Sem-Cellular&Biomole ", - "description": "This seminar course illustrates the development of micro- and nano-scale engineering approaches for studies of biomolecules and cells and their applications to medicine. Full Description " + "description": "This seminar course illustrates the development of micro- and nano-scale engineering approaches for studies of biomolecules and cells and their applications to medicine." }, "BMED7310": { "subject": "BMED", "number": "7310", "name": "Stem Cell Engineering ", - "description": "Fundamentals for the application of analytical engineering approaches to the quantitative study of stem cell biology and translation into cell therapies and diagnostics. Full Description " + "description": "Fundamentals for the application of analytical engineering approaches to the quantitative study of stem cell biology and translation into cell therapies and diagnostics." }, "BMED7410": { "subject": "BMED", "number": "7410", "name": "Multiscale Analysis Syst ", - "description": "The class explores modeling analyses spanning multiple levels of biological organization at different resolutions of detail. Emphasis is placed on control in complex biological systems. Full Description " + "description": "The class explores modeling analyses spanning multiple levels of biological organization at different resolutions of detail. Emphasis is placed on control in complex biological systems." }, "BMED7411": { "subject": "BMED", "number": "7411", "name": "Math Models Biol & Medic ", - "description": "The course introduces the student to a representative set of models that elucidate the nature of biological and medical phenomena. Full Description " + "description": "The course introduces the student to a representative set of models that elucidate the nature of biological and medical phenomena." }, "BMED7413": { "subject": "BMED", "number": "7413", "name": "Biochemical Systems Anal ", - "description": "The course introduces BME students interested in mathematical modeling and systems biology to the computational analysis of metabolic and other dynamic systems in biology. Full Description " + "description": "The course introduces BME students interested in mathematical modeling and systems biology to the computational analysis of metabolic and other dynamic systems in biology." }, "BMED7601": { "subject": "BMED", "number": "7601", "name": "Adv Sem-Neuroengineering ", - "description": "Current issues in neuroengineering. Focus is placed on neuropathological complexity across cellular and organ level scales through literature reading, discussion, and independent study. Full Description " + "description": "Current issues in neuroengineering. Focus is placed on neuropathological complexity across cellular and organ level scales through literature reading, discussion, and independent study." }, "BMED7610": { "subject": "BMED", "number": "7610", "name": "Quantitative Neuroscienc ", - "description": "A quantitative presentation of neural signal processing and information coding, emphasizing the circuitry of sensory and motor pathways of the brain. Full Description " + "description": "A quantitative presentation of neural signal processing and information coding, emphasizing the circuitry of sensory and motor pathways of the brain." }, "BMED7785": { "subject": "BMED", "number": "7785", "name": "Intro Robotics Research ", - "description": "Familiarizes students with the core of robotics: mechanics, control, perception, AI, and autonomy. Provides an introduction to the mathematical tools required in robotics research. Cross-listed with AE 7785, ECE 7785, and CS 7785. Full Description " + "description": "Familiarizes students with the core of robotics: mechanics, control, perception, AI, and autonomy. Provides an introduction to the mathematical tools required in robotics research. Cross-listed with AE 7785, ECE 7785, and CS 7785." }, "BMED8750": { "subject": "BMED", "number": "8750", "name": "Robotics Research Fnd I ", - "description": "Multidisciplinary research course supervised by two robotics faculty from different schools participating in the robotics Ph.D. program. Cross-listed with AE, CS, and ECE 8750. Full Description " + "description": "Multidisciplinary research course supervised by two robotics faculty from different schools participating in the robotics Ph.D. program. Cross-listed with AE, CS, and ECE 8750." }, "BMED8751": { "subject": "BMED", "number": "8751", "name": "Robotics Research Fnd II ", - "description": "Continuation of BMED 8750 (Multidisciplinary Robotics Research I). Cros-listed with AE, CS, and ECE 8751. Full Description " + "description": "Continuation of BMED 8750 (Multidisciplinary Robotics Research I). Cros-listed with AE, CS, and ECE 8751." }, "BMED8811": { "subject": "BMED", "number": "8811", "name": "Special Topics ", - "description": "Topics of current interest in biomedical engineering Full Description " + "description": "Topics of current interest in biomedical engineering" }, "BMED8812": { "subject": "BMED", "number": "8812", "name": "Special Topics ", - "description": "Topics of current interest in biomedical engineering. Full Description " + "description": "Topics of current interest in biomedical engineering." }, "BMED8813": { "subject": "BMED", "number": "8813", "name": "Special Topics ", - "description": "Topics of current interest in biomedical engineering. Full Description " + "description": "Topics of current interest in biomedical engineering." }, "BMED8814": { "subject": "BMED", "number": "8814", "name": "Special Topics ", - "description": "Topics of current interest in biomedical engineering. Full Description " + "description": "Topics of current interest in biomedical engineering." }, "BMED8815": { "subject": "BMED", "number": "8815", "name": "Special Topics ", - "description": "Topics of current interest in biomedical engineering. Full Description " + "description": "Topics of current interest in biomedical engineering." }, "BMED8823": { "subject": "BMED", "number": "8823", "name": "Special Topics ", - "description": "Topics of current interest in biomedical engineering. Full Description " + "description": "Topics of current interest in biomedical engineering." }, "BMED8853": { "subject": "BMED", "number": "8853", "name": "Special Topics ", - "description": "Topics of current interest in biomedical engineering. Full Description " + "description": "Topics of current interest in biomedical engineering." }, "BMED8901": { "subject": "BMED", "number": "8901", "name": "Special Problems ", - "description": "Individual studies and/or experimental investigations of problems of current interest in bioengineering. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in bioengineering." }, "BMED8902": { "subject": "BMED", "number": "8902", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "BMED8903": { "subject": "BMED", "number": "8903", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "BMED8997": { "subject": "BMED", "number": "8997", "name": "Teaching Assistantship ", - "description": "For graduate students holding a teaching assistantship. Full Description " + "description": "For graduate students holding a teaching assistantship." }, "BMED8998": { "subject": "BMED", "number": "8998", "name": "Research Assistantship ", - "description": "For graduate students holding a research assistantship. Full Description " + "description": "For graduate students holding a research assistantship." }, "BMED9000": { "subject": "BMED", "number": "9000", "name": "Doctoral Thesis ", - "description": " Full Description " + "description": "" }, "BMEJ9999": { "subject": "BMEJ", "number": "9999", "name": "GT-PKU ", - "description": "For GT, PKU, and Emory students during terms when they are not taking other GT courses. Placeholder course. Full Description " + "description": "For GT, PKU, and Emory students during terms when they are not taking other GT courses. Placeholder course." }, "BMEM6000": { "subject": "BMEM", "number": "6000", "name": "BMED Eng-Joint w/ Emory ", - "description": " Full Description " + "description": "" }, "BMEM6001": { "subject": "BMEM", "number": "6001", "name": "BMED Eng-Joint w/Emory ", - "description": " Full Description " + "description": "" }, "CEE1770": { "subject": "CEE", "number": "1770", "name": "Intro to Engr Graphics ", - "description": "Engineering graphics and visualization including sketching, line drawing, and solid modeling.Development and interpretation of drawings and specification for product realization. Crosslisted with AE and ME 1770. Full Description " + "description": "Engineering graphics and visualization including sketching, line drawing, and solid modeling.Development and interpretation of drawings and specification for product realization. Crosslisted with AE and ME 1770." }, "CEE1XXX": { "subject": "CEE", "number": "1XXX", "name": "Civil/Env Engr Elective ", - "description": " Full Description " + "description": "" }, "CEE2040": { "subject": "CEE", "number": "2040", "name": "Dynamics ", - "description": "Kinematics and kinetics of particles and rigid bodies in one and two dimensions; principles of work/energy and impulse/momentum. Full Description " + "description": "Kinematics and kinetics of particles and rigid bodies in one and two dimensions; principles of work/energy and impulse/momentum." }, "CEE2300": { "subject": "CEE", "number": "2300", "name": "Environmental Engr Prin ", - "description": "Introduction to chemical, biological, and physical processes in the environment. Discussion of the basic processes governing air, water, and land quality, and the behavior and impacts of contaminants associated with human and industrial activities. Full Description " + "description": "Introduction to chemical, biological, and physical processes in the environment. Discussion of the basic processes governing air, water, and land quality, and the behavior and impacts of contaminants associated with human and industrial activities." }, "CEE2698": { "subject": "CEE", "number": "2698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "CEE2699": { "subject": "CEE", "number": "2699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "CEE2XXX": { "subject": "CEE", "number": "2XXX", "name": "Civil/Env Engr Elective ", - "description": " Full Description " + "description": "" }, "CEE3000": { "subject": "CEE", "number": "3000", "name": "Civil Engr Systems ", - "description": "Infrastructure viewed from a systems perspective; analytical approaches and modeling of civil-engineered facilities; sustainability; engineering economy applications. Full Description " + "description": "Infrastructure viewed from a systems perspective; analytical approaches and modeling of civil-engineered facilities; sustainability; engineering economy applications." }, "CEE3010": { "subject": "CEE", "number": "3010", "name": "Geomatics ", - "description": "Spatial data collection methods including surveying, photogrammetry, remote sensing, and global positioning systems; management, manipulation, and analysis of spatial and associated attribute data. Full Description " + "description": "Spatial data collection methods including surveying, photogrammetry, remote sensing, and global positioning systems; management, manipulation, and analysis of spatial and associated attribute data." }, "CEE3020": { "subject": "CEE", "number": "3020", "name": "Civil Engr Materials ", - "description": "Physical, mechanical, and durability properties of concrete, metals, unreinforced and reinforced plastics, timber, asphalt, and asphalt concrete. Full Description " + "description": "Physical, mechanical, and durability properties of concrete, metals, unreinforced and reinforced plastics, timber, asphalt, and asphalt concrete." }, "CEE3040": { "subject": "CEE", "number": "3040", "name": "Fluid Mechanics ", - "description": "Elementary mechanics of fluids with emphasis on hydrostatics, control volume analysis of flowing fluids using kinematics, continuity, energy, and momentum principles; similitude, pipe flow. Full Description " + "description": "Elementary mechanics of fluids with emphasis on hydrostatics, control volume analysis of flowing fluids using kinematics, continuity, energy, and momentum principles; similitude, pipe flow." }, "CEE3055": { "subject": "CEE", "number": "3055", "name": "Structural Analysis ", - "description": "Determination of internal forces and deflection in statically determinate trusses, beams, and frames. Introduction to analysis of statically indeterminate structures. Full Description " + "description": "Determination of internal forces and deflection in statically determinate trusses, beams, and frames. Introduction to analysis of statically indeterminate structures." }, "CEE3340": { "subject": "CEE", "number": "3340", "name": "Environ Engr Laboratory ", - "description": "Theory and application of environmental laboratory methods for measurement of fundamental properties and characteristics of dissolved and particulate constituents in water, air and soil systems. Full Description " + "description": "Theory and application of environmental laboratory methods for measurement of fundamental properties and characteristics of dissolved and particulate constituents in water, air and soil systems." }, "CEE3770": { "subject": "CEE", "number": "3770", "name": "Statistics& Applications ", - "description": "Introduction to probability, probability distributions, point estimation, confidence intervals, hypothesis testing, linear regression, and analysis of variance. Example applied to the field of civil and environmental engineering. Crosslisted with MATH 3770 and ISYE 3770. Also, credit not awarded for both CEE 3770 and MATH 3670. Full Description " + "description": "Introduction to probability, probability distributions, point estimation, confidence intervals, hypothesis testing, linear regression, and analysis of variance. Example applied to the field of civil and environmental engineering. Crosslisted with MATH 3770 and ISYE 3770. Also, credit not awarded for both CEE 3770 and MATH 3670." }, "CEE3XXX": { "subject": "CEE", "number": "3XXX", "name": "Civil/Env Engr Elective ", - "description": " Full Description " + "description": "" }, "CEE4090": { "subject": "CEE", "number": "4090", "name": "Capstone Design ", - "description": "An interdisciplinary civil and environmental design experience. Problem definition, data acquisition, modeling and analysis, evaluation of design alternatives, oral and written presentation of final design. Full Description " + "description": "An interdisciplinary civil and environmental design experience. Problem definition, data acquisition, modeling and analysis, evaluation of design alternatives, oral and written presentation of final design." }, "CEE4100": { "subject": "CEE", "number": "4100", "name": "Construction Engr & Mgt ", - "description": "Fundamental concepts in planning, design, and construction of civil engineering projects. Introduction to project scheduling, cost estimating, controls, procurement, value engineering, quality assurance, and safety. Full Description " + "description": "Fundamental concepts in planning, design, and construction of civil engineering projects. Introduction to project scheduling, cost estimating, controls, procurement, value engineering, quality assurance, and safety." }, "CEE4101": { "subject": "CEE", "number": "4101", "name": "Construction Seminar ", - "description": "The seminar provides a platform for students to engage with construction industry companies and experts, to learn about different construction disciplines, their projects, and experiences. Full Description " + "description": "The seminar provides a platform for students to engage with construction industry companies and experts, to learn about different construction disciplines, their projects, and experiences." }, "CEE4110": { "subject": "CEE", "number": "4110", "name": "Construction Plan & Est ", - "description": "An integrated approach to planning, estimating, and scheduling of construction projects, including basic and advanced concepts, applications, and tools for developing plans, estimates, and schedules. Full Description " + "description": "An integrated approach to planning, estimating, and scheduling of construction projects, including basic and advanced concepts, applications, and tools for developing plans, estimates, and schedules." }, "CEE4120": { "subject": "CEE", "number": "4120", "name": "Construction Operations ", - "description": "An integrated approach to construction methods, including basic and advanced concepts, applications, and tools for planning, analysis, and assessment of construction methods and equipment. Full Description " + "description": "An integrated approach to construction methods, including basic and advanced concepts, applications, and tools for planning, analysis, and assessment of construction methods and equipment." }, "CEE4130": { "subject": "CEE", "number": "4130", "name": "Constr. Safety & Health ", - "description": "Fundamentals to safety and health as they apply to civil infrastructure and building construction. Topics include planning, design, management, rules and guidelines, best practices, and inspection of safety and health. Full Description " + "description": "Fundamentals to safety and health as they apply to civil infrastructure and building construction. Topics include planning, design, management, rules and guidelines, best practices, and inspection of safety and health." }, "CEE4140": { "subject": "CEE", "number": "4140", "name": "Bldg Info Model Constr ", - "description": "Theory and Application of Building Information Modeling ( BIM) in the Architecture/Engineering/Construction (A/E/C) industry with emphasis on Constructability, Scheduling. Front End Planning (FEP) and Construction monitoring. Full Description " + "description": "Theory and Application of Building Information Modeling ( BIM) in the Architecture/Engineering/Construction (A/E/C) industry with emphasis on Constructability, Scheduling. Front End Planning (FEP) and Construction monitoring." }, "CEE4200": { "subject": "CEE", "number": "4200", "name": "Hydraulic Engineering ", - "description": "Applications of fluid mechanics to engineering and natural systems including fluid drag, open channel flow, turbomachinery, and environmental hydraulics; laboratory experiments; computational hydraulics. Full Description " + "description": "Applications of fluid mechanics to engineering and natural systems including fluid drag, open channel flow, turbomachinery, and environmental hydraulics; laboratory experiments; computational hydraulics." }, "CEE4210": { "subject": "CEE", "number": "4210", "name": "Hydrology ", - "description": "Global circulation and the hydrologic cycle, precipitation mechanisms and analysis, evaporation and other losses, streamflow, hydrographs, river and reservoir routing, and frequency analysis. Full Description " + "description": "Global circulation and the hydrologic cycle, precipitation mechanisms and analysis, evaporation and other losses, streamflow, hydrographs, river and reservoir routing, and frequency analysis." }, "CEE4225": { "subject": "CEE", "number": "4225", "name": "Coastal Engineering ", - "description": "Introduction to coastal engineering processes and problems. Topics include: water wave mechanics, nearshore hydrodynamics, astronomical tides, sediment transport, beach nourishment, and coastal structures. Full Description " + "description": "Introduction to coastal engineering processes and problems. Topics include: water wave mechanics, nearshore hydrodynamics, astronomical tides, sediment transport, beach nourishment, and coastal structures." }, "CEE4230": { "subject": "CEE", "number": "4230", "name": "Environ Transport Model ", - "description": "Introduction to mixing of pollutants and natural substances in the surface water environment. Use of mathematical models for mixing zones and water quality. Full Description " + "description": "Introduction to mixing of pollutants and natural substances in the surface water environment. Use of mathematical models for mixing zones and water quality." }, "CEE4300": { "subject": "CEE", "number": "4300", "name": "Environmental Engr Sys ", - "description": "Environmental engineering issues associated with water, air, and land pollution, including risk assessment, groundwater contamination, global climate change, and sustainable technologies. Full Description " + "description": "Environmental engineering issues associated with water, air, and land pollution, including risk assessment, groundwater contamination, global climate change, and sustainable technologies." }, "CEE4310": { "subject": "CEE", "number": "4310", "name": "Water Quality Engr ", - "description": "Reclamation of water and wastewater for potable and industrial uses, groundwater remediation. Principles of physical, chemical, and biological treatment processes. Full Description " + "description": "Reclamation of water and wastewater for potable and industrial uses, groundwater remediation. Principles of physical, chemical, and biological treatment processes." }, "CEE4320": { "subject": "CEE", "number": "4320", "name": "Hazardous Substance Engr ", - "description": "Technical aspects of hazardous waste management and treatment including legislation, exposure and risk assessment, contaminant fate and transport, waste treatment methods, and remediation technologies. Full Description " + "description": "Technical aspects of hazardous waste management and treatment including legislation, exposure and risk assessment, contaminant fate and transport, waste treatment methods, and remediation technologies." }, "CEE4330": { "subject": "CEE", "number": "4330", "name": "Air Pollution Engr ", - "description": "Introduction to the physical and chemical processes affecting the dynamics and fate of air pollutants at the local, regional, and global scales. Particular emphasis is on tropospheric pollutant chemistry and transport. Full Description " + "description": "Introduction to the physical and chemical processes affecting the dynamics and fate of air pollutants at the local, regional, and global scales. Particular emphasis is on tropospheric pollutant chemistry and transport." }, "CEE4340": { "subject": "CEE", "number": "4340", "name": "Env Modeling & Health ", - "description": "This course provides an introduction to modeling techniques used in the environmental health field, with emphasis on three different exposure pathways introduced as the air pathway, groundwater pathway, and surface water pathway. Full Description " + "description": "This course provides an introduction to modeling techniques used in the environmental health field, with emphasis on three different exposure pathways introduced as the air pathway, groundwater pathway, and surface water pathway." }, "CEE4395": { "subject": "CEE", "number": "4395", "name": "Environmental Sys Design ", - "description": "Design and assessment of an environmental system, component or process, including problem definition, data acquisition, modeling and analysis, evaluation of alternatives, and presentations. Full Description " + "description": "Design and assessment of an environmental system, component or process, including problem definition, data acquisition, modeling and analysis, evaluation of alternatives, and presentations." }, "CEE4405": { "subject": "CEE", "number": "4405", "name": "Geotechnical Engineering ", - "description": "Introduction to soil as an engineering material, with a focus on the mechanics of soil strength and compressibility, and fluid flow through soils. Full Description " + "description": "Introduction to soil as an engineering material, with a focus on the mechanics of soil strength and compressibility, and fluid flow through soils." }, "CEE4406": { "subject": "CEE", "number": "4406", "name": "Applied Geotechnics ", - "description": "Geotechnical principles applied to civil engineering construction, including evaluation of soil and rock properties, shallow foundations, drive and bored pilings, liquefaction, and ground modification. Credit not allowed for both CEE 4406 and CEE 4410. Full Description " + "description": "Geotechnical principles applied to civil engineering construction, including evaluation of soil and rock properties, shallow foundations, drive and bored pilings, liquefaction, and ground modification. Credit not allowed for both CEE 4406 and CEE 4410." }, "CEE4410": { "subject": "CEE", "number": "4410", "name": "Geosystems Engr Design ", - "description": "Analysis and design in geosystems engineering projects, including the evaluation of pile foundations, slope stability, earth-retaining structures, and embankments. Credit not allowed for both CEE 4410 and CEE 4406. Full Description " + "description": "Analysis and design in geosystems engineering projects, including the evaluation of pile foundations, slope stability, earth-retaining structures, and embankments. Credit not allowed for both CEE 4410 and CEE 4406." }, "CEE4420": { "subject": "CEE", "number": "4420", "name": "Subsurface Character ", - "description": "Introduction to field and laboratory methods for characterizing subsurface geological, hydrological, geotechnical, and contaminant conditions. Full Description " + "description": "Introduction to field and laboratory methods for characterizing subsurface geological, hydrological, geotechnical, and contaminant conditions." }, "CEE4430": { "subject": "CEE", "number": "4430", "name": "Environmental Geotechnic ", - "description": "Chemical equilibria and partitioning in subsurface systems; hazardous waste site assessment technologies and data; including soil gas data, monitoring wells, and direct-push technology. Full Description " + "description": "Chemical equilibria and partitioning in subsurface systems; hazardous waste site assessment technologies and data; including soil gas data, monitoring wells, and direct-push technology." }, "CEE4510": { "subject": "CEE", "number": "4510", "name": "Structural Steel Dsgn ", - "description": "Principles of behavior of tension and compression members, beams, and connections with application to the design of elementary structures. Full Description " + "description": "Principles of behavior of tension and compression members, beams, and connections with application to the design of elementary structures." }, "CEE4520": { "subject": "CEE", "number": "4520", "name": "Reinforced Concrete Dsgn ", - "description": "Principles of behavior of reinforced concrete beams, short columns, and slabs, with application to the design of elementary concrete structures, foundation, and earth- retaining structures. Full Description " + "description": "Principles of behavior of reinforced concrete beams, short columns, and slabs, with application to the design of elementary concrete structures, foundation, and earth- retaining structures." }, "CEE4530": { "subject": "CEE", "number": "4530", "name": "Timber & Masonry Design ", - "description": "Stress-based design of tension, compression, and flexural members; design of building systems, unreinforced and reinforced walls using timber and masonry construction materials and techniques. Full Description " + "description": "Stress-based design of tension, compression, and flexural members; design of building systems, unreinforced and reinforced walls using timber and masonry construction materials and techniques." }, "CEE4540": { "subject": "CEE", "number": "4540", "name": "Infrastructure Rehab ", - "description": "Rehabilitation of civil infrastructure systems including aspects of deterioration science, nondestructive assessment, renewal engineering, construction planning and management, and public policy and finance. Full Description " + "description": "Rehabilitation of civil infrastructure systems including aspects of deterioration science, nondestructive assessment, renewal engineering, construction planning and management, and public policy and finance." }, "CEE4550": { "subject": "CEE", "number": "4550", "name": "Structural Analysis II ", - "description": "Analysis of two- and three-dimensional statically indeterminate structures by classical and matrix methods of solution. Flexibility and stiffness techniques, influence lines, approximate analysis, and nonlinear analysis. Full Description " + "description": "Analysis of two- and three-dimensional statically indeterminate structures by classical and matrix methods of solution. Flexibility and stiffness techniques, influence lines, approximate analysis, and nonlinear analysis." }, "CEE4600": { "subject": "CEE", "number": "4600", "name": "Transportation Plan&Dsgn ", - "description": "Introduction to transportation engineering with specific emphasis on the planning, design, and operation of transportation facilities. Full Description " + "description": "Introduction to transportation engineering with specific emphasis on the planning, design, and operation of transportation facilities." }, "CEE4610": { "subject": "CEE", "number": "4610", "name": "Multimodal Transport ", - "description": "Planning, design, and operation of systems of air, rail, water, and highway facilities, including those for bicycles and pedestrians. Full Description " + "description": "Planning, design, and operation of systems of air, rail, water, and highway facilities, including those for bicycles and pedestrians." }, "CEE4620": { "subject": "CEE", "number": "4620", "name": "Environ Impact Assess ", - "description": "Key policy, planning, and methodological issues in the environmental impact assessment of engineering systems including the regulatory framework and analytical techniques. Full Description " + "description": "Key policy, planning, and methodological issues in the environmental impact assessment of engineering systems including the regulatory framework and analytical techniques." }, "CEE4630": { "subject": "CEE", "number": "4630", "name": "Computer-Aided Site Dsgn ", - "description": "Site development principles and application to a comprehensive design project using computer-based digital terrain model software tools. Full Description " + "description": "Site development principles and application to a comprehensive design project using computer-based digital terrain model software tools." }, "CEE4640": { "subject": "CEE", "number": "4640", "name": "Freeway & Interch Design ", - "description": "An introduction to the planning and design of freeways and interchanges. Topics include various interchange forms, HOV lanes, ramp metering, tolling, and truck by-pass ramps. Full Description " + "description": "An introduction to the planning and design of freeways and interchanges. Topics include various interchange forms, HOV lanes, ramp metering, tolling, and truck by-pass ramps." }, "CEE4650": { "subject": "CEE", "number": "4650", "name": "Site Design In Transport ", - "description": "An introduction to the planning and design of site developments. Topics include site traffic analysis and driveway, parking lot, drive-thru facility, site circulation, delivery facility and residential neighborhood design. Full Description " + "description": "An introduction to the planning and design of site developments. Topics include site traffic analysis and driveway, parking lot, drive-thru facility, site circulation, delivery facility and residential neighborhood design." }, "CEE4698": { "subject": "CEE", "number": "4698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "CEE4699": { "subject": "CEE", "number": "4699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "CEE4791": { "subject": "CEE", "number": "4791", "name": "Mech Behavior-Composites ", - "description": "Stress-strain behavior of composites, property of matrix and reinforcing materials, mechanics of fiber-reinforced composites, lamina and laminate analysis, and mechanical performance. Crosslisted with AE, CHE, ME, MSE, and PTFE 4791. Full Description " + "description": "Stress-strain behavior of composites, property of matrix and reinforcing materials, mechanics of fiber-reinforced composites, lamina and laminate analysis, and mechanical performance. Crosslisted with AE, CHE, ME, MSE, and PTFE 4791." }, "CEE4793": { "subject": "CEE", "number": "4793", "name": "Composite Mater& Process ", - "description": "Basic principles of selection and design of composite materials and their manufacturing and testing. Cost factors. Laboratory exercises on manufacturing and tests. Crosslisted with AE, CHE, ME, MSE, and PTFE 4793. Full Description " + "description": "Basic principles of selection and design of composite materials and their manufacturing and testing. Cost factors. Laboratory exercises on manufacturing and tests. Crosslisted with AE, CHE, ME, MSE, and PTFE 4793." }, "CEE4794": { "subject": "CEE", "number": "4794", "name": "Composite Materials& Mfg ", - "description": "Basic principles of selection and design of composite materials and their manufacturing and testing. Cost factors. Laboratory exercises on manufacturing and tests. Crosslisted with AE, CHE, ME, MSE, and PTFE 4794. Full Description " + "description": "Basic principles of selection and design of composite materials and their manufacturing and testing. Cost factors. Laboratory exercises on manufacturing and tests. Crosslisted with AE, CHE, ME, MSE, and PTFE 4794." }, "CEE4795": { "subject": "CEE", "number": "4795", "name": "Groundwater Hydrology ", - "description": "Dynamics of flow and solute transport in groundwater, including theory, implementation, and case studies. Crosslisted with EAS 4795. Full Description " + "description": "Dynamics of flow and solute transport in groundwater, including theory, implementation, and case studies. Crosslisted with EAS 4795." }, "CEE4801": { "subject": "CEE", "number": "4801", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "CEE4802": { "subject": "CEE", "number": "4802", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "CEE4803": { "subject": "CEE", "number": "4803", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "CEE4804": { "subject": "CEE", "number": "4804", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "CEE4805": { "subject": "CEE", "number": "4805", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "CEE4806": { "subject": "CEE", "number": "4806", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "CEE4900": { "subject": "CEE", "number": "4900", "name": "CEE Honors Research ", - "description": "Individual research projects conducted in conjunction with and under the direction of a CEE faculty member. Participation by invitation, and agreement with individual faculty members. Project culminates in a thesis and presentation. Full Description " + "description": "Individual research projects conducted in conjunction with and under the direction of a CEE faculty member. Participation by invitation, and agreement with individual faculty members. Project culminates in a thesis and presentation." }, "CEE4901": { "subject": "CEE", "number": "4901", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "CEE4902": { "subject": "CEE", "number": "4902", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "CEE4903": { "subject": "CEE", "number": "4903", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "CEE4XXX": { "subject": "CEE", "number": "4XXX", "name": "Civil/Env Engr Elective` ", - "description": " Full Description " + "description": "" }, "CEE6100": { "subject": "CEE", "number": "6100", "name": "Construction Project Pln ", - "description": "Introduction to project planning concepts including organization development, computer-based scheduling, computer-based estimating, regulatory agencies, and project financing. Full Description " + "description": "Introduction to project planning concepts including organization development, computer-based scheduling, computer-based estimating, regulatory agencies, and project financing." }, "CEE6110": { "subject": "CEE", "number": "6110", "name": "Computer Apps-Construct ", - "description": "Introduction to computing tools impacting the construction industry and the analysis techniques used to determine company automation requirements. Full Description " + "description": "Introduction to computing tools impacting the construction industry and the analysis techniques used to determine company automation requirements." }, "CEE6120": { "subject": "CEE", "number": "6120", "name": "Env Conscious-Dgn&Const ", - "description": "Introduction to framework, concepts, principles, strategies, and tools for environmentally conscious design and construction of facilities and civil infrastructure systems. Full Description " + "description": "Introduction to framework, concepts, principles, strategies, and tools for environmentally conscious design and construction of facilities and civil infrastructure systems." }, "CEE6130": { "subject": "CEE", "number": "6130", "name": "Construction Proj Ctrls ", - "description": "Introduction to project control concepts and advanced implementation techniques. Project control concerns including project budgeting, project productivity, cash flow, and resource allocation will be introduced. Full Description " + "description": "Introduction to project control concepts and advanced implementation techniques. Project control concerns including project budgeting, project productivity, cash flow, and resource allocation will be introduced." }, "CEE6140": { "subject": "CEE", "number": "6140", "name": "Adv Plan&Estimating Meth ", - "description": "Overview of advanced methods for planning and estimating construction projects including resource allocation/management, project control techniques, interpretation of schedules and estimates, and value engineering. Full Description " + "description": "Overview of advanced methods for planning and estimating construction projects including resource allocation/management, project control techniques, interpretation of schedules and estimates, and value engineering." }, "CEE6150": { "subject": "CEE", "number": "6150", "name": "Construction Law ", - "description": "Overview of construction law and legal issues encountered by the construction engineer and manager. Full Description " + "description": "Overview of construction law and legal issues encountered by the construction engineer and manager." }, "CEE6170": { "subject": "CEE", "number": "6170", "name": "Proj Deliver&Procurement ", - "description": "Analysis of construction project delivery including traditional, design-build, construction management, multiple prime contractors, and related financing. The course focuses on the owner's role in construction. Full Description " + "description": "Analysis of construction project delivery including traditional, design-build, construction management, multiple prime contractors, and related financing. The course focuses on the owner's role in construction." }, "CEE6180": { "subject": "CEE", "number": "6180", "name": "Construction Orgs ", - "description": "Introduction to organizational concepts of the construction industry including strategic management, company financing, human resources, and market analysis. Full Description " + "description": "Introduction to organizational concepts of the construction industry including strategic management, company financing, human resources, and market analysis." }, "CEE6190": { "subject": "CEE", "number": "6190", "name": "Construction Field Engr ", - "description": "Introduction to construction engineering techniques and practices including site excavation, shoring structures, heavy equipment, site layout, and temporary facility construction. Full Description " + "description": "Introduction to construction engineering techniques and practices including site excavation, shoring structures, heavy equipment, site layout, and temporary facility construction." }, "CEE6221": { "subject": "CEE", "number": "6221", "name": "Physical Hydrology ", - "description": "Occurrence, movement, and distribution of water. Topics: hydrologic cycle, global circulation, climate, atmospheric water vapor, thermodynamics, precipitation, evaporation, snowmelt, soil moisture, unsaturated flow, infiltration, geomorphology, runoff, and routing. Full Description " + "description": "Occurrence, movement, and distribution of water. Topics: hydrologic cycle, global circulation, climate, atmospheric water vapor, thermodynamics, precipitation, evaporation, snowmelt, soil moisture, unsaturated flow, infiltration, geomorphology, runoff, and routing." }, "CEE6222": { "subject": "CEE", "number": "6222", "name": "Hydrometeorology ", - "description": "Estimation of hydrologic variables from on-site and remote sensors; operational hydrologic models; parameter estimation; operational forecasting. Full Description " + "description": "Estimation of hydrologic variables from on-site and remote sensors; operational hydrologic models; parameter estimation; operational forecasting." }, "CEE6231": { "subject": "CEE", "number": "6231", "name": "Probability&Statistics ", - "description": "Engineers Probability distributions applicable to civil engineering Systems; function of random variables; regression and correlation analysis; parameters estimation and statistical hypothesis tests. Full Description " + "description": "Engineers Probability distributions applicable to civil engineering Systems; function of random variables; regression and correlation analysis; parameters estimation and statistical hypothesis tests." }, "CEE6232": { "subject": "CEE", "number": "6232", "name": "Stochastic Hydrology ", - "description": "Stochastic modeling of hydrologic processes. Problems of model specifications and parameter identification, and validation. Application to forecasting and synthetic events. Full Description " + "description": "Stochastic modeling of hydrologic processes. Problems of model specifications and parameter identification, and validation. Application to forecasting and synthetic events." }, "CEE6241": { "subject": "CEE", "number": "6241", "name": "Water Resources Mgt I ", - "description": "Operations research methodologies, including linear and nonlinear programming, and their applications to water resources systems. Full Description " + "description": "Operations research methodologies, including linear and nonlinear programming, and their applications to water resources systems." }, "CEE6242": { "subject": "CEE", "number": "6242", "name": "Water Resources Mgt II ", - "description": "Design of decision support systems for water resources planning and management. Full Description " + "description": "Design of decision support systems for water resources planning and management." }, "CEE6244": { "subject": "CEE", "number": "6244", "name": "Random Fields&Geostatist ", - "description": "Probability density function; moments; scales of fluctuations; spectral representation; simulation of random fields; cross-correlated random fields; vector fields; kriging; conditional simulation. Full Description " + "description": "Probability density function; moments; scales of fluctuations; spectral representation; simulation of random fields; cross-correlated random fields; vector fields; kriging; conditional simulation." }, "CEE6251": { "subject": "CEE", "number": "6251", "name": "Fluid Mechanics ", - "description": "Concepts of linear and angular deformation, vorticity, and conservation of mass. Development of Navier-Stokes with solutions: steady and unsteady uniform laminar, vortex, creeping, and potential flow. Full Description " + "description": "Concepts of linear and angular deformation, vorticity, and conservation of mass. Development of Navier-Stokes with solutions: steady and unsteady uniform laminar, vortex, creeping, and potential flow." }, "CEE6252": { "subject": "CEE", "number": "6252", "name": "Adv Fluid Mechanics ", - "description": "Theory of three-dimensional turbulent boundary layers with application to environmental flows in rivers, estuaries, and the atmosphere of interest in water resources engineering. Full Description " + "description": "Theory of three-dimensional turbulent boundary layers with application to environmental flows in rivers, estuaries, and the atmosphere of interest in water resources engineering." }, "CEE6261": { "subject": "CEE", "number": "6261", "name": "Environ Fluid Mechanics ", - "description": "Dynamics, mixing, and contaminant transport in surface water bodies, including lakes, rivers, estuaries, and coastal waters. Introduction to numerical models. Prediction of mixing zones. Full Description " + "description": "Dynamics, mixing, and contaminant transport in surface water bodies, including lakes, rivers, estuaries, and coastal waters. Introduction to numerical models. Prediction of mixing zones." }, "CEE6262": { "subject": "CEE", "number": "6262", "name": "Adv Environ Fluid Mech ", - "description": "Buoyancy modifications to the mixing and dynamics of pollutant discharges and surface water bodies. Gathering and analysis of laboratory and field data for mixing problems. Full Description " + "description": "Buoyancy modifications to the mixing and dynamics of pollutant discharges and surface water bodies. Gathering and analysis of laboratory and field data for mixing problems." }, "CEE6263": { "subject": "CEE", "number": "6263", "name": "Fluid Mech of Organisms ", - "description": "Principles of fluid mechanics are applied in the context of biology. Discussion of transport of chemical and mechanical signals and fluid forces affecting organisms. Full Description " + "description": "Principles of fluid mechanics are applied in the context of biology. Discussion of transport of chemical and mechanical signals and fluid forces affecting organisms." }, "CEE6271": { "subject": "CEE", "number": "6271", "name": "Flow-Porous Media I ", - "description": "Basic principles governing ground water flow. Topics covered: fundamental principles of saturated and unsaturated ground water flow, contaminant transport, and salt water intrusion. Full Description " + "description": "Basic principles governing ground water flow. Topics covered: fundamental principles of saturated and unsaturated ground water flow, contaminant transport, and salt water intrusion." }, "CEE6272": { "subject": "CEE", "number": "6272", "name": "Flow-Porous Media II ", - "description": "Principles of numerical methods used in solving ground water flow, contaminant transport models, building on materials covered in CEE 6271. Topics: finite element, difference methods, saturated/unsaturated ground water flow, and contaminant transport. Full Description " + "description": "Principles of numerical methods used in solving ground water flow, contaminant transport models, building on materials covered in CEE 6271. Topics: finite element, difference methods, saturated/unsaturated ground water flow, and contaminant transport." }, "CEE6274": { "subject": "CEE", "number": "6274", "name": "Flow-Heterogeneous Media ", - "description": "Advanced treatment of transport processes in natural porous media: classical description; stochastic description of variability; dynamic models; flow and transport in aquifers; model uncertainty. Full Description " + "description": "Advanced treatment of transport processes in natural porous media: classical description; stochastic description of variability; dynamic models; flow and transport in aquifers; model uncertainty." }, "CEE6281": { "subject": "CEE", "number": "6281", "name": "Open Channel Hydraulics ", - "description": "Flow of liquids with free surfaces in artificial and natural channels. Analysis of flow resistance. Computation of gradually varied flow profiles. Flow through transitions, spillways, bridges, culverts. Analysis of unsteady flow. Full Description " + "description": "Flow of liquids with free surfaces in artificial and natural channels. Analysis of flow resistance. Computation of gradually varied flow profiles. Flow through transitions, spillways, bridges, culverts. Analysis of unsteady flow." }, "CEE6282": { "subject": "CEE", "number": "6282", "name": "Sediment Transport ", - "description": "Engineering importance of erosion and sedimentation problems. Topics: properties of non-cohesive/cohesive sediments including specific weight/gravity/shape/size/ size distribution/fall velocity/mineral structure/ rheological properties. Full Description " + "description": "Engineering importance of erosion and sedimentation problems. Topics: properties of non-cohesive/cohesive sediments including specific weight/gravity/shape/size/ size distribution/fall velocity/mineral structure/ rheological properties." }, "CEE6284": { "subject": "CEE", "number": "6284", "name": "Hydraulic Transients ", - "description": "Transient flow of liquids in piping systems. One-dimensional wave equations and method of characteristics. Effects of valves and pumps on water hammer. Cavitation and liquid-column separation. Full Description " + "description": "Transient flow of liquids in piping systems. One-dimensional wave equations and method of characteristics. Effects of valves and pumps on water hammer. Cavitation and liquid-column separation." }, "CEE6293": { "subject": "CEE", "number": "6293", "name": "Hydrodynamic Stab&Turb ", - "description": "Flow in stability and turbulence are important in virtually all environmental flows. Fundamental stability, transition, and turbulent concepts along with their engineering relevance will be introduced. Full Description " + "description": "Flow in stability and turbulence are important in virtually all environmental flows. Fundamental stability, transition, and turbulent concepts along with their engineering relevance will be introduced." }, "CEE6310": { "subject": "CEE", "number": "6310", "name": "Process Principles-EnvE ", - "description": "Principles that can be used in the analysis and modeling of environmental engineering processes, including material and energy balances, mass transfer, and reaction engineering. Full Description " + "description": "Principles that can be used in the analysis and modeling of environmental engineering processes, including material and energy balances, mass transfer, and reaction engineering." }, "CEE6311": { "subject": "CEE", "number": "6311", "name": "Microbial Principles ", - "description": "Microbiological principles with emphasis on microbial nutrition and growth, inhibition and control of growth, biochemical thermodynamics, metabolic pathways, enzyme and microbial kinetics. Full Description " + "description": "Microbiological principles with emphasis on microbial nutrition and growth, inhibition and control of growth, biochemical thermodynamics, metabolic pathways, enzyme and microbial kinetics." }, "CEE6312": { "subject": "CEE", "number": "6312", "name": "Chemical Principles-EnvE ", - "description": "Fundamental principles of chemical equilibria and environmental organic chemistry in dilute aqueous systems with emphasis on chemical speciation and environmental engineering applications. Full Description " + "description": "Fundamental principles of chemical equilibria and environmental organic chemistry in dilute aqueous systems with emphasis on chemical speciation and environmental engineering applications." }, "CEE6313": { "subject": "CEE", "number": "6313", "name": "Fate of Contaminants ", - "description": "Effects of physical, chemical, and biological processes on the fate and transport of contaminants in unsaturated and saturated porous media. Full Description " + "description": "Effects of physical, chemical, and biological processes on the fate and transport of contaminants in unsaturated and saturated porous media." }, "CEE6314": { "subject": "CEE", "number": "6314", "name": "Environmental Modeling ", - "description": "This course is designed to provide an understanding of fundamental principles and approaches used in modeling environmental systems, as well as the necessary mathematical techniques. Full Description " + "description": "This course is designed to provide an understanding of fundamental principles and approaches used in modeling environmental systems, as well as the necessary mathematical techniques." }, "CEE6319": { "subject": "CEE", "number": "6319", "name": "Environmental Laboratory ", - "description": "Laboratory exercises and discussions for the understanding of fundamental chemical analytical, physicochemical, and applied microbiological principles in environmental engineering. Full Description " + "description": "Laboratory exercises and discussions for the understanding of fundamental chemical analytical, physicochemical, and applied microbiological principles in environmental engineering." }, "CEE6320": { "subject": "CEE", "number": "6320", "name": "Legal Inst Poll Frame ", - "description": "Fundamental principles of national and international water policy, legislation and management frameworks for transboundary water resources management. Full Description " + "description": "Fundamental principles of national and international water policy, legislation and management frameworks for transboundary water resources management." }, "CEE6321": { "subject": "CEE", "number": "6321", "name": "Water Qualilty & Ecology ", - "description": "Mixing/transport of pollutants and natural substances in surface waters, lakes, rivers, estuaries, coastal waters. Application of mathematical models of hydrodynamics and water quality to these water bodies. Full Description " + "description": "Mixing/transport of pollutants and natural substances in surface waters, lakes, rivers, estuaries, coastal waters. Application of mathematical models of hydrodynamics and water quality to these water bodies." }, "CEE6322": { "subject": "CEE", "number": "6322", "name": "Water Res Sys Analy ", - "description": "The policy, legal, and institutional contexts of water resources planning and management, information and modeling systems, modeling tools, and the practical experience with the use of decision support systems. Full Description " + "description": "The policy, legal, and institutional contexts of water resources planning and management, information and modeling systems, modeling tools, and the practical experience with the use of decision support systems." }, "CEE6323": { "subject": "CEE", "number": "6323", "name": "Natrl Res Envr Econ ", - "description": "Relation between economic and ecological systems, case studies and examples, tools of environmental policy, environmental economic evaluation. Full Description " + "description": "Relation between economic and ecological systems, case studies and examples, tools of environmental policy, environmental economic evaluation." }, "CEE6324": { "subject": "CEE", "number": "6324", "name": "Water Supply and Sanit ", - "description": "Sanitation, wastewater characterization, wastewater treatment process analysis and selection, pre-treatment options, biological treatment, removal of pollutants biosolids treatment and disposal, and safe water systems. Full Description " + "description": "Sanitation, wastewater characterization, wastewater treatment process analysis and selection, pre-treatment options, biological treatment, removal of pollutants biosolids treatment and disposal, and safe water systems." }, "CEE6325": { "subject": "CEE", "number": "6325", "name": "River Hydraulics ", - "description": "Open channel hydraulics, fluvial geomorphology, flood control structures, culverts, bridge openings, river bed and bank stability control measures. Full Description " + "description": "Open channel hydraulics, fluvial geomorphology, flood control structures, culverts, bridge openings, river bed and bank stability control measures." }, "CEE6326": { "subject": "CEE", "number": "6326", "name": "Hydr Princ & Pract ", - "description": "Hydrologic cycle, global circulation, climate, atmospheric water vapor, thermodynamics, precipitation, evaporation, snowmelt, soil moisture, unsaturated flow, infiltration, geomorphology, runoff, and routing. Full Description " + "description": "Hydrologic cycle, global circulation, climate, atmospheric water vapor, thermodynamics, precipitation, evaporation, snowmelt, soil moisture, unsaturated flow, infiltration, geomorphology, runoff, and routing." }, "CEE6327": { "subject": "CEE", "number": "6327", "name": "Stat Meth Envr Data ", - "description": "Provide a good understanding of the fundamental principles of probability/statistics, and demonstrate the application of these principles to environmental data analysis and prediction problems. Full Description " + "description": "Provide a good understanding of the fundamental principles of probability/statistics, and demonstrate the application of these principles to environmental data analysis and prediction problems." }, "CEE6330": { "subject": "CEE", "number": "6330", "name": "Physicochemical Process ", - "description": "Theory and application of the physical and chemical processes of coagulation, flocculation, sedimentation, softening, filtration, and disinfection in water and wastewater treatment. Full Description " + "description": "Theory and application of the physical and chemical processes of coagulation, flocculation, sedimentation, softening, filtration, and disinfection in water and wastewater treatment." }, "CEE6331": { "subject": "CEE", "number": "6331", "name": "Biological Processes ", - "description": "Microbial growth kinetics and bioenergetics, theory, modeling, and application of biological processes employed in water, wastewater, and hazardous waste treatment systems as well as subsurface bioremediation. Full Description " + "description": "Microbial growth kinetics and bioenergetics, theory, modeling, and application of biological processes employed in water, wastewater, and hazardous waste treatment systems as well as subsurface bioremediation." }, "CEE6332": { "subject": "CEE", "number": "6332", "name": "Separation Processes ", - "description": "Theory and applications of the physical and chemical processes of sorption, membrane separation, and absorption in both gas-phase and liquid-phase environmental engineering systems. Full Description " + "description": "Theory and applications of the physical and chemical processes of sorption, membrane separation, and absorption in both gas-phase and liquid-phase environmental engineering systems." }, "CEE6333": { "subject": "CEE", "number": "6333", "name": "Hazard Waste Remediation ", - "description": "Selection, design and implementation of hazardous waste site remediation technologies including pump-and-treat, soil vapor extraction, thermal processes, bioremediation, surfactant flushing, and barrier-treatment walls. Full Description " + "description": "Selection, design and implementation of hazardous waste site remediation technologies including pump-and-treat, soil vapor extraction, thermal processes, bioremediation, surfactant flushing, and barrier-treatment walls." }, "CEE6340": { "subject": "CEE", "number": "6340", "name": "Solid-Liquid Separations ", - "description": "Characterization, stabilization, conditioning, thickening, dewatering, conversion, recovery, transportation, and disposal of air, water, and wastewater treatment residues. Full Description " + "description": "Characterization, stabilization, conditioning, thickening, dewatering, conversion, recovery, transportation, and disposal of air, water, and wastewater treatment residues." }, "CEE6341": { "subject": "CEE", "number": "6341", "name": "Industrial Wastes ", - "description": "A review of current policies and approaches in industrial waste treatment, and application of engineering principles and processes for waste treatment, recovery, and disposal. Full Description " + "description": "A review of current policies and approaches in industrial waste treatment, and application of engineering principles and processes for waste treatment, recovery, and disposal." }, "CEE6342": { "subject": "CEE", "number": "6342", "name": "Solid Wastes ", - "description": "An introduction of the current regulations and fundamentals of solid waste management, characterization, handling, recycling, transportation, and final disposal systems. Full Description " + "description": "An introduction of the current regulations and fundamentals of solid waste management, characterization, handling, recycling, transportation, and final disposal systems." }, "CEE6343": { "subject": "CEE", "number": "6343", "name": "Membrane Processes ", - "description": "An introduction of the theories of membrane separation processes with special emphasis on desalination, softening, THM precursors reduction using reverse osmosis and nanofiltration. Full Description " + "description": "An introduction of the theories of membrane separation processes with special emphasis on desalination, softening, THM precursors reduction using reverse osmosis and nanofiltration." }, "CEE6345": { "subject": "CEE", "number": "6345", "name": "Sustainable Engineering ", - "description": "The course is intended to introduce students to the interaction between human and natural environment and provide an overview on the emerging science of sustainability. Full Description " + "description": "The course is intended to introduce students to the interaction between human and natural environment and provide an overview on the emerging science of sustainability." }, "CEE6350": { "subject": "CEE", "number": "6350", "name": "Adv Environmental Chem ", - "description": "Chemical behavior of inorganic and organic compounds in natural waters. Topics include chemistry of metal ions, partitioning and distribution of organic pollutants, surface reactions. Full Description " + "description": "Chemical behavior of inorganic and organic compounds in natural waters. Topics include chemistry of metal ions, partitioning and distribution of organic pollutants, surface reactions." }, "CEE6351": { "subject": "CEE", "number": "6351", "name": "Biotransformations ", - "description": "Biotransformation pathways and kinetics of anthropogenic recalcitrant compounds and biological, biochemical, and environmental factors affecting these transformations in natural and engineered systems. Full Description " + "description": "Biotransformation pathways and kinetics of anthropogenic recalcitrant compounds and biological, biochemical, and environmental factors affecting these transformations in natural and engineered systems." }, "CEE6355": { "subject": "CEE", "number": "6355", "name": "Industrial Ecology-EnvE ", - "description": "Introduces the principles of environmentally conscious products, processes, and manufacturing systems. Full Description " + "description": "Introduces the principles of environmentally conscious products, processes, and manufacturing systems." }, "CEE6360": { "subject": "CEE", "number": "6360", "name": "Dgn-Treatment Facilities ", - "description": "Theory and design of process tanks and equipment for capture, purification, conditioning, storage, and distribution of safe drinking water. Full Description " + "description": "Theory and design of process tanks and equipment for capture, purification, conditioning, storage, and distribution of safe drinking water." }, "CEE6361": { "subject": "CEE", "number": "6361", "name": "Model&Sim-Biol Treat Sys ", - "description": "Theory and design of biological treatment systems for water reclamation, nutrient removal, and integrated process design and optimization using advanced computer models. Full Description " + "description": "Theory and design of biological treatment systems for water reclamation, nutrient removal, and integrated process design and optimization using advanced computer models." }, "CEE6390": { "subject": "CEE", "number": "6390", "name": "Air Pollutant:Form&Ctrl ", - "description": "Analysis of air pollutants through the study of radical reaction pathways, combustion processes, and removal of particles and gaseous pollutants from exhaust gas streams. Full Description " + "description": "Analysis of air pollutants through the study of radical reaction pathways, combustion processes, and removal of particles and gaseous pollutants from exhaust gas streams." }, "CEE6391": { "subject": "CEE", "number": "6391", "name": "Adv Topics-Air Pollution ", - "description": "Current topics in air pollution engineering presented and discussed. Full Description " + "description": "Current topics in air pollution engineering presented and discussed." }, "CEE6402": { "subject": "CEE", "number": "6402", "name": "Soil Mechanics ", - "description": "Fundamental concepts related to the mechanical behavior of soils, including: effective stress, strength, stiffness, permeability, time-dependent behavior. Full Description " + "description": "Fundamental concepts related to the mechanical behavior of soils, including: effective stress, strength, stiffness, permeability, time-dependent behavior." }, "CEE6403": { "subject": "CEE", "number": "6403", "name": "Environmental Geotechnic ", - "description": "Evaluation of equilibria and partitioning as applied to site assessment techniques including soil gas data, monitoring wells, soil samples, and direct-push technology. Full Description " + "description": "Evaluation of equilibria and partitioning as applied to site assessment techniques including soil gas data, monitoring wells, soil samples, and direct-push technology." }, "CEE6421": { "subject": "CEE", "number": "6421", "name": "Lab Charact-Geomaterials ", - "description": "Instruction in the procedures, methods of interpretation and apparatus limitations and influences for geotechnical laboratory index, strength, deformation, and permeability tests. Full Description " + "description": "Instruction in the procedures, methods of interpretation and apparatus limitations and influences for geotechnical laboratory index, strength, deformation, and permeability tests." }, "CEE6422": { "subject": "CEE", "number": "6422", "name": "Soils& Experimental Meth ", - "description": "Macrobehavior and microlevel phenomena in particulate media are experimentally studied. Topics in experimental research include: scale effects, similarity, falsification, errors, transducers, design of experiments. Full Description " + "description": "Macrobehavior and microlevel phenomena in particulate media are experimentally studied. Topics in experimental research include: scale effects, similarity, falsification, errors, transducers, design of experiments." }, "CEE6423": { "subject": "CEE", "number": "6423", "name": "In-Situ Testing ", - "description": "Field testing and sampling of geomaterials, primarily soils and rocks. Introduces methods of drilling, probing, and in-situ measurement of soils for determining stratigraphy and engineering parameters for analysis, including soil borings, cone penetration tests, pressuremeter, dilatometer, and other tests. Full Description " + "description": "Field testing and sampling of geomaterials, primarily soils and rocks. Introduces methods of drilling, probing, and in-situ measurement of soils for determining stratigraphy and engineering parameters for analysis, including soil borings, cone penetration tests, pressuremeter, dilatometer, and other tests." }, "CEE6424": { "subject": "CEE", "number": "6424", "name": "Engineering Geophysics ", - "description": "Geophysical techniques used to characterize near-surface soils and rocks including seismic, magnetic, electromagnetic, radar, and resistivity methods. Full Description " + "description": "Geophysical techniques used to characterize near-surface soils and rocks including seismic, magnetic, electromagnetic, radar, and resistivity methods." }, "CEE6431": { "subject": "CEE", "number": "6431", "name": "Plasticity Geomaterials ", - "description": " Full Description " + "description": "" }, "CEE6441": { "subject": "CEE", "number": "6441", "name": "Analysis-Earth Structure ", - "description": "Instruction in techniques for assessing the stability of earth-retaining structures including unreinforced slopes, reinforced slopes, free-standing retaining structures, and reinforced retaining structures. Full Description " + "description": "Instruction in techniques for assessing the stability of earth-retaining structures including unreinforced slopes, reinforced slopes, free-standing retaining structures, and reinforced retaining structures." }, "CEE6442": { "subject": "CEE", "number": "6442", "name": "Dyn Analy-Geotech Engr ", - "description": "Dynamic soil properties; response of foundations to dynamic loads; construction and blast vibration criteria; dynamic analysis of pile driving; introduction to liquefaction potential. Full Description " + "description": "Dynamic soil properties; response of foundations to dynamic loads; construction and blast vibration criteria; dynamic analysis of pile driving; introduction to liquefaction potential." }, "CEE6443": { "subject": "CEE", "number": "6443", "name": "Foundation Systems ", - "description": "Evaluation and design of foundations for civil engineering structures, including the settlement and bearing capacity of shallow spread footings, mats, and deep foundations. Footings, driven piles, bored piles, and drilled shafts analyzed using elastic continuum theory, limit plasticity, and cavity expansion solutions, supplemented with numerous case studies. Ancillary topics include axial load transfer, pile group interaction, lateral and moment loading, and pile dynamics. Full Description " + "description": "Evaluation and design of foundations for civil engineering structures, including the settlement and bearing capacity of shallow spread footings, mats, and deep foundations. Footings, driven piles, bored piles, and drilled shafts analyzed using elastic continuum theory, limit plasticity, and cavity expansion solutions, supplemented with numerous case studies. Ancillary topics include axial load transfer, pile group interaction, lateral and moment loading, and pile dynamics." }, "CEE6444": { "subject": "CEE", "number": "6444", "name": "Geosynthetics in CE ", - "description": "Development, fabrication, design, and applications of geotextiles, geogrids, geonets, and geomembranes. Full Description " + "description": "Development, fabrication, design, and applications of geotextiles, geogrids, geonets, and geomembranes." }, "CEE6445": { "subject": "CEE", "number": "6445", "name": "Geotech Earthquake Engr ", - "description": "Earthquake magnitude and intensity, seismic hazard evaluation using deterministic and probabilistic approaches, site response analyses and ground motion amplification liquefaction, and response of earth structures. Full Description " + "description": "Earthquake magnitude and intensity, seismic hazard evaluation using deterministic and probabilistic approaches, site response analyses and ground motion amplification liquefaction, and response of earth structures." }, "CEE6446": { "subject": "CEE", "number": "6446", "name": "Geotech Seepage Analysis ", - "description": "Seepage and its effects on engineering behavior of soils and its consequences for design of geoinfrastructure. Full Description " + "description": "Seepage and its effects on engineering behavior of soils and its consequences for design of geoinfrastructure." }, "CEE6447": { "subject": "CEE", "number": "6447", "name": "Ground Modification ", - "description": "Methods for improving marginal construction sites for geotechnical engineering projects and rehabilitation of geoinfrastructure. Full Description " + "description": "Methods for improving marginal construction sites for geotechnical engineering projects and rehabilitation of geoinfrastructure." }, "CEE6448": { "subject": "CEE", "number": "6448", "name": "Landfill Design & Mgt ", - "description": "The course deals with geomaterial selection and characterization, chemical compatibility, placement procedures (including compaction), design strategies, seepage issues, instrumentation, and environmental monitoring. Full Description " + "description": "The course deals with geomaterial selection and characterization, chemical compatibility, placement procedures (including compaction), design strategies, seepage issues, instrumentation, and environmental monitoring." }, "CEE6449": { "subject": "CEE", "number": "6449", "name": "Remediation Systems ", - "description": "Design of remediation systems and management approaches for the petrochemical, power generation, metals finishing, and mining industries are emphasized. Risk analysis and case histories are presented. Full Description " + "description": "Design of remediation systems and management approaches for the petrochemical, power generation, metals finishing, and mining industries are emphasized. Risk analysis and case histories are presented." }, "CEE6450": { "subject": "CEE", "number": "6450", "name": "Pavement Design ", - "description": "Analysis and design of flexible and rigid pavement for highway and airfield runway, evaluation of pavement performance and distress, and pavement rehabilitation strategy and techniques. Full Description " + "description": "Analysis and design of flexible and rigid pavement for highway and airfield runway, evaluation of pavement performance and distress, and pavement rehabilitation strategy and techniques." }, "CEE6451": { "subject": "CEE", "number": "6451", "name": "Rock Mechanics ", - "description": "Rock characterization, scale effect, in-situ stresses, mechanisms of rock deformation and fracture, rock engineering; special attention to common principles unifying presented set of topics. Full Description " + "description": "Rock characterization, scale effect, in-situ stresses, mechanisms of rock deformation and fracture, rock engineering; special attention to common principles unifying presented set of topics." }, "CEE6460": { "subject": "CEE", "number": "6460", "name": "Theoretical Geomechanics ", - "description": "Field equations of linear elasticity, solutions of boundary value problems, steady/transient flow in porous media. Yielding and failure of soils; plasticity theory and limit analyses. Constitutive soil models. Introduction to finite elements with geotechnical engineering applications. Full Description " + "description": "Field equations of linear elasticity, solutions of boundary value problems, steady/transient flow in porous media. Yielding and failure of soils; plasticity theory and limit analyses. Constitutive soil models. Introduction to finite elements with geotechnical engineering applications." }, "CEE6461": { "subject": "CEE", "number": "6461", "name": "Math Applications in CEE ", - "description": "Mathematical techniques are reviewed in the context of CEE problems. The simplified yet mathematically rigorous approach highlights the internal mathematical connections between different engineering problems. Full Description " + "description": "Mathematical techniques are reviewed in the context of CEE problems. The simplified yet mathematically rigorous approach highlights the internal mathematical connections between different engineering problems." }, "CEE6462": { "subject": "CEE", "number": "6462", "name": "Signals&Inverse Problems ", - "description": "Civil engineering signals and systems. Discrete time and frequency domain operations. Nonlinear and nonstationary systems. Inverse problems. Matrix-based and other solutions. Tomography. Civil engineering examples. Full Description " + "description": "Civil engineering signals and systems. Discrete time and frequency domain operations. Nonlinear and nonstationary systems. Inverse problems. Matrix-based and other solutions. Tomography. Civil engineering examples." }, "CEE6463": { "subject": "CEE", "number": "6463", "name": "Constitutive Model-Soils ", - "description": "Fundamental concepts in modeling behavior of soils. Implementation of models into numerical solution codes. Evaluation of models used in practice. Full Description " + "description": "Fundamental concepts in modeling behavior of soils. Implementation of models into numerical solution codes. Evaluation of models used in practice." }, "CEE6481": { "subject": "CEE", "number": "6481", "name": "Unsaturated Soil Mech ", - "description": "This course presents many of the fundamental concepts behind the mechanical behavior of unsaturated soils. Full Description " + "description": "This course presents many of the fundamental concepts behind the mechanical behavior of unsaturated soils." }, "CEE6482": { "subject": "CEE", "number": "6482", "name": "Applied Fracture Mech ", - "description": "Application of fracture mechanics toward practical problems. General fracture behavior studied in the context of a variety of applied topics. Computer and experimental demonstrations. Full Description " + "description": "Application of fracture mechanics toward practical problems. General fracture behavior studied in the context of a variety of applied topics. Computer and experimental demonstrations." }, "CEE6483": { "subject": "CEE", "number": "6483", "name": "Geo Spatial Image Analy ", - "description": "Presentation of techniques for spatial and image processing and analysis of subsurface data at micro and macro scales. Full Description " + "description": "Presentation of techniques for spatial and image processing and analysis of subsurface data at micro and macro scales." }, "CEE6484": { "subject": "CEE", "number": "6484", "name": "Industrial Byproduct ", - "description": "Explores more fully the interface between geotechnology, geochemistry, and sustainable engineering to develop new applications using industrial byproducts. Full Description " + "description": "Explores more fully the interface between geotechnology, geochemistry, and sustainable engineering to develop new applications using industrial byproducts." }, "CEE6485": { "subject": "CEE", "number": "6485", "name": "Waves&Particulate Mater ", - "description": "Characterization of materials with mechanical and electromagnetic waves. Emphasis on particulates with extensions to other materials. Laboratory and field applications. Full Description " + "description": "Characterization of materials with mechanical and electromagnetic waves. Emphasis on particulates with extensions to other materials. Laboratory and field applications." }, "CEE6501": { "subject": "CEE", "number": "6501", "name": "Matrix Structural Analy ", - "description": "Static analysis of framed structures by flexibility and stiffness methods; computer models and solution for applied loads, temperature, support settlement, and member prestrain effects. Full Description " + "description": "Static analysis of framed structures by flexibility and stiffness methods; computer models and solution for applied loads, temperature, support settlement, and member prestrain effects." }, "CEE6504": { "subject": "CEE", "number": "6504", "name": "Finite Element Methods ", - "description": "Introduction to the element method with emphasis on analysis of solids and structures. One-, two-, and three-dimensional finite. Modeling, approximations, and errors. Full Description " + "description": "Introduction to the element method with emphasis on analysis of solids and structures. One-, two-, and three-dimensional finite. Modeling, approximations, and errors." }, "CEE6507": { "subject": "CEE", "number": "6507", "name": "Nonlinear Finite Elem ", - "description": "Lagrangian formulations for nonlinear analysis of solids and structures, including consistent linearization and state determination. Incremental-iterative solution approaches; computational plasticity. Software implementation. Full Description " + "description": "Lagrangian formulations for nonlinear analysis of solids and structures, including consistent linearization and state determination. Incremental-iterative solution approaches; computational plasticity. Software implementation." }, "CEE6510": { "subject": "CEE", "number": "6510", "name": "Structural Dynamics ", - "description": "Vibration and dynamic response of linear and nonlinear structures to periodic and general disturbing forces, with and without damping effects. Wind and earthquake SDOF and MDOF effects. Full Description " + "description": "Vibration and dynamic response of linear and nonlinear structures to periodic and general disturbing forces, with and without damping effects. Wind and earthquake SDOF and MDOF effects." }, "CEE6511": { "subject": "CEE", "number": "6511", "name": "Random Vibration ", - "description": "Stochastic processes as tools for modeling time-dependent structural excitations; random dynamic response of structural systems to time-dependent forces; reliability of dynamic structural systems. Full Description " + "description": "Stochastic processes as tools for modeling time-dependent structural excitations; random dynamic response of structural systems to time-dependent forces; reliability of dynamic structural systems." }, "CEE6512": { "subject": "CEE", "number": "6512", "name": "Adv Dynamics & Smart Str ", - "description": "Overview of advanced dynamics and smart structures. Topics include vibration modal analysis, signal processing, modern sensors technologies, structural monitoring, and structural control. Full Description " + "description": "Overview of advanced dynamics and smart structures. Topics include vibration modal analysis, signal processing, modern sensors technologies, structural monitoring, and structural control." }, "CEE6513": { "subject": "CEE", "number": "6513", "name": "Comput Methods-Mechanics ", - "description": "Generalization of finite element concepts; Galerkin-weighted residual and variational approaches; mixed and hybrid finite element formulations, applications, transient dynamic analysis; software implementation. Full Description " + "description": "Generalization of finite element concepts; Galerkin-weighted residual and variational approaches; mixed and hybrid finite element formulations, applications, transient dynamic analysis; software implementation." }, "CEE6521": { "subject": "CEE", "number": "6521", "name": "Reinfor Concrete Members ", - "description": "Behavior and design of RC members; ductility and inelastic response; deep beams; corbel and torsion design; column biaxial bending; shearwalls; effects of creep and shrinkage. Full Description " + "description": "Behavior and design of RC members; ductility and inelastic response; deep beams; corbel and torsion design; column biaxial bending; shearwalls; effects of creep and shrinkage." }, "CEE6522": { "subject": "CEE", "number": "6522", "name": "Reinf Concrete Slab Sys ", - "description": "Analysis and design of two-way slab systems, structural walls, and complex building configurations. Equivalent frame and analysis, strip and yield-line technique, application of finite element method to design of slab and wall systems. Full Description " + "description": "Analysis and design of two-way slab systems, structural walls, and complex building configurations. Equivalent frame and analysis, strip and yield-line technique, application of finite element method to design of slab and wall systems." }, "CEE6523": { "subject": "CEE", "number": "6523", "name": "Prestressed Concrete ", - "description": "Principles and practice of prestressed concrete. Analysis and design of statically determinate and indeterminate beams, and one-way and two-way slabs; precast pretensioned, posttensioned. Full Description " + "description": "Principles and practice of prestressed concrete. Analysis and design of statically determinate and indeterminate beams, and one-way and two-way slabs; precast pretensioned, posttensioned." }, "CEE6527": { "subject": "CEE", "number": "6527", "name": "Structural Steel Design ", - "description": "Strength, behavior, and design of steel structures according to WSD and LRFD. Plate girders, composite beams, bolted and welded connections, beam-columns, and torsion. Full Description " + "description": "Strength, behavior, and design of steel structures according to WSD and LRFD. Plate girders, composite beams, bolted and welded connections, beam-columns, and torsion." }, "CEE6528": { "subject": "CEE", "number": "6528", "name": "Intro Bridge Engineering ", - "description": "Introduction to loads, methods of analysis, design, fabrication and construction of girder bridges. Full Description " + "description": "Introduction to loads, methods of analysis, design, fabrication and construction of girder bridges." }, "CEE6530": { "subject": "CEE", "number": "6530", "name": "Structural Systems ", - "description": "Behavior and design of steel and concrete building and bridge systems. Introduction to structural planning with emphasis on economics, structural behavior, serviceability, and strength considerations. Full Description " + "description": "Behavior and design of steel and concrete building and bridge systems. Introduction to structural planning with emphasis on economics, structural behavior, serviceability, and strength considerations." }, "CEE6533": { "subject": "CEE", "number": "6533", "name": "Polymer Composite Struct ", - "description": "Strength, behavior, and design of polymeric composites, structural members, and connections for civil engineering applications. Full Description " + "description": "Strength, behavior, and design of polymeric composites, structural members, and connections for civil engineering applications." }, "CEE6536": { "subject": "CEE", "number": "6536", "name": "Rehab-Existing Structure ", - "description": "Deterioration science; corrosion of steel, alkali-silica reaction, freezing and thawing. Assessment and evaluation of existing structures, nondestructive testing, and nondestructive evaluation. Full Description " + "description": "Deterioration science; corrosion of steel, alkali-silica reaction, freezing and thawing. Assessment and evaluation of existing structures, nondestructive testing, and nondestructive evaluation." }, "CEE6541": { "subject": "CEE", "number": "6541", "name": "Earthquake Engineering ", - "description": "Characteristics of earthquakes; design and rehabilitation of civil engineering structures for earthquake ground motion; code provisions; case studies. Full Description " + "description": "Characteristics of earthquakes; design and rehabilitation of civil engineering structures for earthquake ground motion; code provisions; case studies." }, "CEE6542": { "subject": "CEE", "number": "6542", "name": "Consequence-Based EQ Eng ", - "description": "This course will provide focused instruction on earthquake engineering within a Consequence Based Engineering (CBE) framework. The course will reflect the cross-disciplinary nature of earthquake engineering practice and research, and will provide an overview on diverse topics in hazard definition, vulnerability assessment, mitigation measures and societal impact. Full Description " + "description": "This course will provide focused instruction on earthquake engineering within a Consequence Based Engineering (CBE) framework. The course will reflect the cross-disciplinary nature of earthquake engineering practice and research, and will provide an overview on diverse topics in hazard definition, vulnerability assessment, mitigation measures and societal impact." }, "CEE6544": { "subject": "CEE", "number": "6544", "name": "Structural Modeling ", - "description": "Modeling of structures for static, dynamic, and nonlinear analysis using finite elements. Effects of parameters on the structural behavior. Full Description " + "description": "Modeling of structures for static, dynamic, and nonlinear analysis using finite elements. Effects of parameters on the structural behavior." }, "CEE6548": { "subject": "CEE", "number": "6548", "name": "Inelastic Design ", - "description": "Analysis and design of structures based on ultimate load capacity as well as ductility design and capacity design principles. Application of the funcamental theorems of plastic design to continuous beams, frames, grillages and plates. Full Description " + "description": "Analysis and design of structures based on ultimate load capacity as well as ductility design and capacity design principles. Application of the funcamental theorems of plastic design to continuous beams, frames, grillages and plates." }, "CEE6549": { "subject": "CEE", "number": "6549", "name": "Structural Reliability ", - "description": "Concepts and applications of probability and statistics for analysis of risk and reliability of structures subjected to natural and man-made hazards; stochastic load and strength modeling; probabilistic risk assessment; introduction to stochastic computational mechanics. Full Description " + "description": "Concepts and applications of probability and statistics for analysis of risk and reliability of structures subjected to natural and man-made hazards; stochastic load and strength modeling; probabilistic risk assessment; introduction to stochastic computational mechanics." }, "CEE6551": { "subject": "CEE", "number": "6551", "name": "Strength of Materials ", - "description": "Study of advanced topics from mechanics of materials with application to structures. Typical topics: energy methods, failure theories, post-yield behavior, generalized bending and torsion. Full Description " + "description": "Study of advanced topics from mechanics of materials with application to structures. Typical topics: energy methods, failure theories, post-yield behavior, generalized bending and torsion." }, "CEE6554": { "subject": "CEE", "number": "6554", "name": "Theory-Elastic Stability ", - "description": "Concepts of elastic stability, simple mechanical models, buckling of beam-columns and frames, beams on elastic foundation, and plates energy methods, torsional and lateral buckling. Full Description " + "description": "Concepts of elastic stability, simple mechanical models, buckling of beam-columns and frames, beams on elastic foundation, and plates energy methods, torsional and lateral buckling." }, "CEE6557": { "subject": "CEE", "number": "6557", "name": "Theory-Plates and Shells ", - "description": "Plate bending, approximate methods, nonlinearity, stiffened and anisotropic plates. Stress and deformation of shells with and without bending, surfaces of revolutions, and shallow shells. Full Description " + "description": "Plate bending, approximate methods, nonlinearity, stiffened and anisotropic plates. Stress and deformation of shells with and without bending, surfaces of revolutions, and shallow shells." }, "CEE6560": { "subject": "CEE", "number": "6560", "name": "Applied Elasticity ", - "description": "Introduction to traction, stress, and equilibrium; deformations, strain compatibility; constitutive equations; two-dimensional problems in Cartesian and polar coordinates; application to extension, bending, and torsion. Full Description " + "description": "Introduction to traction, stress, and equilibrium; deformations, strain compatibility; constitutive equations; two-dimensional problems in Cartesian and polar coordinates; application to extension, bending, and torsion." }, "CEE6563": { "subject": "CEE", "number": "6563", "name": "Energy Methods-Mechanics ", - "description": "Virtual work, principles of potential energy and complementary energy, Castigliano's theorems, generalized and stationary variational principles, energy methods, structural applications, nonlinear problems, Hamilton's principle. Full Description " + "description": "Virtual work, principles of potential energy and complementary energy, Castigliano's theorems, generalized and stationary variational principles, energy methods, structural applications, nonlinear problems, Hamilton's principle." }, "CEE6566": { "subject": "CEE", "number": "6566", "name": "Plasticity& Viscoelastic ", - "description": "Plastic deformation, yield conditions, flow rules and normality, relaxation and creep, viscoelasticity, tubes and spheres, torsion and bending, slip line fields, viscoelastic boundary value problems. Full Description " + "description": "Plastic deformation, yield conditions, flow rules and normality, relaxation and creep, viscoelasticity, tubes and spheres, torsion and bending, slip line fields, viscoelastic boundary value problems." }, "CEE6569": { "subject": "CEE", "number": "6569", "name": "Wave Propagation-Solids ", - "description": "Plane waves in elastic half-spaces, reflection and refraction; Rayleigh and Stonely waves; waveguides, Love waves, Rayleigh-Lamb modes; Cagniard-de Hoop method; in anisotropic media. Full Description " + "description": "Plane waves in elastic half-spaces, reflection and refraction; Rayleigh and Stonely waves; waveguides, Love waves, Rayleigh-Lamb modes; Cagniard-de Hoop method; in anisotropic media." }, "CEE6571": { "subject": "CEE", "number": "6571", "name": "Experiment Stress Analy ", - "description": "Study of surface stress and strain using brittle coatings and strain gauges. Strain gauge circuits, static and dynamic problems, transducer design and circuits. Full Description " + "description": "Study of surface stress and strain using brittle coatings and strain gauges. Strain gauge circuits, static and dynamic problems, transducer design and circuits." }, "CEE6581": { "subject": "CEE", "number": "6581", "name": "Engr Programming Meth ", - "description": "Engineering programming concepts through the application of numerical solution techniques including program development, efficiencies, documentation, and testing using formal data structures and algorithms. Full Description " + "description": "Engineering programming concepts through the application of numerical solution techniques including program development, efficiencies, documentation, and testing using formal data structures and algorithms." }, "CEE6582": { "subject": "CEE", "number": "6582", "name": "Eng Knowledge-based Prog ", - "description": "The usage and development of knowledge-based computer systems in engineering is studied. Topics include knowledge acquisition, representation, and verification. Full Description " + "description": "The usage and development of knowledge-based computer systems in engineering is studied. Topics include knowledge acquisition, representation, and verification." }, "CEE6583": { "subject": "CEE", "number": "6583", "name": "Object-oriented Prog-Eng ", - "description": "Coverage of object-oriented and multimedia technologies is presented for their proper development and utilization in solving engineering problems. Full Description " + "description": "Coverage of object-oriented and multimedia technologies is presented for their proper development and utilization in solving engineering problems." }, "CEE6590": { "subject": "CEE", "number": "6590", "name": "Durability Cem Materials ", - "description": "Develop fundamental understanding of the chemical, physical, and mechanical aspects surrounding the durability of cement-based materials. Full Description " + "description": "Develop fundamental understanding of the chemical, physical, and mechanical aspects surrounding the durability of cement-based materials." }, "CEE6601": { "subject": "CEE", "number": "6601", "name": "Statistics in Transport ", - "description": "Theory of simple and multivariate regression and analysis of variance models. Assessment of modeling assumptions and remedial measures. Applications in the field of transportation planning. Full Description " + "description": "Theory of simple and multivariate regression and analysis of variance models. Assessment of modeling assumptions and remedial measures. Applications in the field of transportation planning." }, "CEE6602": { "subject": "CEE", "number": "6602", "name": "Urban Transport Planning ", - "description": "An overview course on the history, finance, operations, modeling, politics, environmental impacts, and planning of urban transportation systems in the United States. Full Description " + "description": "An overview course on the history, finance, operations, modeling, politics, environmental impacts, and planning of urban transportation systems in the United States." }, "CEE6603": { "subject": "CEE", "number": "6603", "name": "Traffic Engineering ", - "description": "Characteristics of traffic demand, traffic flow, vehicles, drivers, roadways, and pedestrians. Studies and data analysis. Capacity analysis. Traffic control and intelligent systems. Operations and management. Full Description " + "description": "Characteristics of traffic demand, traffic flow, vehicles, drivers, roadways, and pedestrians. Studies and data analysis. Capacity analysis. Traffic control and intelligent systems. Operations and management." }, "CEE6604": { "subject": "CEE", "number": "6604", "name": "Transportation Design ", - "description": "Geometric configurations of streets, expressways, bus ways, railways, and their terminals to meet characteristics of vehicle performance and operator limitations. Full Description " + "description": "Geometric configurations of streets, expressways, bus ways, railways, and their terminals to meet characteristics of vehicle performance and operator limitations." }, "CEE6605": { "subject": "CEE", "number": "6605", "name": "Transport Admin & Policy ", - "description": "Overview of institutions and policy processes in the transportation sector: organizational analysis and implementation; policy analysis. Full Description " + "description": "Overview of institutions and policy processes in the transportation sector: organizational analysis and implementation; policy analysis." }, "CEE6621": { "subject": "CEE", "number": "6621", "name": "GIS in Transportation ", - "description": "Theory and application of GIS applied to transportation engineering and planning (GIS-T). Laboratory focuses on GIS-T development. Full Description " + "description": "Theory and application of GIS applied to transportation engineering and planning (GIS-T). Laboratory focuses on GIS-T development." }, "CEE6622": { "subject": "CEE", "number": "6622", "name": "Travel Demand Analysis ", - "description": "Examination of methods for forecasting future site and regional-level travel demand. Model specification, calibration, and validation. Full Description " + "description": "Examination of methods for forecasting future site and regional-level travel demand. Model specification, calibration, and validation." }, "CEE6623": { "subject": "CEE", "number": "6623", "name": "Survey Design and Analy ", - "description": "Design of telephone, mail out, and personal interview survey instruments. Subsequent estimation of choice-based models from cross-sectional and panel survey data. Full Description " + "description": "Design of telephone, mail out, and personal interview survey instruments. Subsequent estimation of choice-based models from cross-sectional and panel survey data." }, "CEE6624": { "subject": "CEE", "number": "6624", "name": "Land Use& Transportation ", - "description": "Overview of land use and transportation planning principles, how development impacts air transportation, how transportation investments impact development patterns and air quality. Full Description " + "description": "Overview of land use and transportation planning principles, how development impacts air transportation, how transportation investments impact development patterns and air quality." }, "CEE6625": { "subject": "CEE", "number": "6625", "name": "Transpor,Energy&Air Qual ", - "description": "Students investigate relationships between transportation demand, energy supply and consumption, fuel types, greenhouse gas emissions, and relationships between vehicle technology, pollutant emissions, modeling techniques, and air quality. Full Description " + "description": "Students investigate relationships between transportation demand, energy supply and consumption, fuel types, greenhouse gas emissions, and relationships between vehicle technology, pollutant emissions, modeling techniques, and air quality." }, "CEE6631": { "subject": "CEE", "number": "6631", "name": "Signalized Intersections ", - "description": "Traffic-responsive signalization. Detector placement and signal timing at individual intersections. Hands-on practice with equipment. Timing of coordinated systems. Signal plans and specifications. Full Description " + "description": "Traffic-responsive signalization. Detector placement and signal timing at individual intersections. Hands-on practice with equipment. Timing of coordinated systems. Signal plans and specifications." }, "CEE6632": { "subject": "CEE", "number": "6632", "name": "Simulation in Transport ", - "description": "Simulation models in transportation: development, calibration, applications, and analysis of outputs. Full Description " + "description": "Simulation models in transportation: development, calibration, applications, and analysis of outputs." }, "CEE6633": { "subject": "CEE", "number": "6633", "name": "Traffic Control ", - "description": "Latest developments in traffic control equipment and software, including incident management. Communications- technology alternatives. Video, other above-road detector technologies. Hands-on practice with equipment. Full Description " + "description": "Latest developments in traffic control equipment and software, including incident management. Communications- technology alternatives. Video, other above-road detector technologies. Hands-on practice with equipment." }, "CEE6634": { "subject": "CEE", "number": "6634", "name": "Transportation Safety ", - "description": "Understanding the human factors elements of transportation safety, and how to appropriately model the highly complex and stochastic occurrence of accidents on a transportation network. Full Description " + "description": "Understanding the human factors elements of transportation safety, and how to appropriately model the highly complex and stochastic occurrence of accidents on a transportation network." }, "CEE6635": { "subject": "CEE", "number": "6635", "name": "Tech Innovation-Transpor ", - "description": "Technology innovations in transportation including Intelligent Transportation Systems. Planning and design of ITS systems. Full Description " + "description": "Technology innovations in transportation including Intelligent Transportation Systems. Planning and design of ITS systems." }, "CEE6636": { "subject": "CEE", "number": "6636", "name": "Traffic Flow Theory ", - "description": "Advanced study of underlying principles and analytical procedures used in performing capacity analyses of transportation facilities. Highway Capacity Manual procedures and other analytical techniques presented. Full Description " + "description": "Advanced study of underlying principles and analytical procedures used in performing capacity analyses of transportation facilities. Highway Capacity Manual procedures and other analytical techniques presented." }, "CEE6641": { "subject": "CEE", "number": "6641", "name": "Transport Infrastructure ", - "description": "Transportation infrastructure traffic control and safety- related issues are addressed for initial implementation of transportation facilities as well as daily operational aspects. Full Description " + "description": "Transportation infrastructure traffic control and safety- related issues are addressed for initial implementation of transportation facilities as well as daily operational aspects." }, "CEE6642": { "subject": "CEE", "number": "6642", "name": "Transit Sys Plan& Design ", - "description": "Introduction to transit system planning and design concepts. Course will discuss the planning, design, and operations of transit systems, and the operations of intermodal terminals. Full Description " + "description": "Introduction to transit system planning and design concepts. Course will discuss the planning, design, and operations of transit systems, and the operations of intermodal terminals." }, "CEE6644": { "subject": "CEE", "number": "6644", "name": "Airport Planning&Design ", - "description": "Airport site selection, runway length and orientation, traffic control, drainage and lighting, long-range planning, government responsibility for air transportation. Full Description " + "description": "Airport site selection, runway length and orientation, traffic control, drainage and lighting, long-range planning, government responsibility for air transportation." }, "CEE6651": { "subject": "CEE", "number": "6651", "name": "Infrastructure Systems ", - "description": "Analytical approaches and tools for infrastructure and asset management, sustainable systems development. Full Description " + "description": "Analytical approaches and tools for infrastructure and asset management, sustainable systems development." }, "CEE6652": { "subject": "CEE", "number": "6652", "name": "Infrastru Mgmt IT Applic ", - "description": "Introduction to information technologies (programming, database, GPS/GIS, etc.) and their applications to the life-cycle activities (e.g. design, construction, etc.) of CEE engineered systems. Full Description " + "description": "Introduction to information technologies (programming, database, GPS/GIS, etc.) and their applications to the life-cycle activities (e.g. design, construction, etc.) of CEE engineered systems." }, "CEE6720": { "subject": "CEE", "number": "6720", "name": "Env Microbial Genomics ", - "description": "To introduce advanced concepts and principles of contemporary environmental microbiological research and associated bioinformatics techniques through representative examples from recent literature. Full Description " + "description": "To introduce advanced concepts and principles of contemporary environmental microbiological research and associated bioinformatics techniques through representative examples from recent literature." }, "CEE6751": { "subject": "CEE", "number": "6751", "name": "Phys Prop&Rheology-Rocks ", - "description": "Structure, properties, and rheology of minerals and rocks with applications to engineering structures and natural phenomena in the Earth. Fundamentals of rock mechanics and crack propagation. Crosslisted with EAS 6751. Full Description " + "description": "Structure, properties, and rheology of minerals and rocks with applications to engineering structures and natural phenomena in the Earth. Fundamentals of rock mechanics and crack propagation. Crosslisted with EAS 6751." }, "CEE6754": { "subject": "CEE", "number": "6754", "name": "Engr Communication ", - "description": "Writing and editing engineering documents; designing and explaining visuals; creating and delivering electronic presentations. Crosslisted with MSE 6754. Full Description " + "description": "Writing and editing engineering documents; designing and explaining visuals; creating and delivering electronic presentations. Crosslisted with MSE 6754." }, "CEE6756": { "subject": "CEE", "number": "6756", "name": "Signaling Molecules ", - "description": "The diversity of chemical signals between organisms and their structural specificities will be presented along with chemical and biological methods for isolating signaling molecules. Crosslisted with BIOL 6756 and CHEM 6756. Full Description " + "description": "The diversity of chemical signals between organisms and their structural specificities will be presented along with chemical and biological methods for isolating signaling molecules. Crosslisted with BIOL 6756 and CHEM 6756." }, "CEE6761": { "subject": "CEE", "number": "6761", "name": "Contaminated Sed Geochem ", - "description": "Acquaints students with fate of major pollutants, nutrients, organic compounds, such as pesticides, PAHs, and trace metals in sedimentary systems. Crosslisted with EAS 6761. Full Description " + "description": "Acquaints students with fate of major pollutants, nutrients, organic compounds, such as pesticides, PAHs, and trace metals in sedimentary systems. Crosslisted with EAS 6761." }, "CEE6764": { "subject": "CEE", "number": "6764", "name": "Biol-Env Fluid Mech Lab ", - "description": "Provides students with hands-on experimental demonstrations of the basic principles of environmental fluid mechanics regarding chemical and hydrodynamic signals produced and sensed by organisms. Full Description " + "description": "Provides students with hands-on experimental demonstrations of the basic principles of environmental fluid mechanics regarding chemical and hydrodynamic signals produced and sensed by organisms." }, "CEE6790": { "subject": "CEE", "number": "6790", "name": "Air Pollution:Phys&Chem ", - "description": "Introduction to physical and chemical processes affecting dynamics and fate of air pollutants at local, regional, and global scales; emphasis on tropospheric pollutant chemistry and transport. Crosslisted with EAS 6790. Full Description " + "description": "Introduction to physical and chemical processes affecting dynamics and fate of air pollutants at local, regional, and global scales; emphasis on tropospheric pollutant chemistry and transport. Crosslisted with EAS 6790." }, "CEE6792": { "subject": "CEE", "number": "6792", "name": "Air Pollut'n Meteorology ", - "description": "Vertical temperature and wind structure, topographic effects, natural removal processes, atmospheric dispersion of stack effluents, air pollution climatology, meteorological management of air pollution. Crosslisted with EAS 6792. Full Description " + "description": "Vertical temperature and wind structure, topographic effects, natural removal processes, atmospheric dispersion of stack effluents, air pollution climatology, meteorological management of air pollution. Crosslisted with EAS 6792." }, "CEE6793": { "subject": "CEE", "number": "6793", "name": "Atmos Boundary Layer ", - "description": "Structure and dynamics of atmospheric boundary layer. Introduction to turbulence and turbulent transport. Crosslisted with EAS 6793. Full Description " + "description": "Structure and dynamics of atmospheric boundary layer. Introduction to turbulence and turbulent transport. Crosslisted with EAS 6793." }, "CEE6794": { "subject": "CEE", "number": "6794", "name": "Atmos Chem Modeling ", - "description": "Application of modern numerical methods to the prediction of atmospheric chemical and physical compositions; specific applications using computer models developed by the students are included. Crosslisted with EAS 6794. Full Description " + "description": "Application of modern numerical methods to the prediction of atmospheric chemical and physical compositions; specific applications using computer models developed by the students are included. Crosslisted with EAS 6794." }, "CEE6795": { "subject": "CEE", "number": "6795", "name": "Atmospheric Aerosols ", - "description": "Chemical and physical properties of natural and anthropogenic aerosols. Sources, transport, transformation, and fate of primary/secondary, organic/inorganic, atmospheric semi-volatiles and aerosols. Crosslisted with EAS 6795. Full Description " + "description": "Chemical and physical properties of natural and anthropogenic aerosols. Sources, transport, transformation, and fate of primary/secondary, organic/inorganic, atmospheric semi-volatiles and aerosols. Crosslisted with EAS 6795." }, "CEE6810": { "subject": "CEE", "number": "6810", "name": "Linear Wave Mechanics ", - "description": "Introduction to linear wave mechanics with emphasis on boundary value problems. Topics include wavemakers, boundary layers, wave/current interactions, long waves, edge waves and wave forces. Full Description " + "description": "Introduction to linear wave mechanics with emphasis on boundary value problems. Topics include wavemakers, boundary layers, wave/current interactions, long waves, edge waves and wave forces." }, "CEE6811": { "subject": "CEE", "number": "6811", "name": "Nonlinear Wave Mech ", - "description": "Advanced solutions of nonlinear wave equations including introduction to perturbation methods, shallow and deep water solutions, nonlinear wave interactions and stream function solutions. Full Description " + "description": "Advanced solutions of nonlinear wave equations including introduction to perturbation methods, shallow and deep water solutions, nonlinear wave interactions and stream function solutions." }, "CEE6821": { "subject": "CEE", "number": "6821", "name": "Nearshore Hydrodynamics ", - "description": "Introduction to surfzone hydrodynamics including properties of breaking waves, undertow, longshore currents, wave setup, rip currents, infragravity waves, shear waves, and combined wave/current boundary layers. Full Description " + "description": "Introduction to surfzone hydrodynamics including properties of breaking waves, undertow, longshore currents, wave setup, rip currents, infragravity waves, shear waves, and combined wave/current boundary layers." }, "CEE6840": { "subject": "CEE", "number": "6840", "name": "Coastal Sediment Trans ", - "description": "Transport of cohesive and non-cohesive sediments in tidal and surf zone environments, measurement of sediment transport, numerical modeling of sediment transport and beach evolution. Full Description " + "description": "Transport of cohesive and non-cohesive sediments in tidal and surf zone environments, measurement of sediment transport, numerical modeling of sediment transport and beach evolution." }, "CEE6842": { "subject": "CEE", "number": "6842", "name": "Coastal Eng Measurements ", - "description": "Measurement of scalars (temperature, concentration), and vectors (velocity, waves), with emphasis on water and sediments. Acoustical and optical sensors. Quantitative use of digital video/photographic data. Full Description " + "description": "Measurement of scalars (temperature, concentration), and vectors (velocity, waves), with emphasis on water and sediments. Acoustical and optical sensors. Quantitative use of digital video/photographic data." }, "CEE6XXX": { "subject": "CEE", "number": "6XXX", "name": "Civil/Env Engr Elective ", - "description": " Full Description " + "description": "" }, "CEE7000": { "subject": "CEE", "number": "7000", "name": "Master's Thesis ", - "description": " Full Description " + "description": "" }, "CEE7310": { "subject": "CEE", "number": "7310", "name": "Master's Thesis&Research ", - "description": "Oral presentation of master's thesis and research projects. Full Description " + "description": "Oral presentation of master's thesis and research projects." }, "CEE7751": { "subject": "CEE", "number": "7751", "name": "Computational Fluid Mech ", - "description": "Numerical methods for solving the time-dependent Navier-Stokes equations in complex geometrics, including theory, implementation, and applications. Crosslisted with ME 7751. Full Description " + "description": "Numerical methods for solving the time-dependent Navier-Stokes equations in complex geometrics, including theory, implementation, and applications. Crosslisted with ME 7751." }, "CEE7772": { "subject": "CEE", "number": "7772", "name": "Fund-Fracture Mechanics ", - "description": "Advanced study of failure of structural materials under load, mechanics of fracture, and microscopic and macroscopic aspects of the fracture of engineering materials. Crosslisted with AE, CHE, ME, and MSE 7772. Full Description " + "description": "Advanced study of failure of structural materials under load, mechanics of fracture, and microscopic and macroscopic aspects of the fracture of engineering materials. Crosslisted with AE, CHE, ME, and MSE 7772." }, "CEE7773": { "subject": "CEE", "number": "7773", "name": "Adv Fracture Mechanics ", - "description": "Nonlinear fracture mechanics including elastic-plastic and time-dependent fracture, advanced test methods, J-integral theory, and extensions. Crosslisted with AE, CHE, ME, and MSE 7773. Full Description " + "description": "Nonlinear fracture mechanics including elastic-plastic and time-dependent fracture, advanced test methods, J-integral theory, and extensions. Crosslisted with AE, CHE, ME, and MSE 7773." }, "CEE7774": { "subject": "CEE", "number": "7774", "name": "Fatigue-Materials&Struct ", - "description": "Mechanical and microstructural aspects of nucleation and growth of cracks under cyclic loading conditions, nitch effects, cumulative damage, multiaxial loading, and fatigue crack propagation. Crosslisted with AE, CHE, ME, and MSE 7774. Full Description " + "description": "Mechanical and microstructural aspects of nucleation and growth of cracks under cyclic loading conditions, nitch effects, cumulative damage, multiaxial loading, and fatigue crack propagation. Crosslisted with AE, CHE, ME, and MSE 7774." }, "CEE7791": { "subject": "CEE", "number": "7791", "name": "Damage & Fail-Composites ", - "description": "Provide knowledge of the fundamental concepts and methods related to analysis and assessment of damage, failure and durability of composite materials. Crosslisted with AE, CHE, ME, MSE, and PTFE 7791. Full Description " + "description": "Provide knowledge of the fundamental concepts and methods related to analysis and assessment of damage, failure and durability of composite materials. Crosslisted with AE, CHE, ME, MSE, and PTFE 7791." }, "CEE7792": { "subject": "CEE", "number": "7792", "name": "Mechanics of Composites ", - "description": "Anisotropic elasticity, failure theories, hygrothermal behavior, 3-D analysis of laminates, thick laminates, free edge effects, stress concentrations, joints, creep and fracture of composites. Crosslisted with AE, CHE, ME, MSE and PTFE 7792. Full Description " + "description": "Anisotropic elasticity, failure theories, hygrothermal behavior, 3-D analysis of laminates, thick laminates, free edge effects, stress concentrations, joints, creep and fracture of composites. Crosslisted with AE, CHE, ME, MSE and PTFE 7792." }, "CEE7793": { "subject": "CEE", "number": "7793", "name": "Manufacture-Composites ", - "description": "Major manufacturing techniques for metal-, ceramic-, and polymer-matrix composites. Modeling of processes with emphasis on fundamental mechanisms and effects. Crosslisted with AE, CHE, ME, MSE and PTFE 7793. Full Description " + "description": "Major manufacturing techniques for metal-, ceramic-, and polymer-matrix composites. Modeling of processes with emphasis on fundamental mechanisms and effects. Crosslisted with AE, CHE, ME, MSE and PTFE 7793." }, "CEE7999": { "subject": "CEE", "number": "7999", "name": "Doctoral Comp Exam Prep ", - "description": "For students preparing for the doctoral qualifying examination. Full Description " + "description": "For students preparing for the doctoral qualifying examination." }, "CEE8091": { "subject": "CEE", "number": "8091", "name": "Construction Seminar ", - "description": "Introduction to leading-edge industry practices not part of the regular curriculum using field trips and guest lectures. Full Description " + "description": "Introduction to leading-edge industry practices not part of the regular curriculum using field trips and guest lectures." }, "CEE8094": { "subject": "CEE", "number": "8094", "name": "Environment Engr Seminar ", - "description": "Developments in environmental engineering science and technology, current practice, current research, and special topics related to environmental quality assessment and control. Full Description " + "description": "Developments in environmental engineering science and technology, current practice, current research, and special topics related to environmental quality assessment and control." }, "CEE8095": { "subject": "CEE", "number": "8095", "name": "Research Seminar in EnvE ", - "description": "Discussion of current research topics in environmental engineering. Presentations by master's and doctoral students. Full Description " + "description": "Discussion of current research topics in environmental engineering. Presentations by master's and doctoral students." }, "CEE8096": { "subject": "CEE", "number": "8096", "name": "EFMWR Seminar ", - "description": "Presentation and discussion of current research developments in environmental fluid mechanics and water resources by outside speakers, faculty, and graduate students. Full Description " + "description": "Presentation and discussion of current research developments in environmental fluid mechanics and water resources by outside speakers, faculty, and graduate students." }, "CEE8811": { "subject": "CEE", "number": "8811", "name": "Special Topics ", - "description": "Topics of current interest in civil engineering. Full Description " + "description": "Topics of current interest in civil engineering." }, "CEE8812": { "subject": "CEE", "number": "8812", "name": "Special Topics ", - "description": "Topics of current interest in civil engineering. Full Description " + "description": "Topics of current interest in civil engineering." }, "CEE8813": { "subject": "CEE", "number": "8813", "name": "Special Topics ", - "description": "Topics of current interest in civil engineering. Full Description " + "description": "Topics of current interest in civil engineering." }, "CEE8814": { "subject": "CEE", "number": "8814", "name": "Special Topics ", - "description": "Topics of current interest in civil engineering. Full Description " + "description": "Topics of current interest in civil engineering." }, "CEE8815": { "subject": "CEE", "number": "8815", "name": "Special Topics ", - "description": "Topics of current interest in civil engineering. Full Description " + "description": "Topics of current interest in civil engineering." }, "CEE8824": { "subject": "CEE", "number": "8824", "name": "Special Topics ", - "description": "Topics of current interest in civil engineering. Full Description " + "description": "Topics of current interest in civil engineering." }, "CEE8900": { "subject": "CEE", "number": "8900", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "CEE8901": { "subject": "CEE", "number": "8901", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "CEE8902": { "subject": "CEE", "number": "8902", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "CEE8903": { "subject": "CEE", "number": "8903", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "CEE8950": { "subject": "CEE", "number": "8950", "name": "Master's Research Proj ", - "description": "Master's research project to be scheduled by M.S. students not writing thesis. Full Description " + "description": "Master's research project to be scheduled by M.S. students not writing thesis." }, "CEE8956": { "subject": "CEE", "number": "8956", "name": "Master's Research Prob ", - "description": "For nonthesis students performing research. Full Description " + "description": "For nonthesis students performing research." }, "CEE8997": { "subject": "CEE", "number": "8997", "name": "Teaching Assistantship ", - "description": "For students holding graduate teaching assistantships. Full Description " + "description": "For students holding graduate teaching assistantships." }, "CEE8998": { "subject": "CEE", "number": "8998", "name": "Research Assistantship ", - "description": "For students holding a graduate research assistantship. Full Description " + "description": "For students holding a graduate research assistantship." }, "CEE8999": { "subject": "CEE", "number": "8999", "name": "Prep-Doctor Dissertation ", - "description": "For students in the preliminary stages of formulating their doctoral research program who have not obtained formal approval of dissertation topic. Full Description " + "description": "For students in the preliminary stages of formulating their doctoral research program who have not obtained formal approval of dissertation topic." }, "CEE9000": { "subject": "CEE", "number": "9000", "name": "Doctoral Thesis ", - "description": " Full Description " + "description": "" }, "CETL2000": { "subject": "CETL", "number": "2000", "name": "Undergraduate TA Prep ", - "description": "This course is an introduction to the procedural information and practical skills needed to be an effective undergraduate teaching assistant. May be used as free elective credit with department approval. Full Description " + "description": "This course is an introduction to the procedural information and practical skills needed to be an effective undergraduate teaching assistant. May be used as free elective credit with department approval." }, "CETL2001": { "subject": "CETL", "number": "2001", "name": "Fund of Peer Tutoring ", - "description": "This course is an introduction to the practical skills needed to be an effective peer tutor at Georgia Tech. May not be used towards degree requirements. Full Description " + "description": "This course is an introduction to the practical skills needed to be an effective peer tutor at Georgia Tech. May not be used towards degree requirements." }, "CETL2002": { "subject": "CETL", "number": "2002", "name": "Fund of K-12 Tutoring ", - "description": "This course is an introduction to the practical skills needed to be an effective tutor in the K-12 arena. May not be used towards degree requirements. Full Description " + "description": "This course is an introduction to the practical skills needed to be an effective tutor in the K-12 arena. May not be used towards degree requirements." }, "CETL2698": { "subject": "CETL", "number": "2698", "name": "Research Assistantship ", - "description": "Credit hours to be arranged. Independent research conducted under the guidance of a faculty member. May not be used towards degree requirements. Full Description " + "description": "Credit hours to be arranged. Independent research conducted under the guidance of a faculty member. May not be used towards degree requirements." }, "CETL2699": { "subject": "CETL", "number": "2699", "name": "Undergraduate Research ", - "description": "Credit hours to be arranged. Independent research conducted under the guidance of a faculty member. May be used as free elective towards BS degrees with department approval. Full Description " + "description": "Credit hours to be arranged. Independent research conducted under the guidance of a faculty member. May be used as free elective towards BS degrees with department approval." }, "CETL3000": { "subject": "CETL", "number": "3000", "name": "Residence Life Seminar ", - "description": "This course will provide students with techniques, skills and knowledge necessary to become a successful Residence Life Student Staff member. May not be used towards degree requirements. Full Description " + "description": "This course will provide students with techniques, skills and knowledge necessary to become a successful Residence Life Student Staff member. May not be used towards degree requirements." }, "CETL3801": { "subject": "CETL", "number": "3801", "name": "Special Topics ", - "description": "Topics of current interest. May not be used towards degree requirements. Full Description " + "description": "Topics of current interest. May not be used towards degree requirements." }, "CETL4001": { "subject": "CETL", "number": "4001", "name": "Prin of Learn & Teach I ", - "description": "This course focuses on the knowledge and skills necessary for effective classroom instruction and management including: educational psychology, instructional design and delivery techniques. May be used as free elective towards BS degrees with department approval. Full Description " + "description": "This course focuses on the knowledge and skills necessary for effective classroom instruction and management including: educational psychology, instructional design and delivery techniques. May be used as free elective towards BS degrees with department approval." }, "CETL4002": { "subject": "CETL", "number": "4002", "name": "Prin of Learn & Teach II ", - "description": "This course focuses on the knowledge and skills necessary for effective classroom instruction and management including instructional planning, assessment, and the teaching professional community. May be used as free elective towards BS degrees with department approval. Full Description " + "description": "This course focuses on the knowledge and skills necessary for effective classroom instruction and management including instructional planning, assessment, and the teaching professional community. May be used as free elective towards BS degrees with department approval." }, "CETL4698": { "subject": "CETL", "number": "4698", "name": "Research Assistantship ", - "description": "Credit hours to be arranged. Independent research conducted under the guidance of a faculty member. May not be used towards degree requirements. Full Description " + "description": "Credit hours to be arranged. Independent research conducted under the guidance of a faculty member. May not be used towards degree requirements." }, "CETL4699": { "subject": "CETL", "number": "4699", "name": "Undergraduate Research ", - "description": "May be used as free elective towards BS degrees with department approval. Full Description " + "description": "May be used as free elective towards BS degrees with department approval." }, "CETL4801": { "subject": "CETL", "number": "4801", "name": "Special Topics ", - "description": "Topics of Current Interest. May not be used towards degree requirements. May not be used towards degree requirements. Full Description " + "description": "Topics of Current Interest. May not be used towards degree requirements. May not be used towards degree requirements." }, "CETL4802": { "subject": "CETL", "number": "4802", "name": "Special Topics ", - "description": "Topics of Current Interest. May not be used towards degree requirements. Full Description " + "description": "Topics of Current Interest. May not be used towards degree requirements." }, "CETL4803": { "subject": "CETL", "number": "4803", "name": "Special Topics ", - "description": "Topics of Current Interest. May not be used towards degree requirements. Full Description " + "description": "Topics of Current Interest. May not be used towards degree requirements." }, "CETL6490": { "subject": "CETL", "number": "6490", "name": "Adv Environ Data Analy ", - "description": "A unified view of the theories and applications underlying the statistical analysis of environmental data in the space, time and spectral domain. Full Description " + "description": "A unified view of the theories and applications underlying the statistical analysis of environmental data in the space, time and spectral domain." }, "CETL8000": { "subject": "CETL", "number": "8000", "name": "GTA Preparation ", - "description": "This course is an introduction to the procedural information and practical skills needed to be an effective graduate teaching assistant. Full Description " + "description": "This course is an introduction to the procedural information and practical skills needed to be an effective graduate teaching assistant." }, "CETL8701": { "subject": "CETL", "number": "8701", "name": "Classroom Management ", - "description": "A course in which students learn about official Georgia Tech policies impacting instruction and develop skills to resolve problems and enhance classroom learning. Full Description " + "description": "A course in which students learn about official Georgia Tech policies impacting instruction and develop skills to resolve problems and enhance classroom learning." }, "CETL8711": { "subject": "CETL", "number": "8711", "name": "STEP Summer Training ", - "description": "Participants attend training sessions on pedagogy, classroom management, educational technology; engage in practice teaching; and design action plans for partnering with local high school teachers. Full Description " + "description": "Participants attend training sessions on pedagogy, classroom management, educational technology; engage in practice teaching; and design action plans for partnering with local high school teachers." }, "CETL8712": { "subject": "CETL", "number": "8712", "name": "STEP Seminar ", - "description": "This is the academic year follow-up course for STEP fellows. It is a forum to share and to continue training as the fellows work in their STEP high schools. Full Description " + "description": "This is the academic year follow-up course for STEP fellows. It is a forum to share and to continue training as the fellows work in their STEP high schools." }, "CETL8713": { "subject": "CETL", "number": "8713", "name": "Teach&Learn-Higher Edu ", - "description": "This course focuses on learner-centered teaching and educational research. Students design lesson plans, practice teaching, self-reflect, give and receive peer feedback, and write a teaching philosophy. Full Description " + "description": "This course focuses on learner-centered teaching and educational research. Students design lesson plans, practice teaching, self-reflect, give and receive peer feedback, and write a teaching philosophy." }, "CETL8714": { "subject": "CETL", "number": "8714", "name": "Teach Practicum-HigherEd ", - "description": "Apprentice to faculty mentor and help teach a college course. Get feedback from mentor, CETL, and a peer learning community. Explore types of academic careers. Full Description " + "description": "Apprentice to faculty mentor and help teach a college course. Get feedback from mentor, CETL, and a peer learning community. Explore types of academic careers." }, "CETL8715": { "subject": "CETL", "number": "8715", "name": "Teach Practicum-HigherEd ", - "description": "Apprentice to faculty mentor and help teach a college course. Get feedback from mentor, CETL, and a peer learning community. Explore types of academic careers. Full Description " + "description": "Apprentice to faculty mentor and help teach a college course. Get feedback from mentor, CETL, and a peer learning community. Explore types of academic careers." }, "CETL8717": { "subject": "CETL", "number": "8717", "name": "Course Design-Higher Edu ", - "description": "Application of learner-centered teaching paradigm and educational research to create a course syllabus and design other course elements for a college-level course of their choosing. Full Description " + "description": "Application of learner-centered teaching paradigm and educational research to create a course syllabus and design other course elements for a college-level course of their choosing." }, "CETL8719": { "subject": "CETL", "number": "8719", "name": "Teach Immersion-HigherEd ", - "description": " Full Description " + "description": "" }, "CETL8721": { "subject": "CETL", "number": "8721", "name": "Academic Writing ", - "description": "Through examination of writing samples and practice, students learn techniques for enhancing proposal preparation and methods for evaluating writing as future instructors and thesis directors. Full Description " + "description": "Through examination of writing samples and practice, students learn techniques for enhancing proposal preparation and methods for evaluating writing as future instructors and thesis directors." }, "CETL8722": { "subject": "CETL", "number": "8722", "name": "Int'l Academic Writing ", - "description": "This course aids international graduate students in enhancing their academic writing skills in English through exposure to, and practice of producing examples of academic writing. Credit will not be awarded for both CETL 8722 and CETL 8723. Full Description " + "description": "This course aids international graduate students in enhancing their academic writing skills in English through exposure to, and practice of producing examples of academic writing. Credit will not be awarded for both CETL 8722 and CETL 8723." }, "CETL8723": { "subject": "CETL", "number": "8723", "name": "Acad Writ Intnl Grads ", - "description": "This course helps international graduate students enhance their academic writing skills in English through analysis and production of academic writing samples. Credit not awarded for both CETL 8723 and CETL 8722. Full Description " + "description": "This course helps international graduate students enhance their academic writing skills in English through analysis and production of academic writing samples. Credit not awarded for both CETL 8723 and CETL 8722." }, "CETL8731": { "subject": "CETL", "number": "8731", "name": "Academic Professional ", - "description": "Participants in this course work through numerous exercises and scenarios in order to prepare them professionally and personally for a future career in academics. Full Description " + "description": "Participants in this course work through numerous exercises and scenarios in order to prepare them professionally and personally for a future career in academics." }, "CETL8741": { "subject": "CETL", "number": "8741", "name": "Academic Presentations ", - "description": "An examination and practice of oral presentations in a variety of academic scenarios: e.g., conference talks, proposal presentations, discussion facilitation, job talks, and oral exams/defenses. Full Description " + "description": "An examination and practice of oral presentations in a variety of academic scenarios: e.g., conference talks, proposal presentations, discussion facilitation, job talks, and oral exams/defenses." }, "CETL8791": { "subject": "CETL", "number": "8791", "name": "Instruc Practice-Intl TA ", - "description": "Enhancement of English pronunciation and instructional skills for international teaching assistants. In-class and small-group language practice; discussion of teaching methodology. Full Description " + "description": "Enhancement of English pronunciation and instructional skills for international teaching assistants. In-class and small-group language practice; discussion of teaching methodology." }, "CETL8792": { "subject": "CETL", "number": "8792", "name": "Engl/Pedegogy-Intl TAs ", - "description": "Enhancement of English pronunciation and instructional skills for international teaching assistants. In-class and small-group language practice; discussion of teaching methodology; individual tutoring. Full Description " + "description": "Enhancement of English pronunciation and instructional skills for international teaching assistants. In-class and small-group language practice; discussion of teaching methodology; individual tutoring." }, "CETL8793": { "subject": "CETL", "number": "8793", "name": "English for Intl Grads ", - "description": "An oral skills class designed to help graduate students become more accurate and fluent in both verbal and nonverbal skills. In addition to working on acquiring an American accent and body language when speaking English, students will work on basic presentation skills. Credit will not be awarded for CETL 8793 and CETL 8797. Full Description " + "description": "An oral skills class designed to help graduate students become more accurate and fluent in both verbal and nonverbal skills. In addition to working on acquiring an American accent and body language when speaking English, students will work on basic presentation skills. Credit will not be awarded for CETL 8793 and CETL 8797." }, "CETL8794": { "subject": "CETL", "number": "8794", "name": "Academic English ", - "description": "Enhancement of English pronunciation for international teaching assistants. In-class and small group language practice. Full Description " + "description": "Enhancement of English pronunciation for international teaching assistants. In-class and small group language practice." }, "CETL8795": { "subject": "CETL", "number": "8795", "name": "Adv English - Int'l Grads ", - "description": "An advanced oral skills class designed to help graduate students improve their verbal ability in English for teaching, making presentations, and interacting in academic and professional situations. Credit will not be awarded for both CETL 8796 and CETL 8795. Full Description " + "description": "An advanced oral skills class designed to help graduate students improve their verbal ability in English for teaching, making presentations, and interacting in academic and professional situations. Credit will not be awarded for both CETL 8796 and CETL 8795." }, "CETL8796": { "subject": "CETL", "number": "8796", "name": "Pres Skills Intl Grads ", - "description": "This advanced oral skills class is designed to help graduate students improve their presentation skills in English for more effective communication in academic/professinal situations. Credit will not be awarded for both CETL 8795 and CETL 8796. Full Description " + "description": "This advanced oral skills class is designed to help graduate students improve their presentation skills in English for more effective communication in academic/professinal situations. Credit will not be awarded for both CETL 8795 and CETL 8796." }, "CETL8797": { "subject": "CETL", "number": "8797", "name": "Oral Comm Intl Grads ", - "description": "In this class, students work on fluency, pronunciation clarity, and appropriateness in spoken communication to prepare for effective and confident participation in their academic communities. Credit will not be awarded for both CETL 8797 and CETL 8793. Full Description " + "description": "In this class, students work on fluency, pronunciation clarity, and appropriateness in spoken communication to prepare for effective and confident participation in their academic communities. Credit will not be awarded for both CETL 8797 and CETL 8793." }, "CETL8801": { "subject": "CETL", "number": "8801", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "CETL8802": { "subject": "CETL", "number": "8802", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "CETL8803": { "subject": "CETL", "number": "8803", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "CETL8997": { "subject": "CETL", "number": "8997", "name": "STEP Assistantship ", - "description": "This course if for STEP students with an assistantship. Full Description " + "description": "This course if for STEP students with an assistantship." }, "CHBE1750": { "subject": "CHBE", "number": "1750", "name": "Intro to Bioengineering ", - "description": "An introduction to the field of bioengineering, including the application of engineering principles and methods to problems in biology and medicine, the integration of engineering with biology, and the emerging industrial opportunities. Crosslisted with AE, BMED, ECE, ME, and MSE 1750. Full Description " + "description": "An introduction to the field of bioengineering, including the application of engineering principles and methods to problems in biology and medicine, the integration of engineering with biology, and the emerging industrial opportunities. Crosslisted with AE, BMED, ECE, ME, and MSE 1750." }, "CHBE1XXX": { "subject": "CHBE", "number": "1XXX", "name": "Chem Engr Elective ", - "description": " Full Description " + "description": "" }, "CHBE2100": { "subject": "CHBE", "number": "2100", "name": "Chem Process Principles ", - "description": "Material and energy balances for single-phase and multi-phase processes common to chemical engineering. Phase equilibrium and analysis of reacting systems. Full Description " + "description": "Material and energy balances for single-phase and multi-phase processes common to chemical engineering. Phase equilibrium and analysis of reacting systems." }, "CHBE2110": { "subject": "CHBE", "number": "2110", "name": "Chem Engr. Thermo I ", - "description": "Elements of engineering thermodynamics. First and second laws. Analysis of engineering machinery: compressors, turbines, engines, refrigeration. Credit not allowed for both CHBE 2110 and CHBE 2130. Full Description " + "description": "Elements of engineering thermodynamics. First and second laws. Analysis of engineering machinery: compressors, turbines, engines, refrigeration. Credit not allowed for both CHBE 2110 and CHBE 2130." }, "CHBE2120": { "subject": "CHBE", "number": "2120", "name": "ChE Numerical Mthods ", - "description": "Numerical methods are introduced and applied to the solution of chemical engineering problems. An introduction to chemical process simulation, and the appropriate software is provided. Full Description " + "description": "Numerical methods are introduced and applied to the solution of chemical engineering problems. An introduction to chemical process simulation, and the appropriate software is provided." }, "CHBE2130": { "subject": "CHBE", "number": "2130", "name": "Chem Eng Thermo I ", - "description": "Basic principles of chemical engineering thermodynamics including first and second laws, equations of state, PVT properties, power cycles and refrigeration. Credit not allowed for both CHBE 2130 and CHBE 2110. Full Description " + "description": "Basic principles of chemical engineering thermodynamics including first and second laws, equations of state, PVT properties, power cycles and refrigeration. Credit not allowed for both CHBE 2130 and CHBE 2110." }, "CHBE2698": { "subject": "CHBE", "number": "2698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "CHBE2699": { "subject": "CHBE", "number": "2699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "CHBE2801": { "subject": "CHBE", "number": "2801", "name": "Special Topics ", - "description": "Topics relevant to chemical engineering not currently covered in the undergraduate curriculum are presented as demand or interest warrants. Full Description " + "description": "Topics relevant to chemical engineering not currently covered in the undergraduate curriculum are presented as demand or interest warrants." }, "CHBE2803": { "subject": "CHBE", "number": "2803", "name": "Special Topics ", - "description": "Topics relevant to chemical engineering not currently covered in the undergraduate curriculum are presented as demand or interest warrants. Full Description " + "description": "Topics relevant to chemical engineering not currently covered in the undergraduate curriculum are presented as demand or interest warrants." }, "CHBE2XXX": { "subject": "CHBE", "number": "2XXX", "name": "Chem Engr Elective ", - "description": " Full Description " + "description": "" }, "CHBE3110": { "subject": "CHBE", "number": "3110", "name": "Chem Engr. Thermo II ", - "description": "Phase and chemical reaction equilibria. Vapor-liquid, liquid-liquid, and solid-vapor phase equilibrium Fugacity and activity coefficients. Multi-reaction equilibrium. Credit not allowed for both CHBE 3110 and CHBE 3130. Full Description " + "description": "Phase and chemical reaction equilibria. Vapor-liquid, liquid-liquid, and solid-vapor phase equilibrium Fugacity and activity coefficients. Multi-reaction equilibrium. Credit not allowed for both CHBE 3110 and CHBE 3130." }, "CHBE3130": { "subject": "CHBE", "number": "3130", "name": "Chem Eng Thermo II ", - "description": "Basic principles of chemical engineering solution and phase equilibrium thermodynamics, including ideal and non-ideal solution models and phase equilibira calculations (VLE, SLE, LLE). Credit not allowed for both CHBE 3130 and CHBE 3110. Full Description " + "description": "Basic principles of chemical engineering solution and phase equilibrium thermodynamics, including ideal and non-ideal solution models and phase equilibira calculations (VLE, SLE, LLE). Credit not allowed for both CHBE 3130 and CHBE 3110." }, "CHBE3200": { "subject": "CHBE", "number": "3200", "name": "Transport Processes I ", - "description": "Fundamentals of fluid mechanics and heat transfer. The design and analysis of equipment using the principles of fluid mechanics and heat transfer. Full Description " + "description": "Fundamentals of fluid mechanics and heat transfer. The design and analysis of equipment using the principles of fluid mechanics and heat transfer." }, "CHBE3210": { "subject": "CHBE", "number": "3210", "name": "Transport Processes II ", - "description": "Fundamental principles and applications of mass transfer. The analysis of chemical engineering processes and operations involving mass transfer. Full Description " + "description": "Fundamental principles and applications of mass transfer. The analysis of chemical engineering processes and operations involving mass transfer." }, "CHBE3225": { "subject": "CHBE", "number": "3225", "name": "Separations Processes ", - "description": "Fundamentals of equilibrium-stage and continuous contacting operations. Applications of principles to distillation, absorption/stripping, extraction, absorption, and other separation technologies. Full Description " + "description": "Fundamentals of equilibrium-stage and continuous contacting operations. Applications of principles to distillation, absorption/stripping, extraction, absorption, and other separation technologies." }, "CHBE3600": { "subject": "CHBE", "number": "3600", "name": "Engineering Ethics ", - "description": "Development of quantitative and qualitative assessment tools to resolve moral and ethical dilemmas that arise in the performance of engineering duties. Full Description " + "description": "Development of quantitative and qualitative assessment tools to resolve moral and ethical dilemmas that arise in the performance of engineering duties." }, "CHBE3XXX": { "subject": "CHBE", "number": "3XXX", "name": "Chem Engr Elective ", - "description": " Full Description " + "description": "" }, "CHBE4020": { "subject": "CHBE", "number": "4020", "name": "Chem Eng-Nanoscale Sys ", - "description": "Application of chemical processing fundamentals, fabrication, and characterization to design and analyze technologically important nanoscale systems. The course emphasizes an integrated engineering and science approach. Full Description " + "description": "Application of chemical processing fundamentals, fabrication, and characterization to design and analyze technologically important nanoscale systems. The course emphasizes an integrated engineering and science approach." }, "CHBE4050": { "subject": "CHBE", "number": "4050", "name": "Microelec Fabrication ", - "description": "An elective class for students interested in fabrication of semiconductor devices focusing on the fundamentals of materials synthesis, chemical and mechanical properties, and chemical reactions. Credit will not be awarded for both CHBE 4050 and CHBE 6050. Full Description " + "description": "An elective class for students interested in fabrication of semiconductor devices focusing on the fundamentals of materials synthesis, chemical and mechanical properties, and chemical reactions. Credit will not be awarded for both CHBE 4050 and CHBE 6050." }, "CHBE4200": { "subject": "CHBE", "number": "4200", "name": "Unit Operations Lab ", - "description": "This course illustrates engineering/scientific principles and physical models important to the data collection/ interpretation of processes important to the practice of chemical engineering. Full Description " + "description": "This course illustrates engineering/scientific principles and physical models important to the data collection/ interpretation of processes important to the practice of chemical engineering." }, "CHBE4210": { "subject": "CHBE", "number": "4210", "name": "Bioprocess Unit Ops ", - "description": "This course illustrates engineering/scientific principles and physical models important to the data collection/interpretation of processes important in biotechnology. Full Description " + "description": "This course illustrates engineering/scientific principles and physical models important to the data collection/interpretation of processes important in biotechnology." }, "CHBE4300": { "subject": "CHBE", "number": "4300", "name": "Kinetics&Reactor Dsgn ", - "description": "Reacting systems are analyzed in terms of reaction mechanisms, kinetics, and reactor design. Both homogeneous and heterogeneous reactions are considered. Full Description " + "description": "Reacting systems are analyzed in terms of reaction mechanisms, kinetics, and reactor design. Both homogeneous and heterogeneous reactions are considered." }, "CHBE4310": { "subject": "CHBE", "number": "4310", "name": "Bioprocess Engineering ", - "description": "Integrating several ChBE core concepts, bioprocess engineering applies the material to biological systems. Items covered are enzyme kinetics, fermentation, downstream processing, and integrated bioprocesses important to the biotech industries. Full Description " + "description": "Integrating several ChBE core concepts, bioprocess engineering applies the material to biological systems. Items covered are enzyme kinetics, fermentation, downstream processing, and integrated bioprocesses important to the biotech industries." }, "CHBE4400": { "subject": "CHBE", "number": "4400", "name": "Chemical Process Control ", - "description": "Dynamics of chemical processes and their control. Techniques of conventional process control as well as digital control. Laboratory experiments to illustrate these concepts. Full Description " + "description": "Dynamics of chemical processes and their control. Techniques of conventional process control as well as digital control. Laboratory experiments to illustrate these concepts." }, "CHBE4411": { "subject": "CHBE", "number": "4411", "name": "Process Control ", - "description": "Dynamics of chemical processes and their control. Techniques of conventional process control as well as digital control. Full Description " + "description": "Dynamics of chemical processes and their control. Techniques of conventional process control as well as digital control." }, "CHBE4412": { "subject": "CHBE", "number": "4412", "name": "Process Control Lab ", - "description": "Dynamics of chemical processes and their control. Techniques of conventional process control as well as digital control. Laboratory experiments would illustrate these concepts. Full Description " + "description": "Dynamics of chemical processes and their control. Techniques of conventional process control as well as digital control. Laboratory experiments would illustrate these concepts." }, "CHBE4505": { "subject": "CHBE", "number": "4505", "name": "Process Design&Economics ", - "description": "Principles of flowsheet synthesis and economic analysis and optimization. A complete design on a chemical process will be undertaken, including concepts of unit operations, design, economics, and safety. Credit not allowed for both CHBE 4505 and CHBE 4530 (or CHBE 4520). Full Description " + "description": "Principles of flowsheet synthesis and economic analysis and optimization. A complete design on a chemical process will be undertaken, including concepts of unit operations, design, economics, and safety. Credit not allowed for both CHBE 4505 and CHBE 4530 (or CHBE 4520)." }, "CHBE4510": { "subject": "CHBE", "number": "4510", "name": "Proc& Prod Design& Econ ", - "description": "Basic principles of chemical process and product design including heuristic design approaches, heat exchanger network design, optimization, and economic evaluation. Credit not allowed for both CHBE 4510 and CHBE 4505 (or CHBE 4525). Full Description " + "description": "Basic principles of chemical process and product design including heuristic design approaches, heat exchanger network design, optimization, and economic evaluation. Credit not allowed for both CHBE 4510 and CHBE 4505 (or CHBE 4525)." }, "CHBE4515": { "subject": "CHBE", "number": "4515", "name": "Chemical Process Safety ", - "description": "Fundamental sources of chemical hazards and degree of risk. Process design and hazard avoidance are used to reduce risk. Full Description " + "description": "Fundamental sources of chemical hazards and degree of risk. Process design and hazard avoidance are used to reduce risk." }, "CHBE4520": { "subject": "CHBE", "number": "4520", "name": "Capstone CHBE Design ", - "description": "Basic principles of chemical process and product design including heuristic design approaches heat exchanger network design, optimization, and economic evaluation. Credit not allowed for both CHBE 4520 and CHBE 4505 (or CHBE 4525). Full Description " + "description": "Basic principles of chemical process and product design including heuristic design approaches heat exchanger network design, optimization, and economic evaluation. Credit not allowed for both CHBE 4520 and CHBE 4505 (or CHBE 4525)." }, "CHBE4525": { "subject": "CHBE", "number": "4525", "name": "Bioprocess Design & Econ ", - "description": "Principles of flowsheet synthesis and economic analysis and optimization. A complete design of a biochemical process will be undertaken, including concepts of unit operations, design, economics, and safety. Credit not allowed for both CHBE 4525 and CHBE 4530 (or CHBE 4520). Full Description " + "description": "Principles of flowsheet synthesis and economic analysis and optimization. A complete design of a biochemical process will be undertaken, including concepts of unit operations, design, economics, and safety. Credit not allowed for both CHBE 4525 and CHBE 4530 (or CHBE 4520)." }, "CHBE4530": { "subject": "CHBE", "number": "4530", "name": "Capstone ChBE Bio-Design ", - "description": "Basic principles of chemical process and product design including heuristic design approaches, heat exchanger network design, optimization, and economic evaluation. Credit not allowed for both CHBE 4530 and CHBE 4505 (or 4525). Full Description " + "description": "Basic principles of chemical process and product design including heuristic design approaches, heat exchanger network design, optimization, and economic evaluation. Credit not allowed for both CHBE 4530 and CHBE 4505 (or 4525)." }, "CHBE4535": { "subject": "CHBE", "number": "4535", "name": "Chemical Product Design ", - "description": "Chemical engineering principles applied to the design of products. Full Description " + "description": "Chemical engineering principles applied to the design of products." }, "CHBE4573": { "subject": "CHBE", "number": "4573", "name": "Pulping & Bleaching Lab ", - "description": "Experiments of pulping, bleaching, fiber, and chemical testing are performed. Hands-on experience from chip preparation, cooking, pulp processing, and bleaching are provided. Full Description " + "description": "Experiments of pulping, bleaching, fiber, and chemical testing are performed. Hands-on experience from chip preparation, cooking, pulp processing, and bleaching are provided." }, "CHBE4574": { "subject": "CHBE", "number": "4574", "name": "Papermaking&Pulp Lab ", - "description": "Experiments of pulp preparation, refining, paperforming, handsheet testing, deinking, and recycled pulp processing are performed. Small paper machine operation will be taught. Full Description " + "description": "Experiments of pulp preparation, refining, paperforming, handsheet testing, deinking, and recycled pulp processing are performed. Small paper machine operation will be taught." }, "CHBE4600": { "subject": "CHBE", "number": "4600", "name": "Engineer Communication ", - "description": "How engineers communicate with engineering and non-engineering professionals. Industry speakers from different fields. Engineering case study. Weekly written and/or oral presentations. Full Description " + "description": "How engineers communicate with engineering and non-engineering professionals. Industry speakers from different fields. Engineering case study. Weekly written and/or oral presentations." }, "CHBE4698": { "subject": "CHBE", "number": "4698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "CHBE4699": { "subject": "CHBE", "number": "4699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "CHBE4710": { "subject": "CHBE", "number": "4710", "name": "Microfluidics & Bio Appl. ", - "description": " Full Description " + "description": "" }, "CHBE4752": { "subject": "CHBE", "number": "4752", "name": "IC Fabrication ", - "description": "The objective of this course is to give students exposure to the various steps involved in the fabrication of integrated circuits and devices. This course will include a laboratory segment in which students fabricate MOS transistors, diffused resistors, and MOS capacitors from a bare silicon substrate. Crosslisted with ECE 4752. Full Description " + "description": "The objective of this course is to give students exposure to the various steps involved in the fabrication of integrated circuits and devices. This course will include a laboratory segment in which students fabricate MOS transistors, diffused resistors, and MOS capacitors from a bare silicon substrate. Crosslisted with ECE 4752." }, "CHBE4755": { "subject": "CHBE", "number": "4755", "name": "Packaging Substrate Fab ", - "description": "This course provides hands-on instruction in basic packaging substrate fabrication techniques, including interconnect design and testing, dielectric deposition, via formation, and metallization. Crosslisted with ECE 4755. Full Description " + "description": "This course provides hands-on instruction in basic packaging substrate fabrication techniques, including interconnect design and testing, dielectric deposition, via formation, and metallization. Crosslisted with ECE 4755." }, "CHBE4757": { "subject": "CHBE", "number": "4757", "name": "Biofluid Mechanics ", - "description": "Introduction to the study of blood flow in the cardiovascular system. Emphasis on modeling and the potential of flow studies for clinical research application. Crosslisted with AE and ME 4757. Full Description " + "description": "Introduction to the study of blood flow in the cardiovascular system. Emphasis on modeling and the potential of flow studies for clinical research application. Crosslisted with AE and ME 4757." }, "CHBE4758": { "subject": "CHBE", "number": "4758", "name": "Biosolid Mechanics ", - "description": "The mechanics of living tissue, e.g., arteries, skin, heart muscle, ligament, tendon, cartilage, and bone. Constitutive equations and some simple mechanical models. Mechanics of cells. Applications. Crosslisted with AE and ME 4758. Full Description " + "description": "The mechanics of living tissue, e.g., arteries, skin, heart muscle, ligament, tendon, cartilage, and bone. Constitutive equations and some simple mechanical models. Mechanics of cells. Applications. Crosslisted with AE and ME 4758." }, "CHBE4760": { "subject": "CHBE", "number": "4760", "name": "Biocatalysis ", - "description": "This course provides an in-depth coverage of various topics in biocatalysis and metabolic engineering. Goals of this course are the development of an understanding of proteins as catalysts, their functioning in metabolic networks, their application in various industries, recognition of their potential for addressing future challenges in science and engineering. Crosslisted with CHEM 4760. Full Description " + "description": "This course provides an in-depth coverage of various topics in biocatalysis and metabolic engineering. Goals of this course are the development of an understanding of proteins as catalysts, their functioning in metabolic networks, their application in various industries, recognition of their potential for addressing future challenges in science and engineering. Crosslisted with CHEM 4760." }, "CHBE4763": { "subject": "CHBE", "number": "4763", "name": "Pulping & Chem Recovery ", - "description": "Pulping and chemical recovery processes are studied on the reaction, delignification, energy, and liquor reuse. The process optimization, air and water pollution minimization are taught. Crosslisted with ME 4763. Full Description " + "description": "Pulping and chemical recovery processes are studied on the reaction, delignification, energy, and liquor reuse. The process optimization, air and water pollution minimization are taught. Crosslisted with ME 4763." }, "CHBE4764": { "subject": "CHBE", "number": "4764", "name": "Bleaching & Papermaking ", - "description": "Pulp bleaching and formation of paper/board products are studied along with testing, end uses, chemical and mechanical treatment of pulp, non-wood and recycled fiber utilization. Crosslisted with ME 4764. Full Description " + "description": "Pulp bleaching and formation of paper/board products are studied along with testing, end uses, chemical and mechanical treatment of pulp, non-wood and recycled fiber utilization. Crosslisted with ME 4764." }, "CHBE4765": { "subject": "CHBE", "number": "4765", "name": "Drug Design,Devlpmnt&Delivery ", - "description": "Introduction to the pharmaceutical development process, including design of new drugs, synthesis and manufacturing issues, and methods for delivery into the body. Includes student presentations. Crosslisted with CHEM and BMED 4765. Full Description " + "description": "Introduction to the pharmaceutical development process, including design of new drugs, synthesis and manufacturing issues, and methods for delivery into the body. Includes student presentations. Crosslisted with CHEM and BMED 4765." }, "CHBE4770": { "subject": "CHBE", "number": "4770", "name": "Nuclear Chemical Engr ", - "description": "This course surveys the chemical engineering aspects of nuclear power. Topics include nuclear reactions, fuel cycles, solvent extraction of metals, the properties of actinides and other irradiated fuel materials, fuel reprocessing, and radioactive waste management. Crosslisted with NRE 4770. Full Description " + "description": "This course surveys the chemical engineering aspects of nuclear power. Topics include nuclear reactions, fuel cycles, solvent extraction of metals, the properties of actinides and other irradiated fuel materials, fuel reprocessing, and radioactive waste management. Crosslisted with NRE 4770." }, "CHBE4775": { "subject": "CHBE", "number": "4775", "name": "Polymer Science & Engr I ", - "description": "An introduction to the chemistry, structure, and formation of polymers, physical states and transitions, physical and mechanical properties to polymer fluids and solids. Crosslisted with CHEM, ME, MSE, and PTFE 4775. Full Description " + "description": "An introduction to the chemistry, structure, and formation of polymers, physical states and transitions, physical and mechanical properties to polymer fluids and solids. Crosslisted with CHEM, ME, MSE, and PTFE 4775." }, "CHBE4776": { "subject": "CHBE", "number": "4776", "name": "Polymer Science& Engr II ", - "description": "Polymer fabrication processes and methods of characterization and identification of polymers are presented. Experiments in polymerization, processing and property evaluation of polymers. Crosslisted with CHEM, ME, MSE, and TFE 4776. Full Description " + "description": "Polymer fabrication processes and methods of characterization and identification of polymers are presented. Experiments in polymerization, processing and property evaluation of polymers. Crosslisted with CHEM, ME, MSE, and TFE 4776." }, "CHBE4781": { "subject": "CHBE", "number": "4781", "name": "Biomed Instrumentation ", - "description": "A study of medical instrumentation from a systems viewpoint. Pertinent physiological and electro-physiological concepts will be covered. Credit not allowed for both CHBE 4781 and (CHE 4781 or ECE 4781 or BMED 4781 or ME 4781). Full Description " + "description": "A study of medical instrumentation from a systems viewpoint. Pertinent physiological and electro-physiological concepts will be covered. Credit not allowed for both CHBE 4781 and (CHE 4781 or ECE 4781 or BMED 4781 or ME 4781)." }, "CHBE4782": { "subject": "CHBE", "number": "4782", "name": "Biosystems Analysis ", - "description": "Analytical methods for modeling biological systems, including white-noise protocols for characterizing nonlinear systems. Crosslisted with BMED, ECE and ME 4782. Full Description " + "description": "Analytical methods for modeling biological systems, including white-noise protocols for characterizing nonlinear systems. Crosslisted with BMED, ECE and ME 4782." }, "CHBE4791": { "subject": "CHBE", "number": "4791", "name": "Mech Behavior-Composites ", - "description": "Stress-strain behavior of composites, property of matrix and reinforcing materials, mechanics of fiber-reinforced composites, lamina and laminate analysis, and mechanical performance. Crosslisted with AE, CEE, ME, MSE, and PTFE 4791. Full Description " + "description": "Stress-strain behavior of composites, property of matrix and reinforcing materials, mechanics of fiber-reinforced composites, lamina and laminate analysis, and mechanical performance. Crosslisted with AE, CEE, ME, MSE, and PTFE 4791." }, "CHBE4793": { "subject": "CHBE", "number": "4793", "name": "Composite Mater& Process ", - "description": "Basic principles of selection and design of composite materials and their manufacturing and testing. Cost factors. Laboratory exercises on manufacturing and tests. Crosslisted with AE, CEE, ME, MSE, and PTFE 4793. Full Description " + "description": "Basic principles of selection and design of composite materials and their manufacturing and testing. Cost factors. Laboratory exercises on manufacturing and tests. Crosslisted with AE, CEE, ME, MSE, and PTFE 4793." }, "CHBE4794": { "subject": "CHBE", "number": "4794", "name": "Composite Materials& Mfg ", - "description": "Basic principles of selection and design of composite materials and their manufacturing and testing. Cost factors. Laboratory exercises on manufacturing and tests. Crosslisted with AE, CEE, ME, MSE, and PTFE 4794. Full Description " + "description": "Basic principles of selection and design of composite materials and their manufacturing and testing. Cost factors. Laboratory exercises on manufacturing and tests. Crosslisted with AE, CEE, ME, MSE, and PTFE 4794." }, "CHBE4801": { "subject": "CHBE", "number": "4801", "name": "Spec Topic-Chemical Engr ", - "description": "Topics relevant to chemical engineering not currently covered in the undergraduate curriculum are presented as demand or interest warrants. Full Description " + "description": "Topics relevant to chemical engineering not currently covered in the undergraduate curriculum are presented as demand or interest warrants." }, "CHBE4802": { "subject": "CHBE", "number": "4802", "name": "Spec Topic-Chemical Engr ", - "description": "Topics relevant to chemical engineering not currently covered in the undergraduate curriculum are presented as as demand or interest warrants. Full Description " + "description": "Topics relevant to chemical engineering not currently covered in the undergraduate curriculum are presented as as demand or interest warrants." }, "CHBE4803": { "subject": "CHBE", "number": "4803", "name": "Spec Topic-Chemical Engr ", - "description": "Topics relevant to chemical engineering not currently covered in the undergraduate curriculum are presented as demand or interest warrants. Full Description " + "description": "Topics relevant to chemical engineering not currently covered in the undergraduate curriculum are presented as demand or interest warrants." }, "CHBE4804": { "subject": "CHBE", "number": "4804", "name": "Spec Topic-Chemical Engr ", - "description": "Topics relevant to chemical engineering not currently covered in the undergraduate curriculum are presented as demand or interest warrants. Full Description " + "description": "Topics relevant to chemical engineering not currently covered in the undergraduate curriculum are presented as demand or interest warrants." }, "CHBE4805": { "subject": "CHBE", "number": "4805", "name": "Spec Topic-Chemical Engr ", - "description": "Topics relevant to chemical engineering not currently covered in the undergraduate curriculum are presented as demand or interest warrants. Full Description " + "description": "Topics relevant to chemical engineering not currently covered in the undergraduate curriculum are presented as demand or interest warrants." }, "CHBE4806": { "subject": "CHBE", "number": "4806", "name": "Spec Topic-Chemical Engr ", - "description": "Topics relevant to chemical engineering not currently covered in the undergraduate curriculum are presented as demand or interest warrants. Full Description " + "description": "Topics relevant to chemical engineering not currently covered in the undergraduate curriculum are presented as demand or interest warrants." }, "CHBE4853": { "subject": "CHBE", "number": "4853", "name": "Special Topics ", - "description": "Topics relevant to chemical engineering not currently covered in the undergraduate curriculum are presented as demand or interest warrants. Full Description " + "description": "Topics relevant to chemical engineering not currently covered in the undergraduate curriculum are presented as demand or interest warrants." }, "CHBE4901": { "subject": "CHBE", "number": "4901", "name": "Spec Probs-Chemical Engr ", - "description": "The student is given an opportunity to develop initiative and to apply fundamental principles by doing semioriginal laboratory or theoretical investigation of a chemical engineering problem. Full Description " + "description": "The student is given an opportunity to develop initiative and to apply fundamental principles by doing semioriginal laboratory or theoretical investigation of a chemical engineering problem." }, "CHBE4902": { "subject": "CHBE", "number": "4902", "name": "Spec Probs-Chemical Engr ", - "description": "The student is given an opportunity to develop initiative and to apply fundamental principles by doing semioriginal laboratory or theoretical investigation of a chemical engineering problem. Full Description " + "description": "The student is given an opportunity to develop initiative and to apply fundamental principles by doing semioriginal laboratory or theoretical investigation of a chemical engineering problem." }, "CHBE4903": { "subject": "CHBE", "number": "4903", "name": "Spec Probs-Chemical Engr ", - "description": "The student is given an opportunity to develop initiative and to apply fundamental principles by doing semioriginal laboratory or theoretical investigation of a chemical engineering problem. Full Description " + "description": "The student is given an opportunity to develop initiative and to apply fundamental principles by doing semioriginal laboratory or theoretical investigation of a chemical engineering problem." }, "CHBE4XXX": { "subject": "CHBE", "number": "4XXX", "name": "Chem Engr Elective ", - "description": " Full Description " + "description": "" }, "CHBE6001": { "subject": "CHBE", "number": "6001", "name": "Introduction to Research ", - "description": "This course introduces ChBE graduate students to topics that will be encountered in research and fulfills RCR (responsible conduct of reseach) in-person training requirements. Full Description " + "description": "This course introduces ChBE graduate students to topics that will be encountered in research and fulfills RCR (responsible conduct of reseach) in-person training requirements." }, "CHBE6003": { "subject": "CHBE", "number": "6003", "name": "Chem Process Safety ", - "description": "The course focuses on risk reduction through design and hazard avoidance. Sources of chemical hazards and risks are discussed. Full Description " + "description": "The course focuses on risk reduction through design and hazard avoidance. Sources of chemical hazards and risks are discussed." }, "CHBE6004": { "subject": "CHBE", "number": "6004", "name": "Communication Skills ", - "description": "Applications of both written and oral communication skills to the solution of technical problems. Includes focus, audience analysis, visual aids, and organization. Full Description " + "description": "Applications of both written and oral communication skills to the solution of technical problems. Includes focus, audience analysis, visual aids, and organization." }, "CHBE6020": { "subject": "CHBE", "number": "6020", "name": "Chem Eng in Nanosystems ", - "description": "Application of chemical processing fundamentals, fabrication, and characterization to design and analyze technologically important nanoscale systems. The course emphasizes an integrated engineering and science approach. Full Description " + "description": "Application of chemical processing fundamentals, fabrication, and characterization to design and analyze technologically important nanoscale systems. The course emphasizes an integrated engineering and science approach." }, "CHBE6050": { "subject": "CHBE", "number": "6050", "name": "Microelec Fabrication ", - "description": "An elective class for students interested in fabrication of semiconductor devices focusing on the fundamentals of materials synthesis, chemical and mechanical properties, and chemical reactions. Credit will not be awarded for both CHBE 6050 and CHBE 4050. Full Description " + "description": "An elective class for students interested in fabrication of semiconductor devices focusing on the fundamentals of materials synthesis, chemical and mechanical properties, and chemical reactions. Credit will not be awarded for both CHBE 6050 and CHBE 4050." }, "CHBE6100": { "subject": "CHBE", "number": "6100", "name": "Adv CHE Thermodynamics ", - "description": "Equations of state, corresponding states, and activity coefficient models and their relationship to intermolecular forces. Phase and chemical equilibria in chemical engineering. Full Description " + "description": "Equations of state, corresponding states, and activity coefficient models and their relationship to intermolecular forces. Phase and chemical equilibria in chemical engineering." }, "CHBE6110": { "subject": "CHBE", "number": "6110", "name": "Thermo-Large Molecules ", - "description": "Classical and statistical thermodynamics of systems that are important in chemical, biochemical, and polymer processing. Full Description " + "description": "Classical and statistical thermodynamics of systems that are important in chemical, biochemical, and polymer processing." }, "CHBE6120": { "subject": "CHBE", "number": "6120", "name": "Molecular Modeling ", - "description": "Introduction to computational chemistry techniques for modeling substances at the molecular level, including: ab initio and semiempirical quantum methods, molecular dynamics, and Monte Carlo methods. Full Description " + "description": "Introduction to computational chemistry techniques for modeling substances at the molecular level, including: ab initio and semiempirical quantum methods, molecular dynamics, and Monte Carlo methods." }, "CHBE6130": { "subject": "CHBE", "number": "6130", "name": "Electrochemical Engr ", - "description": "Electrochemical thermodynamics and kinetics. Corrosion. Applications to semiconductor devices, fuel cells, and batteries. Full Description " + "description": "Electrochemical thermodynamics and kinetics. Corrosion. Applications to semiconductor devices, fuel cells, and batteries." }, "CHBE6200": { "subject": "CHBE", "number": "6200", "name": "Transport Phenomena ", - "description": "Transfer Viscous fluid mechanics and convective heat transfer. Scaling analysis and lubrication. Stokes, and boundary layer flows. Transport about solid bodies. Linear stability theory. Full Description " + "description": "Transfer Viscous fluid mechanics and convective heat transfer. Scaling analysis and lubrication. Stokes, and boundary layer flows. Transport about solid bodies. Linear stability theory." }, "CHBE6210": { "subject": "CHBE", "number": "6210", "name": "Fluid Mech Two-Phse Flow ", - "description": "Two-phase flow of nondeformable particles in Newtonian fluids. Rigorous results in the limit of small Reynolds number motions and applications to suspensions and colloids. Full Description " + "description": "Two-phase flow of nondeformable particles in Newtonian fluids. Rigorous results in the limit of small Reynolds number motions and applications to suspensions and colloids." }, "CHBE6220": { "subject": "CHBE", "number": "6220", "name": "Computational Fluid Dyn ", - "description": "Applications in Environmental and Chemical Processes. Introduction to numerical methods for solving transport problems. Applications to problems of interest in environmental and chemical processes. Full Description " + "description": "Applications in Environmental and Chemical Processes. Introduction to numerical methods for solving transport problems. Applications to problems of interest in environmental and chemical processes." }, "CHBE6229": { "subject": "CHBE", "number": "6229", "name": "Intro to MEMS ", - "description": "Introduction to Micro-Electro-Mechanical Systems: Microfabrication techniques including: photolithography, etching, physical and chemical vapor deposition, electroplating, bonding and polymer processing. Application to sensors and actuators. Full Description " + "description": "Introduction to Micro-Electro-Mechanical Systems: Microfabrication techniques including: photolithography, etching, physical and chemical vapor deposition, electroplating, bonding and polymer processing. Application to sensors and actuators." }, "CHBE6230": { "subject": "CHBE", "number": "6230", "name": "Industrial Emission Ctrl ", - "description": "Analysis of air quality criteria, ambient and emission standards, and industrial pollution sources. Recovery and utilization of waste gases and particulate matter. Full Description " + "description": "Analysis of air quality criteria, ambient and emission standards, and industrial pollution sources. Recovery and utilization of waste gases and particulate matter." }, "CHBE6231": { "subject": "CHBE", "number": "6231", "name": "Env Modeling-Forest Ind ", - "description": "The science and engineering of waste treatment processes in the pulp and paper industry. Full Description " + "description": "The science and engineering of waste treatment processes in the pulp and paper industry." }, "CHBE6232": { "subject": "CHBE", "number": "6232", "name": "ChemE Process Pulp Paper ", - "description": "To study the details of some of the major unit operations in pulp and paper manufacturing. Full Description " + "description": "To study the details of some of the major unit operations in pulp and paper manufacturing." }, "CHBE6240": { "subject": "CHBE", "number": "6240", "name": "Separation Processes ", - "description": "This course provides an advanced analysis of separation process technology, with special emphasis on new separation techniques and their applications. Full Description " + "description": "This course provides an advanced analysis of separation process technology, with special emphasis on new separation techniques and their applications." }, "CHBE6250": { "subject": "CHBE", "number": "6250", "name": "Mass Transport ", - "description": "An in-depth introduction to transport of penetrants in and through solids. Convective flow through porous media, and conductive flow through homogenous solids. Membrane separations. Full Description " + "description": "An in-depth introduction to transport of penetrants in and through solids. Convective flow through porous media, and conductive flow through homogenous solids. Membrane separations." }, "CHBE6260": { "subject": "CHBE", "number": "6260", "name": "Mass Transfer ", - "description": "Mass transport processes and material properties that affect them. Principles of both steady- and unsteady-state molecular diffusion are developed and transfer mechanisms examined. Full Description " + "description": "Mass transport processes and material properties that affect them. Principles of both steady- and unsteady-state molecular diffusion are developed and transfer mechanisms examined." }, "CHBE62X0": { "subject": "CHBE", "number": "62X0", "name": "Xfer-Separation Process ", - "description": " Full Description " + "description": "" }, "CHBE62X1": { "subject": "CHBE", "number": "62X1", "name": "Xfer-Env Mod Forest Ind ", - "description": " Full Description " + "description": "" }, "CHBE6300": { "subject": "CHBE", "number": "6300", "name": "Kinetics & Reactor Dsgn ", - "description": "A study of chemical kinetics and mechanisms in complex homogeneous and heterogeneous reaction systems. Design and analysis of chemical reactors for such systems. Full Description " + "description": "A study of chemical kinetics and mechanisms in complex homogeneous and heterogeneous reaction systems. Design and analysis of chemical reactors for such systems." }, "CHBE6310": { "subject": "CHBE", "number": "6310", "name": "Chemical Kinetics ", - "description": "Applications of chemical kinetics to homogeneous and heterogeneous gas and liquid reactions, including techniques and analyses. Full Description " + "description": "Applications of chemical kinetics to homogeneous and heterogeneous gas and liquid reactions, including techniques and analyses." }, "CHBE6320": { "subject": "CHBE", "number": "6320", "name": "Heterogeneous Catalysis ", - "description": "Physics and chemistry of surfaces; thermodynamics, kinetics, and mechanism of adsorption and surface reactions; modern instrumental analyses; and industrial catalysis. Full Description " + "description": "Physics and chemistry of surfaces; thermodynamics, kinetics, and mechanism of adsorption and surface reactions; modern instrumental analyses; and industrial catalysis." }, "CHBE6400": { "subject": "CHBE", "number": "6400", "name": "Adv Process Control ", - "description": "Fundamentals of multivariate control theory as applied to chemical processes. Full Description " + "description": "Fundamentals of multivariate control theory as applied to chemical processes." }, "CHBE6410": { "subject": "CHBE", "number": "6410", "name": "Dyn Behavior-Process Sys ", - "description": "Introduction to process dynamics. Modeling of lumped systems with and without chemical reactions. Lumped processes involving phase equilibrium. Distributed parameter systems. Optimization of transient processes. Full Description " + "description": "Introduction to process dynamics. Modeling of lumped systems with and without chemical reactions. Lumped processes involving phase equilibrium. Distributed parameter systems. Optimization of transient processes." }, "CHBE6460": { "subject": "CHBE", "number": "6460", "name": "MEMS Devices ", - "description": "Introduces fundamental concepts and tools needed for the design, simulation and analysis of MEMS devices. These include electrical, mechanical, radiant, thermal, magnetic and chemical domains. Credit not allowed for both CHBE 6460 and ME 6460 or ECE 6460. Full Description " + "description": "Introduces fundamental concepts and tools needed for the design, simulation and analysis of MEMS devices. These include electrical, mechanical, radiant, thermal, magnetic and chemical domains. Credit not allowed for both CHBE 6460 and ME 6460 or ECE 6460." }, "CHBE6500": { "subject": "CHBE", "number": "6500", "name": "Math Model-Chem Process ", - "description": "Formulation and solution of mathematical models of a range of chemical processes with an emphasis on differential balances and incorporation of uncertainty. Full Description " + "description": "Formulation and solution of mathematical models of a range of chemical processes with an emphasis on differential balances and incorporation of uncertainty." }, "CHBE6600": { "subject": "CHBE", "number": "6600", "name": "Polymer Reaction Engr ", - "description": "Polymerization processes are analyzed with regard to reaction mechanism, kinetics, and reactor design. Control of polymer structure during polymerization is emphasized. Full Description " + "description": "Polymerization processes are analyzed with regard to reaction mechanism, kinetics, and reactor design. Control of polymer structure during polymerization is emphasized." }, "CHBE6608": { "subject": "CHBE", "number": "6608", "name": "Microlithography ", - "description": "The study of fundamental issues from physics, chemistry, chemical engineering, and electrical engineering inherent in semiconductor microlithography, encompassing both materials and processes used for pattern definition. Full Description " + "description": "The study of fundamental issues from physics, chemistry, chemical engineering, and electrical engineering inherent in semiconductor microlithography, encompassing both materials and processes used for pattern definition." }, "CHBE6609": { "subject": "CHBE", "number": "6609", "name": "Polym-Micorelectronics ", - "description": "Use of polymers in microelectronics applications such as photolithography, interlevel dielectrics, encapsulation, packaging, magnetic media, and optical storage. Full Description " + "description": "Use of polymers in microelectronics applications such as photolithography, interlevel dielectrics, encapsulation, packaging, magnetic media, and optical storage." }, "CHBE6634": { "subject": "CHBE", "number": "6634", "name": "Wet End Processing-Paper ", - "description": "Wet end colloidal and polymer science of papermaking processes. Processing with fiber, mineral fillers, brighteners, and polymer additives. Full Description " + "description": "Wet end colloidal and polymer science of papermaking processes. Processing with fiber, mineral fillers, brighteners, and polymer additives." }, "CHBE66X0": { "subject": "CHBE", "number": "66X0", "name": "Xfer-Pulp-Paper Mfg I ", - "description": " Full Description " + "description": "" }, "CHBE66X1": { "subject": "CHBE", "number": "66X1", "name": "Xfer-Pulp-Paper Mfg II ", - "description": " Full Description " + "description": "" }, "CHBE66X4": { "subject": "CHBE", "number": "66X4", "name": "Xfer-Wet End Proc-Paper ", - "description": " Full Description " + "description": "" }, "CHBE66X7": { "subject": "CHBE", "number": "66X7", "name": "Transfer-Bioprocessing ", - "description": " Full Description " + "description": "" }, "CHBE6701": { "subject": "CHBE", "number": "6701", "name": "Found Forest Bioproducts ", - "description": "The course provides comprehensive foundational knowledge of the industry enabling the student to understand the role of diverse manufacturing operations and to strategically plan improvements. Course is cross-listed with MLDR 6701, CHBE 6741, ME 6741, CHEM 6741, MSE 6741, CHBE 6742, ME 6742, CHEM 6742, MSE 6742. Full Description " + "description": "The course provides comprehensive foundational knowledge of the industry enabling the student to understand the role of diverse manufacturing operations and to strategically plan improvements. Course is cross-listed with MLDR 6701, CHBE 6741, ME 6741, CHEM 6741, MSE 6741, CHBE 6742, ME 6742, CHEM 6742, MSE 6742." }, "CHBE6710": { "subject": "CHBE", "number": "6710", "name": "Microfluidics & Appl ", - "description": "This course explores the fundamentals of microfluidics and nanofluidics, and their applications, primarily in biological and medical sciences (e.g. biomolecular separations). Credit not allowed for both CHBE 6710 and CHBE 4710. Full Description " + "description": "This course explores the fundamentals of microfluidics and nanofluidics, and their applications, primarily in biological and medical sciences (e.g. biomolecular separations). Credit not allowed for both CHBE 6710 and CHBE 4710." }, "CHBE6741": { "subject": "CHBE", "number": "6741", "name": "Pulp & Paper Mfg I ", - "description": "The fundamentals of pulp and paper technology are presented. Applications to the several unit operations used are explored and augmented by field trips and recent case studies. Crosslisted with ME 6741, CHBE 6701 and MLDR 6701. Full Description " + "description": "The fundamentals of pulp and paper technology are presented. Applications to the several unit operations used are explored and augmented by field trips and recent case studies. Crosslisted with ME 6741, CHBE 6701 and MLDR 6701." }, "CHBE6742": { "subject": "CHBE", "number": "6742", "name": "Pulp & Paper Mfg II ", - "description": "Papermaking technology is covered from a multidisciplinary engineering perspective with fundamental and practical considerations being addressed. Students participate in groups to run a pilot papermaking trial at the Henry Foundation in Savannah. Crosslisted with ME 6741, CHBE 6701 and MLDR 6701. Full Description " + "description": "Papermaking technology is covered from a multidisciplinary engineering perspective with fundamental and practical considerations being addressed. Students participate in groups to run a pilot papermaking trial at the Henry Foundation in Savannah. Crosslisted with ME 6741, CHBE 6701 and MLDR 6701." }, "CHBE6750": { "subject": "CHBE", "number": "6750", "name": "Prep&Reactions-Polymers ", - "description": "A detailed treatment of the reactions involved in the synthesis of both human-made and natural polymers, including preparation and degradative reactions of polymer systems. Crosslisted with CHEM and PTFE 6750 Full Description " + "description": "A detailed treatment of the reactions involved in the synthesis of both human-made and natural polymers, including preparation and degradative reactions of polymer systems. Crosslisted with CHEM and PTFE 6750" }, "CHBE6751": { "subject": "CHBE", "number": "6751", "name": "Phys Chem-Poly Solutions ", - "description": "Study of polymer solutions, polymer miscibility, adsorption, sorption, plasticization, molecular weights, molecular weight distributions, and interfacial phenomena using thermodynamics and statistical mechanics. Crosslisted with CHEM, MSE, and PTFE 6751. Full Description " + "description": "Study of polymer solutions, polymer miscibility, adsorption, sorption, plasticization, molecular weights, molecular weight distributions, and interfacial phenomena using thermodynamics and statistical mechanics. Crosslisted with CHEM, MSE, and PTFE 6751." }, "CHBE6752": { "subject": "CHBE", "number": "6752", "name": "Polymer Characterization ", - "description": "This course introduces the student to surface, near-surface and structural methods of polymer characterization. Specialized techniques critical to physical structure are emphasized. Crosslisted with CHEM, MSE, and PTFE 6752. Full Description " + "description": "This course introduces the student to surface, near-surface and structural methods of polymer characterization. Specialized techniques critical to physical structure are emphasized. Crosslisted with CHEM, MSE, and PTFE 6752." }, "CHBE6759": { "subject": "CHBE", "number": "6759", "name": "Plasma Processing ", - "description": "Fundamental physics, chemistry, chemical engineering, and electrical engineering principles inherent in plasma processes. Includes etching, deposition, diagnostic methods, and control schemes. Crosslisted with ECE 6759. Full Description " + "description": "Fundamental physics, chemistry, chemical engineering, and electrical engineering principles inherent in plasma processes. Includes etching, deposition, diagnostic methods, and control schemes. Crosslisted with ECE 6759." }, "CHBE6760": { "subject": "CHBE", "number": "6760", "name": "Biocatalysis ", - "description": "This course provides in-depth coverage of various topics in biocatalysis and metabolic engineering. Goals of this course are the development of an understanding of proteins as catalysts, their functioning in metabolic networks, their application in various industries, and recognition of their potential for addressing future challenges in science and engineering. Crosslisted with CHEM 6760. Full Description " + "description": "This course provides in-depth coverage of various topics in biocatalysis and metabolic engineering. Goals of this course are the development of an understanding of proteins as catalysts, their functioning in metabolic networks, their application in various industries, and recognition of their potential for addressing future challenges in science and engineering. Crosslisted with CHEM 6760." }, "CHBE6765": { "subject": "CHBE", "number": "6765", "name": "Drug Design,Devlpmnt&Delivery ", - "description": "Introduction to the pharmaceutical development process, including design of new drugs, synthesis and manufacturing issues, and methods of delivery into the body. Includes student presentations. Crosslisted with BMED 6765 and CHBE 6765. Full Description " + "description": "Introduction to the pharmaceutical development process, including design of new drugs, synthesis and manufacturing issues, and methods of delivery into the body. Includes student presentations. Crosslisted with BMED 6765 and CHBE 6765." }, "CHBE6768": { "subject": "CHBE", "number": "6768", "name": "Polymer Structure& Props ", - "description": "Formulations and analysis of molecular and phenomenological models of elastic and viscoelastic behavior, development and description of structure, and fundamental aspects of structure-property relations. Crosslisted with ME, PTFE, and MSE 6768. Full Description " + "description": "Formulations and analysis of molecular and phenomenological models of elastic and viscoelastic behavior, development and description of structure, and fundamental aspects of structure-property relations. Crosslisted with ME, PTFE, and MSE 6768." }, "CHBE6774": { "subject": "CHBE", "number": "6774", "name": "Biomaterial:Struct&Funct ", - "description": "Structure-function relationships of biomaterials and biomaterial characterization will be covered. Materials for medical implants, tissue engineering, biosensing, imaging, and drug delivery will be covered. Crosslisted with BMED, ME, and MSE 6774. Full Description " + "description": "Structure-function relationships of biomaterials and biomaterial characterization will be covered. Materials for medical implants, tissue engineering, biosensing, imaging, and drug delivery will be covered. Crosslisted with BMED, ME, and MSE 6774." }, "CHBE6777": { "subject": "CHBE", "number": "6777", "name": "Advanced Biomaterials ", - "description": "Advanced topics of biomaterials performance and engineering, including biointerfaces, host reactions of materials, and bio-inspired/smart-materials strategies. Crosslisted with BMED, ME, and MSE 6777. Full Description " + "description": "Advanced topics of biomaterials performance and engineering, including biointerfaces, host reactions of materials, and bio-inspired/smart-materials strategies. Crosslisted with BMED, ME, and MSE 6777." }, "CHBE6778": { "subject": "CHBE", "number": "6778", "name": "Intro to Biomaterials ", - "description": "Introduction to a variety of biomaterials and their biomedical applications. Crosslisted with BMED and PTFE 6778. Full Description " + "description": "Introduction to a variety of biomaterials and their biomedical applications. Crosslisted with BMED and PTFE 6778." }, "CHBE6779": { "subject": "CHBE", "number": "6779", "name": "Bioprocess Engineering ", - "description": "Study of enzymes and microbial and mammalian cells for production of biochemicals and protein therapeutics in bioreactors; downstream separation and purification; integrated view of bioprocesses. Crosslisted with BMED 6779. Full Description " + "description": "Study of enzymes and microbial and mammalian cells for production of biochemicals and protein therapeutics in bioreactors; downstream separation and purification; integrated view of bioprocesses. Crosslisted with BMED 6779." }, "CHBE6782": { "subject": "CHBE", "number": "6782", "name": "Cellular Engineering ", - "description": "Engineering analysis of cellular systems. Crosslisted with BMED and ME 6782. Full Description " + "description": "Engineering analysis of cellular systems. Crosslisted with BMED and ME 6782." }, "CHBE6784": { "subject": "CHBE", "number": "6784", "name": "Cardiovascular Biomech ", - "description": "Mechanical analysis of the cardiovascular system emphasizing the normal and pathologic function in relation to clinical cardiovascular medicine. Crosslisted with BMED and ME 6784. Full Description " + "description": "Mechanical analysis of the cardiovascular system emphasizing the normal and pathologic function in relation to clinical cardiovascular medicine. Crosslisted with BMED and ME 6784." }, "CHBE6789": { "subject": "CHBE", "number": "6789", "name": "Technology Ventures ", - "description": "Team discussion and case studies in biomedical engineering technology transfer, including licensing, financial capital, safety and efficacy studies, clinical trials, and strategic planning. Crosslisted with BMED, ECE, ME, and MGT 6789. Full Description " + "description": "Team discussion and case studies in biomedical engineering technology transfer, including licensing, financial capital, safety and efficacy studies, clinical trials, and strategic planning. Crosslisted with BMED, ECE, ME, and MGT 6789." }, "CHBE6793": { "subject": "CHBE", "number": "6793", "name": "Systems Pathophysiology ", - "description": "Overview of human pathophysiology from a quantitative perspective. A brief introduction to the application of quantitative models to the understanding of biological systems. Crosslisted with BMED, ECE, and ME 6793. Full Description " + "description": "Overview of human pathophysiology from a quantitative perspective. A brief introduction to the application of quantitative models to the understanding of biological systems. Crosslisted with BMED, ECE, and ME 6793." }, "CHBE6794": { "subject": "CHBE", "number": "6794", "name": "Tissue Engineering ", - "description": "Biological, engineering, and medical issues in developing tissue-engineered constructs. Emphasis on the integration of these disciplines at a basic molecular and cell biology level. Crosslisted with CHE and ME 6794. Full Description " + "description": "Biological, engineering, and medical issues in developing tissue-engineered constructs. Emphasis on the integration of these disciplines at a basic molecular and cell biology level. Crosslisted with CHE and ME 6794." }, "CHBE6799": { "subject": "CHBE", "number": "6799", "name": "Legal Issues-Tech Transf ", - "description": "Study and analysis of U.S. law as it applies to the patenting and licensing processes. Crosslisted with BMED, ME, and MGT 6799. Full Description " + "description": "Study and analysis of U.S. law as it applies to the patenting and licensing processes. Crosslisted with BMED, ME, and MGT 6799." }, "CHBE6XXX": { "subject": "CHBE", "number": "6XXX", "name": "Chem Engr Elective ", - "description": " Full Description " + "description": "" }, "CHBE7000": { "subject": "CHBE", "number": "7000", "name": "Master's Thesis ", - "description": " Full Description " + "description": "" }, "CHBE7650": { "subject": "CHBE", "number": "7650", "name": "Chemistry of Polymers ", - "description": "Thermodynamics and microscopic dynamics of polymers. Fundamental concepts, including scaling concepts, governing anisotropy of polarizability, phase transitions, morphology, time-dependent correlations, etc. Full Description " + "description": "Thermodynamics and microscopic dynamics of polymers. Fundamental concepts, including scaling concepts, governing anisotropy of polarizability, phase transitions, morphology, time-dependent correlations, etc." }, "CHBE7757": { "subject": "CHBE", "number": "7757", "name": "Teaching Practicum ", - "description": "Supervised teaching for doctoral students. Teaching techniques, course and curriculum design, student evaluation methods and criteria. Students may, in some instances, prepare and present lectures. Crosslisted with NRE, ME, HP 7757. Full Description " + "description": "Supervised teaching for doctoral students. Teaching techniques, course and curriculum design, student evaluation methods and criteria. Students may, in some instances, prepare and present lectures. Crosslisted with NRE, ME, HP 7757." }, "CHBE7771": { "subject": "CHBE", "number": "7771", "name": "Mech-Polymer Solid&Fluid ", - "description": "Continuum mechanics of solids and fluids; mechanics of deformation of anisotropic polymers; yield, breaking, and fatigue; non-Newtonian viscous and viscoelastic behavior of polymer fluids. Crosslisted with ME, MSE, and PTFE 7771. Full Description " + "description": "Continuum mechanics of solids and fluids; mechanics of deformation of anisotropic polymers; yield, breaking, and fatigue; non-Newtonian viscous and viscoelastic behavior of polymer fluids. Crosslisted with ME, MSE, and PTFE 7771." }, "CHBE7772": { "subject": "CHBE", "number": "7772", "name": "Fund-Fracture Mechanics ", - "description": "Advanced study of failure of structural materials under load, mechanics of fracture, and microscopic and macroscopic aspects of the fracture of engineering materials. Crosslisted with AE, CEE, ME, and MSE 7772. Full Description " + "description": "Advanced study of failure of structural materials under load, mechanics of fracture, and microscopic and macroscopic aspects of the fracture of engineering materials. Crosslisted with AE, CEE, ME, and MSE 7772." }, "CHBE7773": { "subject": "CHBE", "number": "7773", "name": "Adv Fracture Mechanics ", - "description": "Nonlinear fracture mechanics including elastic-plastic and time-dependent fracture, advanced test methods, J-integral theory, and extensions. Crosslisted with AE, CEE, ME, and MSE 7773. Full Description " + "description": "Nonlinear fracture mechanics including elastic-plastic and time-dependent fracture, advanced test methods, J-integral theory, and extensions. Crosslisted with AE, CEE, ME, and MSE 7773." }, "CHBE7774": { "subject": "CHBE", "number": "7774", "name": "Fatigue-Materials&Struct ", - "description": "Mechanical and microstructural aspects of nucleation and growth of cracks under cyclic loading conditions, notch effects, cumulative damage, multiaxial loading, and fatigue crack propagation. Crosslisted with AE, CEE, ME, and MSE 7774. Full Description " + "description": "Mechanical and microstructural aspects of nucleation and growth of cracks under cyclic loading conditions, notch effects, cumulative damage, multiaxial loading, and fatigue crack propagation. Crosslisted with AE, CEE, ME, and MSE 7774." }, "CHBE7775": { "subject": "CHBE", "number": "7775", "name": "Fract&Fatigue-Structures ", - "description": "Structures Brittle and ductile failure criteria. Failure prediction in composite structures. Free-edge and internal delamination. Anisotropic cracks. Fatigue behavior of composites and comparison with metal fatigue. Crosslisted with AE, ME, and MSE 7775. Full Description " + "description": "Structures Brittle and ductile failure criteria. Failure prediction in composite structures. Free-edge and internal delamination. Anisotropic cracks. Fatigue behavior of composites and comparison with metal fatigue. Crosslisted with AE, ME, and MSE 7775." }, "CHBE7791": { "subject": "CHBE", "number": "7791", "name": "Damage & Fail-Composites ", - "description": "Provides knowledge of the fundamental concepts and methods related to analysis and assessment of damage, failure, and durability of composite materials. Crosslisted with AE, CEE, ME, MSE, and PTFE 7791. Full Description " + "description": "Provides knowledge of the fundamental concepts and methods related to analysis and assessment of damage, failure, and durability of composite materials. Crosslisted with AE, CEE, ME, MSE, and PTFE 7791." }, "CHBE7792": { "subject": "CHBE", "number": "7792", "name": "Mechanics of Composites ", - "description": "Anisotropic elasticity, failure theories, hydrothermal behavior, 3-D analysis of laminates, thick laminates, free- edge effects, stress concentrations, joints, creep, and fracture of composites, and advanced topics. Crosslisted with AE, CEE, ME, MSE, and PTFE 7792. Full Description " + "description": "Anisotropic elasticity, failure theories, hydrothermal behavior, 3-D analysis of laminates, thick laminates, free- edge effects, stress concentrations, joints, creep, and fracture of composites, and advanced topics. Crosslisted with AE, CEE, ME, MSE, and PTFE 7792." }, "CHBE7793": { "subject": "CHBE", "number": "7793", "name": "Manufacture-Composites ", - "description": "Major manufacturing techniques for metal, ceramic, and polymer matrix composites. Modeling of processes with emphasis on fundamental mechanisms and effects. Crosslisted with AE, CEE, ME, MSE, and PTFE 7793. Full Description " + "description": "Major manufacturing techniques for metal, ceramic, and polymer matrix composites. Modeling of processes with emphasis on fundamental mechanisms and effects. Crosslisted with AE, CEE, ME, MSE, and PTFE 7793." }, "CHBE8001": { "subject": "CHBE", "number": "8001", "name": "Seminar - Chemical Engr ", - "description": " Full Description " + "description": "" }, "CHBE8002": { "subject": "CHBE", "number": "8002", "name": "Seminar - Chemical Engr ", - "description": " Full Description " + "description": "" }, "CHBE8801": { "subject": "CHBE", "number": "8801", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "CHBE8802": { "subject": "CHBE", "number": "8802", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "CHBE8803": { "subject": "CHBE", "number": "8803", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "CHBE8804": { "subject": "CHBE", "number": "8804", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "CHBE88X2": { "subject": "CHBE", "number": "88X2", "name": "Xfer - Special Topics ", - "description": " Full Description " + "description": "" }, "CHBE8901": { "subject": "CHBE", "number": "8901", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "CHBE8997": { "subject": "CHBE", "number": "8997", "name": "Teaching Assistantship ", - "description": "For graduate students holding teaching assistantships. Full Description " + "description": "For graduate students holding teaching assistantships." }, "CHBE8998": { "subject": "CHBE", "number": "8998", "name": "Research Assistantship ", - "description": "For graduate students holding research assistantships. Full Description " + "description": "For graduate students holding research assistantships." }, "CHBE9000": { "subject": "CHBE", "number": "9000", "name": "Doctoral Thesis ", - "description": " Full Description " + "description": "" }, "CHEM1211K": { "subject": "CHEM", "number": "1211K", "name": "Chemical Principles I ", - "description": "Topics to be covered include atomic structure, bonding, properties of matter, thermodynamics and physical equilibria. Laboratory exercises supplement the lecture material. Credit not allowed for both CHEM 1310 and CHEM 1211K. Full Description " + "description": "Topics to be covered include atomic structure, bonding, properties of matter, thermodynamics and physical equilibria. Laboratory exercises supplement the lecture material. Credit not allowed for both CHEM 1310 and CHEM 1211K." }, "CHEM1212K": { "subject": "CHEM", "number": "1212K", "name": "Chemical Principles II ", - "description": "Topics to be covered include chemical equilibria, acids and bases, aqueous equilibria, electrochemistry, kinetics, main group and transition elements. Laboratory exercises supplement the lecture material. Credit not allowed for CHEM 1311/1312 and CHEM 1212K. Full Description " + "description": "Topics to be covered include chemical equilibria, acids and bases, aqueous equilibria, electrochemistry, kinetics, main group and transition elements. Laboratory exercises supplement the lecture material. Credit not allowed for CHEM 1311/1312 and CHEM 1212K." }, "CHEM12X1": { "subject": "CHEM", "number": "12X1", "name": "Transfer General Chem ", - "description": " Full Description " + "description": "" }, "CHEM1310": { "subject": "CHEM", "number": "1310", "name": "General Chemistry ", - "description": "Fundamental laws and theories of chemical reactions. Topics include atomic structure; bonding theory; stoichiometry; properties of solids, liquids and gases; chemical thermodynamics; electrochemistry; and kinetics. Credit not allowed for both CHEM 1211K and CHEM 1310. Full Description " + "description": "Fundamental laws and theories of chemical reactions. Topics include atomic structure; bonding theory; stoichiometry; properties of solids, liquids and gases; chemical thermodynamics; electrochemistry; and kinetics. Credit not allowed for both CHEM 1211K and CHEM 1310." }, "CHEM1315": { "subject": "CHEM", "number": "1315", "name": "Survey of Organic Chem ", - "description": "Survey of organic chemistry as the basis for biochemical processes and commercial applications. Full Description " + "description": "Survey of organic chemistry as the basis for biochemical processes and commercial applications." }, "CHEM1XXX": { "subject": "CHEM", "number": "1XXX", "name": "Chemistry Elective ", - "description": " Full Description " + "description": "" }, "CHEM2211": { "subject": "CHEM", "number": "2211", "name": "Quantitative Analysis ", - "description": "Laboratory experimentation emphasizing quantitative chemical analysis. Credit not allowed for both CHEM 2211 and CHEM 1313. Full Description " + "description": "Laboratory experimentation emphasizing quantitative chemical analysis. Credit not allowed for both CHEM 2211 and CHEM 1313." }, "CHEM2311": { "subject": "CHEM", "number": "2311", "name": "Organic Chemistry I ", - "description": "An introduction to structure and reactivity of organic molecules. Full Description " + "description": "An introduction to structure and reactivity of organic molecules." }, "CHEM2312": { "subject": "CHEM", "number": "2312", "name": "Organic Chemistry II ", - "description": "The second course in the series dealing with the structure and reactivity of organic molecules. Full Description " + "description": "The second course in the series dealing with the structure and reactivity of organic molecules." }, "CHEM2313": { "subject": "CHEM", "number": "2313", "name": "Organic/Bioorganic Chem ", - "description": "A second course in organic chemistry that extends the study to topics in biochemistry. Full Description " + "description": "A second course in organic chemistry that extends the study to topics in biochemistry." }, "CHEM2380": { "subject": "CHEM", "number": "2380", "name": "Synthesis Lab I ", - "description": "Methods for preparation, isolation, and characterization of complex organic molecules, natural products, and polymers. Full Description " + "description": "Methods for preparation, isolation, and characterization of complex organic molecules, natural products, and polymers." }, "CHEM2694": { "subject": "CHEM", "number": "2694", "name": "Intern Assistantship ", - "description": "Undergraduate Internship for which the student is paid, Freshmen and Sophomores only. Full Description " + "description": "Undergraduate Internship for which the student is paid, Freshmen and Sophomores only." }, "CHEM2695": { "subject": "CHEM", "number": "2695", "name": "Undergraduate Internship ", - "description": "Undergraduate Internship for academic credit, Freshmen and Sophomores only. Full Description " + "description": "Undergraduate Internship for academic credit, Freshmen and Sophomores only." }, "CHEM2698": { "subject": "CHEM", "number": "2698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "CHEM2699": { "subject": "CHEM", "number": "2699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "CHEM2801": { "subject": "CHEM", "number": "2801", "name": "Special Topics ", - "description": "Lecture course in current special topics in chemistry and biochemistry. Topics will vary from year to year. Full Description " + "description": "Lecture course in current special topics in chemistry and biochemistry. Topics will vary from year to year." }, "CHEM2802": { "subject": "CHEM", "number": "2802", "name": "Special Topics ", - "description": "Lecture course in current special topics in chemistry and biochemistry. Topics will vary from year to year. Full Description " + "description": "Lecture course in current special topics in chemistry and biochemistry. Topics will vary from year to year." }, "CHEM2803": { "subject": "CHEM", "number": "2803", "name": "Special Topics ", - "description": "Lecture course in current special topics in chemistry and biochemistry. Topics will vary from year to year. Full Description " + "description": "Lecture course in current special topics in chemistry and biochemistry. Topics will vary from year to year." }, "CHEM2901": { "subject": "CHEM", "number": "2901", "name": "Special Prob - Chemistry ", - "description": "Course of individual instruction, which will include library conference and laboratory experience. Full Description " + "description": "Course of individual instruction, which will include library conference and laboratory experience." }, "CHEM2902": { "subject": "CHEM", "number": "2902", "name": "Special Prob - Chemistry ", - "description": "Course of individuated instruction, which will include library, conference and laboratory experience. Full Description " + "description": "Course of individuated instruction, which will include library, conference and laboratory experience." }, "CHEM2903": { "subject": "CHEM", "number": "2903", "name": "Special Prob - Chemistry ", - "description": "Course of individuated instruction, which will include library conference and laboratory experience. Full Description " + "description": "Course of individuated instruction, which will include library conference and laboratory experience." }, "CHEM2XXX": { "subject": "CHEM", "number": "2XXX", "name": "Chemistry Elective ", - "description": " Full Description " + "description": "" }, "CHEM3111": { "subject": "CHEM", "number": "3111", "name": "Inorganic Chemistry ", - "description": "A study of the reactions and structures of inorganic compounds and principles, generalizations and theories that assist in understanding their behavior. Full Description " + "description": "A study of the reactions and structures of inorganic compounds and principles, generalizations and theories that assist in understanding their behavior." }, "CHEM3211": { "subject": "CHEM", "number": "3211", "name": "Analytical Chemistry ", - "description": "Introduction to the theory and practice of modern chemical analysis. Full Description " + "description": "Introduction to the theory and practice of modern chemical analysis." }, "CHEM3281": { "subject": "CHEM", "number": "3281", "name": "Instrumental Analysis ", - "description": "Provides a background to modern analytical chemistry and instrumental methods of analysis with applications to engineering and other areas. Full Description " + "description": "Provides a background to modern analytical chemistry and instrumental methods of analysis with applications to engineering and other areas." }, "CHEM3371": { "subject": "CHEM", "number": "3371", "name": "Organic Chem Lab ", - "description": "Multi-step organic synthesis and inorganic synthesis. Use of chemical literature and advanced spectroscopic techniques. Full Description " + "description": "Multi-step organic synthesis and inorganic synthesis. Use of chemical literature and advanced spectroscopic techniques." }, "CHEM3380": { "subject": "CHEM", "number": "3380", "name": "Synthesis Lab II ", - "description": "Multi-step organic and inorganic synthesis. Use of the chemical literature and advanced spectroscopic techniques. Full Description " + "description": "Multi-step organic and inorganic synthesis. Use of the chemical literature and advanced spectroscopic techniques." }, "CHEM3411": { "subject": "CHEM", "number": "3411", "name": "Physical Chemistry I ", - "description": "Chemical thermodynamics, energetics of chemical reactions, changes of state, and electrochemistry. Full Description " + "description": "Chemical thermodynamics, energetics of chemical reactions, changes of state, and electrochemistry." }, "CHEM3412": { "subject": "CHEM", "number": "3412", "name": "Physical Chemistry II ", - "description": "Quantum mechanics, atomic and molecular structure, bonding theory, molecular spectroscopy, statistical mechanics. Full Description " + "description": "Quantum mechanics, atomic and molecular structure, bonding theory, molecular spectroscopy, statistical mechanics." }, "CHEM3481": { "subject": "CHEM", "number": "3481", "name": "Physical Chem Lab I ", - "description": "Laboratory investigations of physical principles applied to chemical systems. Full Description " + "description": "Laboratory investigations of physical principles applied to chemical systems." }, "CHEM3482": { "subject": "CHEM", "number": "3482", "name": "Physical Chem Lab II ", - "description": "Laboratory investigations of physical principles applied to chemical systems. Full Description " + "description": "Laboratory investigations of physical principles applied to chemical systems." }, "CHEM3511": { "subject": "CHEM", "number": "3511", "name": "Survey of Biochemistry ", - "description": "Introductory course in biochemistry dealing with the chemistry and biochemistry of proteins, lipids, carbohydrates, nucleic acids, and other biomolecules. Full Description " + "description": "Introductory course in biochemistry dealing with the chemistry and biochemistry of proteins, lipids, carbohydrates, nucleic acids, and other biomolecules." }, "CHEM3700": { "subject": "CHEM", "number": "3700", "name": "Alternative Energy ", - "description": "Scientific principles governing the current and future approaches in solar photo-voltaics, fuel cells, biomass conversion, nuclear energy and wind power. Full Description " + "description": "Scientific principles governing the current and future approaches in solar photo-voltaics, fuel cells, biomass conversion, nuclear energy and wind power." }, "CHEM3XXX": { "subject": "CHEM", "number": "3XXX", "name": "Chemistry Elective ", - "description": " Full Description " + "description": "" }, "CHEM4113": { "subject": "CHEM", "number": "4113", "name": "Inorg Energy Conversion ", - "description": "The principles of coordination chemistry applied to theories and mechanisms of energy conversion and storage in chemistry and biology. Students cannot receive credit for CHEM 4113 and CHEM 6171. Full Description " + "description": "The principles of coordination chemistry applied to theories and mechanisms of energy conversion and storage in chemistry and biology. Students cannot receive credit for CHEM 4113 and CHEM 6171." }, "CHEM4311": { "subject": "CHEM", "number": "4311", "name": "Adv Organic Chem ", - "description": "Construction reactions and functional group interconversions as applied to multistep organic synthesis. Full Description " + "description": "Construction reactions and functional group interconversions as applied to multistep organic synthesis." }, "CHEM4341": { "subject": "CHEM", "number": "4341", "name": "Applied Spectroscopy ", - "description": "Theory and application of NMR, mass spectrometry, and infrared spectroscopy in the determination of organic structures. Full Description " + "description": "Theory and application of NMR, mass spectrometry, and infrared spectroscopy in the determination of organic structures." }, "CHEM4401": { "subject": "CHEM", "number": "4401", "name": "Molecular Spectroscopy ", - "description": "Introduction to the theory and applications of molecular spectroscopy, including electronic, vibrational, rotational transitions, and selections rules. Full Description " + "description": "Introduction to the theory and applications of molecular spectroscopy, including electronic, vibrational, rotational transitions, and selections rules." }, "CHEM4452": { "subject": "CHEM", "number": "4452", "name": "Solid State Chemistry ", - "description": "Application of the concepts of physical and inorganic chemistry to the structure of solids and their chemical and physical properties. Full Description " + "description": "Application of the concepts of physical and inorganic chemistry to the structure of solids and their chemical and physical properties." }, "CHEM4511": { "subject": "CHEM", "number": "4511", "name": "Biochemistry I ", - "description": "The chemistry and biochemistry of proteins, lipids, carbohydrates, nucleic acids, and other biomolecules. Full Description " + "description": "The chemistry and biochemistry of proteins, lipids, carbohydrates, nucleic acids, and other biomolecules." }, "CHEM4512": { "subject": "CHEM", "number": "4512", "name": "Biochemistry II ", - "description": "The chemistry and biochemistry of proteins, lipids, carbohydrates, nucleic acids, and other biomolecules. Full Description " + "description": "The chemistry and biochemistry of proteins, lipids, carbohydrates, nucleic acids, and other biomolecules." }, "CHEM4521": { "subject": "CHEM", "number": "4521", "name": "Biophysical Chemistry ", - "description": "The physical chemistry of biological systems, biological macromolecules, and biological aggregates. Full Description " + "description": "The physical chemistry of biological systems, biological macromolecules, and biological aggregates." }, "CHEM4581": { "subject": "CHEM", "number": "4581", "name": "Biochemistry Lab I ", - "description": "Modern biochemical techniques including methods for protein, nucleic acid, and lipid isolation and characterization; enzyme assays; chromatography; electrophoresis; and use of databases. Full Description " + "description": "Modern biochemical techniques including methods for protein, nucleic acid, and lipid isolation and characterization; enzyme assays; chromatography; electrophoresis; and use of databases." }, "CHEM4582": { "subject": "CHEM", "number": "4582", "name": "Biochemistry Lab II ", - "description": "Laboratory techniques in the isolation and characterization of biological molecules with special emphasis on modern techniques. Full Description " + "description": "Laboratory techniques in the isolation and characterization of biological molecules with special emphasis on modern techniques." }, "CHEM4601": { "subject": "CHEM", "number": "4601", "name": "Chemistry Seminar ", - "description": "Student presentations of recent research topics in chemistry or biochemistry based on lab experience and/or literature searches. Full Description " + "description": "Student presentations of recent research topics in chemistry or biochemistry based on lab experience and/or literature searches." }, "CHEM4684": { "subject": "CHEM", "number": "4684", "name": "Advanced Chemistry Lab ", - "description": "A modular laboratory involving a series of multipart experiments that build upon chemical principles and experimental techniques introduced in earlier courses and instructional laboratories. Credit not allowed for both CHEM 4684 and CHEM 4681. Full Description " + "description": "A modular laboratory involving a series of multipart experiments that build upon chemical principles and experimental techniques introduced in earlier courses and instructional laboratories. Credit not allowed for both CHEM 4684 and CHEM 4681." }, "CHEM4694": { "subject": "CHEM", "number": "4694", "name": "Intern Assistantship ", - "description": "Undergraduate Internship for which the student is paid, Juniors and Seniors only. Full Description " + "description": "Undergraduate Internship for which the student is paid, Juniors and Seniors only." }, "CHEM4695": { "subject": "CHEM", "number": "4695", "name": "Undergraduate Internship ", - "description": "Undergraduate Internship for academic credit, Juniors and Seniors only. Full Description " + "description": "Undergraduate Internship for academic credit, Juniors and Seniors only." }, "CHEM4698": { "subject": "CHEM", "number": "4698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "CHEM4699": { "subject": "CHEM", "number": "4699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "CHEM4740": { "subject": "CHEM", "number": "4740", "name": "Atmospheric Chemistry ", - "description": "This course provides a general chemical description of the Earth's atmospheric system with a major focus on the two lowest layers of the atmosphere, i.e., the troposphere and the stratosphere. Crosslisted with EAS 4740. Full Description " + "description": "This course provides a general chemical description of the Earth's atmospheric system with a major focus on the two lowest layers of the atmosphere, i.e., the troposphere and the stratosphere. Crosslisted with EAS 4740." }, "CHEM4760": { "subject": "CHEM", "number": "4760", "name": "Biocatalysis ", - "description": "This course provides an in-depth coverage of various topics in biocatalysis and metabolic engineering. Goals of this course are the development of an understanding of proteins as catalysts, their functioning in metabolic networks, their application in various industries, recognition of their potential for addressing future challenges in science and engineering. Crosslisted with CHBE 4760. Full Description " + "description": "This course provides an in-depth coverage of various topics in biocatalysis and metabolic engineering. Goals of this course are the development of an understanding of proteins as catalysts, their functioning in metabolic networks, their application in various industries, recognition of their potential for addressing future challenges in science and engineering. Crosslisted with CHBE 4760." }, "CHEM4765": { "subject": "CHEM", "number": "4765", "name": "Drug Design,Devlpmnt&Delivery ", - "description": "Introduction to the pharmaceutical development process, including design of new drugs, synthesis and manufacturing issues, and methods for delivery into the body. Includes student presentations. Crosslisted with CHBE and BMED 4765. Full Description " + "description": "Introduction to the pharmaceutical development process, including design of new drugs, synthesis and manufacturing issues, and methods for delivery into the body. Includes student presentations. Crosslisted with CHBE and BMED 4765." }, "CHEM4775": { "subject": "CHEM", "number": "4775", "name": "Polymer Science & Engr I ", - "description": "An introduction to the chemistry, structure, and formation of polymers, physical states and transitions, physical and mechanical properties of polymer fluids and solids. Crosslisted with CHE, ME, MSE, and PTFE 4775. Full Description " + "description": "An introduction to the chemistry, structure, and formation of polymers, physical states and transitions, physical and mechanical properties of polymer fluids and solids. Crosslisted with CHE, ME, MSE, and PTFE 4775." }, "CHEM4776": { "subject": "CHEM", "number": "4776", "name": "Polymer Science& Engr II ", - "description": "Polymer fabrication processes and methods of characterization and identification of polymers are presented. Experiments in polymerization, processing, and property evaluation of polymers. Crosslisted with CHE, ME, MSE, and TFE 4776. Full Description " + "description": "Polymer fabrication processes and methods of characterization and identification of polymers are presented. Experiments in polymerization, processing, and property evaluation of polymers. Crosslisted with CHE, ME, MSE, and TFE 4776." }, "CHEM4801": { "subject": "CHEM", "number": "4801", "name": "Special Topics ", - "description": "Topics of current interest not included in the regular course offerings. Full Description " + "description": "Topics of current interest not included in the regular course offerings." }, "CHEM4802": { "subject": "CHEM", "number": "4802", "name": "Special Topics ", - "description": "Topics of current interest not included in the regular course offerings. Full Description " + "description": "Topics of current interest not included in the regular course offerings." }, "CHEM4803": { "subject": "CHEM", "number": "4803", "name": "Special Topics ", - "description": "Topics of current interest not included in the regular course offerings. Full Description " + "description": "Topics of current interest not included in the regular course offerings." }, "CHEM4804": { "subject": "CHEM", "number": "4804", "name": "Special Topics ", - "description": "Topics of current interest not included in the regular course offerings. Full Description " + "description": "Topics of current interest not included in the regular course offerings." }, "CHEM4805": { "subject": "CHEM", "number": "4805", "name": "Special Topics ", - "description": " the regular course offerings. Full Description " + "description": " the regular course offerings." }, "CHEM4901": { "subject": "CHEM", "number": "4901", "name": "Special Problems in Chem ", - "description": "Course of individualized instruction, which will include library, conference, and laboratory investigations. Full Description " + "description": "Course of individualized instruction, which will include library, conference, and laboratory investigations." }, "CHEM4902": { "subject": "CHEM", "number": "4902", "name": "Special Problems in Chem ", - "description": "Course of individualized instruction, which will include library, conference, and laboratory investigations. Full Description " + "description": "Course of individualized instruction, which will include library, conference, and laboratory investigations." }, "CHEM4903": { "subject": "CHEM", "number": "4903", "name": "Special Problems in Chem ", - "description": "Course of individualized instruction, which will include library, conference, and laboratory investigations. Full Description " + "description": "Course of individualized instruction, which will include library, conference, and laboratory investigations." }, "CHEM4XXX": { "subject": "CHEM", "number": "4XXX", "name": "Chemistry Elective ", - "description": " Full Description " + "description": "" }, "CHEM6170": { "subject": "CHEM", "number": "6170", "name": "Inorganic Chem I ", - "description": "A series of key topics in inorganic chemistry will be reviewed: acids/bases, redox processes, bonding and structure, transition metal chemistry, coordination complexes. Full Description " + "description": "A series of key topics in inorganic chemistry will be reviewed: acids/bases, redox processes, bonding and structure, transition metal chemistry, coordination complexes." }, "CHEM6171": { "subject": "CHEM", "number": "6171", "name": "Inorganic Chem II ", - "description": "Contemporary topics in inorganic chemistry including bioinorganic chemistry, reaction mechanisms and kinetics, optical and magnetic properties of molecular species, and inorganic materials. Full Description " + "description": "Contemporary topics in inorganic chemistry including bioinorganic chemistry, reaction mechanisms and kinetics, optical and magnetic properties of molecular species, and inorganic materials." }, "CHEM6172": { "subject": "CHEM", "number": "6172", "name": "Physical Meth-Inorg Chem ", - "description": "An introduction to the use of physical methods in inorganic chemistry including vibrational spectroscopy, multinuclear NMR, EST, Mossbauer, magnetometery, NQR, PES, diffraction, and EXAFS. Full Description " + "description": "An introduction to the use of physical methods in inorganic chemistry including vibrational spectroscopy, multinuclear NMR, EST, Mossbauer, magnetometery, NQR, PES, diffraction, and EXAFS." }, "CHEM6181": { "subject": "CHEM", "number": "6181", "name": "Chemical Crystallography ", - "description": "The collection and interpretation of diffraction data. Single crystal structure analysis, powder diffraction for phase identification and quantitative analysis, and Rietveld refinement. Full Description " + "description": "The collection and interpretation of diffraction data. Single crystal structure analysis, powder diffraction for phase identification and quantitative analysis, and Rietveld refinement." }, "CHEM6182": { "subject": "CHEM", "number": "6182", "name": "Chem of the Solid State ", - "description": "An introduction to the chemistry of the solid state. Synthetic methods, measurement of properties, structure of solids, theory of electrical, optical, and magnetic properties. Full Description " + "description": "An introduction to the chemistry of the solid state. Synthetic methods, measurement of properties, structure of solids, theory of electrical, optical, and magnetic properties." }, "CHEM6183": { "subject": "CHEM", "number": "6183", "name": "Organometallic Chemistry ", - "description": "The chemistry of main group and transition metal organometallics. Including synthetic methods, homogeneous catalysis and catalytic cycles, and synthetically useful organometallic reagents. Full Description " + "description": "The chemistry of main group and transition metal organometallics. Including synthetic methods, homogeneous catalysis and catalytic cycles, and synthetically useful organometallic reagents." }, "CHEM6271": { "subject": "CHEM", "number": "6271", "name": "Analytical Chem I ", - "description": "Discussion of chemical equilibrium, separations, and bioanalytical methods. Full Description " + "description": "Discussion of chemical equilibrium, separations, and bioanalytical methods." }, "CHEM6272": { "subject": "CHEM", "number": "6272", "name": "Analytical Chem II ", - "description": "Topics include experimental design, electronics, and spectroscopy. Full Description " + "description": "Topics include experimental design, electronics, and spectroscopy." }, "CHEM6281": { "subject": "CHEM", "number": "6281", "name": "Mass Spectrometry ", - "description": "Topics include sample handling, ionization methods, MS/MS, and quantitative analysis. Full Description " + "description": "Topics include sample handling, ionization methods, MS/MS, and quantitative analysis." }, "CHEM6282": { "subject": "CHEM", "number": "6282", "name": "Chemical Sensors ", - "description": "Origins of selectivity, principles of transduction mechanisms, construction and applications of modern chemical sensors. Full Description " + "description": "Origins of selectivity, principles of transduction mechanisms, construction and applications of modern chemical sensors." }, "CHEM6283": { "subject": "CHEM", "number": "6283", "name": "Electroanalytical Chem ", - "description": "Coulometry, electrolytic separations, polargraphy chronopotentimetry, coulometric titrations, voltammetry, and hydrodynamic electrochemical methods of analysis. Full Description " + "description": "Coulometry, electrolytic separations, polargraphy chronopotentimetry, coulometric titrations, voltammetry, and hydrodynamic electrochemical methods of analysis." }, "CHEM6284": { "subject": "CHEM", "number": "6284", "name": "Environ Analytical Chem ", - "description": "Application of techniques from analytical chemistry in monitoring the environment. Full Description " + "description": "Application of techniques from analytical chemistry in monitoring the environment." }, "CHEM6285": { "subject": "CHEM", "number": "6285", "name": "Analytical Spectroscopy ", - "description": "Modern analytical spectroscopy and use of analytical techniques in chemistry and chemical engineering. Full Description " + "description": "Modern analytical spectroscopy and use of analytical techniques in chemistry and chemical engineering." }, "CHEM6287": { "subject": "CHEM", "number": "6287", "name": "Scanned Probe Techniques ", - "description": "An in-depth analysis of the theory, practice and application of scanning probe microscopy techniques. Full Description " + "description": "An in-depth analysis of the theory, practice and application of scanning probe microscopy techniques." }, "CHEM6371": { "subject": "CHEM", "number": "6371", "name": "Organic Compounds ", - "description": "Description of molecular structure and identification of organic compounds using spectroscopic techniques. Full Description " + "description": "Description of molecular structure and identification of organic compounds using spectroscopic techniques." }, "CHEM6372": { "subject": "CHEM", "number": "6372", "name": "Physical Organic Chem ", - "description": "Physical methods in organic chemistry; determination of reaction pathways. Full Description " + "description": "Physical methods in organic chemistry; determination of reaction pathways." }, "CHEM6373": { "subject": "CHEM", "number": "6373", "name": "Organic Synthesis ", - "description": "Methods and strategy for the preparation of complex organic compounds. Full Description " + "description": "Methods and strategy for the preparation of complex organic compounds." }, "CHEM6381": { "subject": "CHEM", "number": "6381", "name": "Adv Organic Synthesis ", - "description": "Advanced topics in the synthesis of complex organic molecules. Full Description " + "description": "Advanced topics in the synthesis of complex organic molecules." }, "CHEM6382": { "subject": "CHEM", "number": "6382", "name": "Comput Methods-Org Chem ", - "description": "The development of approximate methods in molecular orbital theory and molecular mechanics and their application to problems in organic and biochemistry. Full Description " + "description": "The development of approximate methods in molecular orbital theory and molecular mechanics and their application to problems in organic and biochemistry." }, "CHEM6471": { "subject": "CHEM", "number": "6471", "name": "Chem Thermo & Kinetics ", - "description": "Laws of classical thermodynamics and their chemical applications. Introduction to statistical mechanics and chemical kinetics. Full Description " + "description": "Laws of classical thermodynamics and their chemical applications. Introduction to statistical mechanics and chemical kinetics." }, "CHEM6472": { "subject": "CHEM", "number": "6472", "name": "Quant Chem & Molec Spec ", - "description": "Introduction to quantum mechanics and its application to molecular systems, atomic and molecular spectroscopy. Full Description " + "description": "Introduction to quantum mechanics and its application to molecular systems, atomic and molecular spectroscopy." }, "CHEM6481": { "subject": "CHEM", "number": "6481", "name": "Statistical Mechanics ", - "description": "Statistical thermodynamics, lattice statistics, molecular distribution and correlation functions, the theories of liquids and solutions, phase transitions, cluster theory, and measurement. Full Description " + "description": "Statistical thermodynamics, lattice statistics, molecular distribution and correlation functions, the theories of liquids and solutions, phase transitions, cluster theory, and measurement." }, "CHEM6482": { "subject": "CHEM", "number": "6482", "name": "Kinetics&Reaction Dynam ", - "description": "Modern theoretical and experimental methods for studying macroscopic and microscopic bimolecular and unimolecular processes are discussed, as are methods for describing complex kinetic systems. Full Description " + "description": "Modern theoretical and experimental methods for studying macroscopic and microscopic bimolecular and unimolecular processes are discussed, as are methods for describing complex kinetic systems." }, "CHEM6483": { "subject": "CHEM", "number": "6483", "name": "Chem-Electronic Material ", - "description": "This course provides a broad description of the basic chemical and physical concepts that determine the properties of electrically active materials. Full Description " + "description": "This course provides a broad description of the basic chemical and physical concepts that determine the properties of electrically active materials." }, "CHEM6484": { "subject": "CHEM", "number": "6484", "name": "Chem-Optical Org Mat ", - "description": "Course description includes synthesis, electronic structure, physico-chemical characterization, and device applications of optically active organic materials. Full Description " + "description": "Course description includes synthesis, electronic structure, physico-chemical characterization, and device applications of optically active organic materials." }, "CHEM6485": { "subject": "CHEM", "number": "6485", "name": "Computational Chemistry ", - "description": "Introductory course in computational chemistry, discussing electronic structure theory, semiemphirical methods, molecular mechanics, transistion-state searching, and computation of thermodynamic quantities. Full Description " + "description": "Introductory course in computational chemistry, discussing electronic structure theory, semiemphirical methods, molecular mechanics, transistion-state searching, and computation of thermodynamic quantities." }, "CHEM6491": { "subject": "CHEM", "number": "6491", "name": "Quantum Mechanics ", - "description": "Important concepts and applications of quantum mechanics at the intermediate level, including operators, perturbation and variational methods applied to atoms and molecules. Full Description " + "description": "Important concepts and applications of quantum mechanics at the intermediate level, including operators, perturbation and variational methods applied to atoms and molecules." }, "CHEM6492": { "subject": "CHEM", "number": "6492", "name": "Molecular Spectroscopy ", - "description": "Study of energy of electronic transitions in molecules, selection rules, excitation processes, and laser spectroscopy. Full Description " + "description": "Study of energy of electronic transitions in molecules, selection rules, excitation processes, and laser spectroscopy." }, "CHEM6501": { "subject": "CHEM", "number": "6501", "name": "Biochemistry I ", - "description": "The chemistry and biochemistry of proteins, lipids, carbohydrates, nucleic acids, and other biomolecules. Full Description " + "description": "The chemistry and biochemistry of proteins, lipids, carbohydrates, nucleic acids, and other biomolecules." }, "CHEM6502": { "subject": "CHEM", "number": "6502", "name": "Biochemistry II ", - "description": "The chemistry and biochemistry of proteins, lipids, carbohydrates, nucleic acids, and other biomolecules. Full Description " + "description": "The chemistry and biochemistry of proteins, lipids, carbohydrates, nucleic acids, and other biomolecules." }, "CHEM6571": { "subject": "CHEM", "number": "6571", "name": "Enzymology and Metabolism ", - "description": "Structure and chemistry of enzymes, enzyme mechanism, enzyme kinetics, enzyme inhibitors, and medicinal chemistry. Full Description " + "description": "Structure and chemistry of enzymes, enzyme mechanism, enzyme kinetics, enzyme inhibitors, and medicinal chemistry." }, "CHEM6572": { "subject": "CHEM", "number": "6572", "name": "Macromolecular Structure ", - "description": "Principles of protein, nucleic acid, and membrane structure. Major emphasis on protein folding, detailed description of three-dimensional structure of proteins and nucleic acids. Full Description " + "description": "Principles of protein, nucleic acid, and membrane structure. Major emphasis on protein folding, detailed description of three-dimensional structure of proteins and nucleic acids." }, "CHEM6573": { "subject": "CHEM", "number": "6573", "name": "Molecular Biochemistry ", - "description": "Current topics in molecular biology including eukaryotic transcriptions, RNA processing, repair and recombination, immunity, viruses, DNA fingerprinting, and genome sequencing. Full Description " + "description": "Current topics in molecular biology including eukaryotic transcriptions, RNA processing, repair and recombination, immunity, viruses, DNA fingerprinting, and genome sequencing." }, "CHEM6581": { "subject": "CHEM", "number": "6581", "name": "Protein Crystallography ", - "description": "Application of crystallographic principles to the structure determination of macromolecules by molecular replacement, multiple isomorphous replacements. High-speed data collection methods and cryocrystallography. Full Description " + "description": "Application of crystallographic principles to the structure determination of macromolecules by molecular replacement, multiple isomorphous replacements. High-speed data collection methods and cryocrystallography." }, "CHEM6582": { "subject": "CHEM", "number": "6582", "name": "Biophysical Chemistry ", - "description": "Applications of the principles and techniques of physical chemistry in biochemistry, with emphasis in the equilibrium and dynamic behavior of macromolecules in solution. Full Description " + "description": "Applications of the principles and techniques of physical chemistry in biochemistry, with emphasis in the equilibrium and dynamic behavior of macromolecules in solution." }, "CHEM6583": { "subject": "CHEM", "number": "6583", "name": "Drug Design & Discovery ", - "description": "Application of principles of chemistry and biology to the creation of knowledge leading to the introduction of new therapeutic agents. Full Description " + "description": "Application of principles of chemistry and biology to the creation of knowledge leading to the introduction of new therapeutic agents." }, "CHEM6584": { "subject": "CHEM", "number": "6584", "name": "Contemporary Biochem ", - "description": "Topics vary from year to year, but will include subjects from the biochemical literature, such as in Journal of Biological Chemistry. Full Description " + "description": "Topics vary from year to year, but will include subjects from the biochemical literature, such as in Journal of Biological Chemistry." }, "CHEM6750": { "subject": "CHEM", "number": "6750", "name": "Prep&Reactions-Polymers ", - "description": "A detailed treatment of the reactions involved in the synthesis of both human-made and natural polymers, including preparation and degradative reactions of polymer systems. Crosslisted with CHE and PTFE 6750. Full Description " + "description": "A detailed treatment of the reactions involved in the synthesis of both human-made and natural polymers, including preparation and degradative reactions of polymer systems. Crosslisted with CHE and PTFE 6750." }, "CHEM6751": { "subject": "CHEM", "number": "6751", "name": "Phys Chem-Poly Solutions ", - "description": "Study of polymer solutions, polymer miscibility, absorptions, sorptions, plasticization, molecular weights, molecular weight distributions, and interfacial phenomena using thermodynamics and statistical mechanics. Crosslisted with CHE, MSE, and PTFE 6751. Full Description " + "description": "Study of polymer solutions, polymer miscibility, absorptions, sorptions, plasticization, molecular weights, molecular weight distributions, and interfacial phenomena using thermodynamics and statistical mechanics. Crosslisted with CHE, MSE, and PTFE 6751." }, "CHEM6752": { "subject": "CHEM", "number": "6752", "name": "Polymer Characterization ", - "description": "This course introduces the student to surface, near-surface, and structural methods of polymer characterization. Specialized techniques critical to physical structure are emphasized. Crosslisted with CHE, MSE, and PTFE 6752. Full Description " + "description": "This course introduces the student to surface, near-surface, and structural methods of polymer characterization. Specialized techniques critical to physical structure are emphasized. Crosslisted with CHE, MSE, and PTFE 6752." }, "CHEM6755": { "subject": "CHEM", "number": "6755", "name": "Theoretical Chem-Polymer ", - "description": "Thermodynamics and microscopic dynamics of polymers. Fundamental concepts, including scaling concepts, governing anisotropy of polarizability, phase transitions, morphology, time-dependent correlations, etc. are discussed. Crosslisted with MSE and PTFE 6755. Full Description " + "description": "Thermodynamics and microscopic dynamics of polymers. Fundamental concepts, including scaling concepts, governing anisotropy of polarizability, phase transitions, morphology, time-dependent correlations, etc. are discussed. Crosslisted with MSE and PTFE 6755." }, "CHEM6756": { "subject": "CHEM", "number": "6756", "name": "Signaling Molecules ", - "description": "The diversity of chemical signals between organisms and their structural specificities will be presented along with chemical and biological methods for isolating signaling molecules. Crosslisted with BIOL 6756 and CEE 6756. Full Description " + "description": "The diversity of chemical signals between organisms and their structural specificities will be presented along with chemical and biological methods for isolating signaling molecules. Crosslisted with BIOL 6756 and CEE 6756." }, "CHEM6760": { "subject": "CHEM", "number": "6760", "name": "Biocatalysis ", - "description": "This course provides in-depth coverage of various topics in biocatalysis and metabolic engineering. Goals of this course are the development of an understanding of proteins as catalysts, their functioning in metabolic networks, their application in various industries, and recognition of their potential for addressing future challenges in science and engineering. Crosslisted with CHBE 6760. Full Description " + "description": "This course provides in-depth coverage of various topics in biocatalysis and metabolic engineering. Goals of this course are the development of an understanding of proteins as catalysts, their functioning in metabolic networks, their application in various industries, and recognition of their potential for addressing future challenges in science and engineering. Crosslisted with CHBE 6760." }, "CHEM6765": { "subject": "CHEM", "number": "6765", "name": "Drug Development ", - "description": "Introduction to the pharmaceutical development process, including design of new drugs, synthesis and manufacturing issues, and methods of delivery into the body. Includes student presentations. Crosslisted with BMED 6765 and CHBE 6765. Full Description " + "description": "Introduction to the pharmaceutical development process, including design of new drugs, synthesis and manufacturing issues, and methods of delivery into the body. Includes student presentations. Crosslisted with BMED 6765 and CHBE 6765." }, "CHEM6XXX": { "subject": "CHEM", "number": "6XXX", "name": "Chemistry Elective ", - "description": " Full Description " + "description": "" }, "CHEM7000": { "subject": "CHEM", "number": "7000", "name": "Master's Thesis ", - "description": " Full Description " + "description": "" }, "CHEM7001": { "subject": "CHEM", "number": "7001", "name": "Intro to Research ", - "description": "Introduction to laboratory techniques, experimental design, library and database searching, presentations. Full Description " + "description": "Introduction to laboratory techniques, experimental design, library and database searching, presentations." }, "CHEM8000": { "subject": "CHEM", "number": "8000", "name": "Seminar - Chemistry ", - "description": " Full Description " + "description": "" }, "CHEM8001": { "subject": "CHEM", "number": "8001", "name": "Faculty Seminar ", - "description": " Full Description " + "description": "" }, "CHEM8002": { "subject": "CHEM", "number": "8002", "name": "Info Resour-Chem&Biochem ", - "description": " Full Description " + "description": "" }, "CHEM8003": { "subject": "CHEM", "number": "8003", "name": "Student Seminar ", - "description": " Full Description " + "description": "" }, "CHEM8813": { "subject": "CHEM", "number": "8813", "name": "Spec Top-Inorganic Chem ", - "description": "Topics from the inorganic chemistry research literature. Full Description " + "description": "Topics from the inorganic chemistry research literature." }, "CHEM8823": { "subject": "CHEM", "number": "8823", "name": "Spec Top-Analytical Chem ", - "description": "Topics from the analytical chemistry research literature. Full Description " + "description": "Topics from the analytical chemistry research literature." }, "CHEM8833": { "subject": "CHEM", "number": "8833", "name": "Spec Top-Organic Chem ", - "description": "Topics from the organic chemistry research literature. Full Description " + "description": "Topics from the organic chemistry research literature." }, "CHEM8843": { "subject": "CHEM", "number": "8843", "name": "Spec Top-Physical Chem ", - "description": "Topics from the physical chemistry research literature. Full Description " + "description": "Topics from the physical chemistry research literature." }, "CHEM8853": { "subject": "CHEM", "number": "8853", "name": "Spec Topics-Biochemistry ", - "description": "Topics from the biochemistry research literature. Full Description " + "description": "Topics from the biochemistry research literature." }, "CHEM8873": { "subject": "CHEM", "number": "8873", "name": "Spec Top-Polymer Chem ", - "description": "Topics from the polymer chemistry research literature. Full Description " + "description": "Topics from the polymer chemistry research literature." }, "CHEM88X2": { "subject": "CHEM", "number": "88X2", "name": "Xfer-Spec Top-Org Chem ", - "description": " Full Description " + "description": "" }, "CHEM8901": { "subject": "CHEM", "number": "8901", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "CHEM8902": { "subject": "CHEM", "number": "8902", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "CHEM8903": { "subject": "CHEM", "number": "8903", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "CHEM8997": { "subject": "CHEM", "number": "8997", "name": "Teaching Assistantship ", - "description": "For graduate students holding graduate teaching assistantships. Full Description " + "description": "For graduate students holding graduate teaching assistantships." }, "CHEM8998": { "subject": "CHEM", "number": "8998", "name": "Research Assistantship ", - "description": "For graduate students holding graduate research assistantships. Full Description " + "description": "For graduate students holding graduate research assistantships." }, "CHEM9000": { "subject": "CHEM", "number": "9000", "name": "Doctoral Thesis ", - "description": " Full Description " + "description": "" }, "CHIN1001": { "subject": "CHIN", "number": "1001", "name": "Elementary Chinese I ", - "description": "Performance-based training in pronunciation, tones, and sentence structure, developing a baseline for listening, speaking, reading, and writing Chinese, as well as fostering a sensitivity to Chinese culture. Humanities credit awarded for CHIN 1001 upon successful completion of CHIN 1002 or CHIN 2001. Full Description " + "description": "Performance-based training in pronunciation, tones, and sentence structure, developing a baseline for listening, speaking, reading, and writing Chinese, as well as fostering a sensitivity to Chinese culture. Humanities credit awarded for CHIN 1001 upon successful completion of CHIN 1002 or CHIN 2001." }, "CHIN1002": { "subject": "CHIN", "number": "1002", "name": "Elementary Chinese II ", - "description": "Continued performance-based training in phonetics, grammar, sentence structure, and characters; focusing in the similarities and differences between English and Chinese. Full Description " + "description": "Continued performance-based training in phonetics, grammar, sentence structure, and characters; focusing in the similarities and differences between English and Chinese." }, "CHIN1011": { "subject": "CHIN", "number": "1011", "name": "Accelerated Elem Chin I ", - "description": "This is the first of two courses in the basic Chinese sequence geared for heritage learners at the elementary level. The pace is approximately 30% faster than the non-accelerated course. Full Description " + "description": "This is the first of two courses in the basic Chinese sequence geared for heritage learners at the elementary level. The pace is approximately 30% faster than the non-accelerated course." }, "CHIN1012": { "subject": "CHIN", "number": "1012", "name": "Accelerated Elem Chin II ", - "description": "This is the second of two courses in the basic Chinese sequence geared for heritage learners at the elementary level. The pace is approximately 30% faster than the non-accelerated course. Full Description " + "description": "This is the second of two courses in the basic Chinese sequence geared for heritage learners at the elementary level. The pace is approximately 30% faster than the non-accelerated course." }, "CHIN10X1": { "subject": "CHIN", "number": "10X1", "name": "Trans Elementary Chinese I ", - "description": " Full Description " + "description": "" }, "CHIN10X2": { "subject": "CHIN", "number": "10X2", "name": "Trans Elementary Chinese II ", - "description": " Full Description " + "description": "" }, "CHIN1813": { "subject": "CHIN", "number": "1813", "name": "Special Topics ", - "description": "Topics of current interest in Chinese. Full Description " + "description": "Topics of current interest in Chinese." }, "CHIN1814": { "subject": "CHIN", "number": "1814", "name": "Special Topics ", - "description": "Topics of current interest in Chinese. Full Description " + "description": "Topics of current interest in Chinese." }, "CHIN1XXX": { "subject": "CHIN", "number": "1XXX", "name": "Chinese Elective ", - "description": " Full Description " + "description": "" }, "CHIN2001": { "subject": "CHIN", "number": "2001", "name": "Intermediate Chinese I ", - "description": "Reinforcing basic language skills and knowledge to enhance students' communication ability including oral dialogue and written correspondence in current Chinese society. Full Description " + "description": "Reinforcing basic language skills and knowledge to enhance students' communication ability including oral dialogue and written correspondence in current Chinese society." }, "CHIN2002": { "subject": "CHIN", "number": "2002", "name": "Intermediate Chinese II ", - "description": "Continued reinforcement of basic language skills and knowledge to enhance students' communication ability including oral dialogue and written correspondence in current Chinese society. Full Description " + "description": "Continued reinforcement of basic language skills and knowledge to enhance students' communication ability including oral dialogue and written correspondence in current Chinese society." }, "CHIN2011": { "subject": "CHIN", "number": "2011", "name": "Accelerated Inter Chin I ", - "description": "This is the first of two courses at the intermediate level in the Chinese sequence geared for heritage learners. The pace is approximately 30% faster than the non-accelerated course. Full Description " + "description": "This is the first of two courses at the intermediate level in the Chinese sequence geared for heritage learners. The pace is approximately 30% faster than the non-accelerated course." }, "CHIN2012": { "subject": "CHIN", "number": "2012", "name": "Accelerated Intm Chin II ", - "description": "This is the second of two courses at the intermediate level in the Chinese sequence geared for heritage learners. The pace is approximately 30% faster than the non-accelerated course. Full Description " + "description": "This is the second of two courses at the intermediate level in the Chinese sequence geared for heritage learners. The pace is approximately 30% faster than the non-accelerated course." }, "CHIN2698": { "subject": "CHIN", "number": "2698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "CHIN2699": { "subject": "CHIN", "number": "2699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "CHIN2813": { "subject": "CHIN", "number": "2813", "name": "Special Topics ", - "description": "Topcis of current interest in Chinese. Full Description " + "description": "Topcis of current interest in Chinese." }, "CHIN2XXX": { "subject": "CHIN", "number": "2XXX", "name": "Chinese Elective ", - "description": " Full Description " + "description": "" }, "CHIN3003": { "subject": "CHIN", "number": "3003", "name": "Intermediate Chinese III ", - "description": "Continued reinforcement of basic speaking, reading, and writing skills, and cultural knowledge to enhance students' communication ability in topics relating to contemporary life and Chinese society. Full Description " + "description": "Continued reinforcement of basic speaking, reading, and writing skills, and cultural knowledge to enhance students' communication ability in topics relating to contemporary life and Chinese society." }, "CHIN3004": { "subject": "CHIN", "number": "3004", "name": "Advanced Chinese I ", - "description": "Continued reinforcement of intermediate speaking, reading, and writing skills, and cultural knowledge to enhance students' communication ability in topics relating to contemporary life and Chinese society. Full Description " + "description": "Continued reinforcement of intermediate speaking, reading, and writing skills, and cultural knowledge to enhance students' communication ability in topics relating to contemporary life and Chinese society." }, "CHIN3021": { "subject": "CHIN", "number": "3021", "name": "Chin Society & Culture I ", - "description": "Comprehension of and discussion about issues in contemporary Chinese culture. Full Description " + "description": "Comprehension of and discussion about issues in contemporary Chinese culture." }, "CHIN3022": { "subject": "CHIN", "number": "3022", "name": "Chin Society& Culture II ", - "description": "Comprehension of and discussion about China news, economic reports, political events, feature stories, and sports on television and in newspapers. Full Description " + "description": "Comprehension of and discussion about China news, economic reports, political events, feature stories, and sports on television and in newspapers." }, "CHIN3691": { "subject": "CHIN", "number": "3691", "name": "Chinese Current Events ", - "description": "Reading, discussion and analysis of intermediate/advanced current events texts and authentic media. Part of the intensive summer Chinese language program (LBAT). Admission by application only. Full Description " + "description": "Reading, discussion and analysis of intermediate/advanced current events texts and authentic media. Part of the intensive summer Chinese language program (LBAT). Admission by application only." }, "CHIN3692": { "subject": "CHIN", "number": "3692", "name": "Business Chinese ", - "description": "Acquisition of business technology, protocols, decorum strategies and improvement of oral communication skills. Reading and writing of notes, correspondence, and reports. Part of the summer language program (LBAT). Admission by application only. Full Description " + "description": "Acquisition of business technology, protocols, decorum strategies and improvement of oral communication skills. Reading and writing of notes, correspondence, and reports. Part of the summer language program (LBAT). Admission by application only." }, "CHIN3693": { "subject": "CHIN", "number": "3693", "name": "Conversation Practicum ", - "description": "Language practicum in the local community with written and oral classroom presentations. Part of the intensive summer Chinese language program (LBAT). Admission by application only. Full Description " + "description": "Language practicum in the local community with written and oral classroom presentations. Part of the intensive summer Chinese language program (LBAT). Admission by application only." }, "CHIN3696": { "subject": "CHIN", "number": "3696", "name": "Eco Dev & Sustainability ", - "description": "Examines the world's most populous nation's assault on its environment and resources in the pursuit of rapid economic growth. Taught in Chinese. Full Description " + "description": "Examines the world's most populous nation's assault on its environment and resources in the pursuit of rapid economic growth. Taught in Chinese." }, "CHIN3813": { "subject": "CHIN", "number": "3813", "name": "Special Topics ", - "description": "Permits a group of students and a professor to pursue areas of the Chinese language not extensively treated in other courses in the department. Full Description " + "description": "Permits a group of students and a professor to pursue areas of the Chinese language not extensively treated in other courses in the department." }, "CHIN3823": { "subject": "CHIN", "number": "3823", "name": "Special Topics ", - "description": "Topics of current interest in Chinese. Full Description " + "description": "Topics of current interest in Chinese." }, "CHIN3833": { "subject": "CHIN", "number": "3833", "name": "Special Topics ", - "description": "Topics of current interest in Chinese. Full Description " + "description": "Topics of current interest in Chinese." }, "CHIN3XXX": { "subject": "CHIN", "number": "3XXX", "name": "Chinese Elective ", - "description": " Full Description " + "description": "" }, "CHIN4003": { "subject": "CHIN", "number": "4003", "name": "Advanced Chinese II ", - "description": "Development of advanced communication abilities. Materials deal with the economic, cultural, social, and political changes in contemporary China. Taught in Chinese. Full Description " + "description": "Development of advanced communication abilities. Materials deal with the economic, cultural, social, and political changes in contemporary China. Taught in Chinese." }, "CHIN4004": { "subject": "CHIN", "number": "4004", "name": "Advanced Chinese III ", - "description": "Further development of advanced communication abilities. Materials deal with the economic, cultural, social, and political changes in contemporary China. Taught in Chinese. Full Description " + "description": "Further development of advanced communication abilities. Materials deal with the economic, cultural, social, and political changes in contemporary China. Taught in Chinese." }, "CHIN4006": { "subject": "CHIN", "number": "4006", "name": "Intercultural Communictn ", - "description": "This course enables students to acquire skills that facilitate understanding and create foundation for greater awareness of the parameters that define Sino-American intercultural discourse. Full Description " + "description": "This course enables students to acquire skills that facilitate understanding and create foundation for greater awareness of the parameters that define Sino-American intercultural discourse." }, "CHIN4021": { "subject": "CHIN", "number": "4021", "name": "Adv Lang Music & Culture ", - "description": "Utilizing popular songs/videos as cultural texts, this advanced language and culture course develops the students' listening, reading, writing, presentation, and web-based research in Chinese. Full Description " + "description": "Utilizing popular songs/videos as cultural texts, this advanced language and culture course develops the students' listening, reading, writing, presentation, and web-based research in Chinese." }, "CHIN4022": { "subject": "CHIN", "number": "4022", "name": "Kungfu Fiction/Pop Cult ", - "description": "Utilizing authentic kungfu fiction texts, this advanced language and culture course develops students' listening, reading, writing, presentation, and web-based research, all in Chinese. Full Description " + "description": "Utilizing authentic kungfu fiction texts, this advanced language and culture course develops students' listening, reading, writing, presentation, and web-based research, all in Chinese." }, "CHIN4023": { "subject": "CHIN", "number": "4023", "name": "Strategy & Art of War ", - "description": "Using classical texts and their modern Chinese translations, this advanced language course analyzes Chinese strategic language and thought, with Western cultural comparison. Taught in Chinese. Full Description " + "description": "Using classical texts and their modern Chinese translations, this advanced language course analyzes Chinese strategic language and thought, with Western cultural comparison. Taught in Chinese." }, "CHIN4031": { "subject": "CHIN", "number": "4031", "name": "Chin-Language Cinema ", - "description": "Utilizing selected Chinese films as texts, this advanced Chinese course focuses to discuss the topics dealing with the technological, cultural, and urban transformation in China. Full Description " + "description": "Utilizing selected Chinese films as texts, this advanced Chinese course focuses to discuss the topics dealing with the technological, cultural, and urban transformation in China." }, "CHIN4500": { "subject": "CHIN", "number": "4500", "name": "Intercultural Seminar ", - "description": "Iintegrates cross-cultural research and reflection into discussion of current issues in the chinese-speaking world. Intended for students who have had some study-abroad experience in China. Conducted in Chinese. Full Description " + "description": "Iintegrates cross-cultural research and reflection into discussion of current issues in the chinese-speaking world. Intended for students who have had some study-abroad experience in China. Conducted in Chinese." }, "CHIN4695": { "subject": "CHIN", "number": "4695", "name": "Chinese Internship ", - "description": "Professional experience with a business/organization in which students enhance their language skills and cultural knowledge in Chinese in relation to the practical goals/objectives of the entity. Full Description " + "description": "Professional experience with a business/organization in which students enhance their language skills and cultural knowledge in Chinese in relation to the practical goals/objectives of the entity." }, "CHIN4698": { "subject": "CHIN", "number": "4698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "CHIN4699": { "subject": "CHIN", "number": "4699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "CHIN4813": { "subject": "CHIN", "number": "4813", "name": "Special Topics ", - "description": "Topics of interest not covered in the regular course offerings. Full Description " + "description": "Topics of interest not covered in the regular course offerings." }, "CHIN4823": { "subject": "CHIN", "number": "4823", "name": "Special Toics ", - "description": "Topics of current interest in Chinese. Full Description " + "description": "Topics of current interest in Chinese." }, "CHIN4833": { "subject": "CHIN", "number": "4833", "name": "Special Topics ", - "description": "Topics of current interest in Chinese. Full Description " + "description": "Topics of current interest in Chinese." }, "CHIN4901": { "subject": "CHIN", "number": "4901", "name": "Special Problems ", - "description": "Provides special instruction according to special needs. Full Description " + "description": "Provides special instruction according to special needs." }, "CHIN4902": { "subject": "CHIN", "number": "4902", "name": "Special Problems ", - "description": "Provides special instruction according to special needs. Full Description " + "description": "Provides special instruction according to special needs." }, "CHIN4XXX": { "subject": "CHIN", "number": "4XXX", "name": "Chinese Elective ", - "description": " Full Description " + "description": "" }, "COA1011": { "subject": "COA", "number": "1011", "name": "Fund Design&Built Env I ", - "description": "Introduction to creative problem-solving and the design realization cycle through project-based design exercises that emphasize the role of representation. Full Description " + "description": "Introduction to creative problem-solving and the design realization cycle through project-based design exercises that emphasize the role of representation." }, "COA1012": { "subject": "COA", "number": "1012", "name": "Fund Design&Built Env II ", - "description": "Introduction to the design of complex problems through an emphasis on integrative and collaborative design strategies, research, critical reflection, and interdisciplinary team work. Full Description " + "description": "Introduction to the design of complex problems through an emphasis on integrative and collaborative design strategies, research, critical reflection, and interdisciplinary team work." }, "COA1060": { "subject": "COA", "number": "1060", "name": "Intro-Design&Built Env ", - "description": "Introduction to architecture, building construction, and industrial design through case studies that illuminate past and present practices, as well as future possibilities within the disciplines. Full Description " + "description": "Introduction to architecture, building construction, and industrial design through case studies that illuminate past and present practices, as well as future possibilities within the disciplines." }, "COA2241": { "subject": "COA", "number": "2241", "name": "History of Art I ", - "description": "A survey of artistic manifestations from primitive times to the present. First semester sequence, prehistoric through Renaissance; second semester, Renaissance through contemporary art. Full Description " + "description": "A survey of artistic manifestations from primitive times to the present. First semester sequence, prehistoric through Renaissance; second semester, Renaissance through contemporary art." }, "COA2242": { "subject": "COA", "number": "2242", "name": "History of Art II ", - "description": "A survey of artistic manifestations from primitive times to the present. First semester sequence, prehistoric through Renaissance; second semester Renaissance through contemporary art. Full Description " + "description": "A survey of artistic manifestations from primitive times to the present. First semester sequence, prehistoric through Renaissance; second semester Renaissance through contemporary art." }, "COA2698": { "subject": "COA", "number": "2698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "COA2699": { "subject": "COA", "number": "2699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "COA3114": { "subject": "COA", "number": "3114", "name": "Architecture in Greece ", - "description": "An intensive on-site investigation of the role that the arts and architecture have played in the development of classical Greek civilization. Full Description " + "description": "An intensive on-site investigation of the role that the arts and architecture have played in the development of classical Greek civilization." }, "COA3115": { "subject": "COA", "number": "3115", "name": "Art & Arch in Italy I ", - "description": "Investigations of the painting, sculpture, and architecture of the Classical, Early Christian, Byzantine, and Medieval periods in Italy with special emphasis on Rome. Full Description " + "description": "Investigations of the painting, sculpture, and architecture of the Classical, Early Christian, Byzantine, and Medieval periods in Italy with special emphasis on Rome." }, "COA3116": { "subject": "COA", "number": "3116", "name": "Art & Arch in Italy II ", - "description": "Investigations of the painting, sculpture, and architecture of the Renaissance and Baroque periods in Italy with special emphasis on the works of Rome. Full Description " + "description": "Investigations of the painting, sculpture, and architecture of the Renaissance and Baroque periods in Italy with special emphasis on the works of Rome." }, "COA4000": { "subject": "COA", "number": "4000", "name": "Furniture Workshop ", - "description": "The course investigates construction into the design cycle to explore the boundaries between furniture, architecture, and sculpture. Exercises introduce furniture production techniques, material properties, and CNC milling. Full Description " + "description": "The course investigates construction into the design cycle to explore the boundaries between furniture, architecture, and sculpture. Exercises introduce furniture production techniques, material properties, and CNC milling." }, "COA4010": { "subject": "COA", "number": "4010", "name": "Construction Ind History ", - "description": "Addresses how today's construction industry is organized and its particular characteristics, how it evolved from early times and where it may be heading in the future. Full Description " + "description": "Addresses how today's construction industry is organized and its particular characteristics, how it evolved from early times and where it may be heading in the future." }, "COA4698": { "subject": "COA", "number": "4698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "COA4699": { "subject": "COA", "number": "4699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "COA4801": { "subject": "COA", "number": "4801", "name": "Special Topics ", - "description": "Topics in design and the built environment. Full Description " + "description": "Topics in design and the built environment." }, "COA4802": { "subject": "COA", "number": "4802", "name": "Special Topics ", - "description": "Topics in design and the built environment. Full Description " + "description": "Topics in design and the built environment." }, "COA4803": { "subject": "COA", "number": "4803", "name": "Special Topics ", - "description": "Topics in design and the built environment. Full Description " + "description": "Topics in design and the built environment." }, "COA4804": { "subject": "COA", "number": "4804", "name": "Special Topics ", - "description": "Topics in design and the built environment. Full Description " + "description": "Topics in design and the built environment." }, "COA4805": { "subject": "COA", "number": "4805", "name": "Special Topics ", - "description": "Topics in design and the built environment. Full Description " + "description": "Topics in design and the built environment." }, "COA6010": { "subject": "COA", "number": "6010", "name": "Construction Ind History ", - "description": "Addresses how today's construction industry is organized and its particular characteristics, how it evolved from early times and where it may be heading in the future. Full Description " + "description": "Addresses how today's construction industry is organized and its particular characteristics, how it evolved from early times and where it may be heading in the future." }, "COA6011": { "subject": "COA", "number": "6011", "name": "Urban Design Laboratory ", - "description": "Urban design laboratory problems focusing on analysis, design, and implementation strategies for contemporary urban problems. Full Description " + "description": "Urban design laboratory problems focusing on analysis, design, and implementation strategies for contemporary urban problems." }, "COA6114": { "subject": "COA", "number": "6114", "name": "Architecture in Greece ", - "description": "An intensive on-site investigation of the role that the arts and architecture have played in the development of classical Greek civilization. Full Description " + "description": "An intensive on-site investigation of the role that the arts and architecture have played in the development of classical Greek civilization." }, "COA6115": { "subject": "COA", "number": "6115", "name": "Art & Arch in Italy I ", - "description": "Investigations of the painting, sculpture, and architecture of the Classical, Early Christian, Byzantine, and Medieval periods in Italy with special emphasis on Rome. Full Description " + "description": "Investigations of the painting, sculpture, and architecture of the Classical, Early Christian, Byzantine, and Medieval periods in Italy with special emphasis on Rome." }, "COA6116": { "subject": "COA", "number": "6116", "name": "Art and Arch in Italy II ", - "description": "Investigations of the painting, sculpture, and architecture of the Renaissance and Baroque periods in Italy with special emphasis on the works of Rome. Full Description " + "description": "Investigations of the painting, sculpture, and architecture of the Renaissance and Baroque periods in Italy with special emphasis on the works of Rome." }, "COA6120": { "subject": "COA", "number": "6120", "name": "Retrofitting Suburbia ", - "description": "Study of suburban redevelopment trends, projects, and policies that improve environmental, social, and economic sustainability, with an emphasis on urban design strategies. Full Description " + "description": "Study of suburban redevelopment trends, projects, and policies that improve environmental, social, and economic sustainability, with an emphasis on urban design strategies." }, "COA6151": { "subject": "COA", "number": "6151", "name": "History of Urban Form ", - "description": "History of the city as a collective work of architecture with an emphasis on the city's physical form and space. Credit not allowed for both COA 6151 and ARCH 4151. Full Description " + "description": "History of the city as a collective work of architecture with an emphasis on the city's physical form and space. Credit not allowed for both COA 6151 and ARCH 4151." }, "COA6763": { "subject": "COA", "number": "6763", "name": "Design of Environments ", - "description": "Analysis of design processes; analysis of current design tools at both the user interface and functional levels; procedures for developing better design tools. Credit not allowed for both COA 6763 and ID 6763 or CS 6763. Full Description " + "description": "Analysis of design processes; analysis of current design tools at both the user interface and functional levels; procedures for developing better design tools. Credit not allowed for both COA 6763 and ID 6763 or CS 6763." }, "COA6764": { "subject": "COA", "number": "6764", "name": "Geometric Modeling ", - "description": "Software development course focusing on 3D geometric constructions and modeling; emphasizes solid modeling and its role in design. Crosslisted with CS 6764. Full Description " + "description": "Software development course focusing on 3D geometric constructions and modeling; emphasizes solid modeling and its role in design. Crosslisted with CS 6764." }, "COA7011": { "subject": "COA", "number": "7011", "name": "Urban Design Studio I ", - "description": "Advanced urban design problems emphasizing the application of contemporary urban design research and multidisciplinary collaboration into the design process. Full Description " + "description": "Advanced urban design problems emphasizing the application of contemporary urban design research and multidisciplinary collaboration into the design process." }, "COA7012": { "subject": "COA", "number": "7012", "name": "Urban Design Studio II ", - "description": "Advanced urban design problems emphasizing the application of contemporary urban design research and multidisciplinary collaboration into the design process. Full Description " + "description": "Advanced urban design problems emphasizing the application of contemporary urban design research and multidisciplinary collaboration into the design process." }, "COA8000": { "subject": "COA", "number": "8000", "name": "Doctoral Seminar ", - "description": " Full Description " + "description": "" }, "COA8530": { "subject": "COA", "number": "8530", "name": "PhD Planning Seminar ", - "description": "Discussion of research and pedagogy topics and methodologies for city and regional planning. Full Description " + "description": "Discussion of research and pedagogy topics and methodologies for city and regional planning." }, "COA8600": { "subject": "COA", "number": "8600", "name": "Genesis of Architecture ", - "description": "The nature of architecture illustrated from those of all cultures; determinist theories; its social values and its meanings to the individual- material, physical, anthropological, and cognitive. Full Description " + "description": "The nature of architecture illustrated from those of all cultures; determinist theories; its social values and its meanings to the individual- material, physical, anthropological, and cognitive." }, "COA8610": { "subject": "COA", "number": "8610", "name": "Thought Hellenic-1830's ", - "description": "A survey of architectural thought and theory taking account of other fields; paralleled by a review of major critical texts and assessments to the present day. Full Description " + "description": "A survey of architectural thought and theory taking account of other fields; paralleled by a review of major critical texts and assessments to the present day." }, "COA8612": { "subject": "COA", "number": "8612", "name": "Thought 1830's-20th Cent ", - "description": "A survey of architectural thoughts and theory taking account other fields; paralleled by a review of major critical texts and assessments to the present day. Full Description " + "description": "A survey of architectural thoughts and theory taking account other fields; paralleled by a review of major critical texts and assessments to the present day." }, "COA8620": { "subject": "COA", "number": "8620", "name": "Design-American Space ", - "description": "Topical seminar on the development of urban, suburban, and rural American spatial forms, with emphasis on the relationship between public order and vernacular settlement. Full Description " + "description": "Topical seminar on the development of urban, suburban, and rural American spatial forms, with emphasis on the relationship between public order and vernacular settlement." }, "COA8625": { "subject": "COA", "number": "8625", "name": "Theories of Inquiry ", - "description": "Introduction to research paradigms and their assumptions. The formulation of questions and frameworks of description, representation, analysis, interpretation, and data control. Full Description " + "description": "Introduction to research paradigms and their assumptions. The formulation of questions and frameworks of description, representation, analysis, interpretation, and data control." }, "COA8630": { "subject": "COA", "number": "8630", "name": "Arch, Space & Culture ", - "description": "Accounts of the social functions of architectural space and associated design choices, across a variety of building types and scales of environmental design. Credit will not be awarded for both COA 8630 and ARCH 4630. Full Description " + "description": "Accounts of the social functions of architectural space and associated design choices, across a variety of building types and scales of environmental design. Credit will not be awarded for both COA 8630 and ARCH 4630." }, "COA8635": { "subject": "COA", "number": "8635", "name": "Architecture and Policy ", - "description": "Methods and theories of planning, design, facilities management, and evaluation as they relate to organizational policy and development. Full Description " + "description": "Methods and theories of planning, design, facilities management, and evaluation as they relate to organizational policy and development." }, "COA8640": { "subject": "COA", "number": "8640", "name": "Psy for Architecture ", - "description": "An examination of social and psychological theory as it is applied to the creation and use of space. Full Description " + "description": "An examination of social and psychological theory as it is applied to the creation and use of space." }, "COA8645": { "subject": "COA", "number": "8645", "name": "Analytical Models ", - "description": "Introduction to analytical ideas and methodologies for the quantitative description of built space, form, building use, and functions. Layouts as configurations: boundaries, accessibility, visibility, extensions. Full Description " + "description": "Introduction to analytical ideas and methodologies for the quantitative description of built space, form, building use, and functions. Layouts as configurations: boundaries, accessibility, visibility, extensions." }, "COA8650": { "subject": "COA", "number": "8650", "name": "Descriptions of Design ", - "description": "Introduction to the form and computational description of designs, with an emphasis on spatial patterns. Geometrical constructions, combinatorial approaches, analyses of shape. Full Description " + "description": "Introduction to the form and computational description of designs, with an emphasis on spatial patterns. Geometrical constructions, combinatorial approaches, analyses of shape." }, "COA8672": { "subject": "COA", "number": "8672", "name": "Design Computation ", - "description": "Seminar review of developments in computing applied to architecture; current major research issues. Full Description " + "description": "Seminar review of developments in computing applied to architecture; current major research issues." }, "COA8674": { "subject": "COA", "number": "8674", "name": "Multimedia Design ", - "description": "Theories and tools for structuring multimedia knowledge for design and designers. Full Description " + "description": "Theories and tools for structuring multimedia knowledge for design and designers." }, "COA8676": { "subject": "COA", "number": "8676", "name": "Design & Engr Databases ", - "description": "Survey of database use in design and engineering; surveys relational, object-oriented database technology, and ISO-STEP methods of integration. Full Description " + "description": "Survey of database use in design and engineering; surveys relational, object-oriented database technology, and ISO-STEP methods of integration." }, "COA8680": { "subject": "COA", "number": "8680", "name": "Performance Aspects ", - "description": "Engineering analysis of building (sub) systems based on a performance ontology. Criteria, metrics, and tools for performance aspect evaluations in different building technology domains. Full Description " + "description": "Engineering analysis of building (sub) systems based on a performance ontology. Criteria, metrics, and tools for performance aspect evaluations in different building technology domains." }, "COA8685": { "subject": "COA", "number": "8685", "name": "Building Simulation ", - "description": "Numerical simulation of performance characteristics of whole buildings. Review of the finite element method for uniform treatment of transport phenomena in different building technology domains. Full Description " + "description": "Numerical simulation of performance characteristics of whole buildings. Review of the finite element method for uniform treatment of transport phenomena in different building technology domains." }, "COA8690": { "subject": "COA", "number": "8690", "name": "Building Models ", - "description": "Surveys of issues for effective integration of heterogeneous design tools for building; previous efforts, current approaches; advanced techniques, including ISO-STEP and IAI. Full Description " + "description": "Surveys of issues for effective integration of heterogeneous design tools for building; previous efforts, current approaches; advanced techniques, including ISO-STEP and IAI." }, "COA8811": { "subject": "COA", "number": "8811", "name": "Spec Topic-Arch/Planning ", - "description": " Full Description " + "description": "" }, "COA8812": { "subject": "COA", "number": "8812", "name": "Spec Topic-Arch/Planning ", - "description": " Full Description " + "description": "" }, "COA8813": { "subject": "COA", "number": "8813", "name": "Spec Topic-Arch/Planning ", - "description": " Full Description " + "description": "" }, "COA8821": { "subject": "COA", "number": "8821", "name": "Spec Top-Arch & Behavior ", - "description": " Full Description " + "description": "" }, "COA8822": { "subject": "COA", "number": "8822", "name": "Spec Top-Arch & Behavior ", - "description": " Full Description " + "description": "" }, "COA8823": { "subject": "COA", "number": "8823", "name": "Spec Top-Arch & Behavior ", - "description": " Full Description " + "description": "" }, "COA8831": { "subject": "COA", "number": "8831", "name": "Spec Topic-Design & Tech ", - "description": " Full Description " + "description": "" }, "COA8832": { "subject": "COA", "number": "8832", "name": "Spec Topic-Design & Tech ", - "description": " Full Description " + "description": "" }, "COA8833": { "subject": "COA", "number": "8833", "name": "Spec Topic-Design & Tech ", - "description": " Full Description " + "description": "" }, "COA8841": { "subject": "COA", "number": "8841", "name": "Spec Top-Dsgn Computing ", - "description": " Full Description " + "description": "" }, "COA8842": { "subject": "COA", "number": "8842", "name": "Spec Top-Dsgn Computing ", - "description": " Full Description " + "description": "" }, "COA8843": { "subject": "COA", "number": "8843", "name": "Spec Top-Dsgn Computing ", - "description": " Full Description " + "description": "" }, "COA8851": { "subject": "COA", "number": "8851", "name": "Spec Topic-Hist & Theory ", - "description": " Full Description " + "description": "" }, "COA8852": { "subject": "COA", "number": "8852", "name": "Spec Topic-Hist & Theory ", - "description": " Full Description " + "description": "" }, "COA8853": { "subject": "COA", "number": "8853", "name": "Spec Topic-Hist & Theory ", - "description": " Full Description " + "description": "" }, "COA8861": { "subject": "COA", "number": "8861", "name": "Spec Topic-Hist & Theory ", - "description": " Full Description " + "description": "" }, "COA8862": { "subject": "COA", "number": "8862", "name": "Spec Topic-Hist & Theory ", - "description": " Full Description " + "description": "" }, "COA8863": { "subject": "COA", "number": "8863", "name": "Spec Topic-Hist & Theory ", - "description": " Full Description " + "description": "" }, "COA8871": { "subject": "COA", "number": "8871", "name": "Spec Topics - Urb Design ", - "description": " Full Description " + "description": "" }, "COA8872": { "subject": "COA", "number": "8872", "name": "Spec Topics - Urb Design ", - "description": " Full Description " + "description": "" }, "COA8873": { "subject": "COA", "number": "8873", "name": "Spec Topics - Urb Design ", - "description": " Full Description " + "description": "" }, "COA8874": { "subject": "COA", "number": "8874", "name": "Spec Topics - Urb Design ", - "description": " Full Description " + "description": "" }, "COA8875": { "subject": "COA", "number": "8875", "name": "Spec Topics - Urb Design ", - "description": " Full Description " + "description": "" }, "COA8876": { "subject": "COA", "number": "8876", "name": "Spec Topics - Urb Design ", - "description": " Full Description " + "description": "" }, "COA8901": { "subject": "COA", "number": "8901", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "COA8902": { "subject": "COA", "number": "8902", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "COA8903": { "subject": "COA", "number": "8903", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "COA8904": { "subject": "COA", "number": "8904", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "COA8996": { "subject": "COA", "number": "8996", "name": "Qualifying Paper ", - "description": " Full Description " + "description": "" }, "COA8997": { "subject": "COA", "number": "8997", "name": "Teaching Assistantship ", - "description": "For students holding a graduate teaching assistantship. Full Description " + "description": "For students holding a graduate teaching assistantship." }, "COA8998": { "subject": "COA", "number": "8998", "name": "Research Assistantship ", - "description": "For students holding a graduate research assistantship. Full Description " + "description": "For students holding a graduate research assistantship." }, "COA8999": { "subject": "COA", "number": "8999", "name": "Prep-Doctor Dissertation ", - "description": " Full Description " + "description": "" }, "COA9000": { "subject": "COA", "number": "9000", "name": "Doctoral Thesis ", - "description": " Full Description " + "description": "" }, "COE1000": { "subject": "COE", "number": "1000", "name": "Freshman Engr Seminar ", - "description": "An introduction to the engineering profession featuring presentations about the undergraduate degree programs at Georgia Tech with a focus on career options. Full Description " + "description": "An introduction to the engineering profession featuring presentations about the undergraduate degree programs at Georgia Tech with a focus on career options." }, "COE2001": { "subject": "COE", "number": "2001", "name": "Statics ", - "description": "Elements of statics in two and three dimensions, free-body diagrams, distributed loads, centroids, and friction. Full Description " + "description": "Elements of statics in two and three dimensions, free-body diagrams, distributed loads, centroids, and friction." }, "COE3001": { "subject": "COE", "number": "3001", "name": "Deformable Bodies ", - "description": "Stress and strain analysis applied to beams, vessels, pipes, and combined loading; stress and strain transformations; beam deflection; column buckling. Full Description " + "description": "Stress and strain analysis applied to beams, vessels, pipes, and combined loading; stress and strain transformations; beam deflection; column buckling." }, "COE3002": { "subject": "COE", "number": "3002", "name": "Micro/Nano Revolution ", - "description": "Introduction to microelectronics and nanotechnology: the communications revolution, Moore's law, semiconductors, transistors, MEMS, photonics, analylsis of common technological objects, global impact on technology and society. Full Description " + "description": "Introduction to microelectronics and nanotechnology: the communications revolution, Moore's law, semiconductors, transistors, MEMS, photonics, analylsis of common technological objects, global impact on technology and society." }, "COE4803": { "subject": "COE", "number": "4803", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "COOP2000": { "subject": "COOP", "number": "2000", "name": "Co-op Work Assignment ", - "description": " Full Description " + "description": "" }, "COOP2001": { "subject": "COOP", "number": "2001", "name": "Spring Co-op Assignment ", - "description": " Full Description " + "description": "" }, "COOP2005": { "subject": "COOP", "number": "2005", "name": "Summer Co-op Assignment ", - "description": " Full Description " + "description": "" }, "COOP2008": { "subject": "COOP", "number": "2008", "name": "Fall Co-op Assignment ", - "description": " Full Description " + "description": "" }, "COOP3011": { "subject": "COOP", "number": "3011", "name": "Int'l Co-op ", - "description": "Undergraduate Co-op students working outside the United States. Full Description " + "description": "Undergraduate Co-op students working outside the United States." }, "COOP3015": { "subject": "COOP", "number": "3015", "name": "Mod Language Int'l Co-op ", - "description": " Full Description " + "description": "" }, "COOP3018": { "subject": "COOP", "number": "3018", "name": "Mod Language Int'l Co-op ", - "description": " Full Description " + "description": "" }, "COOP3020": { "subject": "COOP", "number": "3020", "name": "Co-op Work Assignment ", - "description": "For undergraduate Co-op students majoring in Building Construction Full Description " + "description": "For undergraduate Co-op students majoring in Building Construction" }, "COOP3021": { "subject": "COOP", "number": "3021", "name": "Spring Term BC Co-op ", - "description": "Spring Term work term for Building Construction majors. Full Description " + "description": "Spring Term work term for Building Construction majors." }, "COOP3028": { "subject": "COOP", "number": "3028", "name": "Fall Term BC Co-op ", - "description": "Fall Term work term for Building Construction majors. Full Description " + "description": "Fall Term work term for Building Construction majors." }, "COOP4000": { "subject": "COOP", "number": "4000", "name": "Co-op Work Assignment ", - "description": "Co-op Work Assignment For students on Co-op work assignment. Full Description " + "description": "Co-op Work Assignment For students on Co-op work assignment." }, "COOP4001": { "subject": "COOP", "number": "4001", "name": "Spring Co-op Assignment ", - "description": " Full Description " + "description": "" }, "COOP4005": { "subject": "COOP", "number": "4005", "name": "Summer Co-op Assignment ", - "description": " Full Description " + "description": "" }, "COOP4008": { "subject": "COOP", "number": "4008", "name": "Fall Co-op Assignment ", - "description": " Full Description " + "description": "" }, "COOP6003": { "subject": "COOP", "number": "6003", "name": "Co-op Work Assignment ", - "description": "For students on Co-op work assignment. Full Description " + "description": "For students on Co-op work assignment." }, "COOP6006": { "subject": "COOP", "number": "6006", "name": "Co-op Work Assignment ", - "description": "For students on Co-op work assignment. Full Description " + "description": "For students on Co-op work assignment." }, "COOP6009": { "subject": "COOP", "number": "6009", "name": "Co-op Work Assignment ", - "description": "For students on Co-op work assignment. Full Description " + "description": "For students on Co-op work assignment." }, "COOP6012": { "subject": "COOP", "number": "6012", "name": "Co-op Work Assignment ", - "description": "For students on Co-op work assignment. Full Description " + "description": "For students on Co-op work assignment." }, "COS2000": { "subject": "COS", "number": "2000", "name": "Intro to Research ", - "description": "Students will learn ethical guidelines for conducting research, develop skills in reading and writing research articles, and explore careers in research. Full Description " + "description": "Students will learn ethical guidelines for conducting research, develop skills in reading and writing research articles, and explore careers in research." }, "CP4010": { "subject": "CP", "number": "4010", "name": "Found-Urban&Region Devel ", - "description": "The course describes the economic function of cities and the significant factors that shape their growth and development. Full Description " + "description": "The course describes the economic function of cities and the significant factors that shape their growth and development." }, "CP4020": { "subject": "CP", "number": "4020", "name": "Intro-Urban&Region Plan ", - "description": "This course provides an overview of the planning of cities and metropolitan regions. The legal and historical context as well as substantive areas of urban planning are addressed. Full Description " + "description": "This course provides an overview of the planning of cities and metropolitan regions. The legal and historical context as well as substantive areas of urban planning are addressed." }, "CP4030": { "subject": "CP", "number": "4030", "name": "City and Technology ", - "description": "This course places urban infrastructure technology within the larger context of planning and development. The social and economic aspects of these systems are highlighted. Full Description " + "description": "This course places urban infrastructure technology within the larger context of planning and development. The social and economic aspects of these systems are highlighted." }, "CP4040": { "subject": "CP", "number": "4040", "name": "City in Fiction & Film ", - "description": "Examines images and perceptions of the urban environment as portrayed in literature and cinema. Explores the social, economic, and cultural contexts that impact on conception of the city. Full Description " + "description": "Examines images and perceptions of the urban environment as portrayed in literature and cinema. Explores the social, economic, and cultural contexts that impact on conception of the city." }, "CP4050": { "subject": "CP", "number": "4050", "name": "Conflict Management ", - "description": "Theoretical and practical instruction on techniques of negotiation and consensus building using case studies and training exercises. Full Description " + "description": "Theoretical and practical instruction on techniques of negotiation and consensus building using case studies and training exercises." }, "CP4105": { "subject": "CP", "number": "4105", "name": "Land Conservation ", - "description": "This course considers the distinctive American view of land and history of the conservation movement, then discusses the why and how of modern land conservation. Full Description " + "description": "This course considers the distinctive American view of land and history of the conservation movement, then discusses the why and how of modern land conservation." }, "CP4190": { "subject": "CP", "number": "4190", "name": "Intro Climate Chng Plan ", - "description": "This course equips students with the knowledge and methods necessary to undertake the next generation of state, local, corporate, and enterprise climate action planning. Full Description " + "description": "This course equips students with the knowledge and methods necessary to undertake the next generation of state, local, corporate, and enterprise climate action planning." }, "CP4210": { "subject": "CP", "number": "4210", "name": "Envir Plan&Impact Assess ", - "description": "Covers the principles of environmental planning and decision making. Examines the methods and processes, and environmental impact assessment and regulation. Full Description " + "description": "Covers the principles of environmental planning and decision making. Examines the methods and processes, and environmental impact assessment and regulation." }, "CP4310": { "subject": "CP", "number": "4310", "name": "Urban Transportation ", - "description": "This course is designed to introduce the fundamentals of urban transportation planning and policy and is applicable to students in a variety of concentrations of study. The purpose of the course will be to acquaint students with transportation planning as a profession and the types of projects that transportation planners are required to conduct. Full Description " + "description": "This course is designed to introduce the fundamentals of urban transportation planning and policy and is applicable to students in a variety of concentrations of study. The purpose of the course will be to acquaint students with transportation planning as a profession and the types of projects that transportation planners are required to conduct." }, "CP4510": { "subject": "CP", "number": "4510", "name": "Geographic Info Sys ", - "description": "The course provides a basic understanding of the tools for collecting, storing, and analyzing spatially distributed data. Basic issues of software design and application are covered. Full Description " + "description": "The course provides a basic understanding of the tools for collecting, storing, and analyzing spatially distributed data. Basic issues of software design and application are covered." }, "CP4610": { "subject": "CP", "number": "4610", "name": "Intro-Real Estate Invest ", - "description": "Introduction to real estate analysis and utilization. Subjects include attributes of real property, value determinations, appraisal, investment analysis, market analysis, asset management, and public aspects. Full Description " + "description": "Introduction to real estate analysis and utilization. Subjects include attributes of real property, value determinations, appraisal, investment analysis, market analysis, asset management, and public aspects." }, "CP4620": { "subject": "CP", "number": "4620", "name": "Housing&Real Estate Econ ", - "description": "Examination of private and public sector approaches to housing. Economic theory of durable goods, demand elasticities, applied market research analyses, and history of public intervention. Full Description " + "description": "Examination of private and public sector approaches to housing. Economic theory of durable goods, demand elasticities, applied market research analyses, and history of public intervention." }, "CP4811": { "subject": "CP", "number": "4811", "name": "Special Topics ", - "description": "Topics of current interest not covered in other courses in the department. Full Description " + "description": "Topics of current interest not covered in other courses in the department." }, "CP4812": { "subject": "CP", "number": "4812", "name": "Special Topics ", - "description": "Topics of current interest not covered in other courses in the department. Full Description " + "description": "Topics of current interest not covered in other courses in the department." }, "CP4813": { "subject": "CP", "number": "4813", "name": "Special Topics ", - "description": "Topics of current interest not covered in other courses in the department. Full Description " + "description": "Topics of current interest not covered in other courses in the department." }, "CP4814": { "subject": "CP", "number": "4814", "name": "Special Topics ", - "description": "Topics of current interest not covered in other courses in the department. Full Description " + "description": "Topics of current interest not covered in other courses in the department." }, "CP4815": { "subject": "CP", "number": "4815", "name": "Special Topics ", - "description": "Topics of current interest not covered in other courses in the department. Full Description " + "description": "Topics of current interest not covered in other courses in the department." }, "CP6002": { "subject": "CP", "number": "6002", "name": "Intro to Planning ", - "description": "Introduction to the various subfields of planning through reading, discussion, and guest lectures by practicing planners. Course also covers professional ethics and career planning and development. Full Description " + "description": "Introduction to the various subfields of planning through reading, discussion, and guest lectures by practicing planners. Course also covers professional ethics and career planning and development." }, "CP6005": { "subject": "CP", "number": "6005", "name": "Drawing for Planners ", - "description": "This courses teaches planning students through drawing to record, analyze, conceptualize, and represent commonly recurring physical and diagrammatic relationships that occur in the physical environment. Full Description " + "description": "This courses teaches planning students through drawing to record, analyze, conceptualize, and represent commonly recurring physical and diagrammatic relationships that occur in the physical environment." }, "CP6012": { "subject": "CP", "number": "6012", "name": "Planning Theory ", - "description": "Examines theories of planning and the public interest. Considers the roles of planners within the American political system and the historical development of the planning profession. Full Description " + "description": "Examines theories of planning and the public interest. Considers the roles of planners within the American political system and the historical development of the planning profession." }, "CP6016": { "subject": "CP", "number": "6016", "name": "Growth Management Law ", - "description": "Study of legal framework of planning focusing on managing development to achieve desired outcomes for the economy, society, and the environment. Full Description " + "description": "Study of legal framework of planning focusing on managing development to achieve desired outcomes for the economy, society, and the environment." }, "CP6024": { "subject": "CP", "number": "6024", "name": "Quant & Computer Methods ", - "description": "Introduction to computing and quantitative methods in planning. Discusses commonly used data sources, data management, presentation techniques, and planning analytical models. Full Description " + "description": "Introduction to computing and quantitative methods in planning. Discusses commonly used data sources, data management, presentation techniques, and planning analytical models." }, "CP6025": { "subject": "CP", "number": "6025", "name": "Adv Planning Methods ", - "description": "Analytical methods in planning including inferential statistics, linear regression, and analysis of variance and how they are applied to planning problems. Full Description " + "description": "Analytical methods in planning including inferential statistics, linear regression, and analysis of variance and how they are applied to planning problems." }, "CP6031": { "subject": "CP", "number": "6031", "name": "Econ Analysis-Planning ", - "description": "Applications of economic principles to planning, including market theory, public goods, externalities, cost benefit analysis, and project economics. Full Description " + "description": "Applications of economic principles to planning, including market theory, public goods, externalities, cost benefit analysis, and project economics." }, "CP6032": { "subject": "CP", "number": "6032", "name": "Urban Regional Develop ", - "description": "Study of theories in the structure and function of cities and regions. Emphasis on the economic forces shaping urban development. Full Description " + "description": "Study of theories in the structure and function of cities and regions. Emphasis on the economic forces shaping urban development." }, "CP6034": { "subject": "CP", "number": "6034", "name": "Demographic&Econ Analy ", - "description": "This course considers the social and economic structure of urban areas from a demographic perspective. Population structure, population change, and migration are explored. Full Description " + "description": "This course considers the social and economic structure of urban areas from a demographic perspective. Population structure, population change, and migration are explored." }, "CP6052": { "subject": "CP", "number": "6052", "name": "Planning Studio ", - "description": "Analysis and preparation of alternatives for an existing neighborhood, community, or region. Emphasis on application of planning skills in a real-world situation. Full Description " + "description": "Analysis and preparation of alternatives for an existing neighborhood, community, or region. Emphasis on application of planning skills in a real-world situation." }, "CP6105": { "subject": "CP", "number": "6105", "name": "Land Conservation ", - "description": "This course considers the distinctive American view of land and history of the conservation movement, then discusses the why and how of modern land conservation. Full Description " + "description": "This course considers the distinctive American view of land and history of the conservation movement, then discusses the why and how of modern land conservation." }, "CP6112": { "subject": "CP", "number": "6112", "name": "Intro to Land Use ", - "description": "This course introduces students to land use planning. The basic rationale for land use planning and its form in different states is covered. Full Description " + "description": "This course introduces students to land use planning. The basic rationale for land use planning and its form in different states is covered." }, "CP6122": { "subject": "CP", "number": "6122", "name": "Land Use Planning Method ", - "description": "This course explores the techniques of land use planning and applies them to specific land use types. Full Description " + "description": "This course explores the techniques of land use planning and applies them to specific land use types." }, "CP6190": { "subject": "CP", "number": "6190", "name": "Intro Climate Chng Plan ", - "description": "This course equips students with the knowledge and methods necessary to develop the next generation fo state, local, corporate, and enterprise climate action planning. Full Description " + "description": "This course equips students with the knowledge and methods necessary to develop the next generation fo state, local, corporate, and enterprise climate action planning." }, "CP6213": { "subject": "CP", "number": "6213", "name": "Urb Env Plan & Design ", - "description": "This course introduces students to the basic theoretical and analytical underpinnings of urban environmental planning and design. Full Description " + "description": "This course introduces students to the basic theoretical and analytical underpinnings of urban environmental planning and design." }, "CP6214": { "subject": "CP", "number": "6214", "name": "Environmental Planning ", - "description": "Examines the principles, processes, and methods of environmental planning. Focus on environmental science and its use in impact assessment and project evaluation. Full Description " + "description": "Examines the principles, processes, and methods of environmental planning. Focus on environmental science and its use in impact assessment and project evaluation." }, "CP6223": { "subject": "CP", "number": "6223", "name": "Policy Tools-Environ Mgt ", - "description": "The course covers the regulatory, market, and procedural tools used to manage the environment. It examines the strengths and weaknesses of alternative techniques. Full Description " + "description": "The course covers the regulatory, market, and procedural tools used to manage the environment. It examines the strengths and weaknesses of alternative techniques." }, "CP6233": { "subject": "CP", "number": "6233", "name": "Sustainable Urban Dev ", - "description": "Explores the principles and practice of sustainable urban development and the role of planning. Full Description " + "description": "Explores the principles and practice of sustainable urban development and the role of planning." }, "CP6241": { "subject": "CP", "number": "6241", "name": "Water Resource Plan ", - "description": "Fundamentals of water resources planning and watershed management. Emphasis on urban water resources problems, policies, and practices. Full Description " + "description": "Fundamentals of water resources planning and watershed management. Emphasis on urban water resources problems, policies, and practices." }, "CP6250": { "subject": "CP", "number": "6250", "name": "Hazardous Waste Plan&Mgt ", - "description": "Examines the planning tools and management techniques for the proper use, storage, transport, and disposal of hazardous material and waste products. Full Description " + "description": "Examines the planning tools and management techniques for the proper use, storage, transport, and disposal of hazardous material and waste products." }, "CP6261": { "subject": "CP", "number": "6261", "name": "Environmental Law ", - "description": "This course introduces students to the framework of legislation that shapes environmental planning and policy, including NEPA, Clean Air Act, and Clean Water Act. Full Description " + "description": "This course introduces students to the framework of legislation that shapes environmental planning and policy, including NEPA, Clean Air Act, and Clean Water Act." }, "CP6311": { "subject": "CP", "number": "6311", "name": "Intro to Transport Plan ", - "description": "Overview course in transportation planning including basic principles to understanding transportation, current transportation problems, transportation policy, and decision-making processes and methods. Full Description " + "description": "Overview course in transportation planning including basic principles to understanding transportation, current transportation problems, transportation policy, and decision-making processes and methods." }, "CP6321": { "subject": "CP", "number": "6321", "name": "Transport Plan&Invest ", - "description": "Review of transportation methods and how they interface with investment decisions. How transportation planners at the local, regional, state, and federal levels employ methods. Full Description " + "description": "Review of transportation methods and how they interface with investment decisions. How transportation planners at the local, regional, state, and federal levels employ methods." }, "CP6331": { "subject": "CP", "number": "6331", "name": "Land Use& Transportation ", - "description": "Overview of land use and transportation planning principles, how development impacts transportation, how transportation investments impact development patterns and air quality. Full Description " + "description": "Overview of land use and transportation planning principles, how development impacts transportation, how transportation investments impact development patterns and air quality." }, "CP6341": { "subject": "CP", "number": "6341", "name": "Non-Motorized Access ", - "description": "Examines role and opportunity to make walking and biking viable travel options in urban environments and how urban environments need to be designed to encourage non-motorized travel. Full Description " + "description": "Examines role and opportunity to make walking and biking viable travel options in urban environments and how urban environments need to be designed to encourage non-motorized travel." }, "CP6351": { "subject": "CP", "number": "6351", "name": "Transportation&Econ Dev ", - "description": "Impact of transportation infrastructure investments on economic outcomes at a range of geographic scales including neighborhood, municipality, regional, and statewide. Full Description " + "description": "Impact of transportation infrastructure investments on economic outcomes at a range of geographic scales including neighborhood, municipality, regional, and statewide." }, "CP6361": { "subject": "CP", "number": "6361", "name": "Region Trans Plan&Admin ", - "description": "This course will address the administrative, political, methodological, and social issues underlying the regional transportation planning process. Full Description " + "description": "This course will address the administrative, political, methodological, and social issues underlying the regional transportation planning process." }, "CP6412": { "subject": "CP", "number": "6412", "name": "Econ Development Plan ", - "description": "Policy Introduction to local economic development planning, examining theory, process and practice, international and regional factors, public and private roles. Full Description " + "description": "Policy Introduction to local economic development planning, examining theory, process and practice, international and regional factors, public and private roles." }, "CP6422": { "subject": "CP", "number": "6422", "name": "Econ Develop Analysis ", - "description": "This course focuses on strategy development, methods of analysis, and approaches to practice for urban and regional economic development policy and planning. Full Description " + "description": "This course focuses on strategy development, methods of analysis, and approaches to practice for urban and regional economic development policy and planning." }, "CP6432": { "subject": "CP", "number": "6432", "name": "Industrial Restructuring ", - "description": "Examines industrial restructuring trends and theoretical frameworks; develops industry case studies; and considers economic development planning's role in industrial restructuring. Full Description " + "description": "Examines industrial restructuring trends and theoretical frameworks; develops industry case studies; and considers economic development planning's role in industrial restructuring." }, "CP6442": { "subject": "CP", "number": "6442", "name": "Equity,Justice& Econ Dev ", - "description": "Explores concepts and theories of equity and social justice, analysis of indicators of (in)justice/equity, and economic development planning's role in promoting equity and social justice. Full Description " + "description": "Explores concepts and theories of equity and social justice, analysis of indicators of (in)justice/equity, and economic development planning's role in promoting equity and social justice." }, "CP6452": { "subject": "CP", "number": "6452", "name": "Urban Development Polcy ", - "description": "Introduces elements of urban policy and economic development by examining them historically, nationally, and locally. Approaches to urban development and redevelopment are analyzed. Full Description " + "description": "Introduces elements of urban policy and economic development by examining them historically, nationally, and locally. Approaches to urban development and redevelopment are analyzed." }, "CP6514": { "subject": "CP", "number": "6514", "name": "Intro to GIS ", - "description": "This course introduces students to spatial analysis using geographic information systems. Fundamentals of software design and geographic data are covered. Full Description " + "description": "This course introduces students to spatial analysis using geographic information systems. Fundamentals of software design and geographic data are covered." }, "CP6521": { "subject": "CP", "number": "6521", "name": "Advanced GIS ", - "description": "The course provides students with advanced spatial analysis techniques including network analysis, three-dimensional surface modeling, and GIS application development. Full Description " + "description": "The course provides students with advanced spatial analysis techniques including network analysis, three-dimensional surface modeling, and GIS application development." }, "CP6531": { "subject": "CP", "number": "6531", "name": "Intro to Remote Sensing ", - "description": "This course introduces students to the collection and use of satellite imagery and other remote sensing data. Full Description " + "description": "This course introduces students to the collection and use of satellite imagery and other remote sensing data." }, "CP6541": { "subject": "CP", "number": "6541", "name": "Environmental GIS ", - "description": "This course focuses on the application of geographic information systems (GIS) to environmental problems. It highlights the types and sources of data appropriate to those applications. Full Description " + "description": "This course focuses on the application of geographic information systems (GIS) to environmental problems. It highlights the types and sources of data appropriate to those applications." }, "CP6542": { "subject": "CP", "number": "6542", "name": "Transport & GIS ", - "description": "Transportation data models, data processing, modeling, and service delivery in geographical information systems. Full Description " + "description": "Transportation data models, data processing, modeling, and service delivery in geographical information systems." }, "CP6551": { "subject": "CP", "number": "6551", "name": "Spatial Analy-Socioecon ", - "description": "This course provides students with an in-depth study of the spatial distribution of human activity, including population, housing, and employment. Credit not allowed for both CP 6551 and CP 6570. Full Description " + "description": "This course provides students with an in-depth study of the spatial distribution of human activity, including population, housing, and employment. Credit not allowed for both CP 6551 and CP 6570." }, "CP6561": { "subject": "CP", "number": "6561", "name": "Geodemographics ", - "description": "Explores important secondary data sources used by planners and analysts working with smaller geographic areas. Experience with hardware and software used to analyze data. Full Description " + "description": "Explores important secondary data sources used by planners and analysts working with smaller geographic areas. Experience with hardware and software used to analyze data." }, "CP6570": { "subject": "CP", "number": "6570", "name": "Socioeconomic GIS ", - "description": "This advanced GIS course addresses the collection, management, analysis, and interpretation of spatial social, economic, housing, and demographic information. Credit not allowed for both CP 6570 and CP 6551. Full Description " + "description": "This advanced GIS course addresses the collection, management, analysis, and interpretation of spatial social, economic, housing, and demographic information. Credit not allowed for both CP 6570 and CP 6551." }, "CP6611": { "subject": "CP", "number": "6611", "name": "Real Estate Fin & Dev ", - "description": "Introduction to principles of real estate finance, focusing on the role the public sector plays in making desirable development projects financially feasible. Full Description " + "description": "Introduction to principles of real estate finance, focusing on the role the public sector plays in making desirable development projects financially feasible." }, "CP6612": { "subject": "CP", "number": "6612", "name": "Community Development ", - "description": "This course will examine neighborhood-based efforts, public policy, trends and practices that have shaped community development in American inner city communities since 1950. Full Description " + "description": "This course will examine neighborhood-based efforts, public policy, trends and practices that have shaped community development in American inner city communities since 1950." }, "CP6621": { "subject": "CP", "number": "6621", "name": "Real Estate Mkt Research ", - "description": "Introduction to real estate market research with particular focus on analyses of housing and office markets. Full Description " + "description": "Introduction to real estate market research with particular focus on analyses of housing and office markets." }, "CP6630": { "subject": "CP", "number": "6630", "name": "Govt & Housing Markets ", - "description": "Examination of the operation of local housing markets and national, state, regional, and local housing policies. Full Description " + "description": "Examination of the operation of local housing markets and national, state, regional, and local housing policies." }, "CP6640": { "subject": "CP", "number": "6640", "name": "Real Estate Dev Meth ", - "description": "Application of the development process, market and financial feasibility analyses, and public policy to large development projects. Extensive use of case studies involving professional developers. Full Description " + "description": "Application of the development process, market and financial feasibility analyses, and public policy to large development projects. Extensive use of case studies involving professional developers." }, "CP6680": { "subject": "CP", "number": "6680", "name": "Citizen Participation ", - "description": "This course discusses planners' reasons fro engaging communitites in the planning process, evaluates various engagement methods, and produces a guide to direct future practice. Full Description " + "description": "This course discusses planners' reasons fro engaging communitites in the planning process, evaluates various engagement methods, and produces a guide to direct future practice." }, "CP6760": { "subject": "CP", "number": "6760", "name": "Negotiation&Conflict Mgt ", - "description": "Practical and theoretical instruction on techniques of negotiation and consensus building using training exercises and case studies. Emphasizes environmental, policy, planning, and development disputes. Crosslisted with PUBP 6760. Full Description " + "description": "Practical and theoretical instruction on techniques of negotiation and consensus building using training exercises and case studies. Emphasizes environmental, policy, planning, and development disputes. Crosslisted with PUBP 6760." }, "CP6811": { "subject": "CP", "number": "6811", "name": "Negotiation&Conflict Mgt ", - "description": "Theoretical and practical instruction on techniques of negotiation and consensus building using case studies and training exercises. Full Description " + "description": "Theoretical and practical instruction on techniques of negotiation and consensus building using case studies and training exercises." }, "CP6815": { "subject": "CP", "number": "6815", "name": "Cinema City ", - "description": "Explores people's response to cities, augmenting the empirical analysis that is urban studies domain with the subjective perspectives of cinematic artists. Full Description " + "description": "Explores people's response to cities, augmenting the empirical analysis that is urban studies domain with the subjective perspectives of cinematic artists." }, "CP6821": { "subject": "CP", "number": "6821", "name": "Policy Analysis & Plan ", - "description": "Synthesizes elements of the program core's analytic techniques and employs them in a case study context. Cases address urban policy, planning, and management. Full Description " + "description": "Synthesizes elements of the program core's analytic techniques and employs them in a case study context. Cases address urban policy, planning, and management." }, "CP6825": { "subject": "CP", "number": "6825", "name": "Public Sector Fin&Budget ", - "description": "Theory and practice of public finance. Emphasis on applications in local government revenue collection, budgeting, and expenditure analysis. Full Description " + "description": "Theory and practice of public finance. Emphasis on applications in local government revenue collection, budgeting, and expenditure analysis." }, "CP6831": { "subject": "CP", "number": "6831", "name": "Urban Infrastructure ", - "description": "This course provides students with a basic understanding of urban infrastructure systems and their role in shaping urban growth and development. Full Description " + "description": "This course provides students with a basic understanding of urban infrastructure systems and their role in shaping urban growth and development." }, "CP6832": { "subject": "CP", "number": "6832", "name": "Intro to Urban Design ", - "description": "An introduction to the study, research, and practice of urban design examining traditional design principles and their application to the contemporary city. Full Description " + "description": "An introduction to the study, research, and practice of urban design examining traditional design principles and their application to the contemporary city." }, "CP6834": { "subject": "CP", "number": "6834", "name": "Urban Design Policy ", - "description": "Urban design policy making and its implementation including an analysis of the behavioral basis for policies that promote quality in built form. Credit not allowed for both CP 6834 and ARCH 6303. Full Description " + "description": "Urban design policy making and its implementation including an analysis of the behavioral basis for policies that promote quality in built form. Credit not allowed for both CP 6834 and ARCH 6303." }, "CP6836": { "subject": "CP", "number": "6836", "name": "Urban Ecological Design ", - "description": "This course engages the contemporary issues of urban ecology and its articulation to design. It explores relationship between urban forms, and flows of ecology, energy, material, water and information. Credit not allowed for both CP 6836 and ARCH 6447. Full Description " + "description": "This course engages the contemporary issues of urban ecology and its articulation to design. It explores relationship between urban forms, and flows of ecology, energy, material, water and information. Credit not allowed for both CP 6836 and ARCH 6447." }, "CP6850": { "subject": "CP", "number": "6850", "name": "Publ Health & Built Env ", - "description": "This interdisciplinary course examines how cities and neighborhoods can have both positive and adverse effects on human health, and produces recommendations to improve these outcomes. Full Description " + "description": "This interdisciplinary course examines how cities and neighborhoods can have both positive and adverse effects on human health, and produces recommendations to improve these outcomes." }, "CP6950": { "subject": "CP", "number": "6950", "name": "GIS Capstone Project ", - "description": " Full Description " + "description": "" }, "CP6XXX": { "subject": "CP", "number": "6XXX", "name": "City Planning Elective ", - "description": " Full Description " + "description": "" }, "CP7000": { "subject": "CP", "number": "7000", "name": "Master's Thesis ", - "description": "Provides students with an opportunity to pursue advanced research under the guidance of a faculty committee. Full Description " + "description": "Provides students with an opportunity to pursue advanced research under the guidance of a faculty committee." }, "CP7999": { "subject": "CP", "number": "7999", "name": "Prep-Doctoral Qual Exam ", - "description": "Preparation for the Ph.D. Qualification Exam. Full Description " + "description": "Preparation for the Ph.D. Qualification Exam." }, "CP8000": { "subject": "CP", "number": "8000", "name": "Doctoral Planning Sem ", - "description": "This course provides students and faculty an opportunity to present and discuss planning research. Full Description " + "description": "This course provides students and faculty an opportunity to present and discuss planning research." }, "CP8012": { "subject": "CP", "number": "8012", "name": "PhD Foundations Seminar ", - "description": "Incoming City and Regional Planning doctoral students reflect upon research, assess opportunities afforded by doctoral education, and develop a plan of study for the program. Full Description " + "description": "Incoming City and Regional Planning doctoral students reflect upon research, assess opportunities afforded by doctoral education, and develop a plan of study for the program." }, "CP8022": { "subject": "CP", "number": "8022", "name": "PhD Sem Rsrch & Pedagogy ", - "description": "Students conceptualize and share ongoing research with their peers, develop professional and pedagogical skills, and explore issues of student and careerdevelopment. Full Description " + "description": "Students conceptualize and share ongoing research with their peers, develop professional and pedagogical skills, and explore issues of student and careerdevelopment." }, "CP8200": { "subject": "CP", "number": "8200", "name": "Adv Planning Theory ", - "description": "Seminar on planning theory, including philosophy of science, political philosophy and ethical theory. The course explores the theoretical basis for planning as a social activity. Credit not allowed for both CP 8200 and COA 8520. Full Description " + "description": "Seminar on planning theory, including philosophy of science, political philosophy and ethical theory. The course explores the theoretical basis for planning as a social activity. Credit not allowed for both CP 8200 and COA 8520." }, "CP8300": { "subject": "CP", "number": "8300", "name": "Adv Urban&Regional Thry ", - "description": "Examines principal urban-regional economic, and spatial theories for explaining economic, social and physical forces influencing locations, growth and decline of cities and regions. Credit not allowed for both CP 8300 and COA 8540. Full Description " + "description": "Examines principal urban-regional economic, and spatial theories for explaining economic, social and physical forces influencing locations, growth and decline of cities and regions. Credit not allowed for both CP 8300 and COA 8540." }, "CP8400": { "subject": "CP", "number": "8400", "name": "Rsrch Design & Qual Mthd ", - "description": "Examines issues associated with the design and methodological implementation of planning and applied social research, with a focus on techniques for qualitative inquiry. Credit not allowed for both CP 8400 and COA 8510. Full Description " + "description": "Examines issues associated with the design and methodological implementation of planning and applied social research, with a focus on techniques for qualitative inquiry. Credit not allowed for both CP 8400 and COA 8510." }, "CP8505": { "subject": "CP", "number": "8505", "name": "Adv Quant Resrch Methods ", - "description": "This course addresses two complementary topics: the design of quantitative research related to planning, design, and policy; and advanced statistical techniques for accomplishing such research. Credit not allowed for both CP 8505 and COA 8510. Full Description " + "description": "This course addresses two complementary topics: the design of quantitative research related to planning, design, and policy; and advanced statistical techniques for accomplishing such research. Credit not allowed for both CP 8505 and COA 8510." }, "CP8813": { "subject": "CP", "number": "8813", "name": "Spec Topic-Land Use Plan ", - "description": "Topics of current interest in land use planning. Full Description " + "description": "Topics of current interest in land use planning." }, "CP8823": { "subject": "CP", "number": "8823", "name": "Spec Topic-Environ Plan ", - "description": "Topics of current interest in environmental planning. Full Description " + "description": "Topics of current interest in environmental planning." }, "CP8833": { "subject": "CP", "number": "8833", "name": "Spec Top-Transport Plan ", - "description": "Topics of current interest in transportation planning Full Description " + "description": "Topics of current interest in transportation planning" }, "CP8843": { "subject": "CP", "number": "8843", "name": "Spec Topic-Economic Dev ", - "description": "Topics of current interest in economic development. Full Description " + "description": "Topics of current interest in economic development." }, "CP8851": { "subject": "CP", "number": "8851", "name": "Special Topics in GIS ", - "description": "Topics of current interest in Geographic Information Systems. Full Description " + "description": "Topics of current interest in Geographic Information Systems." }, "CP8852": { "subject": "CP", "number": "8852", "name": "Special Topics in GIS ", - "description": "Topics of current interest in Geographic Information Systems. Full Description " + "description": "Topics of current interest in Geographic Information Systems." }, "CP8853": { "subject": "CP", "number": "8853", "name": "Spec Topics in GIS ", - "description": "Topics of current interest in geographic information systems. Full Description " + "description": "Topics of current interest in geographic information systems." }, "CP8863": { "subject": "CP", "number": "8863", "name": "Spec Topics-Land Develop ", - "description": "Topics of current interest in land development. Full Description " + "description": "Topics of current interest in land development." }, "CP8873": { "subject": "CP", "number": "8873", "name": "Spec Topics-Urban Dsgn ", - "description": "Topics of current interest in urban design. Full Description " + "description": "Topics of current interest in urban design." }, "CP8876": { "subject": "CP", "number": "8876", "name": "Spec Topics:Urban Dsgn ", - "description": "Special Topics Full Description " + "description": "Special Topics" }, "CP8881": { "subject": "CP", "number": "8881", "name": "Spec Top-Cty&Region Plan ", - "description": "Topics of current interest in city and regional planning. Full Description " + "description": "Topics of current interest in city and regional planning." }, "CP8882": { "subject": "CP", "number": "8882", "name": "Spec Top-Cty&Region Plan ", - "description": "Topics of current interest in city and regional planning. Full Description " + "description": "Topics of current interest in city and regional planning." }, "CP8883": { "subject": "CP", "number": "8883", "name": "Spec Top-Cty&Region Plan ", - "description": "Topics of current interest in city and regional planning. Full Description " + "description": "Topics of current interest in city and regional planning." }, "CP8900": { "subject": "CP", "number": "8900", "name": "Special Problems ", - "description": "Special problems of current interest. Full Description " + "description": "Special problems of current interest." }, "CP8901": { "subject": "CP", "number": "8901", "name": "Special Problems ", - "description": "Special problems of current interest. Full Description " + "description": "Special problems of current interest." }, "CP8902": { "subject": "CP", "number": "8902", "name": "Special Problems ", - "description": "Special problems of current interest. Full Description " + "description": "Special problems of current interest." }, "CP8990": { "subject": "CP", "number": "8990", "name": "Applied Research Paper ", - "description": "The applied research paper requires students to demonstrate their ability to organize and execute professional-level work in consultation with a faculty member. Full Description " + "description": "The applied research paper requires students to demonstrate their ability to organize and execute professional-level work in consultation with a faculty member." }, "CP8997": { "subject": "CP", "number": "8997", "name": "Teaching Assistantship ", - "description": "For graduate students holding graduate teaching assistantships. Full Description " + "description": "For graduate students holding graduate teaching assistantships." }, "CP8998": { "subject": "CP", "number": "8998", "name": "Research Assistantship ", - "description": "For graduate students holding graduate research assistantships. Full Description " + "description": "For graduate students holding graduate research assistantships." }, "CP8999": { "subject": "CP", "number": "8999", "name": "Prep-PhD Dissertation ", - "description": " Full Description " + "description": "" }, "CP9000": { "subject": "CP", "number": "9000", "name": "Doctoral Dissertation ", - "description": " Full Description " + "description": "" }, "CS1100": { "subject": "CS", "number": "1100", "name": "Freshman Leap Seminar ", - "description": "Small group discussions with first year students are led by one or more faculty members and include a variety of foundational, motivational, and topical subjects for computationalist. Full Description " + "description": "Small group discussions with first year students are led by one or more faculty members and include a variety of foundational, motivational, and topical subjects for computationalist." }, "CS1171": { "subject": "CS", "number": "1171", "name": "Computing in MATLAB ", - "description": "For students with a solid introductory computing background needing to demonstrate proficiency in the MATLAB language. Full Description " + "description": "For students with a solid introductory computing background needing to demonstrate proficiency in the MATLAB language." }, "CS1301": { "subject": "CS", "number": "1301", "name": "Intro to Computing ", - "description": "Introduction to computing principles and programming practices with an emphasis on the design, construction and implementation of problem solutions use of software tools. Full Description " + "description": "Introduction to computing principles and programming practices with an emphasis on the design, construction and implementation of problem solutions use of software tools." }, "CS1315": { "subject": "CS", "number": "1315", "name": "Intro Media Computation ", - "description": "Introduction to computation (algorithmic thinking, data structures, data transformation and processing, and programming) in a media and communication context. Full Description " + "description": "Introduction to computation (algorithmic thinking, data structures, data transformation and processing, and programming) in a media and communication context." }, "CS1316": { "subject": "CS", "number": "1316", "name": "Rep Structure & Behavior ", - "description": "Modeling the structure of media (e.g., music, graphical scenes) using dynamic data structures. Designing objects as encapsulations of structure and behavior. Algorithms for simulating objects. May not be taken for credit by students who have credit for CS 1322. Full Description " + "description": "Modeling the structure of media (e.g., music, graphical scenes) using dynamic data structures. Designing objects as encapsulations of structure and behavior. Algorithms for simulating objects. May not be taken for credit by students who have credit for CS 1322." }, "CS1331": { "subject": "CS", "number": "1331", "name": "Intro-Object Orient Prog ", - "description": "Introduction to techniques and methods of object-oriented programming such an encapsulation, inheritance, and polymorphism. Emphasis on software development and individual programming skills. Full Description " + "description": "Introduction to techniques and methods of object-oriented programming such an encapsulation, inheritance, and polymorphism. Emphasis on software development and individual programming skills." }, "CS1332": { "subject": "CS", "number": "1332", "name": "Data Struct & Algorithms ", - "description": "Computer data structures and algorithms in the context of object-oriented programming. Focus on software development towards applications. Full Description " + "description": "Computer data structures and algorithms in the context of object-oriented programming. Focus on software development towards applications." }, "CS1371": { "subject": "CS", "number": "1371", "name": "Computing for Engineers ", - "description": "Foundations of computing with an introduction to design and analysis of algorithms and an introduction to design and construction of programs for engineering problem-solving. Full Description " + "description": "Foundations of computing with an introduction to design and analysis of algorithms and an introduction to design and construction of programs for engineering problem-solving." }, "CS1372": { "subject": "CS", "number": "1372", "name": "Program Design for Engrs ", - "description": "Design, analysis and implementation of programs for engineering problem-solving using ANSI Standard C, with an introduction to C++. Full Description " + "description": "Design, analysis and implementation of programs for engineering problem-solving using ANSI Standard C, with an introduction to C++." }, "CS1801": { "subject": "CS", "number": "1801", "name": "Special Topics ", - "description": "Courses of timely interest to the profession, conducted by resident or visiting faculty. Full Description " + "description": "Courses of timely interest to the profession, conducted by resident or visiting faculty." }, "CS1802": { "subject": "CS", "number": "1802", "name": "Special Topics ", - "description": "Courses of timely interest to the profession, conducted by resident or visiting faculty. Full Description " + "description": "Courses of timely interest to the profession, conducted by resident or visiting faculty." }, "CS1803": { "subject": "CS", "number": "1803", "name": "Special Topics ", - "description": "Courses of timely interest to the profession, conducted by resident or visiting faculty. Full Description " + "description": "Courses of timely interest to the profession, conducted by resident or visiting faculty." }, "CS1804": { "subject": "CS", "number": "1804", "name": "Special Topics ", - "description": "Courses of timely interest to the profession, conducted by resident or visiting faculty. Full Description " + "description": "Courses of timely interest to the profession, conducted by resident or visiting faculty." }, "CS1805": { "subject": "CS", "number": "1805", "name": "Special Topics ", - "description": "Courses of timely interest to the profession, conducted by resident or visiting faculty. Full Description " + "description": "Courses of timely interest to the profession, conducted by resident or visiting faculty." }, "CS1XXX": { "subject": "CS", "number": "1XXX", "name": "Computer Sci Elective ", - "description": " Full Description " + "description": "" }, "CS2050": { "subject": "CS", "number": "2050", "name": "Intro Discrete Math CS ", - "description": "Proof methods, strategy, correctness of algorithms over discrete structures. Induction and recursion. Complexity and order of growth. Number theoretic principles and algorithms. Counting and computability. Credit not allowed for both CS 2050 and CS 2051. Full Description " + "description": "Proof methods, strategy, correctness of algorithms over discrete structures. Induction and recursion. Complexity and order of growth. Number theoretic principles and algorithms. Counting and computability. Credit not allowed for both CS 2050 and CS 2051." }, "CS2051": { "subject": "CS", "number": "2051", "name": "Honors Discrete Math CS ", - "description": "Proof methods, strategy, correctness of algorithms over discrete structures. Induction and recursion. Complexity and order of growth. Number theoretic principles and algorithms. Counting and computability. Credit not allowed for both CS 2051 and CS 2050. Full Description " + "description": "Proof methods, strategy, correctness of algorithms over discrete structures. Induction and recursion. Complexity and order of growth. Number theoretic principles and algorithms. Counting and computability. Credit not allowed for both CS 2051 and CS 2050." }, "CS2110": { "subject": "CS", "number": "2110", "name": "Computer Organiz&Program ", - "description": "An introduction to basic computer hardware, machine language, assembly language, and C programming. Full Description " + "description": "An introduction to basic computer hardware, machine language, assembly language, and C programming." }, "CS2200": { "subject": "CS", "number": "2200", "name": "Systems and Networks ", - "description": "A broad exposure to computer system structure and networking including software abstractions in operating systems for orchestrating the usage of the computing resources. Full Description " + "description": "A broad exposure to computer system structure and networking including software abstractions in operating systems for orchestrating the usage of the computing resources." }, "CS2261": { "subject": "CS", "number": "2261", "name": "Media Device Architectur ", - "description": "Controlling the interface between hardware and software in media devices. Machine-level programming (e.g., in C) to create graphics, generate sound, and support user interaction. Full Description " + "description": "Controlling the interface between hardware and software in media devices. Machine-level programming (e.g., in C) to create graphics, generate sound, and support user interaction." }, "CS2316": { "subject": "CS", "number": "2316", "name": "Data Input/Manipulation ", - "description": "Reading, manipulating, and exporting data for engineering, business, and scientific applications. Covers GUI's, File I/O, basic SQL, and web scraping. Emphasis on software development. Full Description " + "description": "Reading, manipulating, and exporting data for engineering, business, and scientific applications. Covers GUI's, File I/O, basic SQL, and web scraping. Emphasis on software development." }, "CS2335": { "subject": "CS", "number": "2335", "name": "Software Practicum ", - "description": "Methods for solving large programming problems. Techniques for quality assurance, managing programs, working in teams, analyzing problems, and producing effective solutions. Full Description " + "description": "Methods for solving large programming problems. Techniques for quality assurance, managing programs, working in teams, analyzing problems, and producing effective solutions." }, "CS2340": { "subject": "CS", "number": "2340", "name": "Objects and Design ", - "description": "Object-oriented programming methods for dealing with large programs. Focus on quality processes, effective debugging techniques, and testing to assure a quality product. Full Description " + "description": "Object-oriented programming methods for dealing with large programs. Focus on quality processes, effective debugging techniques, and testing to assure a quality product." }, "CS2345": { "subject": "CS", "number": "2345", "name": "Adv Practical O-O Prog ", - "description": "This course presents important programming principles that should be considered when using a non-automatic memory management complex language (such as C++). Templating, generic programming, resource acquisition is initialization (RAII), and smart pointers are a few examples. Credit not awarded for both CS 2345 and ECE 2036. Full Description " + "description": "This course presents important programming principles that should be considered when using a non-automatic memory management complex language (such as C++). Templating, generic programming, resource acquisition is initialization (RAII), and smart pointers are a few examples. Credit not awarded for both CS 2345 and ECE 2036." }, "CS2600": { "subject": "CS", "number": "2600", "name": "Knowledge Rep & Process ", - "description": "Introduction to the representation and manipulation of complex symbolic and sub-symbolic information. Full Description " + "description": "Introduction to the representation and manipulation of complex symbolic and sub-symbolic information." }, "CS2698": { "subject": "CS", "number": "2698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "CS2699": { "subject": "CS", "number": "2699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "CS2801": { "subject": "CS", "number": "2801", "name": "Special Topics ", - "description": "Courses of timely interest to the profession, conducted by resident or visiting faculty. Full Description " + "description": "Courses of timely interest to the profession, conducted by resident or visiting faculty." }, "CS2802": { "subject": "CS", "number": "2802", "name": "Special Topics ", - "description": "Courses of timely interest to the profession, conducted by resident or visiting faculty. Full Description " + "description": "Courses of timely interest to the profession, conducted by resident or visiting faculty." }, "CS2803": { "subject": "CS", "number": "2803", "name": "Special Topics ", - "description": "Courses of timely interest to the profession, conducted by resident or visiting faculty. Full Description " + "description": "Courses of timely interest to the profession, conducted by resident or visiting faculty." }, "CS2804": { "subject": "CS", "number": "2804", "name": "Special Topics ", - "description": "Courses of timely interest to the profession, conducted by resident or visiting faculty. Full Description " + "description": "Courses of timely interest to the profession, conducted by resident or visiting faculty." }, "CS2805": { "subject": "CS", "number": "2805", "name": "Special Topics ", - "description": "Courses of timely interest to the profession, conducted by resident or visiting faculty. Full Description " + "description": "Courses of timely interest to the profession, conducted by resident or visiting faculty." }, "CS2XXX": { "subject": "CS", "number": "2XXX", "name": "Computer Sci Elective ", - "description": " Full Description " + "description": "" }, "CS3101": { "subject": "CS", "number": "3101", "name": "Comp Sci Ventures ", - "description": "Students will learn how computer-science-based ventures are developed. The course is project-based. Students propose, analylze, pitch, design, implement, package and market web-2.0 and virtual-world-based products and services. Full Description " + "description": "Students will learn how computer-science-based ventures are developed. The course is project-based. Students propose, analylze, pitch, design, implement, package and market web-2.0 and virtual-world-based products and services." }, "CS3210": { "subject": "CS", "number": "3210", "name": "Design-Operating Systems ", - "description": "Operating systems concepts, including multi-threading, scheduling, synchronization, communication, and access control. Projects will cover design and implementation of several operating systems components. Full Description " + "description": "Operating systems concepts, including multi-threading, scheduling, synchronization, communication, and access control. Projects will cover design and implementation of several operating systems components." }, "CS3220": { "subject": "CS", "number": "3220", "name": "Processor Design ", - "description": "Principles in pipelined processor design, with emphasis on the need for a close interaction between code generation and architecture. Full Description " + "description": "Principles in pipelined processor design, with emphasis on the need for a close interaction between code generation and architecture." }, "CS3240": { "subject": "CS", "number": "3240", "name": "Languages and Computation ", - "description": "Interpreters as abstract machines and the tools used to construct them, such as scanners and parsers. An introduction to models of computation as embodied by different programming languages. Limits of and relationships between these models. Full Description " + "description": "Interpreters as abstract machines and the tools used to construct them, such as scanners and parsers. An introduction to models of computation as embodied by different programming languages. Limits of and relationships between these models." }, "CS3251": { "subject": "CS", "number": "3251", "name": "Computer Networking I ", - "description": "Introduction to problems in computer networking, including error recovery, medium access, routing, flow control, and transport. Emphasis on current best practice. Includes programming of networked applications. Full Description " + "description": "Introduction to problems in computer networking, including error recovery, medium access, routing, flow control, and transport. Emphasis on current best practice. Includes programming of networked applications." }, "CS3300": { "subject": "CS", "number": "3300", "name": "Intro to Software Engr ", - "description": "Team-based project class to introduce and apply software engineering principles and practices. Full Description " + "description": "Team-based project class to introduce and apply software engineering principles and practices." }, "CS3311": { "subject": "CS", "number": "3311", "name": "Project Design ", - "description": "Part 1 of a 2 semester project design and implementation sequence conjoined with Technical Communications. Prepare requirements, design and project plans. Develop a basic prototype of the desired system. Project is completed in CS 3312-Project Implementation. Credit will not be awared for CS 3311 and CS 4911. Full Description " + "description": "Part 1 of a 2 semester project design and implementation sequence conjoined with Technical Communications. Prepare requirements, design and project plans. Develop a basic prototype of the desired system. Project is completed in CS 3312-Project Implementation. Credit will not be awared for CS 3311 and CS 4911." }, "CS3312": { "subject": "CS", "number": "3312", "name": "Project Implementation ", - "description": "The second part of a 2 semester project design and implementation sequence conjoined with Technical Communications. Implement a project designed in CS 3311. Credit will not be awarded for CS 3312 and CS 4911. Full Description " + "description": "The second part of a 2 semester project design and implementation sequence conjoined with Technical Communications. Implement a project designed in CS 3311. Credit will not be awarded for CS 3312 and CS 4911." }, "CS3451": { "subject": "CS", "number": "3451", "name": "Computer Graphics ", - "description": "Geometric constuctions; transformations; perception; reflection models; photorealistic; non-photorealistic, and image-based rendering; rendering software and API's; triangle-mesh processing; graphic acceleration; user-interaction, design and animation. Full Description " + "description": "Geometric constuctions; transformations; perception; reflection models; photorealistic; non-photorealistic, and image-based rendering; rendering software and API's; triangle-mesh processing; graphic acceleration; user-interaction, design and animation." }, "CS3510": { "subject": "CS", "number": "3510", "name": "Dsgn&Analysis-Algorithms ", - "description": "Basic techniques of design and analysis of efficient algorithms for standard computational problems. NP-Completeness. Credit not allowed for both CS 3510 and CS 3511. Full Description " + "description": "Basic techniques of design and analysis of efficient algorithms for standard computational problems. NP-Completeness. Credit not allowed for both CS 3510 and CS 3511." }, "CS3511": { "subject": "CS", "number": "3511", "name": "Algorithms Honors ", - "description": "Techniques of design and analysis of efficient algorithms for standard computational problems. NP-Completeness Project. Credit not allowed for both CS 3511 and CS 3510. Full Description " + "description": "Techniques of design and analysis of efficient algorithms for standard computational problems. NP-Completeness Project. Credit not allowed for both CS 3511 and CS 3510." }, "CS3600": { "subject": "CS", "number": "3600", "name": "Intro-Artificial Intell ", - "description": "An introduction to artificial intelligence and machine learning. Topics include intelligent system design methodologies, search and problem solving, supervised and reinforced learning. Full Description " + "description": "An introduction to artificial intelligence and machine learning. Topics include intelligent system design methodologies, search and problem solving, supervised and reinforced learning." }, "CS3630": { "subject": "CS", "number": "3630", "name": "Intro-Perception&Robotic ", - "description": "Covers fundamental problems and leading solutions for computer and robot perception and action from the point of view of autonomous robot navigation. Full Description " + "description": "Covers fundamental problems and leading solutions for computer and robot perception and action from the point of view of autonomous robot navigation." }, "CS3651": { "subject": "CS", "number": "3651", "name": "Prototyping Intell Appl ", - "description": "Hands-on course teaching the fundamentals of electronics of electrical and mechanical prototyping. Full Description " + "description": "Hands-on course teaching the fundamentals of electronics of electrical and mechanical prototyping." }, "CS3743": { "subject": "CS", "number": "3743", "name": "Emerging Technologies ", - "description": "Analysis of emerging technologies and their impacts for firm practice, market practice, policy, and society. Credit not allowed for both CS 3743 and MGT 3743 or ME 3743. Full Description " + "description": "Analysis of emerging technologies and their impacts for firm practice, market practice, policy, and society. Credit not allowed for both CS 3743 and MGT 3743 or ME 3743." }, "CS3750": { "subject": "CS", "number": "3750", "name": "User Interface Design ", - "description": "Human computer interface is considered in terms of user-system compatibility. Concepts in human factors and interface design are covered in relation to capabilities of both humans and computers. Crosslisted with PSYC 3750. Full Description " + "description": "Human computer interface is considered in terms of user-system compatibility. Concepts in human factors and interface design are covered in relation to capabilities of both humans and computers. Crosslisted with PSYC 3750." }, "CS3790": { "subject": "CS", "number": "3790", "name": "Intro-Cognitive Science ", - "description": "Multidisciplinary perspectives on cognitive science. Interdisciplinary approaches to issues in cognition, including memory, language, problem solving, learning, perception, and action. Crosslisted with PST, PSYC, and ISYE 3790. Full Description " + "description": "Multidisciplinary perspectives on cognitive science. Interdisciplinary approaches to issues in cognition, including memory, language, problem solving, learning, perception, and action. Crosslisted with PST, PSYC, and ISYE 3790." }, "CS3801": { "subject": "CS", "number": "3801", "name": "Special Topics ", - "description": "Courses of timely interest to the profession, conducted by resident or visiting faculty. Full Description " + "description": "Courses of timely interest to the profession, conducted by resident or visiting faculty." }, "CS3802": { "subject": "CS", "number": "3802", "name": "Special Topics ", - "description": "Courses of timely interest to the profession, conducted by resident or visiting faculty. Full Description " + "description": "Courses of timely interest to the profession, conducted by resident or visiting faculty." }, "CS3803": { "subject": "CS", "number": "3803", "name": "Special Topics ", - "description": "Courses of timely interest to the profession, conducted by resident or visiting faculty. Full Description " + "description": "Courses of timely interest to the profession, conducted by resident or visiting faculty." }, "CS3804": { "subject": "CS", "number": "3804", "name": "Special Topics ", - "description": "Courses of timely interest to the profession, conducted by resident or visiting faculty. Full Description " + "description": "Courses of timely interest to the profession, conducted by resident or visiting faculty." }, "CS3805": { "subject": "CS", "number": "3805", "name": "Special Topics ", - "description": "Courses of timely interest to the profession, conducted by resident or visiting faculty. Full Description " + "description": "Courses of timely interest to the profession, conducted by resident or visiting faculty." }, "CS3XXX": { "subject": "CS", "number": "3XXX", "name": "Computer Sci ", - "description": " Full Description " + "description": "" }, "CS4001": { "subject": "CS", "number": "4001", "name": "Computing & Society ", - "description": "Examines the role and impact of information and communication technology in society, with emphasis on ethical, professional, and public policy issues. Credit not allowed for both CS 4001 and 4002. Full Description " + "description": "Examines the role and impact of information and communication technology in society, with emphasis on ethical, professional, and public policy issues. Credit not allowed for both CS 4001 and 4002." }, "CS4002": { "subject": "CS", "number": "4002", "name": "Robots and Society ", - "description": "Examines the role and impact of robotics, distributed sensing and actuation, ubiquitous computing and related technology in society, emphasizing ethical, professional and public policy issues. Credit not allowed for both CS 4001 and 4002 Full Description " + "description": "Examines the role and impact of robotics, distributed sensing and actuation, ubiquitous computing and related technology in society, emphasizing ethical, professional and public policy issues. Credit not allowed for both CS 4001 and 4002" }, "CS4005": { "subject": "CS", "number": "4005", "name": "Next Gen Computing Tech ", - "description": "Students will explore new paradigms in how content is created, distributed, and consumed, with hands-on demos of next-generation computing technologies. Full Description " + "description": "Students will explore new paradigms in how content is created, distributed, and consumed, with hands-on demos of next-generation computing technologies." }, "CS4010": { "subject": "CS", "number": "4010", "name": "Intro to Computer Law ", - "description": "Provides an introduction to copyrights, patents, trade secrets, trademarks, and commercial law pertaining to computer software and hardware. Full Description " + "description": "Provides an introduction to copyrights, patents, trade secrets, trademarks, and commercial law pertaining to computer software and hardware." }, "CS4052": { "subject": "CS", "number": "4052", "name": "Systems Analysis& Design ", - "description": "An introductory course on the development life cycle of business information systems. It covers analysis and design tools and methodology. Credit not allowed for both CS 4052 and MGT 4045. Full Description " + "description": "An introductory course on the development life cycle of business information systems. It covers analysis and design tools and methodology. Credit not allowed for both CS 4052 and MGT 4045." }, "CS4057": { "subject": "CS", "number": "4057", "name": "Bus Process Analy&Design ", - "description": "Business processes are the mechanisms by which work is organized and performed. This course covers the analysis of business technology. Credit will not be awarded for both CS 4057 and MGT 4057. Full Description " + "description": "Business processes are the mechanisms by which work is organized and performed. This course covers the analysis of business technology. Credit will not be awarded for both CS 4057 and MGT 4057." }, "CS4210": { "subject": "CS", "number": "4210", "name": "Adv Operating Systems ", - "description": "Operating system abstractions and their implementations, multi-threading, efficient inter-address communication, high-level synchronization, introduction to multi-processor and distributed operating systems, real-time systems. Full Description " + "description": "Operating system abstractions and their implementations, multi-threading, efficient inter-address communication, high-level synchronization, introduction to multi-processor and distributed operating systems, real-time systems." }, "CS4220": { "subject": "CS", "number": "4220", "name": "Embedded Systems ", - "description": "Design principles, programming techniques, and case studies of embedded real-time systems. Interface techniques and devices. Representations and reasoning about physical processes. Full Description " + "description": "Design principles, programming techniques, and case studies of embedded real-time systems. Interface techniques and devices. Representations and reasoning about physical processes." }, "CS4233": { "subject": "CS", "number": "4233", "name": "Parallel Comp Arch ", - "description": "The objective of this course is to develop an in-depth understanding of the design, implementation, and evaluation of modern parallel computers. Credit not allowed for both CS 4233 and CS 7110. Full Description " + "description": "The objective of this course is to develop an in-depth understanding of the design, implementation, and evaluation of modern parallel computers. Credit not allowed for both CS 4233 and CS 7110." }, "CS4235": { "subject": "CS", "number": "4235", "name": "Intro to Info Security ", - "description": "Terms/concepts, threats, controls; problem definition; comprehensive information security model; security for operating systems, databases, network/distributed systems; administering security; legal/ethical/policy issues. Credit not allowed for both CS 4235 and CS 6035. Full Description " + "description": "Terms/concepts, threats, controls; problem definition; comprehensive information security model; security for operating systems, databases, network/distributed systems; administering security; legal/ethical/policy issues. Credit not allowed for both CS 4235 and CS 6035." }, "CS4237": { "subject": "CS", "number": "4237", "name": "Comp & Network Security ", - "description": "Fundamental concepts and principles of computer security, operating system and database security, secret key and public key cryptographic algorithms, hash functions, authentication, firewalls and intrusion detection systems, IPSec ad VPN, and wireless security. Full Description " + "description": "Fundamental concepts and principles of computer security, operating system and database security, secret key and public key cryptographic algorithms, hash functions, authentication, firewalls and intrusion detection systems, IPSec ad VPN, and wireless security." }, "CS4240": { "subject": "CS", "number": "4240", "name": "Compilers & Interpreters ", - "description": "Study of techniques for the design and implementation of compilers, interpreters, and program analyzers, with consideration of the particular characteristics of widely used programming languages. Full Description " + "description": "Study of techniques for the design and implementation of compilers, interpreters, and program analyzers, with consideration of the particular characteristics of widely used programming languages." }, "CS4245": { "subject": "CS", "number": "4245", "name": "Intro Data Mining & Anal ", - "description": "Computational techniques for analysis of large, complex datasets, covering fundamental aspects as well as modern data mining and analysis techniques. Cross-listed with ISYE 4245. Full Description " + "description": "Computational techniques for analysis of large, complex datasets, covering fundamental aspects as well as modern data mining and analysis techniques. Cross-listed with ISYE 4245." }, "CS4251": { "subject": "CS", "number": "4251", "name": "Computer Networking II ", - "description": "Principles of computer networks, including medium access, ARQ protocols, routing, congestion avoidance, and control. Emphasis on design options and tradeoffs. Includes significant network application programming. Full Description " + "description": "Principles of computer networks, including medium access, ARQ protocols, routing, congestion avoidance, and control. Emphasis on design options and tradeoffs. Includes significant network application programming." }, "CS4255": { "subject": "CS", "number": "4255", "name": "Intro-Network Management ", - "description": "Introduction to SNMP-based network management. Practical application to network and system management including hands-on lab practice. Full Description " + "description": "Introduction to SNMP-based network management. Practical application to network and system management including hands-on lab practice." }, "CS4260": { "subject": "CS", "number": "4260", "name": "Telecommunications Sys ", - "description": "Study of telecommunication systems emphasizing functional roles of the various portions of the system and how various functional components support and interact with one another. Full Description " + "description": "Study of telecommunication systems emphasizing functional roles of the various portions of the system and how various functional components support and interact with one another." }, "CS4261": { "subject": "CS", "number": "4261", "name": "Mobile Apps & Svcs ", - "description": "This course provides an introduction to mobile applications and services with an emphasis on voice and data service integration in modern commercial networks. Full Description " + "description": "This course provides an introduction to mobile applications and services with an emphasis on voice and data service integration in modern commercial networks." }, "CS4270": { "subject": "CS", "number": "4270", "name": "Data Communications Lab ", - "description": "Detailed study of the principles of data transmission systems and their performance, reinforced by laboratory exercises. Full Description " + "description": "Detailed study of the principles of data transmission systems and their performance, reinforced by laboratory exercises." }, "CS4280": { "subject": "CS", "number": "4280", "name": "Survey-Telecom & the Law ", - "description": "Overview of telecommunication regulation at the federal, state, and judicial levels; review of FCC policies and restrictions on Bell operating companies under the AT&T Consent Agreement. Full Description " + "description": "Overview of telecommunication regulation at the federal, state, and judicial levels; review of FCC policies and restrictions on Bell operating companies under the AT&T Consent Agreement." }, "CS4290": { "subject": "CS", "number": "4290", "name": "Advanced Computer Org ", - "description": "Topics concerning the hardware design of computer systems. Advanced techniques in high-performance pipelined central processing units. Memory and I/O systems. Parallel processors including shared-memory multiprocessors and cluster computers. Credit is not allowed for both CS 4290 and any of the following courses: CS 6290, ECE 4100, ECE 6100. Full Description " + "description": "Topics concerning the hardware design of computer systems. Advanced techniques in high-performance pipelined central processing units. Memory and I/O systems. Parallel processors including shared-memory multiprocessors and cluster computers. Credit is not allowed for both CS 4290 and any of the following courses: CS 6290, ECE 4100, ECE 6100." }, "CS4320": { "subject": "CS", "number": "4320", "name": "Software Processes ", - "description": "The course will provide students with an overall context in which software systems are developed from the viewpoint of processes that support development. Software engineering is described as the set of activities developers engage in to create high-quality products within schedule and budget constraints. Full Description " + "description": "The course will provide students with an overall context in which software systems are developed from the viewpoint of processes that support development. Software engineering is described as the set of activities developers engage in to create high-quality products within schedule and budget constraints." }, "CS4330": { "subject": "CS", "number": "4330", "name": "Software Applications ", - "description": "Software engineering methods specific to classes of applications or systems, including information systems and embedded, real-time systems. Full Description " + "description": "Software engineering methods specific to classes of applications or systems, including information systems and embedded, real-time systems." }, "CS4342": { "subject": "CS", "number": "4342", "name": "Software Generation ", - "description": "Methods and principles for program generation, testing, and managing the evolution of software systems. Full Description " + "description": "Methods and principles for program generation, testing, and managing the evolution of software systems." }, "CS4365": { "subject": "CS", "number": "4365", "name": "Intro Enterprise Comp ", - "description": "A survey of basic software tools and techniques used in mission-critical systems and applications, combined with in-depth study of fundamental principles underlying enterprise computing. Credit not allowed for both 4365 and CS 6365. Full Description " + "description": "A survey of basic software tools and techniques used in mission-critical systems and applications, combined with in-depth study of fundamental principles underlying enterprise computing. Credit not allowed for both 4365 and CS 6365." }, "CS4392": { "subject": "CS", "number": "4392", "name": "Programming Languages ", - "description": " Full Description " + "description": "" }, "CS4400": { "subject": "CS", "number": "4400", "name": "Intr to Database Systems ", - "description": "Comprehensive coverage of mainstream database concepts such as the entity-relationship model, relational databases, query languages, and database design methodology. Includes a project. Credit not allowed for both CS 4400 and CS 6402. Full Description " + "description": "Comprehensive coverage of mainstream database concepts such as the entity-relationship model, relational databases, query languages, and database design methodology. Includes a project. Credit not allowed for both CS 4400 and CS 6402." }, "CS4420": { "subject": "CS", "number": "4420", "name": "Database Sys Implement ", - "description": "Study of fundamental software components/algorithms of a database system, including the file manager, query engine, lock manager, and recovery manager. Includes a project component. Credit not allowed for both CS 4420 and CS 6422. Full Description " + "description": "Study of fundamental software components/algorithms of a database system, including the file manager, query engine, lock manager, and recovery manager. Includes a project component. Credit not allowed for both CS 4420 and CS 6422." }, "CS4432": { "subject": "CS", "number": "4432", "name": "Information Systems Dsgn ", - "description": "The analysis, design, and implementation of information systems. Topics include requirements analysis, design representations, implementation techniques, and evaluation of systems. Full Description " + "description": "The analysis, design, and implementation of information systems. Topics include requirements analysis, design representations, implementation techniques, and evaluation of systems." }, "CS4440": { "subject": "CS", "number": "4440", "name": "Database Technologies ", - "description": "The course will cover current developments including distributed, object-oriented, temporal-spatial, Web-based, mobile, and active database technologies, and data warehousing and mining applications. Full Description " + "description": "The course will cover current developments including distributed, object-oriented, temporal-spatial, Web-based, mobile, and active database technologies, and data warehousing and mining applications." }, "CS4452": { "subject": "CS", "number": "4452", "name": "Human-Centered Computing ", - "description": "Introduction to programming and human-centered principles of computing based on a communications and media computation context. Introduces user interface programming. Full Description " + "description": "Introduction to programming and human-centered principles of computing based on a communications and media computation context. Introduces user interface programming." }, "CS4455": { "subject": "CS", "number": "4455", "name": "Video Game Design ", - "description": "Techniques for electronic game design and programming, including graphics game engines, motion generation, behavioral control for autonomous characters, interaction structure, social and interface issues of multi-user play, and the business aspects of game development. Credit not allowed for both CS 4455 and CS 6457. Full Description " + "description": "Techniques for electronic game design and programming, including graphics game engines, motion generation, behavioral control for autonomous characters, interaction structure, social and interface issues of multi-user play, and the business aspects of game development. Credit not allowed for both CS 4455 and CS 6457." }, "CS4460": { "subject": "CS", "number": "4460", "name": "Intro Info Visualization ", - "description": "Introduction to principles and techniques of infomation visualization, the presentation of primarily abstract data to help people understand, analyze and make sense of data. Full Description " + "description": "Introduction to principles and techniques of infomation visualization, the presentation of primarily abstract data to help people understand, analyze and make sense of data." }, "CS4464": { "subject": "CS", "number": "4464", "name": "Computational Journalism ", - "description": "A study of computational and technological advancements in journalism with emphasis on technologies for developing new tools and their potential impact on news and information. Credit not allowed for both CS 4464 and CS 6465. Full Description " + "description": "A study of computational and technological advancements in journalism with emphasis on technologies for developing new tools and their potential impact on news and information. Credit not allowed for both CS 4464 and CS 6465." }, "CS4470": { "subject": "CS", "number": "4470", "name": "User Interface Software ", - "description": "Concepts, techniques, structures, and strategies for implementation of interactive software. Full Description " + "description": "Concepts, techniques, structures, and strategies for implementation of interactive software." }, "CS4472": { "subject": "CS", "number": "4472", "name": "Design of Online Comm ", - "description": "Introduction to the design of online communities. Students study an existing community in depth. Credit not allowed for both CS 4472 and CS 6470. Full Description " + "description": "Introduction to the design of online communities. Students study an existing community in depth. Credit not allowed for both CS 4472 and CS 6470." }, "CS4475": { "subject": "CS", "number": "4475", "name": "Comp Photography ", - "description": "An introductory course on the scientific, technical, perceptual, and aesthetic principles of pictures. Emphasis is on the techniques of image formation, analysis, merging, modification and their use for depiction of reality on a 2D medium of photographs. Full Description " + "description": "An introductory course on the scientific, technical, perceptual, and aesthetic principles of pictures. Emphasis is on the techniques of image formation, analysis, merging, modification and their use for depiction of reality on a 2D medium of photographs." }, "CS4480": { "subject": "CS", "number": "4480", "name": "Digital Video Special FX ", - "description": "A study of digital multimedia and the analysis and synthesis of digital video. Special attention paid to techniques for generating video special effects. Full Description " + "description": "A study of digital multimedia and the analysis and synthesis of digital video. Special attention paid to techniques for generating video special effects." }, "CS4495": { "subject": "CS", "number": "4495", "name": "Computer Vision ", - "description": "An introduction to computer vision and machine perception. An intensive study of the process of generating a symbolic description of the scene by interpretation of images(s). Credit not awarded for both CS 4495 and CS 6476. Full Description " + "description": "An introduction to computer vision and machine perception. An intensive study of the process of generating a symbolic description of the scene by interpretation of images(s). Credit not awarded for both CS 4495 and CS 6476." }, "CS4496": { "subject": "CS", "number": "4496", "name": "Computer Animation ", - "description": "Motion techniques for computer animation and interactive games (keyframing, procedural methods, motion capture, and simulation) and principles for storytelling, composition, lighting, and interactivity. Full Description " + "description": "Motion techniques for computer animation and interactive games (keyframing, procedural methods, motion capture, and simulation) and principles for storytelling, composition, lighting, and interactivity." }, "CS4510": { "subject": "CS", "number": "4510", "name": "Automata and Complexity ", - "description": "Computational machine models and their language classes. Undecidability. Resource-bounded computations. Central complexity-theoretic concepts such as complexity classes, reducibility and completeness. Full Description " + "description": "Computational machine models and their language classes. Undecidability. Resource-bounded computations. Central complexity-theoretic concepts such as complexity classes, reducibility and completeness." }, "CS4520": { "subject": "CS", "number": "4520", "name": "Approximation Algs ", - "description": "Approximation algorithms for NP-hard optimization problems, design and analysis techniques for such algorithms. Credit not allowed for both CS 4520 and CS 7520. Full Description " + "description": "Approximation algorithms for NP-hard optimization problems, design and analysis techniques for such algorithms. Credit not allowed for both CS 4520 and CS 7520." }, "CS4530": { "subject": "CS", "number": "4530", "name": "Randomized Algs ", - "description": "Efficient randomized algorithms with improved performance over deterministic algorithms, or for NP-hard optimization problems, design and analysis techniques for such algorithms. Credit not allowed for both CS 4530 and CS 7530. Full Description " + "description": "Efficient randomized algorithms with improved performance over deterministic algorithms, or for NP-hard optimization problems, design and analysis techniques for such algorithms. Credit not allowed for both CS 4530 and CS 7530." }, "CS4540": { "subject": "CS", "number": "4540", "name": "Advanced Algs ", - "description": "Advanced techniques for designing and analyzing efficient algorithms for combinatorial, algebraic, and number theoretic problems. Credit not allowed for both CS 4540 and CS 6550. Full Description " + "description": "Advanced techniques for designing and analyzing efficient algorithms for combinatorial, algebraic, and number theoretic problems. Credit not allowed for both CS 4540 and CS 6550." }, "CS4550": { "subject": "CS", "number": "4550", "name": "Scientific Visualization ", - "description": "Foundations and algorithms underlying the development and application of tools for the efficient transmission, analysis, filtering, and visualization of large scientific data sets. Full Description " + "description": "Foundations and algorithms underlying the development and application of tools for the efficient transmission, analysis, filtering, and visualization of large scientific data sets." }, "CS4560": { "subject": "CS", "number": "4560", "name": "Verification of Systems ", - "description": "Technique for verifying, validating and testing software and hardware systems. Topics covered will include modeling, abstraction methods, evaluation and certification, and computer-aided verification methods. Full Description " + "description": "Technique for verifying, validating and testing software and hardware systems. Topics covered will include modeling, abstraction methods, evaluation and certification, and computer-aided verification methods." }, "CS4590": { "subject": "CS", "number": "4590", "name": "Computer Audio ", - "description": "A well-rounded exploration of digital audio and its importance in current research and applications. Exposes students to the principles, technology, and current research of computer audio. Full Description " + "description": "A well-rounded exploration of digital audio and its importance in current research and applications. Exposes students to the principles, technology, and current research of computer audio." }, "CS4605": { "subject": "CS", "number": "4605", "name": "Mobile&Ubiquitous Comp ", - "description": "Investigates the infrastructure required to develop mobile and ubiquitous computing applications and establishes major research themes and experimental practices. Full Description " + "description": "Investigates the infrastructure required to develop mobile and ubiquitous computing applications and establishes major research themes and experimental practices." }, "CS4611": { "subject": "CS", "number": "4611", "name": "AI Problem Solving ", - "description": "Basic concepts and methods of AI problem solving, knowledge representation, reasoning, and learning. Full Description " + "description": "Basic concepts and methods of AI problem solving, knowledge representation, reasoning, and learning." }, "CS4613": { "subject": "CS", "number": "4613", "name": "Knowledge Systems Engr ", - "description": "Techniques for constructing large knowledge-based systems. Advanced symbolic AI techniques. Constraint systems. Full Description " + "description": "Techniques for constructing large knowledge-based systems. Advanced symbolic AI techniques. Constraint systems." }, "CS4615": { "subject": "CS", "number": "4615", "name": "Knowledge-Based Modl&Dgn ", - "description": "Information-processing theories of modeling and design; topics include design decision-making, problem-solving and learning, and knowledge-based modeling and design. Full Description " + "description": "Information-processing theories of modeling and design; topics include design decision-making, problem-solving and learning, and knowledge-based modeling and design." }, "CS4616": { "subject": "CS", "number": "4616", "name": "Pattern Recognition ", - "description": "An introductory course on pattern classification and decision problems with applications to character recognition, image analysis, and speech recognition. Full Description " + "description": "An introductory course on pattern classification and decision problems with applications to character recognition, image analysis, and speech recognition." }, "CS4622": { "subject": "CS", "number": "4622", "name": "Case-Based Reasoning ", - "description": "Based on human problem-solving, CBR has had many successes in industry and research. Topics include case representation, indexing and retrieval, similarity assessment, adaptation, learning. Credit not allowed for both CS 4622 and CS 7620. Full Description " + "description": "Based on human problem-solving, CBR has had many successes in industry and research. Topics include case representation, indexing and retrieval, similarity assessment, adaptation, learning. Credit not allowed for both CS 4622 and CS 7620." }, "CS4625": { "subject": "CS", "number": "4625", "name": "Intel & Interactive Sys ", - "description": "Explores how human-computer interaction and machine learning can interact to create personalized information environments. Emphasis on current research efforts from both fields. Full Description " + "description": "Explores how human-computer interaction and machine learning can interact to create personalized information environments. Emphasis on current research efforts from both fields." }, "CS4632": { "subject": "CS", "number": "4632", "name": "Adv Intelligent Robotics ", - "description": "Hands-on course in which students program autonomous mobile robots and solve complex tasks for robot teams. Full Description " + "description": "Hands-on course in which students program autonomous mobile robots and solve complex tasks for robot teams." }, "CS4635": { "subject": "CS", "number": "4635", "name": "Knowledge-Based AI ", - "description": "Structured knowledge representation; knowledge-based methods of reasoning and learning; problem-solving, modeling and design. Full Description " + "description": "Structured knowledge representation; knowledge-based methods of reasoning and learning; problem-solving, modeling and design." }, "CS4641": { "subject": "CS", "number": "4641", "name": "Machine Learning ", - "description": "Machine learning techniques and applications. Topics include foundational issues; inductive, analytical, numerical, and theoretical approaches; and real-world applications. Full Description " + "description": "Machine learning techniques and applications. Topics include foundational issues; inductive, analytical, numerical, and theoretical approaches; and real-world applications." }, "CS4649": { "subject": "CS", "number": "4649", "name": "Robot Intelli Planning ", - "description": "We investigate algorithms for robots and complex systems that make intelligent decisions. Emphasis on the theoretical and empirical properties of classical, geometric, stochastic/dynamic planning. Full Description " + "description": "We investigate algorithms for robots and complex systems that make intelligent decisions. Emphasis on the theoretical and empirical properties of classical, geometric, stochastic/dynamic planning." }, "CS4650": { "subject": "CS", "number": "4650", "name": "Natural Language ", - "description": "Methodologies for designing systems that comprehend natural language. Topics include lexical analysis, parsing, interpretation of sentences, semantic representation, organization of knowledge, and inference mechanisms. Credit not allowed for both CS 4650 and CS 7650. Full Description " + "description": "Methodologies for designing systems that comprehend natural language. Topics include lexical analysis, parsing, interpretation of sentences, semantic representation, organization of knowledge, and inference mechanisms. Credit not allowed for both CS 4650 and CS 7650." }, "CS4660": { "subject": "CS", "number": "4660", "name": "Educational Technology ", - "description": "Introduction to the theory and practice of educational technology. Covers learning theory applicable to educational technology, explains major research findings. Full Description " + "description": "Introduction to the theory and practice of educational technology. Covers learning theory applicable to educational technology, explains major research findings." }, "CS4665": { "subject": "CS", "number": "4665", "name": "Educ Tech: Dsgn & Eval ", - "description": "Intensive project class in which students design, implement, and evaluate a piece of educational technology, applying the theory learned in Introduction to Educational Technology. Full Description " + "description": "Intensive project class in which students design, implement, and evaluate a piece of educational technology, applying the theory learned in Introduction to Educational Technology." }, "CS4670": { "subject": "CS", "number": "4670", "name": "CSCL ", - "description": "Research and practice in computer-supported collaborative learning. Review of existing systems and research, as well as evaluation and design methods. Full Description " + "description": "Research and practice in computer-supported collaborative learning. Review of existing systems and research, as well as evaluation and design methods." }, "CS4675": { "subject": "CS", "number": "4675", "name": "Internet Sys & Services ", - "description": "Focusing on fundamental issues, concepts, techniques, and technical challenges that are critical for designing and developing Internet systems, services and applications. Credit not allowed for both CS 4675 and CS 6675. Full Description " + "description": "Focusing on fundamental issues, concepts, techniques, and technical challenges that are critical for designing and developing Internet systems, services and applications. Credit not allowed for both CS 4675 and CS 6675." }, "CS4685": { "subject": "CS", "number": "4685", "name": "Pervasive Sys Networking ", - "description": "In-depth study of systems and wireless networking issues in enabling pervasive computing environments and applications using a hand-on approach. Full Description " + "description": "In-depth study of systems and wireless networking issues in enabling pervasive computing environments and applications using a hand-on approach." }, "CS4690": { "subject": "CS", "number": "4690", "name": "Empirical Methods in HCI ", - "description": "Introduction to empirical methods for gathering requirements and evaluating the end-user and usability of software systems. Full Description " + "description": "Introduction to empirical methods for gathering requirements and evaluating the end-user and usability of software systems." }, "CS4698": { "subject": "CS", "number": "4698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "CS4699": { "subject": "CS", "number": "4699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "CS4710": { "subject": "CS", "number": "4710", "name": "CS for Bioinformatics ", - "description": "Introduction to programming concepts and computing tools such as formal models and algorithms with applications from conceptual biology. May not be used by computer science majors for degree credit. Full Description " + "description": "Introduction to programming concepts and computing tools such as formal models and algorithms with applications from conceptual biology. May not be used by computer science majors for degree credit." }, "CS4725": { "subject": "CS", "number": "4725", "name": "Info Security Policies ", - "description": "Information security vulnerabilities and risks; legal, cost, privacy, and technology constraints; derivation of strategies; technical and procedural means of achieving desired results. Credit will not be awarded for both CS 4725 and CS 6725 or MGT 4725 or MGT 6725. Full Description " + "description": "Information security vulnerabilities and risks; legal, cost, privacy, and technology constraints; derivation of strategies; technical and procedural means of achieving desired results. Credit will not be awarded for both CS 4725 and CS 6725 or MGT 4725 or MGT 6725." }, "CS4726": { "subject": "CS", "number": "4726", "name": "Privacy Tech Policy Law ", - "description": "This course takes a multi-disciplinary approach to privacy, a topic of great interest in the technology, policy, ethics, law, and business realms. Credit will not be awarded for both CS 4726 and MGT 4726 or MGT 6726 or CS 6726. Full Description " + "description": "This course takes a multi-disciplinary approach to privacy, a topic of great interest in the technology, policy, ethics, law, and business realms. Credit will not be awarded for both CS 4726 and MGT 4726 or MGT 6726 or CS 6726." }, "CS4731": { "subject": "CS", "number": "4731", "name": "Game AI ", - "description": "Examines the expressive possibilities of artificial intelligence techniques in computer games. Students learn AI programming techniques, and how they strongly interface with game design. Full Description " + "description": "Examines the expressive possibilities of artificial intelligence techniques in computer games. Students learn AI programming techniques, and how they strongly interface with game design." }, "CS4741": { "subject": "CS", "number": "4741", "name": "Int Mgt Dev - Proj Prep ", - "description": "Individual and group-based experiential learning activities to develop integrated human system management skills that prepare students for more successful capstone collaboration and learning. Credit not allowed for both CS 4741 and MGT 4741 or ME 4741. Full Description " + "description": "Individual and group-based experiential learning activities to develop integrated human system management skills that prepare students for more successful capstone collaboration and learning. Credit not allowed for both CS 4741 and MGT 4741 or ME 4741." }, "CS4742": { "subject": "CS", "number": "4742", "name": "Comp & Mgt Cap Proj ", - "description": "Project-based course for students in Computing and Management minor to work in interdisciplinary teams on projects provided by corporate affiliates. Credit not allowed for both CS 4742 and MGT 4742 or ME 4742. Full Description " + "description": "Project-based course for students in Computing and Management minor to work in interdisciplinary teams on projects provided by corporate affiliates. Credit not allowed for both CS 4742 and MGT 4742 or ME 4742." }, "CS4752": { "subject": "CS", "number": "4752", "name": "Phil Issues-Computation ", - "description": "Metaphysical and epistemological issues in the foundations, methods, and implications of computing. Issues include: minds, brains, and machines; representation and language; simulating nature. Crosslisted with PST 4752. Full Description " + "description": "Metaphysical and epistemological issues in the foundations, methods, and implications of computing. Issues include: minds, brains, and machines; representation and language; simulating nature. Crosslisted with PST 4752." }, "CS4770": { "subject": "CS", "number": "4770", "name": "Mixed Reality Design ", - "description": "Focuses on informal design, integration of media theory, HCI and technology issues. Significant group design projects. Full Description " + "description": "Focuses on informal design, integration of media theory, HCI and technology issues. Significant group design projects." }, "CS4791": { "subject": "CS", "number": "4791", "name": "Integrative Proj-Cog Sci ", - "description": "An integrative course in cognitive science focusing on the integration and use of concepts and skills from cognitive science. A different integrative project or set of projects will be taken on each semester; students will contribute on the basis of their background and skill. Crosslisted with PST, PSYC, and ISYE 4791. Full Description " + "description": "An integrative course in cognitive science focusing on the integration and use of concepts and skills from cognitive science. A different integrative project or set of projects will be taken on each semester; students will contribute on the basis of their background and skill. Crosslisted with PST, PSYC, and ISYE 4791." }, "CS4792": { "subject": "CS", "number": "4792", "name": "Dsgn Proj-Cognitive Sci ", - "description": "Individual project with a cognitive science faculty member, designed as a supplement to the student's senior design project or thesis in their major area. Crosslisted with PST, PSYC, and ISYE 4792. Full Description " + "description": "Individual project with a cognitive science faculty member, designed as a supplement to the student's senior design project or thesis in their major area. Crosslisted with PST, PSYC, and ISYE 4792." }, "CS4793": { "subject": "CS", "number": "4793", "name": "Perspectives-Cog Science ", - "description": "An integrative course in cognitive science which uses a focus topic to deepen interdisciplinary perspective and develop cognitive science knowledge and skills. Full Description " + "description": "An integrative course in cognitive science which uses a focus topic to deepen interdisciplinary perspective and develop cognitive science knowledge and skills." }, "CS4801": { "subject": "CS", "number": "4801", "name": "Special Topics ", - "description": "Courses of timely interest to the profession, conducted by resident or visiting faculty. Full Description " + "description": "Courses of timely interest to the profession, conducted by resident or visiting faculty." }, "CS4802": { "subject": "CS", "number": "4802", "name": "Special Topics ", - "description": "Courses of timely interest to the profession, conducted by resident or visiting faculty. Full Description " + "description": "Courses of timely interest to the profession, conducted by resident or visiting faculty." }, "CS4803": { "subject": "CS", "number": "4803", "name": "Special Topics ", - "description": "Courses of timely interest to the profession, conducted by resident or visiting faculty. Full Description " + "description": "Courses of timely interest to the profession, conducted by resident or visiting faculty." }, "CS4804": { "subject": "CS", "number": "4804", "name": "Special Topics ", - "description": "Courses of timely interest to the profession, conducted by resident or visiting faculty. Full Description " + "description": "Courses of timely interest to the profession, conducted by resident or visiting faculty." }, "CS4805": { "subject": "CS", "number": "4805", "name": "Special Topics ", - "description": "Courses of timely interest to the profession, conducted by resident or visiting faculty. Full Description " + "description": "Courses of timely interest to the profession, conducted by resident or visiting faculty." }, "CS4901": { "subject": "CS", "number": "4901", "name": "Spec Prob-Computer Sci ", - "description": "An investigation of significant areas of information in computer science. Guided study and research. Full Description " + "description": "An investigation of significant areas of information in computer science. Guided study and research." }, "CS4902": { "subject": "CS", "number": "4902", "name": "Spec Prob-Computer Sci ", - "description": "An investigation of significant areas of information and computer science. Guided study and research. Full Description " + "description": "An investigation of significant areas of information and computer science. Guided study and research." }, "CS4903": { "subject": "CS", "number": "4903", "name": "Spec Prob-Computer Sci ", - "description": "An investigation of significant areas of information and computer science. Guided study and research. Full Description " + "description": "An investigation of significant areas of information and computer science. Guided study and research." }, "CS4911": { "subject": "CS", "number": "4911", "name": "Design Capstone Project ", - "description": "Team-based capstone experience allowing students to analyze a problem for a customer and manage the solution development through the full project life cycle. Full Description " + "description": "Team-based capstone experience allowing students to analyze a problem for a customer and manage the solution development through the full project life cycle." }, "CS4912": { "subject": "CS", "number": "4912", "name": "Design Capstone Project ", - "description": "Team-based capstone experience allowing students to analyze a problem for a customer and manage the solution development through the full project life cycle. Full Description " + "description": "Team-based capstone experience allowing students to analyze a problem for a customer and manage the solution development through the full project life cycle." }, "CS4980": { "subject": "CS", "number": "4980", "name": "Research Capstone Proj ", - "description": " Full Description " + "description": "" }, "CS4XXX": { "subject": "CS", "number": "4XXX", "name": "Computer Sci Elective ", - "description": " Full Description " + "description": "" }, "CS6010": { "subject": "CS", "number": "6010", "name": "Principles of Design ", - "description": "This is an interactive hands-on course that will teach students the principles of design at the individual level. Full Description " + "description": "This is an interactive hands-on course that will teach students the principles of design at the individual level." }, "CS6035": { "subject": "CS", "number": "6035", "name": "Intro To Info Security ", - "description": "A broad spectrum of information security: threats, basic cryptography, software vulnerabilities, programming for malice, operating system protections, network security, privacy, data mining, computer crime. Full Description " + "description": "A broad spectrum of information security: threats, basic cryptography, software vulnerabilities, programming for malice, operating system protections, network security, privacy, data mining, computer crime." }, "CS6150": { "subject": "CS", "number": "6150", "name": "Computing For Good ", - "description": "Exploring challenges faced by underserved populations and developing countries from a computing perspective. Full Description " + "description": "Exploring challenges faced by underserved populations and developing countries from a computing perspective." }, "CS6210": { "subject": "CS", "number": "6210", "name": "Adv Operating Systems ", - "description": "Introduction to graduate-level topics in operating systems using research papers, textbook excerpts, and projects. Provides students thorough comprehension of distributed and parallel computer systems. Full Description " + "description": "Introduction to graduate-level topics in operating systems using research papers, textbook excerpts, and projects. Provides students thorough comprehension of distributed and parallel computer systems." }, "CS6230": { "subject": "CS", "number": "6230", "name": "High Perf Parallel Comp ", - "description": "Introduction to MIMD parallel computation, using textbook excerpts, research papers, and projects on multiple parallel machines. Emphasizes practical issues in high-performance computing. Full Description " + "description": "Introduction to MIMD parallel computation, using textbook excerpts, research papers, and projects on multiple parallel machines. Emphasizes practical issues in high-performance computing." }, "CS6235": { "subject": "CS", "number": "6235", "name": "Real-Time Systems ", - "description": "Principles of real-time systems, as occurring in robotics and manufacturing, interactive, and multimedia applications. Reviews and uses real-time operating systems. Full Description " + "description": "Principles of real-time systems, as occurring in robotics and manufacturing, interactive, and multimedia applications. Reviews and uses real-time operating systems." }, "CS6238": { "subject": "CS", "number": "6238", "name": "Secure Computer Systems ", - "description": "Design principles of secure systems, authentication, access control and authorization, discretionary and mandatory security policies, secure kernel design, and secure databases. Full Description " + "description": "Design principles of secure systems, authentication, access control and authorization, discretionary and mandatory security policies, secure kernel design, and secure databases." }, "CS6241": { "subject": "CS", "number": "6241", "name": "Compiler Design ", - "description": "Design and implementation of modern compilers, focusing upon optimization and code generation. Full Description " + "description": "Design and implementation of modern compilers, focusing upon optimization and code generation." }, "CS6245": { "subject": "CS", "number": "6245", "name": "Parallelizing Compilers ", - "description": "Design and implementation of compilers for parallel and distributed computers, focusing upon optimization and code generation. Full Description " + "description": "Design and implementation of compilers for parallel and distributed computers, focusing upon optimization and code generation." }, "CS6246": { "subject": "CS", "number": "6246", "name": "Object-Oriented Systems ", - "description": "Design and implementation of object-oriented systems. Aspect-oriented programming, type systems, OO language implementation (virtual dispatch, GC), OO language design (genericity, reflection, mixins). Full Description " + "description": "Design and implementation of object-oriented systems. Aspect-oriented programming, type systems, OO language implementation (virtual dispatch, GC), OO language design (genericity, reflection, mixins)." }, "CS6250": { "subject": "CS", "number": "6250", "name": "Computer Networks ", - "description": "Principles and practice of computer networks, including signaling and framing, error control, medium access, routing, congestion control, end-to-end transport, and network APIs. Full Description " + "description": "Principles and practice of computer networks, including signaling and framing, error control, medium access, routing, congestion control, end-to-end transport, and network APIs." }, "CS6255": { "subject": "CS", "number": "6255", "name": "Network Management ", - "description": "Focus on network, system, and applications management. Principles and practice of various network management standards will be presented. Course includes project assignment. Full Description " + "description": "Focus on network, system, and applications management. Principles and practice of various network management standards will be presented. Course includes project assignment." }, "CS6260": { "subject": "CS", "number": "6260", "name": "Applied Cryptography ", - "description": "Cryptographic algorithms, cryptanalysis, symmetric cryptography, public key cryptography, DES, AES, RSA, hash and MAC functions, digital signatures, pseudo-random generators, cryptographic protocols, SSL//TLS, SET. Credit not allowed for both CS 6260 and ECE 6280. Full Description " + "description": "Cryptographic algorithms, cryptanalysis, symmetric cryptography, public key cryptography, DES, AES, RSA, hash and MAC functions, digital signatures, pseudo-random generators, cryptographic protocols, SSL//TLS, SET. Credit not allowed for both CS 6260 and ECE 6280." }, "CS6262": { "subject": "CS", "number": "6262", "name": "Network Security ", - "description": "Design principles of secure network protocols and systems, authentication, integrity, confidentiality, privacy, information hiding, digital watermarking, access control, firewall, intrusion detection, and case studies. Full Description " + "description": "Design principles of secure network protocols and systems, authentication, integrity, confidentiality, privacy, information hiding, digital watermarking, access control, firewall, intrusion detection, and case studies." }, "CS6265": { "subject": "CS", "number": "6265", "name": "Information Security Lab ", - "description": "Computer systems and network vulnerabilities, information warfare, network and operating system security techniques, security analysis tools. Full Description " + "description": "Computer systems and network vulnerabilities, information warfare, network and operating system security techniques, security analysis tools." }, "CS6266": { "subject": "CS", "number": "6266", "name": "Info Security Practicum ", - "description": "Capstone independent study placing each student in a commercial, industrial, academic, or government setting where they must solve real-world security problems. Full Description " + "description": "Capstone independent study placing each student in a commercial, industrial, academic, or government setting where they must solve real-world security problems." }, "CS6269": { "subject": "CS", "number": "6269", "name": "Formal Info Assur Model ", - "description": "Logical foundations of high-assurance systems, formal models for access control, authentication, and trust; techniques for constructing high-assurance systems. Full Description " + "description": "Logical foundations of high-assurance systems, formal models for access control, authentication, and trust; techniques for constructing high-assurance systems." }, "CS6280": { "subject": "CS", "number": "6280", "name": "Eval Communication Nets ", - "description": "Methods for evaluating the performance of communication networks with emphasis on modeling, mathematical analysis, computer simulation, and measurement. Full Description " + "description": "Methods for evaluating the performance of communication networks with emphasis on modeling, mathematical analysis, computer simulation, and measurement." }, "CS6290": { "subject": "CS", "number": "6290", "name": "High Perform Comput Arch ", - "description": "Topics concerning very high-performance computers including techniques exploiting parallelism in single and multiple processor systems. Credit not allowed for both CS 6290 and any of the following courses: CS 4290, ECE 4100, ECE 6100. Full Description " + "description": "Topics concerning very high-performance computers including techniques exploiting parallelism in single and multiple processor systems. Credit not allowed for both CS 6290 and any of the following courses: CS 4290, ECE 4100, ECE 6100." }, "CS6300": { "subject": "CS", "number": "6300", "name": "Software Dev Process ", - "description": "The process of developing software systems. Includes development and assessment of processes, their instantiation in actual product development, and techniques ensuring quality of developed products. Full Description " + "description": "The process of developing software systems. Includes development and assessment of processes, their instantiation in actual product development, and techniques ensuring quality of developed products." }, "CS6310": { "subject": "CS", "number": "6310", "name": "Software Arch & Design ", - "description": "Principles and concepts involved in the design and analysis of large software systems. Full Description " + "description": "Principles and concepts involved in the design and analysis of large software systems." }, "CS6320": { "subject": "CS", "number": "6320", "name": "Requirements Analysis ", - "description": "Methods and principles for determining, documenting, analyzing, and formally specifying requirements for software systems. Full Description " + "description": "Methods and principles for determining, documenting, analyzing, and formally specifying requirements for software systems." }, "CS6330": { "subject": "CS", "number": "6330", "name": "Software Generation&Test ", - "description": "Introduction to methods and principles for programming, testing, and managing the evolution of software systems. Full Description " + "description": "Introduction to methods and principles for programming, testing, and managing the evolution of software systems." }, "CS6340": { "subject": "CS", "number": "6340", "name": "Software Analysis & Test ", - "description": "Fundamental prinicples and advanced techniques for static and dynamic program analysis and software testing. Software reliability, resilience, and trustworthiness. Full Description " + "description": "Fundamental prinicples and advanced techniques for static and dynamic program analysis and software testing. Software reliability, resilience, and trustworthiness." }, "CS6365": { "subject": "CS", "number": "6365", "name": "Intro Enterprise Comput. ", - "description": "Survey of basic software concepts and techniques used in mission-critical systems and applications, combined with in-depth study of fundamental principles underlying enterprise computing. Credit not allowed for both CS 6365 and CS 4365. Full Description " + "description": "Survey of basic software concepts and techniques used in mission-critical systems and applications, combined with in-depth study of fundamental principles underlying enterprise computing. Credit not allowed for both CS 6365 and CS 4365." }, "CS6390": { "subject": "CS", "number": "6390", "name": "Programming Languages ", - "description": "Design, structure, and goals of programming languages. Object-oriented, logic, functional, and traditional languages. Semantic models. Parallel programming languages. Full Description " + "description": "Design, structure, and goals of programming languages. Object-oriented, logic, functional, and traditional languages. Semantic models. Parallel programming languages." }, "CS6400": { "subject": "CS", "number": "6400", "name": "DB Sys Concepts& Design ", - "description": "Study of fundamental concepts with regard to relational databases. Topics covered include database design, query processing, concurrency control, and recovery. Credit not given for both CS 6400 and CS 6754. Full Description " + "description": "Study of fundamental concepts with regard to relational databases. Topics covered include database design, query processing, concurrency control, and recovery. Credit not given for both CS 6400 and CS 6754." }, "CS6402": { "subject": "CS", "number": "6402", "name": "Databases and Infosec ", - "description": "Fundamentals of designing and using databases: conceptual data models to database-specific models, SQL, storage structures. Security-related topics include privacy, access control, backup, recovery, SQL injection. Credit not allowed for both CS 6402 and CS 4400. Full Description " + "description": "Fundamentals of designing and using databases: conceptual data models to database-specific models, SQL, storage structures. Security-related topics include privacy, access control, backup, recovery, SQL injection. Credit not allowed for both CS 6402 and CS 4400." }, "CS6411": { "subject": "CS", "number": "6411", "name": "O-O Database Model & Sys ", - "description": "Study of advanced database concepts as they apply to object-oriented database systems. Topics include semantic data models, object-oriented query languages, tools, and applications. Full Description " + "description": "Study of advanced database concepts as they apply to object-oriented database systems. Topics include semantic data models, object-oriented query languages, tools, and applications." }, "CS6421": { "subject": "CS", "number": "6421", "name": "Tempor,Spatial&Active DB ", - "description": "Study of advanced database concepts for temporal databases with emphasis on storage structure, processing and query languages, as well as active database concepts and implementation. Full Description " + "description": "Study of advanced database concepts for temporal databases with emphasis on storage structure, processing and query languages, as well as active database concepts and implementation." }, "CS6422": { "subject": "CS", "number": "6422", "name": "Database System Implemnt ", - "description": "Design and implementatuion of a databse system covering: storage manager, query optimizer, transaction manager, and recovery manager. Study of the advantages of different implementation algorithms. Credit not allowed for both CS 6422 and CS 4420. Full Description " + "description": "Design and implementatuion of a databse system covering: storage manager, query optimizer, transaction manager, and recovery manager. Study of the advantages of different implementation algorithms. Credit not allowed for both CS 6422 and CS 4420." }, "CS6430": { "subject": "CS", "number": "6430", "name": "Parallel&Distributed DB ", - "description": "Study of algorithms and performance in advanced databases. Systems include parallel, distributed, and client-server databases. Applications include data mining and on-line analytical processing. Full Description " + "description": "Study of algorithms and performance in advanced databases. Systems include parallel, distributed, and client-server databases. Applications include data mining and on-line analytical processing." }, "CS6440": { "subject": "CS", "number": "6440", "name": "Intro Health Informatics ", - "description": "A broad review of the US health system and the application of informatics to the clinical practice of medicine, digital imaging, public health and bioinformatics. Full Description " + "description": "A broad review of the US health system and the application of informatics to the clinical practice of medicine, digital imaging, public health and bioinformatics." }, "CS6451": { "subject": "CS", "number": "6451", "name": "Human-Centered Computing ", - "description": "Introduction to the range of issues across the HCC disciplines, including design and research methodologies: cognitive, social, and cultural theories; assessment and evaluation: ethical issues. Full Description " + "description": "Introduction to the range of issues across the HCC disciplines, including design and research methodologies: cognitive, social, and cultural theories; assessment and evaluation: ethical issues." }, "CS6452": { "subject": "CS", "number": "6452", "name": "Prototyping Interact Sys ", - "description": "Introduction to design, prototyping and implementation of systems for human-centered computing. Focuses on core concepts in computer science and implications for interactive systems. Full Description " + "description": "Introduction to design, prototyping and implementation of systems for human-centered computing. Focuses on core concepts in computer science and implications for interactive systems." }, "CS6455": { "subject": "CS", "number": "6455", "name": "User Interface Dsgn&Eval ", - "description": "Examines usability in the software development process with an emphasis on usability, requirements, methodology, design, and evaluation. Full Description " + "description": "Examines usability in the software development process with an emphasis on usability, requirements, methodology, design, and evaluation." }, "CS6456": { "subject": "CS", "number": "6456", "name": "Principles-UI Software ", - "description": "Considers the architectural and algorithmic principles behind the implementation of interactive software systems and the tools that support them. Full Description " + "description": "Considers the architectural and algorithmic principles behind the implementation of interactive software systems and the tools that support them." }, "CS6457": { "subject": "CS", "number": "6457", "name": "Video Game Design ", - "description": "Techniques for electronic game design and programming, including graphics, game engines, animation, behavioral control for autonomous characters, interaction, social and interface issues of multi-user play. Credit not allowed for both CS 6457 and CS 4455. Full Description " + "description": "Techniques for electronic game design and programming, including graphics, game engines, animation, behavioral control for autonomous characters, interaction, social and interface issues of multi-user play. Credit not allowed for both CS 6457 and CS 4455." }, "CS6460": { "subject": "CS", "number": "6460", "name": "Educ Tech-Foundations ", - "description": "Introduction to educational technology, with an emphasis on theoretical foundations. Introduces basic philosophies, approaches, and technologies. Analyzes issues surrounding technology's impact on education. Full Description " + "description": "Introduction to educational technology, with an emphasis on theoretical foundations. Introduces basic philosophies, approaches, and technologies. Analyzes issues surrounding technology's impact on education." }, "CS6465": { "subject": "CS", "number": "6465", "name": "Computational Journalism ", - "description": "Technology is rapidly affecting how news information is gathered, reported, visualized, aggregated, summarized, distributed, and consumed. This class studies the computational technologies that impact journalism. Credit not allowed for both CS 6455 and CS 4464. Full Description " + "description": "Technology is rapidly affecting how news information is gathered, reported, visualized, aggregated, summarized, distributed, and consumed. This class studies the computational technologies that impact journalism. Credit not allowed for both CS 6455 and CS 4464." }, "CS6470": { "subject": "CS", "number": "6470", "name": "Online Communities ", - "description": "Introduction to the design of online communities. Students study an existing community in depth, and then develop a new community design. Credit not allowed for both CS 6470 and CS 4472. Full Description " + "description": "Introduction to the design of online communities. Students study an existing community in depth, and then develop a new community design. Credit not allowed for both CS 6470 and CS 4472." }, "CS6474": { "subject": "CS", "number": "6474", "name": "Social Computing ", - "description": "Design and prototype new social computing systems, as well as analyze social media data. Full Description " + "description": "Design and prototype new social computing systems, as well as analyze social media data." }, "CS6475": { "subject": "CS", "number": "6475", "name": "Comp. Photography ", - "description": "This class explores the impact of computation on the entire workflow of photography, from how light is captured by a camera, to how the images are processed, enhanced, and improved to generate novel photographs. Full Description " + "description": "This class explores the impact of computation on the entire workflow of photography, from how light is captured by a camera, to how the images are processed, enhanced, and improved to generate novel photographs." }, "CS6476": { "subject": "CS", "number": "6476", "name": "Computer Vision ", - "description": "Introduction to computer vision including fundamentals of image formation, camera imaging geometry, feature detection and matching, stereo, motion estimation and tracking, image classification and scene understanding. Credit not awarded for both CS 6476 and CS 4495 or CS 4476. Full Description " + "description": "Introduction to computer vision including fundamentals of image formation, camera imaging geometry, feature detection and matching, stereo, motion estimation and tracking, image classification and scene understanding. Credit not awarded for both CS 6476 and CS 4495 or CS 4476." }, "CS6480": { "subject": "CS", "number": "6480", "name": "Comp Visualiz Techniques ", - "description": "Principles, techniques, and practice in data, information, multivariate, and scientific visualization. Includes visualization methods, data structures, examples, and tools. Full Description " + "description": "Principles, techniques, and practice in data, information, multivariate, and scientific visualization. Includes visualization methods, data structures, examples, and tools." }, "CS6485": { "subject": "CS", "number": "6485", "name": "Visual Meth-Sci & Engr ", - "description": "Algorithms, software, and practical applications of visualization techniques in science, engineering, business, and medicine. Includes data structures, multivariate visualization, interactive visualization, and visual representations and examples. Computer science students cannot receive credit for this course. Full Description " + "description": "Algorithms, software, and practical applications of visualization techniques in science, engineering, business, and medicine. Includes data structures, multivariate visualization, interactive visualization, and visual representations and examples. Computer science students cannot receive credit for this course." }, "CS6491": { "subject": "CS", "number": "6491", "name": "Computer Graphics ", - "description": "Mathematical/physical/perceptual principles and modeling/rendering techniques used to create, represent, display, and animate models of 3D shapes and their properties. Full Description " + "description": "Mathematical/physical/perceptual principles and modeling/rendering techniques used to create, represent, display, and animate models of 3D shapes and their properties." }, "CS6505": { "subject": "CS", "number": "6505", "name": "Computability&Algorithms ", - "description": "Important concepts from computability theory; techniques for designing algorithms for combinatorial, algebraic, and number-theoretic problems; basic concepts such as NP-Completeness from computational complexity theory. Full Description " + "description": "Important concepts from computability theory; techniques for designing algorithms for combinatorial, algebraic, and number-theoretic problems; basic concepts such as NP-Completeness from computational complexity theory." }, "CS6520": { "subject": "CS", "number": "6520", "name": "Computational Complexity ", - "description": "Introduction to resource-bounded computations, central complexity-theoretic concepts such as complexity classes, reducibility, completeness, and intractability. Full Description " + "description": "Introduction to resource-bounded computations, central complexity-theoretic concepts such as complexity classes, reducibility, completeness, and intractability." }, "CS6550": { "subject": "CS", "number": "6550", "name": "Design& Analy-Algorithms ", - "description": "Advanced techniques for designing and analyzing efficient algorithms for combinatorial, algebraic, and number-theoretic problems. Credit not allowed for both CS 6550 and CS 4540. Full Description " + "description": "Advanced techniques for designing and analyzing efficient algorithms for combinatorial, algebraic, and number-theoretic problems. Credit not allowed for both CS 6550 and CS 4540." }, "CS6601": { "subject": "CS", "number": "6601", "name": "Artificial Intelligence ", - "description": "Basic concepts and methods of artificial intelligence including both symbolic/conceptual and numerical/probabilistic techniques. Full Description " + "description": "Basic concepts and methods of artificial intelligence including both symbolic/conceptual and numerical/probabilistic techniques." }, "CS6670": { "subject": "CS", "number": "6670", "name": "Distrib Cntrl Algorithms ", - "description": "Algorithms for synchronous, asynchronous, and partially synchronous networks; analysis, control, and implementation of distributed systems such as robot fleets, animal groups. Full Description " + "description": "Algorithms for synchronous, asynchronous, and partially synchronous networks; analysis, control, and implementation of distributed systems such as robot fleets, animal groups." }, "CS6675": { "subject": "CS", "number": "6675", "name": "Advance Internet Comput ", - "description": "Survey of basic Internet computing concepts and techniques used in Internet systems and applications, combined with in-depth study of fundamental principles underlying Internet computing. Credit not allowed for both CS 6675 and CS 4675. Full Description " + "description": "Survey of basic Internet computing concepts and techniques used in Internet systems and applications, combined with in-depth study of fundamental principles underlying Internet computing. Credit not allowed for both CS 6675 and CS 4675." }, "CS6705": { "subject": "CS", "number": "6705", "name": "Applications of AI ", - "description": "A study of the principles and practice of artificial intelligence in areas other than computer science, with particular focus on engineering, science, and business applications. Computer science majors cannot receive credit for this course. Full Description " + "description": "A study of the principles and practice of artificial intelligence in areas other than computer science, with particular focus on engineering, science, and business applications. Computer science majors cannot receive credit for this course." }, "CS6725": { "subject": "CS", "number": "6725", "name": "Info Security Policies ", - "description": "Information security vulnerabilities and risks; legal, cost, privacy, and technology constraints; derivation of strategies; technical and procedural means of achieving desired ends. Full Description " + "description": "Information security vulnerabilities and risks; legal, cost, privacy, and technology constraints; derivation of strategies; technical and procedural means of achieving desired ends." }, "CS6726": { "subject": "CS", "number": "6726", "name": "Privacy Tech Policy Law ", - "description": "This course takes a multi-disciplinary approach to privacy, a topic of great interest in the technology, policy, ethics, law, and business realms. Credit will not be awarded for both CS 6726 and CS 4726 or MGT 4726 or MGT 6726. Full Description " + "description": "This course takes a multi-disciplinary approach to privacy, a topic of great interest in the technology, policy, ethics, law, and business realms. Credit will not be awarded for both CS 6726 and CS 4726 or MGT 4726 or MGT 6726." }, "CS6750": { "subject": "CS", "number": "6750", "name": "Human-Computer Interact ", - "description": "Describes the characteristics of interaction between humans and computers and demonstrates techniques for the evaluation of user-centered systems. Crosslisted with PSYC 6750. Full Description " + "description": "Describes the characteristics of interaction between humans and computers and demonstrates techniques for the evaluation of user-centered systems. Crosslisted with PSYC 6750." }, "CS6753": { "subject": "CS", "number": "6753", "name": "HCI Prof Prep & Practice ", - "description": "Preparation for a professional career in HCI. Speakers. Atlanta-area lab visits. Career trajectories. Project presentations. Technical, resume and interviewing skills, Atlanta-area HCI resources. Credit not allowed for both CS 6753 and PSYC 6753 or LCC 6753. Full Description " + "description": "Preparation for a professional career in HCI. Speakers. Atlanta-area lab visits. Career trajectories. Project presentations. Technical, resume and interviewing skills, Atlanta-area HCI resources. Credit not allowed for both CS 6753 and PSYC 6753 or LCC 6753." }, "CS6754": { "subject": "CS", "number": "6754", "name": "Engr Database Mgt System ", - "description": "Modeling and managing engineering information systems, integration of design and manufacturing functions in engineering product development, logical models of engineering product and processes. Credit not given for CS 6400 and CS 6754. Crosslisted with ME 6754. Full Description " + "description": "Modeling and managing engineering information systems, integration of design and manufacturing functions in engineering product development, logical models of engineering product and processes. Credit not given for CS 6400 and CS 6754. Crosslisted with ME 6754." }, "CS6763": { "subject": "CS", "number": "6763", "name": "Design of Environments ", - "description": "Analysis of design processes; analysis of current design tools at both the user interface and functional levels; procedures for developing better design tools. Credit not allowed for both CS 6763 and ID 6763 or COA 6763. Full Description " + "description": "Analysis of design processes; analysis of current design tools at both the user interface and functional levels; procedures for developing better design tools. Credit not allowed for both CS 6763 and ID 6763 or COA 6763." }, "CS6764": { "subject": "CS", "number": "6764", "name": "Geometric Modeling ", - "description": "Software development course focusing on 3D geometric constructions and modeling; emphasizes solid modeling and its role in design. Crosslisted with COA 6764. Full Description " + "description": "Software development course focusing on 3D geometric constructions and modeling; emphasizes solid modeling and its role in design. Crosslisted with COA 6764." }, "CS6770": { "subject": "CS", "number": "6770", "name": "Mixed Reality Design ", - "description": "Introduction to the design of Mixed Reality experiences. Focuses on informal design, integration of media theory, HCI and technology issues. Significant group design projects. Full Description " + "description": "Introduction to the design of Mixed Reality experiences. Focuses on informal design, integration of media theory, HCI and technology issues. Significant group design projects." }, "CS6780": { "subject": "CS", "number": "6780", "name": "Medical Image Processing ", - "description": "A study of methods for enhancing, analyzing, interpreting, and visualizing information from two- and three-dimensional data obtained from a variety of medical image modalities. Crosslisted with ECE and BMED 6780. Full Description " + "description": "A study of methods for enhancing, analyzing, interpreting, and visualizing information from two- and three-dimensional data obtained from a variety of medical image modalities. Crosslisted with ECE and BMED 6780." }, "CS6795": { "subject": "CS", "number": "6795", "name": "Intro-Cognitive Science ", - "description": "Multidisciplinary perspectives on cognitive science. Interdisciplinary approaches to issues in cognition, including memory, language, problem solving, learning, perception, and action. Crosslisted with ISYE and PSYC 6795. Full Description " + "description": "Multidisciplinary perspectives on cognitive science. Interdisciplinary approaches to issues in cognition, including memory, language, problem solving, learning, perception, and action. Crosslisted with ISYE and PSYC 6795." }, "CS6998": { "subject": "CS", "number": "6998", "name": "HCI Master's Project ", - "description": " Full Description " + "description": "" }, "CS6999": { "subject": "CS", "number": "6999", "name": "Master's Project ", - "description": "Final project for students completing a master's degree in the College of Computing. Repeatable for multi-semester projects. Full Description " + "description": "Final project for students completing a master's degree in the College of Computing. Repeatable for multi-semester projects." }, "CS6XXX": { "subject": "CS", "number": "6XXX", "name": "Computer Sci Elective ", - "description": " Full Description " + "description": "" }, "CS7000": { "subject": "CS", "number": "7000", "name": "Master's Thesis ", - "description": " Full Description " + "description": "" }, "CS7001": { "subject": "CS", "number": "7001", "name": "Grad Studies-Computing ", - "description": "Research tools including computer systems, as well as fundamental problem-solving skills, are introduced. Lectures on current computing research are presented and projects are required. Credit not allowed in a program of study for a graduate degree. Full Description " + "description": "Research tools including computer systems, as well as fundamental problem-solving skills, are introduced. Lectures on current computing research are presented and projects are required. Credit not allowed in a program of study for a graduate degree." }, "CS7110": { "subject": "CS", "number": "7110", "name": "Parallel Computer Arch ", - "description": "Issues in the design, implementation, and programming of parallel machines. Credit not allowed for both CS 7110 and CS 4233. Full Description " + "description": "Issues in the design, implementation, and programming of parallel machines. Credit not allowed for both CS 7110 and CS 4233." }, "CS7210": { "subject": "CS", "number": "7210", "name": "Distributed Computing ", - "description": "Fundamental concepts in distributed systems, including global states, logical clocks, and failure models. Distributed algorithms and their implementations using advanced distributed programming systems. Full Description " + "description": "Fundamental concepts in distributed systems, including global states, logical clocks, and failure models. Distributed algorithms and their implementations using advanced distributed programming systems." }, "CS7230": { "subject": "CS", "number": "7230", "name": "Software Dsgn,Impl& Eval ", - "description": "Design, implementation, and evaluation of systems software. Distributed/parallel applications will be constructed and evaluated using the systems support that is developed. Full Description " + "description": "Design, implementation, and evaluation of systems software. Distributed/parallel applications will be constructed and evaluated using the systems support that is developed." }, "CS7250": { "subject": "CS", "number": "7250", "name": "Broadband Networking Sys ", - "description": "Focus on the data link layer and its relationship to layers below and above. Gigabit Ethernet, SONTET, fibre channel; media including wireless, satellite, xDSL, cable. Full Description " + "description": "Focus on the data link layer and its relationship to layers below and above. Gigabit Ethernet, SONTET, fibre channel; media including wireless, satellite, xDSL, cable." }, "CS7260": { "subject": "CS", "number": "7260", "name": "Internet Arch& Protocols ", - "description": "Detailed discussion of the problems and solution techniques that arise in internetworking. Topics include routing, addressing, quality of service, and security. Full Description " + "description": "Detailed discussion of the problems and solution techniques that arise in internetworking. Topics include routing, addressing, quality of service, and security." }, "CS7270": { "subject": "CS", "number": "7270", "name": "Networked Apps&Services ", - "description": "End-to-end functional building blocks and their use in adaptive and non-adaptive applications, including multimedia: coding, compression, security, directory services. Full Description " + "description": "End-to-end functional building blocks and their use in adaptive and non-adaptive applications, including multimedia: coding, compression, security, directory services." }, "CS7290": { "subject": "CS", "number": "7290", "name": "Adv. Microarchitecture ", - "description": "Low-level organization and hardware algorithms for the implementation of modern high-performance microprocessors including concept designs and real-world case studies. Full Description " + "description": "Low-level organization and hardware algorithms for the implementation of modern high-performance microprocessors including concept designs and real-world case studies." }, "CS7292": { "subject": "CS", "number": "7292", "name": "Reliable Secure Comparch ", - "description": "Hardware support for process isolation, virtualization, debugging, and protection from side-channel attacks. Faults and failures, error tolerance, error rate budgeting, lifetime realiability of devices. Full Description " + "description": "Hardware support for process isolation, virtualization, debugging, and protection from side-channel attacks. Faults and failures, error tolerance, error rate budgeting, lifetime realiability of devices." }, "CS7450": { "subject": "CS", "number": "7450", "name": "Inform Visualization ", - "description": "Study of computer visualization principles, techniques, and tools used for explaining and understanding symbolic, structured, and/or hierarchical information. Includes data and software visualization. Full Description " + "description": "Study of computer visualization principles, techniques, and tools used for explaining and understanding symbolic, structured, and/or hierarchical information. Includes data and software visualization." }, "CS7455": { "subject": "CS", "number": "7455", "name": "Issues/Human-Center Comp ", - "description": "In-depth focus on theoretical, methodological, conceptual, and technical issues across the HCC disciplines associated with humans (cognitive, biological, socio-cultural); design; ethics; and analysis and evaluation. Full Description " + "description": "In-depth focus on theoretical, methodological, conceptual, and technical issues across the HCC disciplines associated with humans (cognitive, biological, socio-cultural); design; ethics; and analysis and evaluation." }, "CS7460": { "subject": "CS", "number": "7460", "name": "Collaborative Computing ", - "description": "Introduction to computer-supported collaborative work, workflow automation, and meeting augmentation. The course deals with models, enabling technology, systems, and applications. Full Description " + "description": "Introduction to computer-supported collaborative work, workflow automation, and meeting augmentation. The course deals with models, enabling technology, systems, and applications." }, "CS7465": { "subject": "CS", "number": "7465", "name": "Edu Tech-Design and Eval ", - "description": "Intensive project class in which students design, implement, and evaluate a piece of educational technology, applying the theory learned in Educational Technology: Conceptual Foundations. Full Description " + "description": "Intensive project class in which students design, implement, and evaluate a piece of educational technology, applying the theory learned in Educational Technology: Conceptual Foundations." }, "CS7467": { "subject": "CS", "number": "7467", "name": "Comp Collaborative Learn ", - "description": "Computer-supported collaborative learning is the use of Internet-based technologies to support learning in social settings. Focus on issues of implementation and evaluation. Full Description " + "description": "Computer-supported collaborative learning is the use of Internet-based technologies to support learning in social settings. Focus on issues of implementation and evaluation." }, "CS7470": { "subject": "CS", "number": "7470", "name": "Ubiquitous Computing ", - "description": "Investigates the infrastructure required to develop mobile and ubiquitous computing applications and establishes major research themes and experimental practices. Full Description " + "description": "Investigates the infrastructure required to develop mobile and ubiquitous computing applications and establishes major research themes and experimental practices." }, "CS7476": { "subject": "CS", "number": "7476", "name": "Advanced Computer Vision ", - "description": "Advanced topics in computer vision, which includes a deep dive into both the theoretical foundations of computer vision to the practical issues of building real systems that use computer vision. Credit will not be awarded for CS 7476 and CS 7495. Full Description " + "description": "Advanced topics in computer vision, which includes a deep dive into both the theoretical foundations of computer vision to the practical issues of building real systems that use computer vision. Credit will not be awarded for CS 7476 and CS 7495." }, "CS7490": { "subject": "CS", "number": "7490", "name": "Adv Image Synthesis ", - "description": "Advanced techniques in realistic image synthesis based on the physics of light. Anti-aliasing, textures, surface reflectance, distribution ray tracing, volume rendering, radiosity, and image-based rendering. Full Description " + "description": "Advanced techniques in realistic image synthesis based on the physics of light. Anti-aliasing, textures, surface reflectance, distribution ray tracing, volume rendering, radiosity, and image-based rendering." }, "CS7491": { "subject": "CS", "number": "7491", "name": "3D Complexity ", - "description": "Multiresolution, compression, collision, morphing, visibility, and computational geometry techniques for accessing, rendering, and animating complex 3D models in engineering, scientific, business, or entertainment applications. Full Description " + "description": "Multiresolution, compression, collision, morphing, visibility, and computational geometry techniques for accessing, rendering, and animating complex 3D models in engineering, scientific, business, or entertainment applications." }, "CS7492": { "subject": "CS", "number": "7492", "name": "Simulation of Biology ", - "description": "Study different computer simulation methods for use in investigating biological systems, including bio-molecules, cells and full organisms. Full Description " + "description": "Study different computer simulation methods for use in investigating biological systems, including bio-molecules, cells and full organisms." }, "CS7495": { "subject": "CS", "number": "7495", "name": "Computer Vision ", - "description": "An introduction to computer vision and machine perception. An intensive study of the process of generating a symbolic description of the scene by interpretation of images(s). Credit will not be awarded for both CS 7495 and CS 7476. Full Description " + "description": "An introduction to computer vision and machine perception. An intensive study of the process of generating a symbolic description of the scene by interpretation of images(s). Credit will not be awarded for both CS 7495 and CS 7476." }, "CS7496": { "subject": "CS", "number": "7496", "name": "Computer Animation ", - "description": "Motion techniques for computer animation and interactive games (keyframing, procedural methods, motion capture, and simulation) and principles for storytelling, composition, lighting, and interactivity. Full Description " + "description": "Motion techniques for computer animation and interactive games (keyframing, procedural methods, motion capture, and simulation) and principles for storytelling, composition, lighting, and interactivity." }, "CS7497": { "subject": "CS", "number": "7497", "name": "Virtual Environments ", - "description": "An introduction to virtual reality and virtual environments. Issues covered will include VR technology, software design, 3D human-computer interaction, and applications for VR. Full Description " + "description": "An introduction to virtual reality and virtual environments. Issues covered will include VR technology, software design, 3D human-computer interaction, and applications for VR." }, "CS7499": { "subject": "CS", "number": "7499", "name": "3D Reconstruction ", - "description": "In this course we study the principles and algorithms underlying 3D Reconstruction and Mapping in Computer Vision, Robotics, and Augmented Reality. Full Description " + "description": "In this course we study the principles and algorithms underlying 3D Reconstruction and Mapping in Computer Vision, Robotics, and Augmented Reality." }, "CS7510": { "subject": "CS", "number": "7510", "name": "Graph Algorithm ", - "description": "Algorithms for graph problems such as maximum flow, matching, network reliability, minimum cuts, covering, coloring, planarity, shortest paths, and connectivity. Crosslisted with MATH 7510 and ISYE 7510. Full Description " + "description": "Algorithms for graph problems such as maximum flow, matching, network reliability, minimum cuts, covering, coloring, planarity, shortest paths, and connectivity. Crosslisted with MATH 7510 and ISYE 7510." }, "CS7520": { "subject": "CS", "number": "7520", "name": "Approximation Algorithms ", - "description": "Approximation algorithms for NP-hard optimization problems, design and analysis techniques for such algorithms. Credit not allowed for both CS 7520 and CS 4520. Full Description " + "description": "Approximation algorithms for NP-hard optimization problems, design and analysis techniques for such algorithms. Credit not allowed for both CS 7520 and CS 4520." }, "CS7525": { "subject": "CS", "number": "7525", "name": "Algorithmic Game Theory ", - "description": "Algorithmic aspects of game theory covering topics at the intersection of computer science, economics, and game theory with applications to domains such as internet. Full Description " + "description": "Algorithmic aspects of game theory covering topics at the intersection of computer science, economics, and game theory with applications to domains such as internet." }, "CS7530": { "subject": "CS", "number": "7530", "name": "Randomized Algorithms ", - "description": "Techniques for designing and analyzing randomized algorithms, derandomization techniques. Credit not allowed for both CS 7530 and CS 4530. Full Description " + "description": "Techniques for designing and analyzing randomized algorithms, derandomization techniques. Credit not allowed for both CS 7530 and CS 4530." }, "CS7535": { "subject": "CS", "number": "7535", "name": "Markov Chain Monte Carlo ", - "description": "This course studies Markov Chain Monte Carlo algorithms, widely-used in a variety of scientific fields, focusing on mathematical techniques for analyzing their convergence rates. Full Description " + "description": "This course studies Markov Chain Monte Carlo algorithms, widely-used in a variety of scientific fields, focusing on mathematical techniques for analyzing their convergence rates." }, "CS7540": { "subject": "CS", "number": "7540", "name": "Spectral Algorithms ", - "description": "Spectral methods mathematics and algorithmic insights driving applications with large data sets in domains such as web-search, information-retrieval, and medical diagnosis and prediction. Full Description " + "description": "Spectral methods mathematics and algorithmic insights driving applications with large data sets in domains such as web-search, information-retrieval, and medical diagnosis and prediction." }, "CS7545": { "subject": "CS", "number": "7545", "name": "Machine Learning Theory ", - "description": "This course provides a basic arsenal of powerful mathematical tools for the analysis of learning algorithms, focusing on both statistical and computational aspects. Full Description " + "description": "This course provides a basic arsenal of powerful mathematical tools for the analysis of learning algorithms, focusing on both statistical and computational aspects." }, "CS7560": { "subject": "CS", "number": "7560", "name": "Theory of Cryptography ", - "description": "One-way functions, pseudorandomness, public-key and identity-based cryptography, commitment and zero knowledge. Full Description " + "description": "One-way functions, pseudorandomness, public-key and identity-based cryptography, commitment and zero knowledge." }, "CS7610": { "subject": "CS", "number": "7610", "name": "Modeling and Design ", - "description": "Information-processing theories of modeling and design; topics include design decision making, problem solving and learning, and knowledge-based modeling and design. Full Description " + "description": "Information-processing theories of modeling and design; topics include design decision making, problem solving and learning, and knowledge-based modeling and design." }, "CS7611": { "subject": "CS", "number": "7611", "name": "AI Problem Solving ", - "description": "Basic concepts and methods of AI problem solving, knowledge representation, reasoning, and learning. Full Description " + "description": "Basic concepts and methods of AI problem solving, knowledge representation, reasoning, and learning." }, "CS7612": { "subject": "CS", "number": "7612", "name": "AI Planning ", - "description": "Symbolic numerical techniques that allow intelligent systems to decide how they should act in order to achieve their goals, including action and plan representation, plan synthesis and reasoning, analysis of planning algorithms, plan execution and monitoring, plan reuse and learning, and applications. Full Description " + "description": "Symbolic numerical techniques that allow intelligent systems to decide how they should act in order to achieve their goals, including action and plan representation, plan synthesis and reasoning, analysis of planning algorithms, plan execution and monitoring, plan reuse and learning, and applications." }, "CS7613": { "subject": "CS", "number": "7613", "name": "Knowledge Systems Engr ", - "description": "Techniques for constructing large knowledge-based systems. Advanced symbolic AI techniques. Constraint systems. Full Description " + "description": "Techniques for constructing large knowledge-based systems. Advanced symbolic AI techniques. Constraint systems." }, "CS7615": { "subject": "CS", "number": "7615", "name": "Knowledge Agents ", - "description": "Knowledge-based interactive systems, knowledge-based autonomous agents, agent architectures, learning and adaptation, agent evolution. Full Description " + "description": "Knowledge-based interactive systems, knowledge-based autonomous agents, agent architectures, learning and adaptation, agent evolution." }, "CS7616": { "subject": "CS", "number": "7616", "name": "Pattern Recognition ", - "description": "This course provides an introduction to the theory and practice of pattern recognition. It emphasizes unifying concepts and the analysis of real-world datasets. Full Description " + "description": "This course provides an introduction to the theory and practice of pattern recognition. It emphasizes unifying concepts and the analysis of real-world datasets." }, "CS7620": { "subject": "CS", "number": "7620", "name": "Case-Based Reasoning ", - "description": "Topics include case representation, indexing and retrieval, adaptation, interpretive CBR, the cognitive model that CBR implies, and its implications for creativity, decision aiding, and education. Credit not allowed for both CS 7620 and CS 4622. Full Description " + "description": "Topics include case representation, indexing and retrieval, adaptation, interpretive CBR, the cognitive model that CBR implies, and its implications for creativity, decision aiding, and education. Credit not allowed for both CS 7620 and CS 4622." }, "CS7630": { "subject": "CS", "number": "7630", "name": "Autonomous Robotics ", - "description": "The principles and practice of autonomous robotics including behavior-based design and architectures, adaptive learning and team behavior, and the role of perception within robotic systems. Full Description " + "description": "The principles and practice of autonomous robotics including behavior-based design and architectures, adaptive learning and team behavior, and the role of perception within robotic systems." }, "CS7631": { "subject": "CS", "number": "7631", "name": "Multi-Robot Systems ", - "description": "In-depth examination of the current research on multi-robot systems. Students develop and critically analyze a multi-robot system. Full Description " + "description": "In-depth examination of the current research on multi-robot systems. Students develop and critically analyze a multi-robot system." }, "CS7632": { "subject": "CS", "number": "7632", "name": "Game AI ", - "description": "An exploration of how artificial intelligence is used in modern digital computer games. Credit will not be awarded for CS 7632 and CS 4731, CS 7632 and LCC 4731 or CS 7632 and LMC 4731. Full Description " + "description": "An exploration of how artificial intelligence is used in modern digital computer games. Credit will not be awarded for CS 7632 and CS 4731, CS 7632 and LCC 4731 or CS 7632 and LMC 4731." }, "CS7633": { "subject": "CS", "number": "7633", "name": "Human-Robot Interaction ", - "description": "Survey of the state of the art in HRI research, introduction to statistical methods for HRI research, research project studio. Full Description " + "description": "Survey of the state of the art in HRI research, introduction to statistical methods for HRI research, research project studio." }, "CS7634": { "subject": "CS", "number": "7634", "name": "AI Storytell In Vir Wrld ", - "description": "An exploration of how artificial intelligence can enable us to use stories in virtual worlds for the purpose of entertaining, educatintg, and training human users. Full Description " + "description": "An exploration of how artificial intelligence can enable us to use stories in virtual worlds for the purpose of entertaining, educatintg, and training human users." }, "CS7636": { "subject": "CS", "number": "7636", "name": "Computational Perception ", - "description": "Study of statistical and algorithmic methods for sensing people using video and audio. Topics include face detection and recognition, figure tracking, and audio-visual sensing. Full Description " + "description": "Study of statistical and algorithmic methods for sensing people using video and audio. Topics include face detection and recognition, figure tracking, and audio-visual sensing." }, "CS7637": { "subject": "CS", "number": "7637", "name": "Knowledge-Based AI ", - "description": "Structured knowledge representation; knowledge-based methods of reasoning and learning; problem-solving, modeling and design. Full Description " + "description": "Structured knowledge representation; knowledge-based methods of reasoning and learning; problem-solving, modeling and design." }, "CS7640": { "subject": "CS", "number": "7640", "name": "Learning in Auton Agents ", - "description": "An in-depth look at agents that learn, including intelligent systems, robots, and humans. Design and implementation of computer models of learning and adaptation in autonomous intelligent agents. Full Description " + "description": "An in-depth look at agents that learn, including intelligent systems, robots, and humans. Design and implementation of computer models of learning and adaptation in autonomous intelligent agents." }, "CS7641": { "subject": "CS", "number": "7641", "name": "Machine Learning ", - "description": "Machine learning techniques and applications. Topics include foundational issues; inductive, analytical, numerical, and theoretical approaches; and real-world applications. Full Description " + "description": "Machine learning techniques and applications. Topics include foundational issues; inductive, analytical, numerical, and theoretical approaches; and real-world applications." }, "CS7645": { "subject": "CS", "number": "7645", "name": "Num Machine Learning ", - "description": "This course explores problems in classification/pattern recognition (OCR, speech, vision, fault detection, medical diagnosis), regression/function approximation, robot control, and reinforcement learning. Full Description " + "description": "This course explores problems in classification/pattern recognition (OCR, speech, vision, fault detection, medical diagnosis), regression/function approximation, robot control, and reinforcement learning." }, "CS7646": { "subject": "CS", "number": "7646", "name": "Mach Learn For Trading ", - "description": "Introduces machine learning based trading strategies. Topics: Information processing, probabilistic analysis, portfolio construction, generation of market orders, KNN, random forests. Full Description " + "description": "Introduces machine learning based trading strategies. Topics: Information processing, probabilistic analysis, portfolio construction, generation of market orders, KNN, random forests." }, "CS7649": { "subject": "CS", "number": "7649", "name": "Robot Intelli: Planning ", - "description": "We investigate algorithms for robots and complex systems that make intelligent decisions. Emphasis on the theoretical and empirical properties of classical, geometric, stochastic/dynamic planning. Full Description " + "description": "We investigate algorithms for robots and complex systems that make intelligent decisions. Emphasis on the theoretical and empirical properties of classical, geometric, stochastic/dynamic planning." }, "CS7650": { "subject": "CS", "number": "7650", "name": "Natural Language ", - "description": "Topics include lexical analysis, parsing, interpretation of sentences, semantic representation, organization of knowledge, inference mechanisms. Newer approaches combining statistical language processing and information retrieval techniques. Credit not allowed for both CS 7650 and CS 4650. Full Description " + "description": "Topics include lexical analysis, parsing, interpretation of sentences, semantic representation, organization of knowledge, inference mechanisms. Newer approaches combining statistical language processing and information retrieval techniques. Credit not allowed for both CS 7650 and CS 4650." }, "CS7695": { "subject": "CS", "number": "7695", "name": "Phil of Cognition ", - "description": "Examines problems in the foundations of cognition in relation to current issues in cognitive sciences. Topics include meaning, mental imagery, consciousness, and mind/body problem. Full Description " + "description": "Examines problems in the foundations of cognition in relation to current issues in cognitive sciences. Topics include meaning, mental imagery, consciousness, and mind/body problem." }, "CS7697": { "subject": "CS", "number": "7697", "name": "Cognitive Model Sci&Tech ", - "description": "Examines how models of reasoning and representation developed in the cognitive sciences can provide a basis for an enriched understanding of scientific theories and research practices in science and technology. Full Description " + "description": "Examines how models of reasoning and representation developed in the cognitive sciences can provide a basis for an enriched understanding of scientific theories and research practices in science and technology." }, "CS7785": { "subject": "CS", "number": "7785", "name": "Intro Robotics Research ", - "description": "Familiarizes students with the core areas of robotics; mechanics, control, perception, AI, and autonomy. Provides an introduction to the mathematical tools required in robotics research. Full Description " + "description": "Familiarizes students with the core areas of robotics; mechanics, control, perception, AI, and autonomy. Provides an introduction to the mathematical tools required in robotics research." }, "CS7790": { "subject": "CS", "number": "7790", "name": "Cognitive Modeling ", - "description": "A hands-on course covering a range of cognitive modeling methodologies. It explores the analysis, development, construction, and evaluation of models of cognitive processing. Crosslisted with ISYE and PSYC 7790. Full Description " + "description": "A hands-on course covering a range of cognitive modeling methodologies. It explores the analysis, development, construction, and evaluation of models of cognitive processing. Crosslisted with ISYE and PSYC 7790." }, "CS7999": { "subject": "CS", "number": "7999", "name": "Prep-Doctoral Qual Exams ", - "description": "Consent of the College required. Full Description " + "description": "Consent of the College required." }, "CS8001": { "subject": "CS", "number": "8001", "name": "Seminar ", - "description": "Group discussion of advanced topics in information and computer science. May not be used by computer science majors for degree credit. Full Description " + "description": "Group discussion of advanced topics in information and computer science. May not be used by computer science majors for degree credit." }, "CS8002": { "subject": "CS", "number": "8002", "name": "Seminar ", - "description": "Group discussion of advanced topics in information and computer science. May not be used by computer science majors for degree credit. Full Description " + "description": "Group discussion of advanced topics in information and computer science. May not be used by computer science majors for degree credit." }, "CS8003": { "subject": "CS", "number": "8003", "name": "Seminar ", - "description": "Group discussion of advanced topics in information and computer science. May not be used by computer science majors for degree credit. Full Description " + "description": "Group discussion of advanced topics in information and computer science. May not be used by computer science majors for degree credit." }, "CS8004": { "subject": "CS", "number": "8004", "name": "Seminar ", - "description": "Group discussion of advanced topics in information and computer science. May not be use by computer science majors for degree credit. Full Description " + "description": "Group discussion of advanced topics in information and computer science. May not be use by computer science majors for degree credit." }, "CS8005": { "subject": "CS", "number": "8005", "name": "Seminar ", - "description": "Group discussion of advanced topics in information and computer science. May not be used by computer science majors for degree credit. Full Description " + "description": "Group discussion of advanced topics in information and computer science. May not be used by computer science majors for degree credit." }, "CS8006": { "subject": "CS", "number": "8006", "name": "Seminar ", - "description": "Group discussion of advanced topics in information and computer science. May not be used by computer science majors for degree credit. Full Description " + "description": "Group discussion of advanced topics in information and computer science. May not be used by computer science majors for degree credit." }, "CS8030": { "subject": "CS", "number": "8030", "name": "Software Engr Seminar ", - "description": "This seminar provides students with an opportunity to explore contemporary topics in software engineering. Full Description " + "description": "This seminar provides students with an opportunity to explore contemporary topics in software engineering." }, "CS8750": { "subject": "CS", "number": "8750", "name": "Robotics Research Fnd I ", - "description": "Multidisciplinary research course supervised by two robotics faculty from different schools participating in the robotics Ph.D. program. Full Description " + "description": "Multidisciplinary research course supervised by two robotics faculty from different schools participating in the robotics Ph.D. program." }, "CS8751": { "subject": "CS", "number": "8751", "name": "Robotics Research Fnd II ", - "description": "Continuation of AE 8751 (Robotics Research Foundation I). Full Description " + "description": "Continuation of AE 8751 (Robotics Research Foundation I)." }, "CS8795": { "subject": "CS", "number": "8795", "name": "Colloquium-Cognitive Sci ", - "description": "Reading of research papers by leading cognitive scientists, attendance at their colloquia and meeting with them to discuss research. Crosslisted with ISYE and PSYC 8795. Full Description " + "description": "Reading of research papers by leading cognitive scientists, attendance at their colloquia and meeting with them to discuss research. Crosslisted with ISYE and PSYC 8795." }, "CS8801": { "subject": "CS", "number": "8801", "name": "Special Topics ", - "description": "Special topics of current interest. Treatment of new developments in various areas of computing. Full Description " + "description": "Special topics of current interest. Treatment of new developments in various areas of computing." }, "CS8802": { "subject": "CS", "number": "8802", "name": "Special Topics ", - "description": "Special topics of current interest. Treatment of new developments in various areas of computing. Full Description " + "description": "Special topics of current interest. Treatment of new developments in various areas of computing." }, "CS8803": { "subject": "CS", "number": "8803", "name": "Special Topics ", - "description": "Special topics of current interest. Treatment of new developments in various areas of computing. Full Description " + "description": "Special topics of current interest. Treatment of new developments in various areas of computing." }, "CS8804": { "subject": "CS", "number": "8804", "name": "Special Topics ", - "description": "Special topics of current interest. Treatment of new developments in various areas of computing. Full Description " + "description": "Special topics of current interest. Treatment of new developments in various areas of computing." }, "CS8805": { "subject": "CS", "number": "8805", "name": "Special Topics ", - "description": "Special topics of current interest. Treatment of new developments in various areas of computing. Full Description " + "description": "Special topics of current interest. Treatment of new developments in various areas of computing." }, "CS8806": { "subject": "CS", "number": "8806", "name": "Special Topics ", - "description": "Special topics of current interest. Treatment of new developments in various areas of computing. Full Description " + "description": "Special topics of current interest. Treatment of new developments in various areas of computing." }, "CS8893": { "subject": "CS", "number": "8893", "name": "Spec Top-Cognitive Sci ", - "description": "Topics of current interest in cognitive science. Full Description " + "description": "Topics of current interest in cognitive science." }, "CS8901": { "subject": "CS", "number": "8901", "name": "Special Problems ", - "description": "Small-group or individual investigation of advanced topics in computing. Guided study and research. Full Description " + "description": "Small-group or individual investigation of advanced topics in computing. Guided study and research." }, "CS8902": { "subject": "CS", "number": "8902", "name": "Special Problems ", - "description": "Small-group or individual investigation of advanced topics in computing. Guided study and research. Full Description " + "description": "Small-group or individual investigation of advanced topics in computing. Guided study and research." }, "CS8903": { "subject": "CS", "number": "8903", "name": "Special Problems ", - "description": "Small-group or individual investigation of advanced topics in computing. Guided study and research. Full Description " + "description": "Small-group or individual investigation of advanced topics in computing. Guided study and research." }, "CS8997": { "subject": "CS", "number": "8997", "name": "Teaching Assistantship ", - "description": "For graduate students holding graduate teaching assistantships. Full Description " + "description": "For graduate students holding graduate teaching assistantships." }, "CS8998": { "subject": "CS", "number": "8998", "name": "Research Assistantship ", - "description": "For graduate students holding graduate research assistantships. Full Description " + "description": "For graduate students holding graduate research assistantships." }, "CS8999": { "subject": "CS", "number": "8999", "name": "Doctoral Thesis Prep ", - "description": " Full Description " + "description": "" }, "CS9000": { "subject": "CS", "number": "9000", "name": "Doctoral Thesis ", - "description": " Full Description " + "description": "" }, "CSE6001": { "subject": "CSE", "number": "6001", "name": "Intro-Comp Sci & Engr ", - "description": "This course will introduce students to major research areas in computational science and engineering. Full Description " + "description": "This course will introduce students to major research areas in computational science and engineering." }, "CSE6010": { "subject": "CSE", "number": "6010", "name": "Computational Prob Solv ", - "description": "Computing principles, computer architecture, algorithms and data structure; software development, parallelism. No credit for graduate students or undergraduates in Computer Science or Computational Media. Full Description " + "description": "Computing principles, computer architecture, algorithms and data structure; software development, parallelism. No credit for graduate students or undergraduates in Computer Science or Computational Media." }, "CSE6040": { "subject": "CSE", "number": "6040", "name": "Computing for Data Analy ", - "description": "Computational techniques needed for data analysis; programming, accessing databases, multidimensional arrays, basic numerical computing, and visualization; hands-on applications and case studies. Credit is will not be awarded for both CSE 6040 and CX 4240. Full Description " + "description": "Computational techniques needed for data analysis; programming, accessing databases, multidimensional arrays, basic numerical computing, and visualization; hands-on applications and case studies. Credit is will not be awarded for both CSE 6040 and CX 4240." }, "CSE6140": { "subject": "CSE", "number": "6140", "name": "Comp Sci&Engr Algorithms ", - "description": "This course will introduce students to designing high-performance and scalable algorithms for computational science and engineering applications. The course focuses on algorithms design, complexity analysis, experimentation, and optimization, for important science and engineering applications. Full Description " + "description": "This course will introduce students to designing high-performance and scalable algorithms for computational science and engineering applications. The course focuses on algorithms design, complexity analysis, experimentation, and optimization, for important science and engineering applications." }, "CSE6141": { "subject": "CSE", "number": "6141", "name": "Massive Graph Analysis ", - "description": "Algorithms and data structures for massive graphs; programming, parallelism; principles, challenges, opportunities in graph analysis; hands-on application, case studies. Full Description " + "description": "Algorithms and data structures for massive graphs; programming, parallelism; principles, challenges, opportunities in graph analysis; hands-on application, case studies." }, "CSE6220": { "subject": "CSE", "number": "6220", "name": "High Perform Computing ", - "description": "This course will introduce students to the design, analysis, and implementation of high performance computational science and engineering applications. Full Description " + "description": "This course will introduce students to the design, analysis, and implementation of high performance computational science and engineering applications." }, "CSE6221": { "subject": "CSE", "number": "6221", "name": "Multicore Computing ", - "description": "This course will introduce students to the design and analysis of real-world algorithms on multicore computers. Full Description " + "description": "This course will introduce students to the design and analysis of real-world algorithms on multicore computers." }, "CSE6230": { "subject": "CSE", "number": "6230", "name": "High Perf Parallel Comp ", - "description": "Introduction to MIMD parallel computation, using textbook excerpts, resesarch papers, and projects on multiple parallel machines. Emphasizes practical issues in high-performance computing. Full Description " + "description": "Introduction to MIMD parallel computation, using textbook excerpts, resesarch papers, and projects on multiple parallel machines. Emphasizes practical issues in high-performance computing." }, "CSE6236": { "subject": "CSE", "number": "6236", "name": "Parallel&Distributed Sim ", - "description": "Algorithms and techniques used in parallel/distributed discrete event simulation systems. Synchronization algorithms, data distribution, applications to high performance analytic simulations and distributed virtual environments. Full Description " + "description": "Algorithms and techniques used in parallel/distributed discrete event simulation systems. Synchronization algorithms, data distribution, applications to high performance analytic simulations and distributed virtual environments." }, "CSE6240": { "subject": "CSE", "number": "6240", "name": "Web Search & Text Mining ", - "description": "Basic and advanced methods for Web information retrieval and text mining: indexing and crawling, IR models, link and click data, social search, text classification and clustering. Full Description " + "description": "Basic and advanced methods for Web information retrieval and text mining: indexing and crawling, IR models, link and click data, social search, text classification and clustering." }, "CSE6241": { "subject": "CSE", "number": "6241", "name": "Pattern Matching ", - "description": "Foundations and algorithms underlying the development and application of tools for the efficient searching, matching and discovery of discrete. Full Description " + "description": "Foundations and algorithms underlying the development and application of tools for the efficient searching, matching and discovery of discrete." }, "CSE6242": { "subject": "CSE", "number": "6242", "name": "Data & Visual Analytics ", - "description": "The course introduces students to analysis and visualization of complex high dimensional data. Both theory and applications will be covered including several practical case studies. Full Description " + "description": "The course introduces students to analysis and visualization of complex high dimensional data. Both theory and applications will be covered including several practical case studies." }, "CSE6243": { "subject": "CSE", "number": "6243", "name": "Adv Top Machine Learning ", - "description": "Advanced machine learning topics including graphical models, kernel methods, boosting, bagging, semi-supervised and active learning, and tensor approach to data analysis. Full Description " + "description": "Advanced machine learning topics including graphical models, kernel methods, boosting, bagging, semi-supervised and active learning, and tensor approach to data analysis." }, "CSE6301": { "subject": "CSE", "number": "6301", "name": "Algor-Bioinfor&Comp Biol ", - "description": "Foundations and algorithms underlying the development and application of tools for the efficient management and processing of biomolecular data. Full Description " + "description": "Foundations and algorithms underlying the development and application of tools for the efficient management and processing of biomolecular data." }, "CSE6643": { "subject": "CSE", "number": "6643", "name": "Numerical Linear Algebra ", - "description": "Introduction to numerical solutions of the classical problems of linear algebra including linear systems, least squares, singular value decomposition, and eigen value problems. Crosslisted with MATH 6643. Full Description " + "description": "Introduction to numerical solutions of the classical problems of linear algebra including linear systems, least squares, singular value decomposition, and eigen value problems. Crosslisted with MATH 6643." }, "CSE6644": { "subject": "CSE", "number": "6644", "name": "Iterative Meth-Sys Eqns ", - "description": "Iterative methods for linear and nonlinear systems of equations including Jacobi, G-S, SOR, CG, multigrid, Newton, quasi-Newton, updating, and gradient based methods. Crosslisted with MATH 6644. Full Description " + "description": "Iterative methods for linear and nonlinear systems of equations including Jacobi, G-S, SOR, CG, multigrid, Newton, quasi-Newton, updating, and gradient based methods. Crosslisted with MATH 6644." }, "CSE6710": { "subject": "CSE", "number": "6710", "name": "Numerical Methods-CSE I ", - "description": "Introduction to numerical algorithms widely used in computational science and engineering. Numerical linear algebra, linear programming, and applications. Crosslisted with MATH 6710. Full Description " + "description": "Introduction to numerical algorithms widely used in computational science and engineering. Numerical linear algebra, linear programming, and applications. Crosslisted with MATH 6710." }, "CSE6711": { "subject": "CSE", "number": "6711", "name": "Numerical Methods-CSE II ", - "description": "Efficient numerical techniques for solving partial differential equations and large-scale systems of equations arising from discretization of partial differential equations or variational problems in applications in science and engineering. Crosslisted with MATH 6711. Full Description " + "description": "Efficient numerical techniques for solving partial differential equations and large-scale systems of equations arising from discretization of partial differential equations or variational problems in applications in science and engineering. Crosslisted with MATH 6711." }, "CSE6730": { "subject": "CSE", "number": "6730", "name": "Model&Sim:Found&Implemen ", - "description": "Foundations and algorithms concerning the development of conceptual models for systems, and their realization in the form of computer software; discrete and continuous models. Crosslisted with ECE 6730. Full Description " + "description": "Foundations and algorithms concerning the development of conceptual models for systems, and their realization in the form of computer software; discrete and continuous models. Crosslisted with ECE 6730." }, "CSE6740": { "subject": "CSE", "number": "6740", "name": "Computational Data Analy ", - "description": "Theoretical/computational foundations of analyzing large/complex modern datasets, including the fundamental concepts of machine learning and data mining needed for both resesarch and practice. Crosslisted with ISYE 6740. Full Description " + "description": "Theoretical/computational foundations of analyzing large/complex modern datasets, including the fundamental concepts of machine learning and data mining needed for both resesarch and practice. Crosslisted with ISYE 6740." }, "CSE6742": { "subject": "CSE", "number": "6742", "name": "Mod, Sim&Military Gaming ", - "description": "Focuses on the creation and use of modeling and simulation tools to analyze and train students regarding strategic events in international relations. Crosslisted with INTA 6742. Full Description " + "description": "Focuses on the creation and use of modeling and simulation tools to analyze and train students regarding strategic events in international relations. Crosslisted with INTA 6742." }, "CSE7000": { "subject": "CSE", "number": "7000", "name": "Master's Thesis ", - "description": " Full Description " + "description": "" }, "CSE7999": { "subject": "CSE", "number": "7999", "name": "Prep-Doctoral Qual Exams ", - "description": " Full Description " + "description": "" }, "CSE8001": { "subject": "CSE", "number": "8001", "name": "Comp, Sci & Engr Seminar ", - "description": "Group discussion concerning advanced topics in Computational Science and Engineering. Full Description " + "description": "Group discussion concerning advanced topics in Computational Science and Engineering." }, "CSE8002": { "subject": "CSE", "number": "8002", "name": "Comp, Sci & Engr Seminar ", - "description": "Group discussion concerning advanced topics in Computational Science and Engineering. Full Description " + "description": "Group discussion concerning advanced topics in Computational Science and Engineering." }, "CSE8003": { "subject": "CSE", "number": "8003", "name": "Comp, Sci & Engr Seminar ", - "description": "Group discussion concerning advanced topics in Computational Science and Engineering. Full Description " + "description": "Group discussion concerning advanced topics in Computational Science and Engineering." }, "CSE8004": { "subject": "CSE", "number": "8004", "name": "Comp, Sci & Engr Seminar ", - "description": "Group discussion concerning advanced topics in Computational Science and Engineering. Full Description " + "description": "Group discussion concerning advanced topics in Computational Science and Engineering." }, "CSE8005": { "subject": "CSE", "number": "8005", "name": "Comp, Sci & Engr Seminar ", - "description": "Group discussion concerning advanced topics in Computational Science and Engineering. Full Description " + "description": "Group discussion concerning advanced topics in Computational Science and Engineering." }, "CSE8801": { "subject": "CSE", "number": "8801", "name": "Special Topics ", - "description": "Topics of current interest in Computational Science and Engineering. Full Description " + "description": "Topics of current interest in Computational Science and Engineering." }, "CSE8802": { "subject": "CSE", "number": "8802", "name": "Special Topics ", - "description": "Topics of current interest in Computational Science and Engineering. Full Description " + "description": "Topics of current interest in Computational Science and Engineering." }, "CSE8803": { "subject": "CSE", "number": "8803", "name": "Special Topics ", - "description": "Topics of current interest in Computational Science and Engineering. Full Description " + "description": "Topics of current interest in Computational Science and Engineering." }, "CSE8804": { "subject": "CSE", "number": "8804", "name": "Special Topics ", - "description": "Topics of current interest in Computational Science and Engineering. Full Description " + "description": "Topics of current interest in Computational Science and Engineering." }, "CSE8805": { "subject": "CSE", "number": "8805", "name": "Special Topics ", - "description": "Topics of current interest in Computational Science and Engineering. Full Description " + "description": "Topics of current interest in Computational Science and Engineering." }, "CSE8901": { "subject": "CSE", "number": "8901", "name": "Special Problems ", - "description": "Small-group or individual investigation of advanced topics with a faculty member. Full Description " + "description": "Small-group or individual investigation of advanced topics with a faculty member." }, "CSE8902": { "subject": "CSE", "number": "8902", "name": "Special Problems ", - "description": "Small-group or individual investigation of advanced topics with a faculty member. Full Description " + "description": "Small-group or individual investigation of advanced topics with a faculty member." }, "CSE8903": { "subject": "CSE", "number": "8903", "name": "Special Problems ", - "description": "Small-group or individual investigation of advanced topics with a faculty member. Full Description " + "description": "Small-group or individual investigation of advanced topics with a faculty member." }, "CSE8997": { "subject": "CSE", "number": "8997", "name": "Teaching Assistantship ", - "description": "For students holding graduate teaching assistantships. Full Description " + "description": "For students holding graduate teaching assistantships." }, "CSE8998": { "subject": "CSE", "number": "8998", "name": "Research Assistantship ", - "description": "For students holding graduate research assistantships. Full Description " + "description": "For students holding graduate research assistantships." }, "CSE8999": { "subject": "CSE", "number": "8999", "name": "Doctoral Thesis Prep ", - "description": " Full Description " + "description": "" }, "CSE9000": { "subject": "CSE", "number": "9000", "name": "Doctoral Thesis ", - "description": " Full Description " + "description": "" }, "CX1801": { "subject": "CX", "number": "1801", "name": "Special Topics ", - "description": "Course topics will vary. This course number will use to prototype new courses and/or offer courses on topics of timely interest. The final digit in the course number indicates the number of units offered awarded for the course. Full Description " + "description": "Course topics will vary. This course number will use to prototype new courses and/or offer courses on topics of timely interest. The final digit in the course number indicates the number of units offered awarded for the course." }, "CX1802": { "subject": "CX", "number": "1802", "name": "Special Topics ", - "description": "Course topics will vary. This course number will be to prototype new courses and/or offer courses on topics of timely interest. The final digit in the course number indicates the number of units offered awarded for the course. Full Description " + "description": "Course topics will vary. This course number will be to prototype new courses and/or offer courses on topics of timely interest. The final digit in the course number indicates the number of units offered awarded for the course." }, "CX1803": { "subject": "CX", "number": "1803", "name": "Special Topics ", - "description": "Course topics will vary. This course number will be used to prototype new courses and/or offer courses on topics of timely interest. The final digit in the course number indicates the number of units offered awarded for the course. Full Description " + "description": "Course topics will vary. This course number will be used to prototype new courses and/or offer courses on topics of timely interest. The final digit in the course number indicates the number of units offered awarded for the course." }, "CX1804": { "subject": "CX", "number": "1804", "name": "Special Topics ", - "description": "Course topics will vary. This course number will be used to prototype new courses and/or offer courses on topics of timely interest. The final digit in the course number indicates the number of units offered awarded for the course. Full Description " + "description": "Course topics will vary. This course number will be used to prototype new courses and/or offer courses on topics of timely interest. The final digit in the course number indicates the number of units offered awarded for the course." }, "CX1805": { "subject": "CX", "number": "1805", "name": "Special Topics ", - "description": "Course topics will vary. This course number will be used to prototype new courses and/or offer courses on topics of timely interest. The final digit in the course number indicates the number of units offered awarded for the course. Full Description " + "description": "Course topics will vary. This course number will be used to prototype new courses and/or offer courses on topics of timely interest. The final digit in the course number indicates the number of units offered awarded for the course." }, "CX2801": { "subject": "CX", "number": "2801", "name": "Special Topics ", - "description": "Course topics will vary. This course number will be used to prototype new courses and/or offer courses on topics of timely interest. The final digit in the course number indicates the number of units offered awarded for the course. Full Description " + "description": "Course topics will vary. This course number will be used to prototype new courses and/or offer courses on topics of timely interest. The final digit in the course number indicates the number of units offered awarded for the course." }, "CX2802": { "subject": "CX", "number": "2802", "name": "Special Topics ", - "description": "Course topics will vary. This course number will be used to prototype new courses and/or offer courses on topics of timely interest. The final digit in the course number indicates the number of units offered awarded for the course. Full Description " + "description": "Course topics will vary. This course number will be used to prototype new courses and/or offer courses on topics of timely interest. The final digit in the course number indicates the number of units offered awarded for the course." }, "CX2803": { "subject": "CX", "number": "2803", "name": "Special Topics ", - "description": "Course topics will vary. This course number will be used to prototype new courses and/or offer courses on topics of timely interest. The final digit in the course number indicates the number of units offered awarded for the course. Full Description " + "description": "Course topics will vary. This course number will be used to prototype new courses and/or offer courses on topics of timely interest. The final digit in the course number indicates the number of units offered awarded for the course." }, "CX2804": { "subject": "CX", "number": "2804", "name": "Special Topics ", - "description": "Course topics will vary. This course number will be used to prototype new courses and/or offer courses on topics of a timely interest. The final digit in the course number indicates the number of units offered awarded for the course. Full Description " + "description": "Course topics will vary. This course number will be used to prototype new courses and/or offer courses on topics of a timely interest. The final digit in the course number indicates the number of units offered awarded for the course." }, "CX2805": { "subject": "CX", "number": "2805", "name": "Special Topics ", - "description": "Course topics will vary. This course number will be used to prototype new courses and/or offer courses on topics of timely interest. The final digit in the course number indicates the number of units offered awarded for the course. Full Description " + "description": "Course topics will vary. This course number will be used to prototype new courses and/or offer courses on topics of timely interest. The final digit in the course number indicates the number of units offered awarded for the course." }, "CX3801": { "subject": "CX", "number": "3801", "name": "Special Topics ", - "description": "Course topics will vary. This course number will be used to prototype new courses and/or offer courses on topics of timely interest. The final digit in the course number indicates the number of units offered awarded for the course. Full Description " + "description": "Course topics will vary. This course number will be used to prototype new courses and/or offer courses on topics of timely interest. The final digit in the course number indicates the number of units offered awarded for the course." }, "CX3802": { "subject": "CX", "number": "3802", "name": "Special Topics ", - "description": "Course topics will vary. This course number will be used to prototype new courses and/or offer on topics of timely interest. The final digit in the course number indicates the number of units offered awarded for the course. Full Description " + "description": "Course topics will vary. This course number will be used to prototype new courses and/or offer on topics of timely interest. The final digit in the course number indicates the number of units offered awarded for the course." }, "CX3803": { "subject": "CX", "number": "3803", "name": "Special Topics ", - "description": "Course topics will vary. This course number will be used to prototype new courses and/or offer courses on topics of timely interest. The final digit in the course number indicates the number of units offered awarded for the course. Full Description " + "description": "Course topics will vary. This course number will be used to prototype new courses and/or offer courses on topics of timely interest. The final digit in the course number indicates the number of units offered awarded for the course." }, "CX3804": { "subject": "CX", "number": "3804", "name": "Special Topics ", - "description": "Course topics will vary. This course number will be used to prototype new courses and/or offer courses on topics of timely interest. The final digit in the course number indicates the number of units offered awarded for the course. Full Description " + "description": "Course topics will vary. This course number will be used to prototype new courses and/or offer courses on topics of timely interest. The final digit in the course number indicates the number of units offered awarded for the course." }, "CX3805": { "subject": "CX", "number": "3805", "name": "Special Topics ", - "description": "Course topics will vary. This course number will be used to prototype new courses and/or offer courses on topics of timely interest. The final digit in the course number indicates the number of units offered awarded for the course. Full Description " + "description": "Course topics will vary. This course number will be used to prototype new courses and/or offer courses on topics of timely interest. The final digit in the course number indicates the number of units offered awarded for the course." }, "CX4010": { "subject": "CX", "number": "4010", "name": "Computational Prob Solv ", - "description": "Computing principles, computer archietecture, algorithms and data structures; software development, parallelism. No credit for graduate students or undergraduates in Computer Science or Computational Media. Full Description " + "description": "Computing principles, computer archietecture, algorithms and data structures; software development, parallelism. No credit for graduate students or undergraduates in Computer Science or Computational Media." }, "CX4140": { "subject": "CX", "number": "4140", "name": "Comp Model Algorithms ", - "description": "Design, analysis and implementation of algorithms for modeling natural and engineered systems; algorithm experimentation, and optimization. Full Description " + "description": "Design, analysis and implementation of algorithms for modeling natural and engineered systems; algorithm experimentation, and optimization." }, "CX4220": { "subject": "CX", "number": "4220", "name": "Intro High Perf Comp ", - "description": "Design of algorithms and software for high performance computing platforms used in computational science and engineering. Topics include parallelism, locality, machine architectures, and programming. Full Description " + "description": "Design of algorithms and software for high performance computing platforms used in computational science and engineering. Topics include parallelism, locality, machine architectures, and programming." }, "CX4230": { "subject": "CX", "number": "4230", "name": "Computer Simulation ", - "description": "Algorithms and techniques for creating computer simulations and their realization in software. Full Description " + "description": "Algorithms and techniques for creating computer simulations and their realization in software." }, "CX4232": { "subject": "CX", "number": "4232", "name": "SIM & Military Gaming ", - "description": "Creation and use of modeling and simulation tools to analyze and train students regarding strategic events in international relations. Full Description " + "description": "Creation and use of modeling and simulation tools to analyze and train students regarding strategic events in international relations." }, "CX4236": { "subject": "CX", "number": "4236", "name": "Distributed Simulation ", - "description": "Algorithms and techniques used to execute simulations on parallel/distributed computing platforms. Simulations for analysis, virtual environments, and computer gaming. Full Description " + "description": "Algorithms and techniques used to execute simulations on parallel/distributed computing platforms. Simulations for analysis, virtual environments, and computer gaming." }, "CX4240": { "subject": "CX", "number": "4240", "name": "Computing for Data Analy ", - "description": "Computational techniques needed for data analysis; programming, accessing databases, multidimensional arrays, basic numerical computing, and visualization; hands-on applications and case studies. Full Description " + "description": "Computational techniques needed for data analysis; programming, accessing databases, multidimensional arrays, basic numerical computing, and visualization; hands-on applications and case studies." }, "CX4242": { "subject": "CX", "number": "4242", "name": "Data & Visual Analytics ", - "description": "Introduction to the analysis of complex data; theory, applications and practical case studies. Full Description " + "description": "Introduction to the analysis of complex data; theory, applications and practical case studies." }, "CX4640": { "subject": "CX", "number": "4640", "name": "Numerical Analysis I ", - "description": "Introduction to numerical algorithms for some basic problems in computational mathematics. Discussion of both implementation issues and error analysis. Full Description " + "description": "Introduction to numerical algorithms for some basic problems in computational mathematics. Discussion of both implementation issues and error analysis." }, "CX4641": { "subject": "CX", "number": "4641", "name": "Numerical Analysis II ", - "description": "Introduction to the numerical solution of initial and boundary value problems in differential equations. Full Description " + "description": "Introduction to the numerical solution of initial and boundary value problems in differential equations." }, "CX4777": { "subject": "CX", "number": "4777", "name": "Vector&Parallel Sci Comp ", - "description": "Scientific computational algorithms on vector and parallel computers. Speed-up and algorithm complexity, interprocess communication, synchronization, modern algorithms for linear systems, programming techniques, code optimization. Full Description " + "description": "Scientific computational algorithms on vector and parallel computers. Speed-up and algorithm complexity, interprocess communication, synchronization, modern algorithms for linear systems, programming techniques, code optimization." }, "CX4801": { "subject": "CX", "number": "4801", "name": "Special Topics ", - "description": "Course topics will vary. This course number will be used to prototype new courses and/or offer courses on topics of timely interest. The final digit in the course number indicates the number of units offered awarded for the course. Full Description " + "description": "Course topics will vary. This course number will be used to prototype new courses and/or offer courses on topics of timely interest. The final digit in the course number indicates the number of units offered awarded for the course." }, "CX4802": { "subject": "CX", "number": "4802", "name": "Special Topics ", - "description": "Course topics will vary. This course number will be used to prototype new courses and/or offer courses on topics of timely interest. The final digit in the course number indicates the number of units offered awarded for the course. Full Description " + "description": "Course topics will vary. This course number will be used to prototype new courses and/or offer courses on topics of timely interest. The final digit in the course number indicates the number of units offered awarded for the course." }, "CX4803": { "subject": "CX", "number": "4803", "name": "Special Topics ", - "description": "Course topics will vary. This course number will be used to prototype new courses and/or offer courses on topics of timely interest. The final digit in the course number indicates the number of units offered awarded for the course. Full Description " + "description": "Course topics will vary. This course number will be used to prototype new courses and/or offer courses on topics of timely interest. The final digit in the course number indicates the number of units offered awarded for the course." }, "CX4804": { "subject": "CX", "number": "4804", "name": "Special Topics ", - "description": "Course topics will vary. This course number will be used to prototype new courses and/or offer courses on topics of timely interest. The final digit in the course number indicates the number of units offered awarded for the course. Full Description " + "description": "Course topics will vary. This course number will be used to prototype new courses and/or offer courses on topics of timely interest. The final digit in the course number indicates the number of units offered awarded for the course." }, "CX4805": { "subject": "CX", "number": "4805", "name": "Special Topics ", - "description": "Course topics will vary. This course number will be used to prototype new courses and/or offer courses on topics of timely interest. The final digit in the course number indicates the number of units offered awarded for the course. Full Description " + "description": "Course topics will vary. This course number will be used to prototype new courses and/or offer courses on topics of timely interest. The final digit in the course number indicates the number of units offered awarded for the course." }, "CX4903": { "subject": "CX", "number": "4903", "name": "Special Problems ", - "description": "An investigation of significant areas of computational science and engineering. Guided study and research. Full Description " + "description": "An investigation of significant areas of computational science and engineering. Guided study and research." }, "DOPP2001": { "subject": "DOPP", "number": "2001", "name": "Prep for Work in Glo Ec ", - "description": "Preparation for work in a global economy. May be used as free elective credit with departmental approval. Full Description " + "description": "Preparation for work in a global economy. May be used as free elective credit with departmental approval." }, "EAS1600": { "subject": "EAS", "number": "1600", "name": "Intro-Environmental Sci ", - "description": "Introduction to environmental field science. Case study approach. Exposure to basic field equipment and techniques, analysis of data. Full Description " + "description": "Introduction to environmental field science. Case study approach. Exposure to basic field equipment and techniques, analysis of data." }, "EAS1601": { "subject": "EAS", "number": "1601", "name": "Habitable Planet ", - "description": "Introduction to the origin and evolution of Planet Earth, creation of the universe and the elements, early history of Earth, radioisotope geochemistry and the timing of events in the universe, the galaxy, and on Earth. Formation of the atmosphere and oceans. Climate. Full Description " + "description": "Introduction to the origin and evolution of Planet Earth, creation of the universe and the elements, early history of Earth, radioisotope geochemistry and the timing of events in the universe, the galaxy, and on Earth. Formation of the atmosphere and oceans. Climate." }, "EAS1XXX": { "subject": "EAS", "number": "1XXX", "name": "Earth&Atmos Sci Elective ", - "description": " Full Description " + "description": "" }, "EAS2420": { "subject": "EAS", "number": "2420", "name": "Environmental Measures ", - "description": "Identify and quantify nature's physical and chemical contributions to human-made urban environments, and measure the impacts of urban area feedback on these natural systems. Full Description " + "description": "Identify and quantify nature's physical and chemical contributions to human-made urban environments, and measure the impacts of urban area feedback on these natural systems." }, "EAS2551": { "subject": "EAS", "number": "2551", "name": "Intro Met Analysis ", - "description": "An introduction to analysis of forecasting data and moel output. Full Description " + "description": "An introduction to analysis of forecasting data and moel output." }, "EAS2600": { "subject": "EAS", "number": "2600", "name": "Earth Processes ", - "description": "An introduction to earth materials and processes. Full Description " + "description": "An introduction to earth materials and processes." }, "EAS2602": { "subject": "EAS", "number": "2602", "name": "Earth Through Time ", - "description": "Dynamic processes affecting the Earth system on all time scales. Full Description " + "description": "Dynamic processes affecting the Earth system on all time scales." }, "EAS2655": { "subject": "EAS", "number": "2655", "name": "Quantitative Techniques ", - "description": "Integrated course in mathematical, physical, and computing techniques for applications in earth and atmospheric sciences. Full Description " + "description": "Integrated course in mathematical, physical, and computing techniques for applications in earth and atmospheric sciences." }, "EAS2698": { "subject": "EAS", "number": "2698", "name": "Research Assistantship ", - "description": " Full Description " + "description": "" }, "EAS2699": { "subject": "EAS", "number": "2699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "EAS2750": { "subject": "EAS", "number": "2750", "name": "Physics of the Weather ", - "description": "An introductory treatment of the application of the basic physical laws to the understanding of weather phenomena. Crosslisted with PHYS 2750. Full Description " + "description": "An introductory treatment of the application of the basic physical laws to the understanding of weather phenomena. Crosslisted with PHYS 2750." }, "EAS2801": { "subject": "EAS", "number": "2801", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "EAS2802": { "subject": "EAS", "number": "2802", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "EAS2803": { "subject": "EAS", "number": "2803", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "EAS2804": { "subject": "EAS", "number": "2804", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "EAS2900": { "subject": "EAS", "number": "2900", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "EAS2XXX": { "subject": "EAS", "number": "2XXX", "name": "Earth&Atmos Sci Elective ", - "description": " Full Description " + "description": "" }, "EAS3110": { "subject": "EAS", "number": "3110", "name": "Energy, Environ, Society ", - "description": "This course analyzes the path towards alternative energy infrastructures for the 21st century with careful consideration of economic, environmental, technological, and political factors. Full Description " + "description": "This course analyzes the path towards alternative energy infrastructures for the 21st century with careful consideration of economic, environmental, technological, and political factors." }, "EAS3603": { "subject": "EAS", "number": "3603", "name": "Thermodynamics-Earth Sys ", - "description": "Introduction to the principles of equilinrium thermodynamics and physical chemistry with applications to the atmosphere, ocean, and solid earth. Full Description " + "description": "Introduction to the principles of equilinrium thermodynamics and physical chemistry with applications to the atmosphere, ocean, and solid earth." }, "EAS3610": { "subject": "EAS", "number": "3610", "name": "Intro Geophysics ", - "description": "An introduction to visualizing and understanding earth history, structure, and dynamics through geophysical methods including seismology, gravity, magnetism, heat flow, geochronology, and geodesy. Full Description " + "description": "An introduction to visualizing and understanding earth history, structure, and dynamics through geophysical methods including seismology, gravity, magnetism, heat flow, geochronology, and geodesy." }, "EAS3620": { "subject": "EAS", "number": "3620", "name": "Geochemistry ", - "description": "A quantitative treatment of geochemical processes in the Earth and natural waters, with emphasis on chemical reactions among atmospheric gases, minerals, and aqueous solutions. Full Description " + "description": "A quantitative treatment of geochemical processes in the Earth and natural waters, with emphasis on chemical reactions among atmospheric gases, minerals, and aqueous solutions." }, "EAS3XXX": { "subject": "EAS", "number": "3XXX", "name": "Earth&Atmos Sci Elective ", - "description": " Full Description " + "description": "" }, "EAS4110": { "subject": "EAS", "number": "4110", "name": "Resources, Energy&Environ ", - "description": "Learn about the science behind the nature, occurrence and extraction of earth resources used by humans and the environmental impacts of that use. Full Description " + "description": "Learn about the science behind the nature, occurrence and extraction of earth resources used by humans and the environmental impacts of that use." }, "EAS4200": { "subject": "EAS", "number": "4200", "name": "Structural Geology ", - "description": "Structural geology and continuum mechanics for scientists and civil engineers. Stress and strain in rocks; faults, joints, and folds; basic field mapping; laboratory exercises. Full Description " + "description": "Structural geology and continuum mechanics for scientists and civil engineers. Stress and strain in rocks; faults, joints, and folds; basic field mapping; laboratory exercises." }, "EAS4220": { "subject": "EAS", "number": "4220", "name": "Environ Geochemistry ", - "description": "An exploration of the chemical, biological, and geological processes controlling the distribution of chemical nutrients and pollutants in aquatic and soil environments. Full Description " + "description": "An exploration of the chemical, biological, and geological processes controlling the distribution of chemical nutrients and pollutants in aquatic and soil environments." }, "EAS4221": { "subject": "EAS", "number": "4221", "name": "Environ Geochemistry Lab ", - "description": "Lab and field exploration of the chemical, biological, and geological processes controlling the distribution of chemical nutrients and pollutants in aquatic and soil environments. Full Description " + "description": "Lab and field exploration of the chemical, biological, and geological processes controlling the distribution of chemical nutrients and pollutants in aquatic and soil environments." }, "EAS4300": { "subject": "EAS", "number": "4300", "name": "Oceanography ", - "description": "Chemistry and physics of the ocean. Distributions of temperature, salinity, and density. Equations of state and motion. Surface and deep-water circulation. Waves and tides. Composition of seawater: dissolved sales, gases, and nutrients. Biological processes. Marine sediments. Full Description " + "description": "Chemistry and physics of the ocean. Distributions of temperature, salinity, and density. Equations of state and motion. Surface and deep-water circulation. Waves and tides. Composition of seawater: dissolved sales, gases, and nutrients. Biological processes. Marine sediments." }, "EAS4305": { "subject": "EAS", "number": "4305", "name": "Phys & Chem Oceanography ", - "description": "Study of the dynamics of large-scale ocean circulation, air-sea interaction and their roles in biogeochemical cycling of carbon and nutrients. Full Description " + "description": "Study of the dynamics of large-scale ocean circulation, air-sea interaction and their roles in biogeochemical cycling of carbon and nutrients." }, "EAS4312": { "subject": "EAS", "number": "4312", "name": "Geodynamics ", - "description": "Quantitative discussion of dynamic processs in the solid Earth; lithospheric dynamics, continuum mechanics, lithospheric flexure and elasticity, heat transfer, viscous rheology, fluid mechanics, and earthquake dynamics. Credit not allowed for both EAS 4312 and EAS 6312. Full Description " + "description": "Quantitative discussion of dynamic processs in the solid Earth; lithospheric dynamics, continuum mechanics, lithospheric flexure and elasticity, heat transfer, viscous rheology, fluid mechanics, and earthquake dynamics. Credit not allowed for both EAS 4312 and EAS 6312." }, "EAS4313": { "subject": "EAS", "number": "4313", "name": "Tect,Climate,&Landscape ", - "description": "Introduction to the interactions and feedbacks between tectonics and climate that act to shape landscapes. Includes field- and computer-based data collection and analysis. Credit not allowed for both EAS 4313 and EAS 6313. Full Description " + "description": "Introduction to the interactions and feedbacks between tectonics and climate that act to shape landscapes. Includes field- and computer-based data collection and analysis. Credit not allowed for both EAS 4313 and EAS 6313." }, "EAS4314": { "subject": "EAS", "number": "4314", "name": "Seismology ", - "description": "Introduction to elastic wave propagation, and studies of the solid Earth's interior and earthquake source from seismic waves. Credit not allowed for both EAS 4314 and EAS 6314. Full Description " + "description": "Introduction to elastic wave propagation, and studies of the solid Earth's interior and earthquake source from seismic waves. Credit not allowed for both EAS 4314 and EAS 6314." }, "EAS4331": { "subject": "EAS", "number": "4331", "name": "Physical Volcanology ", - "description": "This class examines the dynamics and thermodynamics of planetary volcanism. The course material covers the generation and transport of magma in the mantle and crust, and the fluid dynamics of eruptions and their impact on the landscape and atmosphere. Credit not allowed for both EAS 4331 and EAS 6331. Full Description " + "description": "This class examines the dynamics and thermodynamics of planetary volcanism. The course material covers the generation and transport of magma in the mantle and crust, and the fluid dynamics of eruptions and their impact on the landscape and atmosphere. Credit not allowed for both EAS 4331 and EAS 6331." }, "EAS4350": { "subject": "EAS", "number": "4350", "name": "Paleoclim & Paleocean ", - "description": "This course will explore the history of the Earth's climate, covering methods for reconstructing past climate and the mechanisms behind these climate changes. Full Description " + "description": "This course will explore the history of the Earth's climate, covering methods for reconstructing past climate and the mechanisms behind these climate changes." }, "EAS4360": { "subject": "EAS", "number": "4360", "name": "Space Physics & Instrum. ", - "description": "This course will explore the interaction of the solar wind with the Earth's magnetosphere using a combination spacecraft observations and fundamental plasma physics. Credit not allowed for both EAS 4360 and EAS 6360. Full Description " + "description": "This course will explore the interaction of the solar wind with the Earth's magnetosphere using a combination spacecraft observations and fundamental plasma physics. Credit not allowed for both EAS 4360 and EAS 6360." }, "EAS4370": { "subject": "EAS", "number": "4370", "name": "Physics of Planets ", - "description": "In this course we will study the forces and influences that determine the composition, structure and evolution of the planets in our solar system. Full Description " + "description": "In this course we will study the forces and influences that determine the composition, structure and evolution of the planets in our solar system." }, "EAS4410": { "subject": "EAS", "number": "4410", "name": "Climate & Global Change ", - "description": "The physics behind the climate and its potential changes, as well as an introduction to the policy issues in global change. Full Description " + "description": "The physics behind the climate and its potential changes, as well as an introduction to the policy issues in global change." }, "EAS4420": { "subject": "EAS", "number": "4420", "name": "Environmental Field Meth ", - "description": "Semester-long focus on single environmental project in the local area. Chemical and physical techniques for parameterizing environmental problems, data analysis, report writing, and interpretation of results in societal context. Full Description " + "description": "Semester-long focus on single environmental project in the local area. Chemical and physical techniques for parameterizing environmental problems, data analysis, report writing, and interpretation of results in societal context." }, "EAS4430": { "subject": "EAS", "number": "4430", "name": "Remote Sensing&Data Anly ", - "description": "Introduction to the remote sensing of the atmosphere and the Earth. Laboratory examples of data and image analysis for remote sensing applications. Full Description " + "description": "Introduction to the remote sensing of the atmosphere and the Earth. Laboratory examples of data and image analysis for remote sensing applications." }, "EAS4450": { "subject": "EAS", "number": "4450", "name": "Synoptic Meteorology ", - "description": "A description of physical and mathematical procedures used in weather forecasting. Students will practice forecasting. Full Description " + "description": "A description of physical and mathematical procedures used in weather forecasting. Students will practice forecasting." }, "EAS4460": { "subject": "EAS", "number": "4460", "name": "Satellite & Radar Met ", - "description": "Interpretation of satellite and radar data for meteorological forecasting based on understanding radiative transfer and the resulting strengths and limitations of the imagery. Full Description " + "description": "Interpretation of satellite and radar data for meteorological forecasting based on understanding radiative transfer and the resulting strengths and limitations of the imagery." }, "EAS4470": { "subject": "EAS", "number": "4470", "name": "Large-Scale Atmos Circ ", - "description": "Structure and dynamics of phenomena including weather regimes, storm tracks, El Nino-Southern Oscillations, teleconnections, monsoons, Arctic Oscillation, stratospheric polar vortex, and stratosphere-troposphere coupling. Full Description " + "description": "Structure and dynamics of phenomena including weather regimes, storm tracks, El Nino-Southern Oscillations, teleconnections, monsoons, Arctic Oscillation, stratospheric polar vortex, and stratosphere-troposphere coupling." }, "EAS4480": { "subject": "EAS", "number": "4480", "name": "Environ Data Analysis ", - "description": "Data Analysis methods used in environmental research are taught through examples. Students learn to implement these methods to areas of their own interests. Full Description " + "description": "Data Analysis methods used in environmental research are taught through examples. Students learn to implement these methods to areas of their own interests." }, "EAS4510": { "subject": "EAS", "number": "4510", "name": "Exploration Geophysics ", - "description": "Methods of exploration geophysics, including refraction and reflection seismology, resistivity, gravity, magnetics, and ground penetrating radar. Includes laboratory work and introduction to operation of field equipment. Full Description " + "description": "Methods of exploration geophysics, including refraction and reflection seismology, resistivity, gravity, magnetics, and ground penetrating radar. Includes laboratory work and introduction to operation of field equipment." }, "EAS4515": { "subject": "EAS", "number": "4515", "name": "Fluids-Earth's Crust I ", - "description": "Fundamentals of porosity and permeability in soils, sediments, and crystalline rocks; basic physics of fluid flow through interconnected pore spaces and cracks; introductory analysis of fluid flow as an agent of heat and chemical transport in geological systems. Full Description " + "description": "Fundamentals of porosity and permeability in soils, sediments, and crystalline rocks; basic physics of fluid flow through interconnected pore spaces and cracks; introductory analysis of fluid flow as an agent of heat and chemical transport in geological systems." }, "EAS4520": { "subject": "EAS", "number": "4520", "name": "Exploration Seismology ", - "description": "A study of seismic reflection exploration methods and theory. Examples are taken from oil industry exploration and production and near-surface environmental imaging. Full Description " + "description": "A study of seismic reflection exploration methods and theory. Examples are taken from oil industry exploration and production and near-surface environmental imaging." }, "EAS4602": { "subject": "EAS", "number": "4602", "name": "Biogeochemical Cycles ", - "description": "An investigation of global change focusing on the chemical, physical, geological, and biological processes that cycle the elements through the Earth system. Full Description " + "description": "An investigation of global change focusing on the chemical, physical, geological, and biological processes that cycle the elements through the Earth system." }, "EAS4610": { "subject": "EAS", "number": "4610", "name": "Earth System Modeling ", - "description": "An introduction to computer modeling in Earth system science. Full Description " + "description": "An introduction to computer modeling in Earth system science." }, "EAS4625": { "subject": "EAS", "number": "4625", "name": "Water Quality Modeling ", - "description": "Gain hands-on experience using geochemical software and understanding governing geochemical principles pertaining to transformation of contaminants and other subsurface species through case studies. Full Description " + "description": "Gain hands-on experience using geochemical software and understanding governing geochemical principles pertaining to transformation of contaminants and other subsurface species through case studies." }, "EAS4630": { "subject": "EAS", "number": "4630", "name": "Physics of the Earth ", - "description": "Introduction to methods and observational data used to determine solid Earth structure and to understand the dynamical processes driving surface deformation and plate tectonics. Full Description " + "description": "Introduction to methods and observational data used to determine solid Earth structure and to understand the dynamical processes driving surface deformation and plate tectonics." }, "EAS4641": { "subject": "EAS", "number": "4641", "name": "Atmospheric Chem Lab ", - "description": "A hands-on laboratory course in which students will learn basic concepts and techniques used by atmospheric chemists including analysis, data quality and experimental design. Full Description " + "description": "A hands-on laboratory course in which students will learn basic concepts and techniques used by atmospheric chemists including analysis, data quality and experimental design." }, "EAS4651": { "subject": "EAS", "number": "4651", "name": "Practical Internship ", - "description": "Faculty-supervised and approved independent internship, employment, or research project related to earth and atmospheric sciences. Full Description " + "description": "Faculty-supervised and approved independent internship, employment, or research project related to earth and atmospheric sciences." }, "EAS4655": { "subject": "EAS", "number": "4655", "name": "Atmospheric Dynamics ", - "description": "An introduction to the atmospheric physical and dynamic processes that control weather and climate. Full Description " + "description": "An introduction to the atmospheric physical and dynamic processes that control weather and climate." }, "EAS4656": { "subject": "EAS", "number": "4656", "name": "Atmos Dynamics Practicum ", - "description": "Students learn to apply meteorological analysis tools to atmospheric observations to interpret the structure and dynamics of historical and real-time weather events. Full Description " + "description": "Students learn to apply meteorological analysis tools to atmospheric observations to interpret the structure and dynamics of historical and real-time weather events." }, "EAS4670": { "subject": "EAS", "number": "4670", "name": "Atmospheric Dynamics II ", - "description": "This course emphasizes physical concepts and analytic techniques for solving problems in atmospheric instabilities and wave dynamics at various temporal and spatial scales. Full Description " + "description": "This course emphasizes physical concepts and analytic techniques for solving problems in atmospheric instabilities and wave dynamics at various temporal and spatial scales." }, "EAS4698": { "subject": "EAS", "number": "4698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "EAS4699": { "subject": "EAS", "number": "4699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "EAS4740": { "subject": "EAS", "number": "4740", "name": "Atmospheric Chemistry ", - "description": "This course provides a general chemical description of the Earth's atmospheric system with a major focus on the two lowest layers of the atmosphere, i.e., the troposphere and the stratosphere. Crosslisted with CHEM 4740. Full Description " + "description": "This course provides a general chemical description of the Earth's atmospheric system with a major focus on the two lowest layers of the atmosphere, i.e., the troposphere and the stratosphere. Crosslisted with CHEM 4740." }, "EAS4795": { "subject": "EAS", "number": "4795", "name": "Groundwater Hydrology ", - "description": "Dynamics of flow and solute transport in groundwater, including theory, implementation, and case studies. Crosslisted with CEE 4795. Full Description " + "description": "Dynamics of flow and solute transport in groundwater, including theory, implementation, and case studies. Crosslisted with CEE 4795." }, "EAS4801": { "subject": "EAS", "number": "4801", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "EAS4802": { "subject": "EAS", "number": "4802", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "EAS4803": { "subject": "EAS", "number": "4803", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "EAS4804": { "subject": "EAS", "number": "4804", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "EAS4900": { "subject": "EAS", "number": "4900", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "EAS4XXX": { "subject": "EAS", "number": "4XXX", "name": "Earth&Atmos Sci Elective ", - "description": " Full Description " + "description": "" }, "EAS6000": { "subject": "EAS", "number": "6000", "name": "Intro Research & Ethics ", - "description": "Identify and discuss ethical challenges that will be confronted in research, and give an overview of the research areas of the faculty in EAS. Full Description " + "description": "Identify and discuss ethical challenges that will be confronted in research, and give an overview of the research areas of the faculty in EAS." }, "EAS6111": { "subject": "EAS", "number": "6111", "name": "The Earth System ", - "description": "Exploration of processes linking the Earth and atmosphere. Full Description " + "description": "Exploration of processes linking the Earth and atmosphere." }, "EAS6120": { "subject": "EAS", "number": "6120", "name": "Environment Field Method ", - "description": "Environmental site characterization through a field-based project that advances student's research. Theory, field data acquisition, and data fusion using geochemical, geophysical, hydrologic, and related methods. Full Description " + "description": "Environmental site characterization through a field-based project that advances student's research. Theory, field data acquisition, and data fusion using geochemical, geophysical, hydrologic, and related methods." }, "EAS6121": { "subject": "EAS", "number": "6121", "name": "Model & Comp Prog Geosci ", - "description": "This course gives students first-hand experience on the development process of problem solving in Earth and Atmospheric Sciences from mathematically describing a problem to solving it by parallel programming on a high performance computer. Full Description " + "description": "This course gives students first-hand experience on the development process of problem solving in Earth and Atmospheric Sciences from mathematically describing a problem to solving it by parallel programming on a high performance computer." }, "EAS6122": { "subject": "EAS", "number": "6122", "name": "Biogeochemical Cycles ", - "description": "A multidisciplinary exploration of the chemical, physical, geological, and biological processes that cycle the nutrient elements through the Earth system and thereby maintain a habitable planet. Full Description " + "description": "A multidisciplinary exploration of the chemical, physical, geological, and biological processes that cycle the nutrient elements through the Earth system and thereby maintain a habitable planet." }, "EAS6124": { "subject": "EAS", "number": "6124", "name": "Oceanography ", - "description": "Chemistry and physics of the ocean. Distributions of temperatures, salinity, and density. Equations of state and motion. Surface and deep-water circulation, waves, and tides. Composition of seawater: dissolved salts, gases, and nutrients. Biological processes. Marine sediments. Full Description " + "description": "Chemistry and physics of the ocean. Distributions of temperatures, salinity, and density. Equations of state and motion. Surface and deep-water circulation, waves, and tides. Composition of seawater: dissolved salts, gases, and nutrients. Biological processes. Marine sediments." }, "EAS6125": { "subject": "EAS", "number": "6125", "name": "Water Quality Modeling ", - "description": "Gain hands-on experience using geochemical software and understanding governing geochemical principles pertaining to transformation of contaminants and other subsurface species through case studies. Full Description " + "description": "Gain hands-on experience using geochemical software and understanding governing geochemical principles pertaining to transformation of contaminants and other subsurface species through case studies." }, "EAS6128": { "subject": "EAS", "number": "6128", "name": "Fluids in Earth's Crust ", - "description": "Advanced treatment of fluid flow, heat transfer, and reactive transport in porous and cracked rocks; stability of flow; double-diffusive systems; evolution of permeability in geologic systems; introduction to multiphase flow. Full Description " + "description": "Advanced treatment of fluid flow, heat transfer, and reactive transport in porous and cracked rocks; stability of flow; double-diffusive systems; evolution of permeability in geologic systems; introduction to multiphase flow." }, "EAS6130": { "subject": "EAS", "number": "6130", "name": "Earth System Modeling ", - "description": "An introduction to computer modeling in earth system science. Full Description " + "description": "An introduction to computer modeling in earth system science." }, "EAS6132": { "subject": "EAS", "number": "6132", "name": "Intro to Climate Change ", - "description": "The climate of the Earth, its radiation budget, greenhouse gases and their sources and sinks, potential changes due to anthropogenic activities, detection of climate changes. Full Description " + "description": "The climate of the Earth, its radiation budget, greenhouse gases and their sources and sinks, potential changes due to anthropogenic activities, detection of climate changes." }, "EAS6134": { "subject": "EAS", "number": "6134", "name": "Inverse Methods in EAS ", - "description": "Theory of data acquisition, time series analysis, and discrete inverse theory, with applications in the earth and atmospheric sciences. Full Description " + "description": "Theory of data acquisition, time series analysis, and discrete inverse theory, with applications in the earth and atmospheric sciences." }, "EAS6135": { "subject": "EAS", "number": "6135", "name": "Intro Complex Environ Sys ", - "description": "Introduction to the concepts of environmental complexity through the inter-relationships between natural, human, and built systems. Full Description " + "description": "Introduction to the concepts of environmental complexity through the inter-relationships between natural, human, and built systems." }, "EAS6136": { "subject": "EAS", "number": "6136", "name": "Paleoclim & Paleocean ", - "description": "This course will explore the history of the Earth's climate, covering methods for reconstructing past climate and the mechanisms behind these climate changes. Full Description " + "description": "This course will explore the history of the Earth's climate, covering methods for reconstructing past climate and the mechanisms behind these climate changes." }, "EAS6140": { "subject": "EAS", "number": "6140", "name": "Thermo of Atmos & Oceans ", - "description": "The instabilities and flows created by exchanges of heat. Full Description " + "description": "The instabilities and flows created by exchanges of heat." }, "EAS6145": { "subject": "EAS", "number": "6145", "name": "Remote Sens Atmos&Oceans ", - "description": "Provides a foundation for understanding the physical principles of remote sensing and its applications to the study of atmospheric gases, clouds, and ocean surfaces. Full Description " + "description": "Provides a foundation for understanding the physical principles of remote sensing and its applications to the study of atmospheric gases, clouds, and ocean surfaces." }, "EAS6211": { "subject": "EAS", "number": "6211", "name": "Geochem Thermodynamics ", - "description": "Fundamental principles of chemical equilibria in geochemical systems with emphasis on solution properties and mineral water equilibria. Full Description " + "description": "Fundamental principles of chemical equilibria in geochemical systems with emphasis on solution properties and mineral water equilibria." }, "EAS6212": { "subject": "EAS", "number": "6212", "name": "Geochemical Kinetics ", - "description": "Fundamental principles of biogeochemical kinetics and mathematical treatment of coupled transport and reaction in natural environments. Interpretation of field and experimental data using kinetic theory. Full Description " + "description": "Fundamental principles of biogeochemical kinetics and mathematical treatment of coupled transport and reaction in natural environments. Interpretation of field and experimental data using kinetic theory." }, "EAS6214": { "subject": "EAS", "number": "6214", "name": "Aqueous Geochemistry ", - "description": "Chemical processes that regulate compositions of natural waters at or near the Earth's surface, with emphasis on quantitative calculations of acid-base, solubility, and redox equilibria. Full Description " + "description": "Chemical processes that regulate compositions of natural waters at or near the Earth's surface, with emphasis on quantitative calculations of acid-base, solubility, and redox equilibria." }, "EAS6216": { "subject": "EAS", "number": "6216", "name": "Isotope Geochemistry ", - "description": "Biogeochemical significance of nuclear isotopes, both radioactive and stable. Full Description " + "description": "Biogeochemical significance of nuclear isotopes, both radioactive and stable." }, "EAS6240": { "subject": "EAS", "number": "6240", "name": "Organic Geochemistry ", - "description": "Origin and transformation of organic matter in the Earth's environments, with emphasis on properties and reactions of highly complex mixtures such as humic substances. Full Description " + "description": "Origin and transformation of organic matter in the Earth's environments, with emphasis on properties and reactions of highly complex mixtures such as humic substances." }, "EAS6305": { "subject": "EAS", "number": "6305", "name": "Phys & Chem Oceanography ", - "description": "Study of the dynamics of large-scale ocean circulation, air-sea interaction and their roles in biogeochemical cycling of carbon and nutrients. Full Description " + "description": "Study of the dynamics of large-scale ocean circulation, air-sea interaction and their roles in biogeochemical cycling of carbon and nutrients." }, "EAS6311": { "subject": "EAS", "number": "6311", "name": "Physics of the Earth ", - "description": "Physics of the Earth's interior. Composition and structure of core, mantle, crust. Introduction to seismic wave propagation, gravitational, geomagnetic, and temperature fields. Full Description " + "description": "Physics of the Earth's interior. Composition and structure of core, mantle, crust. Introduction to seismic wave propagation, gravitational, geomagnetic, and temperature fields." }, "EAS6312": { "subject": "EAS", "number": "6312", "name": "Geodynamics ", - "description": "Quantitative discussion of dynamical processes in the solid Earth; viscous flow, glacial rebound, fluid dynamical instabilities, thermal convection; lithospheric dynamics; evolution of the core. Full Description " + "description": "Quantitative discussion of dynamical processes in the solid Earth; viscous flow, glacial rebound, fluid dynamical instabilities, thermal convection; lithospheric dynamics; evolution of the core." }, "EAS6313": { "subject": "EAS", "number": "6313", "name": "Tect,Climate,&Landscape ", - "description": "Introduction to the interactions and feedbacks between tectonics and climate that act to shape landscapes. Includes field- and computer-based data collection and analysis. Credit not allowed for both EAS 6313 and EAS 4313. Full Description " + "description": "Introduction to the interactions and feedbacks between tectonics and climate that act to shape landscapes. Includes field- and computer-based data collection and analysis. Credit not allowed for both EAS 6313 and EAS 4313." }, "EAS6314": { "subject": "EAS", "number": "6314", "name": "Seismology ", - "description": "The propagation of seismic waves, the description of earthquake motion, and evaluation of earthquake damage. Examples provide experience in the interpretation of seismic data. Full Description " + "description": "The propagation of seismic waves, the description of earthquake motion, and evaluation of earthquake damage. Examples provide experience in the interpretation of seismic data." }, "EAS6320": { "subject": "EAS", "number": "6320", "name": "Structural Geology ", - "description": "Structural geology and continuum mechanics for scientists and civil engineers. Stress and strain in rocks; faults, joints, and folds; basic field mapping, laboratory exercises. Full Description " + "description": "Structural geology and continuum mechanics for scientists and civil engineers. Stress and strain in rocks; faults, joints, and folds; basic field mapping, laboratory exercises." }, "EAS6331": { "subject": "EAS", "number": "6331", "name": "Physical Volcanology ", - "description": "This class examines the dynamics and thermodynamics of planetary volcanism. The course material covers the generation and transport of magma in the mantle and crust, and the fluid dynamics of eruptions and their impact on the landscape and atmosphere. Credit not allowed for both EAS 6331 and EAS 4331. Full Description " + "description": "This class examines the dynamics and thermodynamics of planetary volcanism. The course material covers the generation and transport of magma in the mantle and crust, and the fluid dynamics of eruptions and their impact on the landscape and atmosphere. Credit not allowed for both EAS 6331 and EAS 4331." }, "EAS6360": { "subject": "EAS", "number": "6360", "name": "Space Physics & Instrum. ", - "description": "This course will explore the interaction of the solar wind with the Earth's magnestophere using a combination spacecraft observation and fundamental plasma physics. Credit not allowed for both EAS 6360 and EAS 4360. Full Description " + "description": "This course will explore the interaction of the solar wind with the Earth's magnestophere using a combination spacecraft observation and fundamental plasma physics. Credit not allowed for both EAS 6360 and EAS 4360." }, "EAS6370": { "subject": "EAS", "number": "6370", "name": "Physics of Planets ", - "description": "In this course we will study the forces and influences that determine the compostition, structure, and evolution of the planets of our solar system. Full Description " + "description": "In this course we will study the forces and influences that determine the compostition, structure, and evolution of the planets of our solar system." }, "EAS6401": { "subject": "EAS", "number": "6401", "name": "Intro-Atmospheric Chem ", - "description": "Introduction to basic chemical principles related to chemical processes in the atmosphere. Full Description " + "description": "Introduction to basic chemical principles related to chemical processes in the atmosphere." }, "EAS6405": { "subject": "EAS", "number": "6405", "name": "Intro Atmos&Aqueous Chem ", - "description": "An introduction to the basics of atmospheric and aqueous chemistry for first semester graduate students. The class goes over photochemistry, thermodynamics, kinetics, redox systems, carbon chemistry, radioactive and stable isotopes, and gas/solid reactions. Full Description " + "description": "An introduction to the basics of atmospheric and aqueous chemistry for first semester graduate students. The class goes over photochemistry, thermodynamics, kinetics, redox systems, carbon chemistry, radioactive and stable isotopes, and gas/solid reactions." }, "EAS6410": { "subject": "EAS", "number": "6410", "name": "Atmospheric Chemistry ", - "description": "Application of fundamental principles of chemistry to understanding the critical factors controlling the levels and distributions of atmospheric trace gases and their variation in time. Full Description " + "description": "Application of fundamental principles of chemistry to understanding the critical factors controlling the levels and distributions of atmospheric trace gases and their variation in time." }, "EAS6412": { "subject": "EAS", "number": "6412", "name": "Physical Meterology ", - "description": "Application of the fundamental principles of thermodynamics to the atmosphere; including hydrostatic equilibrium and static stability, derivation of Claussius-Clapeyron Equation, cloud microphysics, radiative transfer, and the Earth's energy budget. Full Description " + "description": "Application of the fundamental principles of thermodynamics to the atmosphere; including hydrostatic equilibrium and static stability, derivation of Claussius-Clapeyron Equation, cloud microphysics, radiative transfer, and the Earth's energy budget." }, "EAS6420": { "subject": "EAS", "number": "6420", "name": "Atmos Chem Instrument ", - "description": "Introduction to the mechanical, electrical, and optical aspects of modern instrumentation used in atmospheric chemical research. Full Description " + "description": "Introduction to the mechanical, electrical, and optical aspects of modern instrumentation used in atmospheric chemical research." }, "EAS6430": { "subject": "EAS", "number": "6430", "name": "Exp Methods Air Quality ", - "description": "Presents experimental and field methods through a focus on measurements of atmospheric gases and particulates associated with poor air quality. Experiments will involve laboratory measurements and an air quality filed experiment on the order of one week duration. Full Description " + "description": "Presents experimental and field methods through a focus on measurements of atmospheric gases and particulates associated with poor air quality. Experiments will involve laboratory measurements and an air quality filed experiment on the order of one week duration." }, "EAS6490": { "subject": "EAS", "number": "6490", "name": "Adv Environ Data Analy ", - "description": "A unified view of the theories and applications underlying the statistical analysis of environmental data in the space, time and spectral domain. Full Description " + "description": "A unified view of the theories and applications underlying the statistical analysis of environmental data in the space, time and spectral domain." }, "EAS6501": { "subject": "EAS", "number": "6501", "name": "Intro-Atmos Dynamics ", - "description": "Introduction to the basic fundamental fluid dynamics that control atmospheric motions. Full Description " + "description": "Introduction to the basic fundamental fluid dynamics that control atmospheric motions." }, "EAS6502": { "subject": "EAS", "number": "6502", "name": "Fluid Dynam&Synop Meteor ", - "description": "Fundamental principles of atmospheric fluid dynamics, analysis of meteorological codes, weather data and patterns, and numerical weather prediction. Full Description " + "description": "Fundamental principles of atmospheric fluid dynamics, analysis of meteorological codes, weather data and patterns, and numerical weather prediction." }, "EAS6512": { "subject": "EAS", "number": "6512", "name": "Dynamic Meteorology ", - "description": "An introduction to the use of geophysical fluid dynamics in describing and modeling the atmosphere. Full Description " + "description": "An introduction to the use of geophysical fluid dynamics in describing and modeling the atmosphere." }, "EAS6522": { "subject": "EAS", "number": "6522", "name": "Dynamics of the Tropics ", - "description": "Explores the dynamics of the tropical atmosphere and ocean and how they interact to produce climatic features such as the monsoons, El Nino, and La Nina. Full Description " + "description": "Explores the dynamics of the tropical atmosphere and ocean and how they interact to produce climatic features such as the monsoons, El Nino, and La Nina." }, "EAS6532": { "subject": "EAS", "number": "6532", "name": "Large-Scale Atmos Circ ", - "description": "Structure and dynamics of phenomena including weather regimes, storm tracks, El Nino-Southern Oscillation, teleconnections, monsoons, Artic Oscillation, stratospheric polar vortex, and stratosphere-troposphere coupling. Full Description " + "description": "Structure and dynamics of phenomena including weather regimes, storm tracks, El Nino-Southern Oscillation, teleconnections, monsoons, Artic Oscillation, stratospheric polar vortex, and stratosphere-troposphere coupling." }, "EAS6670": { "subject": "EAS", "number": "6670", "name": "Atmospheric Dynamics II ", - "description": "This course emphasizes physical concepts and analytic techniques for solving problems in atmospheric instabilities and wave dynamics at various temporal and spatial scales. Full Description " + "description": "This course emphasizes physical concepts and analytic techniques for solving problems in atmospheric instabilities and wave dynamics at various temporal and spatial scales." }, "EAS6751": { "subject": "EAS", "number": "6751", "name": "Phys Prop&Rheology-Rocks ", - "description": "Structure, physical properties, and rheology of minerals and rocks with applications to engineering structures and natural phenomena in the Earth. Fundamentals of rock mechanics and crack propagation. Crosslisted with CEE 6751. Full Description " + "description": "Structure, physical properties, and rheology of minerals and rocks with applications to engineering structures and natural phenomena in the Earth. Fundamentals of rock mechanics and crack propagation. Crosslisted with CEE 6751." }, "EAS6761": { "subject": "EAS", "number": "6761", "name": "Contaminated Sed Geochem ", - "description": "Acquaints students with fate of major pollutants, nutrients, organic compounds such as pesticides, PAH's, and trace metals in sedimentary systems. Crosslisted with CEE 6761. Full Description " + "description": "Acquaints students with fate of major pollutants, nutrients, organic compounds such as pesticides, PAH's, and trace metals in sedimentary systems. Crosslisted with CEE 6761." }, "EAS6765": { "subject": "EAS", "number": "6765", "name": "Geomicrobiology ", - "description": "Interactions between microorganisms and the geosphere; microbial energetics and genetics; geochemical controls on microbial diversity and activity; redox and acid-base balances; biogeochemical cycles; evolution. Crosslisted with BIOL 6765. Full Description " + "description": "Interactions between microorganisms and the geosphere; microbial energetics and genetics; geochemical controls on microbial diversity and activity; redox and acid-base balances; biogeochemical cycles; evolution. Crosslisted with BIOL 6765." }, "EAS6790": { "subject": "EAS", "number": "6790", "name": "Air Pollution:Phys&Chem ", - "description": "Interaction to the physical and chemical processes affecting the dynamics and fate of air pollutants at the local, regional, and global scales. Particular emphasis is on tropospheric pollutant chemistry and transport. Crosslisted with CEE 6790. Full Description " + "description": "Interaction to the physical and chemical processes affecting the dynamics and fate of air pollutants at the local, regional, and global scales. Particular emphasis is on tropospheric pollutant chemistry and transport. Crosslisted with CEE 6790." }, "EAS6792": { "subject": "EAS", "number": "6792", "name": "Air Pollut'n Meteorology ", - "description": "Air pollution history, atmospheric stability and boundary layer dynamics, atmospheric dispersion, atmospheric transport, air pollution modeling. Crosslisted with CEE 6792. Full Description " + "description": "Air pollution history, atmospheric stability and boundary layer dynamics, atmospheric dispersion, atmospheric transport, air pollution modeling. Crosslisted with CEE 6792." }, "EAS6793": { "subject": "EAS", "number": "6793", "name": "Atmos Boundary Layer ", - "description": "Structure and dynamics of atmospheric boundary layers. Introduction to turbulence and turbulent transport. Crosslisted with CEE 6793. Full Description " + "description": "Structure and dynamics of atmospheric boundary layers. Introduction to turbulence and turbulent transport. Crosslisted with CEE 6793." }, "EAS6794": { "subject": "EAS", "number": "6794", "name": "Atmos Chem Modeling ", - "description": "Application of modern numerical methods to the prediction of atmospheric chemical and physical compositions; specific applications using computer models developed by the students are included. Crosslisted with CEE 6794. Full Description " + "description": "Application of modern numerical methods to the prediction of atmospheric chemical and physical compositions; specific applications using computer models developed by the students are included. Crosslisted with CEE 6794." }, "EAS6795": { "subject": "EAS", "number": "6795", "name": "Atmospheric Aerosols ", - "description": "Chemical and physical properties of natural and anthropogenic aerosols. Sources, transport, transformation, and fate of primary/secondary, organic/inorganic, atmospheric semi-volatiles and aerosols. Crosslisted with CEE 6795. Full Description " + "description": "Chemical and physical properties of natural and anthropogenic aerosols. Sources, transport, transformation, and fate of primary/secondary, organic/inorganic, atmospheric semi-volatiles and aerosols. Crosslisted with CEE 6795." }, "EAS6XXX": { "subject": "EAS", "number": "6XXX", "name": "Earth&Atmos Sci Elective ", - "description": " Full Description " + "description": "" }, "EAS7000": { "subject": "EAS", "number": "7000", "name": "Master's Thesis ", - "description": " Full Description " + "description": "" }, "EAS7999": { "subject": "EAS", "number": "7999", "name": "Prep-Doctorl Comp Exams ", - "description": " Full Description " + "description": "" }, "EAS8001": { "subject": "EAS", "number": "8001", "name": "Seminar ", - "description": "A forum for graduate students in earth and atmospheric sciences to present and discuss topics related to their research interests. Full Description " + "description": "A forum for graduate students in earth and atmospheric sciences to present and discuss topics related to their research interests." }, "EAS8011": { "subject": "EAS", "number": "8011", "name": "Seminar ", - "description": "A forum for graduate students in earth and atmospheric sciences to present and discuss topics related to their research interests. Full Description " + "description": "A forum for graduate students in earth and atmospheric sciences to present and discuss topics related to their research interests." }, "EAS8012": { "subject": "EAS", "number": "8012", "name": "Seminar ", - "description": "A forum for graduate students in earth and atmospheric sciences to present and discuss topics related to their research interests. Full Description " + "description": "A forum for graduate students in earth and atmospheric sciences to present and discuss topics related to their research interests." }, "EAS8013": { "subject": "EAS", "number": "8013", "name": "Seminar ", - "description": "A forum for graduate students in earth and atmospheric sciences to present and discuss topics related to their research interests. Full Description " + "description": "A forum for graduate students in earth and atmospheric sciences to present and discuss topics related to their research interests." }, "EAS8801": { "subject": "EAS", "number": "8801", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "EAS8802": { "subject": "EAS", "number": "8802", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "EAS8803": { "subject": "EAS", "number": "8803", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "EAS8804": { "subject": "EAS", "number": "8804", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "EAS8805": { "subject": "EAS", "number": "8805", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "EAS8806": { "subject": "EAS", "number": "8806", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "EAS8823": { "subject": "EAS", "number": "8823", "name": "Special Topics-Lab ", - "description": " Full Description " + "description": "" }, "EAS8824": { "subject": "EAS", "number": "8824", "name": "Special Topics-Lab ", - "description": " Full Description " + "description": "" }, "EAS8825": { "subject": "EAS", "number": "8825", "name": "Special Topics-Lab ", - "description": " Full Description " + "description": "" }, "EAS8901": { "subject": "EAS", "number": "8901", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "EAS8902": { "subject": "EAS", "number": "8902", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "EAS8903": { "subject": "EAS", "number": "8903", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "EAS8904": { "subject": "EAS", "number": "8904", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "EAS8997": { "subject": "EAS", "number": "8997", "name": "Teaching Assistantship ", - "description": " Full Description " + "description": "" }, "EAS8998": { "subject": "EAS", "number": "8998", "name": "Research Assistantship ", - "description": " Full Description " + "description": "" }, "EAS8999": { "subject": "EAS", "number": "8999", "name": "Prep-Doctoral Disserta'n ", - "description": " Full Description " + "description": "" }, "EAS9000": { "subject": "EAS", "number": "9000", "name": "Doctoral Thesis ", - "description": " Full Description " + "description": "" }, "ECE1010": { "subject": "ECE", "number": "1010", "name": "Intro ECE Design ", - "description": "An introduction to basic concepts useful for all areas of Electrical and Computer Engineering. Focus on hands-on, team-based activities using robotics. Full Description " + "description": "An introduction to basic concepts useful for all areas of Electrical and Computer Engineering. Focus on hands-on, team-based activities using robotics." }, "ECE1750": { "subject": "ECE", "number": "1750", "name": "Intro to Bioengineering ", - "description": "An introduction to the field of bioengineering, including the application of engineering principles and methods to problems in biology and medicine, the integration of engineering with biology, and the emerging industrial opportunities. Crosslisted with AE, BMED, CHE, ME, and MSE 1750. Full Description " + "description": "An introduction to the field of bioengineering, including the application of engineering principles and methods to problems in biology and medicine, the integration of engineering with biology, and the emerging industrial opportunities. Crosslisted with AE, BMED, CHE, ME, and MSE 1750." }, "ECE1801": { "subject": "ECE", "number": "1801", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE1802": { "subject": "ECE", "number": "1802", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE1803": { "subject": "ECE", "number": "1803", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE1804": { "subject": "ECE", "number": "1804", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE1805": { "subject": "ECE", "number": "1805", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE1811": { "subject": "ECE", "number": "1811", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE1812": { "subject": "ECE", "number": "1812", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE1813": { "subject": "ECE", "number": "1813", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE1814": { "subject": "ECE", "number": "1814", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE1815": { "subject": "ECE", "number": "1815", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE1881": { "subject": "ECE", "number": "1881", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE1882": { "subject": "ECE", "number": "1882", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE1883": { "subject": "ECE", "number": "1883", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE1884": { "subject": "ECE", "number": "1884", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE1891": { "subject": "ECE", "number": "1891", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE1892": { "subject": "ECE", "number": "1892", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE1893": { "subject": "ECE", "number": "1893", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE1894": { "subject": "ECE", "number": "1894", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE1900": { "subject": "ECE", "number": "1900", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "ECE1901": { "subject": "ECE", "number": "1901", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "ECE1902": { "subject": "ECE", "number": "1902", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "ECE1903": { "subject": "ECE", "number": "1903", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "ECE1XXX": { "subject": "ECE", "number": "1XXX", "name": "Elec/Comp Engr Elective ", - "description": " Full Description " + "description": "" }, "ECE2001": { "subject": "ECE", "number": "2001", "name": "ECE Seminar ", - "description": "Speakers with diverse backgrounds and representing many different industries, professions, and institutions describe their experiences, entrepreneurial ventures, and research challenges. Full Description " + "description": "Speakers with diverse backgrounds and representing many different industries, professions, and institutions describe their experiences, entrepreneurial ventures, and research challenges." }, "ECE2002": { "subject": "ECE", "number": "2002", "name": "ECE Seminar ", - "description": "Speakers with diverse backgrounds and representing many different industries, professions, and institutions describe their experiences, entrepreneurial ventures, and research challenges. Full Description " + "description": "Speakers with diverse backgrounds and representing many different industries, professions, and institutions describe their experiences, entrepreneurial ventures, and research challenges." }, "ECE2003": { "subject": "ECE", "number": "2003", "name": "ECE Seminar ", - "description": "Speakers with diverse backgrounds and representing many different industries, professions, and institutions describe their experiences, entrepreneurial ventures, and research challenges. Full Description " + "description": "Speakers with diverse backgrounds and representing many different industries, professions, and institutions describe their experiences, entrepreneurial ventures, and research challenges." }, "ECE2020": { "subject": "ECE", "number": "2020", "name": "Digital System Design ", - "description": "Computer system and digital design principles. Switch and gate design, Boolean algebra, number systems, arithmetic, storage elements. Datapath, memory organization, instruction set architecture, assembly language. Credit not allowed for both ECE 2020 and ECE 2030. Full Description " + "description": "Computer system and digital design principles. Switch and gate design, Boolean algebra, number systems, arithmetic, storage elements. Datapath, memory organization, instruction set architecture, assembly language. Credit not allowed for both ECE 2020 and ECE 2030." }, "ECE2025": { "subject": "ECE", "number": "2025", "name": "Intro-Signal Processing ", - "description": "Introduction to signal processing for discrete-time and continuous-time signals. Filtering. Frequency response. Fourier Transform. Z Transform. Laboratory emphasizes computer-based signal processing. Credit not allowed for both ECE 2025 and ECE 2026. Full Description " + "description": "Introduction to signal processing for discrete-time and continuous-time signals. Filtering. Frequency response. Fourier Transform. Z Transform. Laboratory emphasizes computer-based signal processing. Credit not allowed for both ECE 2025 and ECE 2026." }, "ECE2026": { "subject": "ECE", "number": "2026", "name": "Intro Signal Processing ", - "description": "Introduction to discrete-time signal processing and linear systems. Sampling theorem, filtering, frequency response, Discrete Fourier Transform, Z-Transform. Laboratory emphasizes computer-based signal processing. Credit not allowed for both ECE 2026 and ECE 2025. Full Description " + "description": "Introduction to discrete-time signal processing and linear systems. Sampling theorem, filtering, frequency response, Discrete Fourier Transform, Z-Transform. Laboratory emphasizes computer-based signal processing. Credit not allowed for both ECE 2026 and ECE 2025." }, "ECE2030": { "subject": "ECE", "number": "2030", "name": "Intro to Computer Engr ", - "description": "Computer system and digital design principles. Architectural concepts, software, Boolean algebra, number systems, combinational datapath elements, sequential logic, and storage elements. Design of DRAM control and I/O bus. Credit not allowed for both ECE 2030 and ECE 2020. Full Description " + "description": "Computer system and digital design principles. Architectural concepts, software, Boolean algebra, number systems, combinational datapath elements, sequential logic, and storage elements. Design of DRAM control and I/O bus. Credit not allowed for both ECE 2030 and ECE 2020." }, "ECE2031": { "subject": "ECE", "number": "2031", "name": "Digital Design Lab ", - "description": "Design and implementation of digital systems, including a team design project. CAD tools, project design methodologies, logic synthesis, and assembly language programming. Full Description " + "description": "Design and implementation of digital systems, including a team design project. CAD tools, project design methodologies, logic synthesis, and assembly language programming." }, "ECE2035": { "subject": "ECE", "number": "2035", "name": "Programming HW/SW System ", - "description": "Creation of complex execution and storage mechanisms, based on instruction set architecture, for software design including high-level programming languages and operating systems. Programming design projects. Credit not allowed for both ECE 2035 and ECE 3035. Full Description " + "description": "Creation of complex execution and storage mechanisms, based on instruction set architecture, for software design including high-level programming languages and operating systems. Programming design projects. Credit not allowed for both ECE 2035 and ECE 3035." }, "ECE2036": { "subject": "ECE", "number": "2036", "name": "Engr Software Design ", - "description": "Object-oriented software methods for engineering applications. Numerical analysis methods; simulations and graphical presentation of simulation results; analysis of numerical precision. Programming projects. Credit not allowed for both ECE 2036 and ECE 3090. Full Description " + "description": "Object-oriented software methods for engineering applications. Numerical analysis methods; simulations and graphical presentation of simulation results; analysis of numerical precision. Programming projects. Credit not allowed for both ECE 2036 and ECE 3090." }, "ECE2040": { "subject": "ECE", "number": "2040", "name": "Circuit Analysis ", - "description": "Basic concepts of DC and AC circuit theory and analysis. Full Description " + "description": "Basic concepts of DC and AC circuit theory and analysis." }, "ECE20X2": { "subject": "ECE", "number": "20X2", "name": "Transfer-Digital Des Lab ", - "description": " Full Description " + "description": "" }, "ECE20X3": { "subject": "ECE", "number": "20X3", "name": "Transfer-Digital Systems ", - "description": " Full Description " + "description": "" }, "ECE2698": { "subject": "ECE", "number": "2698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "ECE2699": { "subject": "ECE", "number": "2699", "name": "Undergraduate Research ", - "description": "Independent Research conducted under the guidance of a faculty member. Full Description " + "description": "Independent Research conducted under the guidance of a faculty member." }, "ECE2801": { "subject": "ECE", "number": "2801", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE2802": { "subject": "ECE", "number": "2802", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE2803": { "subject": "ECE", "number": "2803", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE2804": { "subject": "ECE", "number": "2804", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE2805": { "subject": "ECE", "number": "2805", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE2811": { "subject": "ECE", "number": "2811", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE2812": { "subject": "ECE", "number": "2812", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE2813": { "subject": "ECE", "number": "2813", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE2814": { "subject": "ECE", "number": "2814", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE2815": { "subject": "ECE", "number": "2815", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE2881": { "subject": "ECE", "number": "2881", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE2882": { "subject": "ECE", "number": "2882", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE2883": { "subject": "ECE", "number": "2883", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE2884": { "subject": "ECE", "number": "2884", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE2891": { "subject": "ECE", "number": "2891", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE2892": { "subject": "ECE", "number": "2892", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE2893": { "subject": "ECE", "number": "2893", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE2894": { "subject": "ECE", "number": "2894", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE2900": { "subject": "ECE", "number": "2900", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "ECE2901": { "subject": "ECE", "number": "2901", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "ECE2902": { "subject": "ECE", "number": "2902", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "ECE2903": { "subject": "ECE", "number": "2903", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "ECE2XXX": { "subject": "ECE", "number": "2XXX", "name": "Elec/Comp Engr Elective ", - "description": " Full Description " + "description": "" }, "ECE3005": { "subject": "ECE", "number": "3005", "name": "ECE Prof/Tech Comm ", - "description": "Written, oral, and visual communication skills required by electrical and computer engineers. Prepares students for advanced communication tasks required in academic and professional settings. Full Description " + "description": "Written, oral, and visual communication skills required by electrical and computer engineers. Prepares students for advanced communication tasks required in academic and professional settings." }, "ECE3006": { "subject": "ECE", "number": "3006", "name": "ECE Co-Curric Prof Comm ", - "description": "This course documents student completion of ECE professional communications requirement through workshops, seminars, research projects, co/extra-curricular activities, etc. Full Description " + "description": "This course documents student completion of ECE professional communications requirement through workshops, seminars, research projects, co/extra-curricular activities, etc." }, "ECE3020": { "subject": "ECE", "number": "3020", "name": "Math Foundations of CmpE ", - "description": "Fundamental concepts in discrete mathematics and their efficient realization via algorithms, data structures, computer programs, and hardware. Discussion of engineering and computational applications. Full Description " + "description": "Fundamental concepts in discrete mathematics and their efficient realization via algorithms, data structures, computer programs, and hardware. Discussion of engineering and computational applications." }, "ECE3025": { "subject": "ECE", "number": "3025", "name": "Electromagnetics ", - "description": "To present the laws and applications of electromagnetics. Full Description " + "description": "To present the laws and applications of electromagnetics." }, "ECE3030": { "subject": "ECE", "number": "3030", "name": "Physical Foundations CmpE ", - "description": "Basic principles governing the physical realization of computing systems and their relationship to characteristics such as performance, energy, and robustness. Implementation technologies. Full Description " + "description": "Basic principles governing the physical realization of computing systems and their relationship to characteristics such as performance, energy, and robustness. Implementation technologies." }, "ECE3035": { "subject": "ECE", "number": "3035", "name": "Mechanisms-Computing Sys ", - "description": "Computing system execution and storage mechanisms, starting with instruction set architecture and concluding with support for high level languages and operating systems. Credit not allowed for both ECE 3035 and ECE 2035. Full Description " + "description": "Computing system execution and storage mechanisms, starting with instruction set architecture and concluding with support for high level languages and operating systems. Credit not allowed for both ECE 3035 and ECE 2035." }, "ECE3040": { "subject": "ECE", "number": "3040", "name": "Microelectronic Circuits ", - "description": "Basic concepts of microelectronic materials, devices, and circuits. Full Description " + "description": "Basic concepts of microelectronic materials, devices, and circuits." }, "ECE3041": { "subject": "ECE", "number": "3041", "name": "Instrument& Circuits Lab ", - "description": "Fundamental experimental techniques for the laboratory analysis of signals and passive electrical circuits using basic electronic test and measurement instrumentation. Component characterization, computer-automated measurements, and simulation. Technical writing. Credit not allowed for both ECE 3041 and ECE 3043. Full Description " + "description": "Fundamental experimental techniques for the laboratory analysis of signals and passive electrical circuits using basic electronic test and measurement instrumentation. Component characterization, computer-automated measurements, and simulation. Technical writing. Credit not allowed for both ECE 3041 and ECE 3043." }, "ECE3042": { "subject": "ECE", "number": "3042", "name": "Microelectro Circuit Lab ", - "description": "Design, analysis, simulation, implementation, and evaluation of electronic circuits. Employs op amp, clock, counter, and converter integrated circuits, discrete diodes, bipolar junction, and field effect transistors; and some integrated circuits. Full Description " + "description": "Design, analysis, simulation, implementation, and evaluation of electronic circuits. Employs op amp, clock, counter, and converter integrated circuits, discrete diodes, bipolar junction, and field effect transistors; and some integrated circuits." }, "ECE3043": { "subject": "ECE", "number": "3043", "name": "Circuits&Electronics Lab ", - "description": "Basic electronic test instrumentation. Elementary passive and active circuits using both discrete (diodes, bipolar junction transistors, MOSFETs) and integrated devices (operational amplifiers). Credit not allowed for both ECE 3043 and ECE 3041. Full Description " + "description": "Basic electronic test instrumentation. Elementary passive and active circuits using both discrete (diodes, bipolar junction transistors, MOSFETs) and integrated devices (operational amplifiers). Credit not allowed for both ECE 3043 and ECE 3041." }, "ECE3050": { "subject": "ECE", "number": "3050", "name": "Analog Electronics ", - "description": "To present concepts of analysis and design of electronic circuits and systems. Biasing, small-signal analysis, frequency response, feedback amplifiers, active filters, non-linear op-amp applications, and oscillators. Full Description " + "description": "To present concepts of analysis and design of electronic circuits and systems. Biasing, small-signal analysis, frequency response, feedback amplifiers, active filters, non-linear op-amp applications, and oscillators." }, "ECE3055": { "subject": "ECE", "number": "3055", "name": "Computer Arch & Oper Sys ", - "description": "Core concepts of computer architecture and operating systems. Instruction set architectures (ISA), compiler/ISA relationships, pipelined datapaths. Memory hierarchy, memory management, and protection. Processes, threads, CPU scheduling, and associated techniques. Credit not allowed for both ECE 3055 and ECE 3056. Full Description " + "description": "Core concepts of computer architecture and operating systems. Instruction set architectures (ISA), compiler/ISA relationships, pipelined datapaths. Memory hierarchy, memory management, and protection. Processes, threads, CPU scheduling, and associated techniques. Credit not allowed for both ECE 3055 and ECE 3056." }, "ECE3056": { "subject": "ECE", "number": "3056", "name": "Comp Arch, Concurr, Energy ", - "description": "Basic organizational principles of the major components of computer processors: cores, memory hiercharchy, and the I/O subsystem. Implications for performance, concurrency, and energy. Credit not allowed for both ECE 3056 and ECE 3055. Full Description " + "description": "Basic organizational principles of the major components of computer processors: cores, memory hiercharchy, and the I/O subsystem. Implications for performance, concurrency, and energy. Credit not allowed for both ECE 3056 and ECE 3055." }, "ECE3060": { "subject": "ECE", "number": "3060", "name": "VLSI & Adv Digital Dsgn ", - "description": "Advanced digital design issues in the context of VLSI systems. Introduction to a design methodology that encompasses the range from behavioral models to circuit simulation. Credit will not be awarded for ECE 3060 and ECE 3150. Full Description " + "description": "Advanced digital design issues in the context of VLSI systems. Introduction to a design methodology that encompasses the range from behavioral models to circuit simulation. Credit will not be awarded for ECE 3060 and ECE 3150." }, "ECE3065": { "subject": "ECE", "number": "3065", "name": "Electromagnetic Apps ", - "description": "To present concepts in waveguiding and radiation, with application to microwaves, antennas, and optics. Credit will not be awarded for ECE 3065 and ECE 4350. Full Description " + "description": "To present concepts in waveguiding and radiation, with application to microwaves, antennas, and optics. Credit will not be awarded for ECE 3065 and ECE 4350." }, "ECE3070": { "subject": "ECE", "number": "3070", "name": "Elec Energy Conversion ", - "description": "This course serves as an introduction to three-phase power systems, electromechanical energy conversion, and operating principles of electric machines. Full Description " + "description": "This course serves as an introduction to three-phase power systems, electromechanical energy conversion, and operating principles of electric machines." }, "ECE3071": { "subject": "ECE", "number": "3071", "name": "Electric Energy Systems ", - "description": "Non-renewable and renewable/sustainable energy sources. Processes, costs, and environmental impact of conversion into electric energy. Delivery and control of electric energy, electromechanical systems. Credit not allowed for both ECE 3071 and ECE 3072. Full Description " + "description": "Non-renewable and renewable/sustainable energy sources. Processes, costs, and environmental impact of conversion into electric energy. Delivery and control of electric energy, electromechanical systems. Credit not allowed for both ECE 3071 and ECE 3072." }, "ECE3072": { "subject": "ECE", "number": "3072", "name": "Elec Energy Systems ", - "description": "Non-renewable and renewable/sustainable energy sources. Processes, costs, and environmental impact of conversion into electric energy. Delivery and control of electric energy, electromechanical systems. Credit not allowed for both ECE 3072 and ECE 3071. Full Description " + "description": "Non-renewable and renewable/sustainable energy sources. Processes, costs, and environmental impact of conversion into electric energy. Delivery and control of electric energy, electromechanical systems. Credit not allowed for both ECE 3072 and ECE 3071." }, "ECE3075": { "subject": "ECE", "number": "3075", "name": "Random Signals ", - "description": "Study of random variables and random processes for applications in electrical and computer engineering. Includes an introduction to statistical filtering, parameter estimation, Markov processes. Full Description " + "description": "Study of random variables and random processes for applications in electrical and computer engineering. Includes an introduction to statistical filtering, parameter estimation, Markov processes." }, "ECE3076": { "subject": "ECE", "number": "3076", "name": "Computer Communications ", - "description": "Presents the basic concepts of computer communications network protocols. Full Description " + "description": "Presents the basic concepts of computer communications network protocols." }, "ECE3077": { "subject": "ECE", "number": "3077", "name": "Prob/Stats for ECE ", - "description": "Introduction to probability, random variables, distributions, estimation, confidence intervals, linear regression and other tools for describing and managing uncertainty in electrical and computer engineering. Full Description " + "description": "Introduction to probability, random variables, distributions, estimation, confidence intervals, linear regression and other tools for describing and managing uncertainty in electrical and computer engineering." }, "ECE3080": { "subject": "ECE", "number": "3080", "name": "Semiconductor Devices ", - "description": "To gain an understanding of the device needs for current and future computers, and fiber optic and wireless communication systems addressing the future needs of high- frequency, GHz-range, device operation. Full Description " + "description": "To gain an understanding of the device needs for current and future computers, and fiber optic and wireless communication systems addressing the future needs of high- frequency, GHz-range, device operation." }, "ECE3084": { "subject": "ECE", "number": "3084", "name": "Signals and Systems ", - "description": "Continuous-time linear systems and signals, their mathematical representations, and computational tools. Fourier and Laplace transforms, convolutions, input-output responses, stability. Full Description " + "description": "Continuous-time linear systems and signals, their mathematical representations, and computational tools. Fourier and Laplace transforms, convolutions, input-output responses, stability." }, "ECE3085": { "subject": "ECE", "number": "3085", "name": "Intro Systems & Control ", - "description": "Theory of linear time-invariant systems for continuous and discrete time. Laplace and Z-Transforms. Transfer function and state space representations. Introduction to feedback control theory. Full Description " + "description": "Theory of linear time-invariant systems for continuous and discrete time. Laplace and Z-Transforms. Transfer function and state space representations. Introduction to feedback control theory." }, "ECE3090": { "subject": "ECE", "number": "3090", "name": "Software for Engr System ", - "description": "Using computer algorithms for solving electrical engineering problems arising in various application domains. Development of effective algorithms and their implementation by object-oriented code. Credit not allowed for both ECE 3090 and ECE 2036. Full Description " + "description": "Using computer algorithms for solving electrical engineering problems arising in various application domains. Development of effective algorithms and their implementation by object-oriented code. Credit not allowed for both ECE 3090 and ECE 2036." }, "ECE3150": { "subject": "ECE", "number": "3150", "name": "VLSI & Adv Digital Dsgn ", - "description": "Advanced digital design issues in the context of VLSI systems. Introduction to a design methodolgy that encompasses the range from architectural models to circuit simulation. Credit not awarded for ECE 3150 and ECE 3060. Full Description " + "description": "Advanced digital design issues in the context of VLSI systems. Introduction to a design methodolgy that encompasses the range from architectural models to circuit simulation. Credit not awarded for ECE 3150 and ECE 3060." }, "ECE3300": { "subject": "ECE", "number": "3300", "name": "Elec Energy Conversion ", - "description": "Introduction to three phase power systems, electromechanical energy conversion and operating principles of electric machines. Full Description " + "description": "Introduction to three phase power systems, electromechanical energy conversion and operating principles of electric machines." }, "ECE3400": { "subject": "ECE", "number": "3400", "name": "Analog Electronics ", - "description": "Analysis and design of electronic circuits and systems. Biasing, small-signal analysis, frequency response, feedback amplifiers, active filters, non-linear op-amp applications, and oscillators. Full Description " + "description": "Analysis and design of electronic circuits and systems. Biasing, small-signal analysis, frequency response, feedback amplifiers, active filters, non-linear op-amp applications, and oscillators." }, "ECE3431": { "subject": "ECE", "number": "3431", "name": "Analog Electronics Lab ", - "description": "Design, analysis, simulation, implementation, and evaluation of advanced electronic circuits. Employs bipolar junction, metal oxide semiconductor and field effect transistors; and some integrated circuits. Full Description " + "description": "Design, analysis, simulation, implementation, and evaluation of advanced electronic circuits. Employs bipolar junction, metal oxide semiconductor and field effect transistors; and some integrated circuits." }, "ECE3450": { "subject": "ECE", "number": "3450", "name": "Semiconductor Devices ", - "description": "Properties of semiconductor devices. Applications in current and future computers, fiber optic and wireless communication systems. Future needs of high frequency, GHz-range, device operation. Full Description " + "description": "Properties of semiconductor devices. Applications in current and future computers, fiber optic and wireless communication systems. Future needs of high frequency, GHz-range, device operation." }, "ECE3550": { "subject": "ECE", "number": "3550", "name": "Feedback Control Systems ", - "description": "Analysis and design of control systems. Laplace transforms, transfer functions, and stability. Feedback systems: tracking and disturbance rejection. Graphical design techniques. Full Description " + "description": "Analysis and design of control systems. Laplace transforms, transfer functions, and stability. Feedback systems: tracking and disturbance rejection. Graphical design techniques." }, "ECE3600": { "subject": "ECE", "number": "3600", "name": "Computer Communications ", - "description": "Basic concepts of computer communication network protocols. Full Description " + "description": "Basic concepts of computer communication network protocols." }, "ECE3710": { "subject": "ECE", "number": "3710", "name": "Circuits & Electronics ", - "description": "An introduction to electric circuit elements and electronic devices and a study of circuits containing such devices. Full Description " + "description": "An introduction to electric circuit elements and electronic devices and a study of circuits containing such devices." }, "ECE3741": { "subject": "ECE", "number": "3741", "name": "Instrum & Electronic Lab ", - "description": "Basic analog and digital electronic circuits and principles. Techniques of electrical and electronic measurements with laboratory instruments. Full Description " + "description": "Basic analog and digital electronic circuits and principles. Techniques of electrical and electronic measurements with laboratory instruments." }, "ECE3801": { "subject": "ECE", "number": "3801", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE3802": { "subject": "ECE", "number": "3802", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE3803": { "subject": "ECE", "number": "3803", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE3804": { "subject": "ECE", "number": "3804", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE3805": { "subject": "ECE", "number": "3805", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE3811": { "subject": "ECE", "number": "3811", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE3812": { "subject": "ECE", "number": "3812", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE3813": { "subject": "ECE", "number": "3813", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE3814": { "subject": "ECE", "number": "3814", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE3815": { "subject": "ECE", "number": "3815", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE3881": { "subject": "ECE", "number": "3881", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE3882": { "subject": "ECE", "number": "3882", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE3883": { "subject": "ECE", "number": "3883", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE3884": { "subject": "ECE", "number": "3884", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE3891": { "subject": "ECE", "number": "3891", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE3892": { "subject": "ECE", "number": "3892", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE3893": { "subject": "ECE", "number": "3893", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE3894": { "subject": "ECE", "number": "3894", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE3900": { "subject": "ECE", "number": "3900", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "ECE3901": { "subject": "ECE", "number": "3901", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "ECE3902": { "subject": "ECE", "number": "3902", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "ECE3903": { "subject": "ECE", "number": "3903", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "ECE3951": { "subject": "ECE", "number": "3951", "name": "Undergrad Research I ", - "description": "Participation in an individual or group research project under the direction of a faculty member. Full Description " + "description": "Participation in an individual or group research project under the direction of a faculty member." }, "ECE3952": { "subject": "ECE", "number": "3952", "name": "Undergrad Research II ", - "description": "Participation in an individual or group research project under the direction of a faculty member. Requires a formal research report. Full Description " + "description": "Participation in an individual or group research project under the direction of a faculty member. Requires a formal research report." }, "ECE3XXX": { "subject": "ECE", "number": "3XXX", "name": "Elec/Comp Engr Elective ", - "description": " Full Description " + "description": "" }, "ECE4001": { "subject": "ECE", "number": "4001", "name": "Engr Practice & Profess ", - "description": "Technical tools and professional issues for engineering practice and early career development. Engineering ethics, design tools, financial and economic principles, project management, probabilistic and statistical techniques, and decision making. Credit not allowed for both ECE 4001 and ECE 4000. Full Description " + "description": "Technical tools and professional issues for engineering practice and early career development. Engineering ethics, design tools, financial and economic principles, project management, probabilistic and statistical techniques, and decision making. Credit not allowed for both ECE 4001 and ECE 4000." }, "ECE4007": { "subject": "ECE", "number": "4007", "name": "ECE Design Project ", - "description": "Team-oriented culminating design project in electrical/ computer engineering, incorporating engineering standards and realistic constraints. Requires formal reports and group presentations. Credit not allowed for both ECE 4007 and ECE 4006. Full Description " + "description": "Team-oriented culminating design project in electrical/ computer engineering, incorporating engineering standards and realistic constraints. Requires formal reports and group presentations. Credit not allowed for both ECE 4007 and ECE 4006." }, "ECE4011": { "subject": "ECE", "number": "4011", "name": "ECE Culminating Design 1 ", - "description": "First semester of ECE culminating design sequence. Design tools, financial principles, project management, probabilistic and statistical techniques, team forming. Requires formal reports and group presentations. Full Description " + "description": "First semester of ECE culminating design sequence. Design tools, financial principles, project management, probabilistic and statistical techniques, team forming. Requires formal reports and group presentations." }, "ECE4012": { "subject": "ECE", "number": "4012", "name": "ECE Culminating Design 2 ", - "description": "Second semester of ECE culminating design sequence. Team project in ECE incorporating engineering standards and realistic constraints. Requires formal reports and group presentations. Full Description " + "description": "Second semester of ECE culminating design sequence. Team project in ECE incorporating engineering standards and realistic constraints. Requires formal reports and group presentations." }, "ECE4043": { "subject": "ECE", "number": "4043", "name": "Analog Electronics Lab ", - "description": "Experiments in analog electronics using discrete devices and off-the-shelf integrated circuits. Full Description " + "description": "Experiments in analog electronics using discrete devices and off-the-shelf integrated circuits." }, "ECE4100": { "subject": "ECE", "number": "4100", "name": "Adv Computer Architecure ", - "description": "Comprehensive coverage of the architecture and system issues that confront the design of high-performance workstation/PC computer architectures with emphasis on quantitative evaluation. Credit is not allowed for both ECE 4100 and any of the following courses: ECE 6100, CS 4290, CS 6290. Full Description " + "description": "Comprehensive coverage of the architecture and system issues that confront the design of high-performance workstation/PC computer architectures with emphasis on quantitative evaluation. Credit is not allowed for both ECE 4100 and any of the following courses: ECE 6100, CS 4290, CS 6290." }, "ECE4110": { "subject": "ECE", "number": "4110", "name": "Internetwork Programming ", - "description": "Exploration of Internet implementation as a network of computing systems. Internetworking skills for design and implementation of hardware and software Internet products. Full Description " + "description": "Exploration of Internet implementation as a network of computing systems. Internetworking skills for design and implementation of hardware and software Internet products." }, "ECE4112": { "subject": "ECE", "number": "4112", "name": "Internetwork Security ", - "description": "Hands-on experimentation and evaluation of internet security theory, principles, and practices. Laboratory component involves implementing both defensive and offensive security techniques. Full Description " + "description": "Hands-on experimentation and evaluation of internet security theory, principles, and practices. Laboratory component involves implementing both defensive and offensive security techniques." }, "ECE4122": { "subject": "ECE", "number": "4122", "name": "Adv Prog Techniques ", - "description": "Course covers a number of programming techniques for distributed and parallel computing and other advanced methods, such as multiprecision arithmetic and nonblocking I/O. Credit not awarded for ECE 4122 and ECE 6122. Full Description " + "description": "Course covers a number of programming techniques for distributed and parallel computing and other advanced methods, such as multiprecision arithmetic and nonblocking I/O. Credit not awarded for ECE 4122 and ECE 6122." }, "ECE4130": { "subject": "ECE", "number": "4130", "name": "Adv VLSI Systems ", - "description": "An advanced treatment of VLSI systems analysis, design, and testing with emphasis on complex systems and how they are incorporated into a silicon environment. Credit is not allowed for both ECE 4130 and ECE 6130. Full Description " + "description": "An advanced treatment of VLSI systems analysis, design, and testing with emphasis on complex systems and how they are incorporated into a silicon environment. Credit is not allowed for both ECE 4130 and ECE 6130." }, "ECE4170": { "subject": "ECE", "number": "4170", "name": "HDL Based Design ", - "description": "Introduction to hardware description languages and associated methodologies for digital system design. In-depth coverage includes applications to the simulation and synthesis of digital systems. Full Description " + "description": "Introduction to hardware description languages and associated methodologies for digital system design. In-depth coverage includes applications to the simulation and synthesis of digital systems." }, "ECE4175": { "subject": "ECE", "number": "4175", "name": "Emb Microcontroller Dsgn ", - "description": "Microcontroller structure, instruction set, addressing modes. Code development by assembly language programming and using an emulator. Programmable timer use, interrupt handlers, and timing. Full Description " + "description": "Microcontroller structure, instruction set, addressing modes. Code development by assembly language programming and using an emulator. Programmable timer use, interrupt handlers, and timing." }, "ECE4180": { "subject": "ECE", "number": "4180", "name": "Embedded Systems Design ", - "description": "Processors, chipsets, busses, and I/O devices for high-ended embedded systems. Embedded operating systems; device drivers and applications for embedded systems. Full Description " + "description": "Processors, chipsets, busses, and I/O devices for high-ended embedded systems. Embedded operating systems; device drivers and applications for embedded systems." }, "ECE4181": { "subject": "ECE", "number": "4181", "name": "Embedded Comp Systems ", - "description": "Algorithms and methodologies for the design of real-time, low-power embedded computing systems. Full Description " + "description": "Algorithms and methodologies for the design of real-time, low-power embedded computing systems." }, "ECE4185": { "subject": "ECE", "number": "4185", "name": "Emb Microcontroller Des ", - "description": "Design, implement, and debug embedded micro-controller systems. Develop code; understand underlying assembly code instructions and addressing modes. Use ADC, timers, and other resources. Full Description " + "description": "Design, implement, and debug embedded micro-controller systems. Develop code; understand underlying assembly code instructions and addressing modes. Use ADC, timers, and other resources." }, "ECE4260": { "subject": "ECE", "number": "4260", "name": "Random Signals & Appl ", - "description": "Introduction to random signals and processes with emphasis on applications in ECE. Includes basic estimation theory, linear prediction, and statistical modeling. Full Description " + "description": "Introduction to random signals and processes with emphasis on applications in ECE. Includes basic estimation theory, linear prediction, and statistical modeling." }, "ECE4270": { "subject": "ECE", "number": "4270", "name": "Fund-Digital Signal Proc ", - "description": "Introduction to digital signal processing. Sampling theorem, discrete-time Fourier transform. Power spectrum, discrete Fourier transform and the FFT algorithm, Z-transform, digital filter design and implementation. Full Description " + "description": "Introduction to digital signal processing. Sampling theorem, discrete-time Fourier transform. Power spectrum, discrete Fourier transform and the FFT algorithm, Z-transform, digital filter design and implementation." }, "ECE4271": { "subject": "ECE", "number": "4271", "name": "Applications of DSP ", - "description": "Applications of DSP in speech, image processing, radar, pattern recognition, and adaptive filtering requiring working software implementations applied to the analysis of real signals. Full Description " + "description": "Applications of DSP in speech, image processing, radar, pattern recognition, and adaptive filtering requiring working software implementations applied to the analysis of real signals." }, "ECE4273": { "subject": "ECE", "number": "4273", "name": "DSP Chip Design ", - "description": "Fundamentals of theory and practice of DSP chip design in VHDL. Exposure to tools and environments for chip design, simulation, and verification. Full Description " + "description": "Fundamentals of theory and practice of DSP chip design in VHDL. Exposure to tools and environments for chip design, simulation, and verification." }, "ECE4320": { "subject": "ECE", "number": "4320", "name": "Power Sys Analy& Control ", - "description": "Introduces basic concepts in electric power generation, distribution, system control, and economic operation. Full Description " + "description": "Introduces basic concepts in electric power generation, distribution, system control, and economic operation." }, "ECE4321": { "subject": "ECE", "number": "4321", "name": "Power System Engineering ", - "description": "To introduce basic concepts of electric power system design, encompassing protection, stability, and control. Full Description " + "description": "To introduce basic concepts of electric power system design, encompassing protection, stability, and control." }, "ECE4325": { "subject": "ECE", "number": "4325", "name": "Electric Power Quality ", - "description": "Transients and harmonics in power systems, analysis methods and mitigation practices. Causes of power quality problems and relationship to equipment susceptibility. Credit not allowed for both ECE 4325 and ECE 6340. Full Description " + "description": "Transients and harmonics in power systems, analysis methods and mitigation practices. Causes of power quality problems and relationship to equipment susceptibility. Credit not allowed for both ECE 4325 and ECE 6340." }, "ECE4330": { "subject": "ECE", "number": "4330", "name": "Power Electronics ", - "description": "Introduces power semiconductor devices and power electronic converters, including single-phase and three-phase ac/dc rectifiers, ac voltage controllers, dc/dc converters, and dc/ac inverters. Full Description " + "description": "Introduces power semiconductor devices and power electronic converters, including single-phase and three-phase ac/dc rectifiers, ac voltage controllers, dc/dc converters, and dc/ac inverters." }, "ECE4335": { "subject": "ECE", "number": "4335", "name": "Elec Machinery Analysis ", - "description": "Advanced theory of AC machines, including AC motor winding design, finite element analysis, induction motor design, permanent magnet machine design, and synchronous machine dynamics. Credit is not allowed for both ECE 4335 and ECE 6335. Full Description " + "description": "Advanced theory of AC machines, including AC motor winding design, finite element analysis, induction motor design, permanent magnet machine design, and synchronous machine dynamics. Credit is not allowed for both ECE 4335 and ECE 6335." }, "ECE4350": { "subject": "ECE", "number": "4350", "name": "Electromag Applications ", - "description": "Presents concepts of electromagnetic fields applied to microwave circuit design and antenna radiation. Credit will not be awarded for ECE 4350 and ECE 3065. Full Description " + "description": "Presents concepts of electromagnetic fields applied to microwave circuit design and antenna radiation. Credit will not be awarded for ECE 4350 and ECE 3065." }, "ECE4360": { "subject": "ECE", "number": "4360", "name": "RF-Microwave Lab ", - "description": "RF/microwave measurement theory and techniques. Use of state-of-the-art equipment operating into the GHz range. Full Description " + "description": "RF/microwave measurement theory and techniques. Use of state-of-the-art equipment operating into the GHz range." }, "ECE4370": { "subject": "ECE", "number": "4370", "name": "Antenna Engineering ", - "description": "Basic theory, application, and design of a broad range of antennas. Full Description " + "description": "Basic theory, application, and design of a broad range of antennas." }, "ECE4390": { "subject": "ECE", "number": "4390", "name": "Radar and EM Sensing ", - "description": "Introduces students to radar systems, including pulsed, CW, CWFM, and MTI radars. Other techniques for electromagnetic sensing such as radiometry and EM tagging are discussed. Full Description " + "description": "Introduces students to radar systems, including pulsed, CW, CWFM, and MTI radars. Other techniques for electromagnetic sensing such as radiometry and EM tagging are discussed." }, "ECE4391": { "subject": "ECE", "number": "4391", "name": "Electromag Compatibility ", - "description": "To study electromagnetic interference and susceptibility of electrical systems, with application to analog and digital circuits. Full Description " + "description": "To study electromagnetic interference and susceptibility of electrical systems, with application to analog and digital circuits." }, "ECE4410": { "subject": "ECE", "number": "4410", "name": "Analog Filters ", - "description": "An introduction to the theory, design techniques, and applications of analog passive, active, and switched- capacitor filters. Full Description " + "description": "An introduction to the theory, design techniques, and applications of analog passive, active, and switched- capacitor filters." }, "ECE4415": { "subject": "ECE", "number": "4415", "name": "RF Engineering I ", - "description": "Fundamentals of RF engineering. Components at high frequencies, device modeling, amplifiers, lumped-element and microstrip impedance transformation networks, S-parameter-based design of RF and microwave amplifiers. Full Description " + "description": "Fundamentals of RF engineering. Components at high frequencies, device modeling, amplifiers, lumped-element and microstrip impedance transformation networks, S-parameter-based design of RF and microwave amplifiers." }, "ECE4418": { "subject": "ECE", "number": "4418", "name": "RF Engineering II ", - "description": "Fundamentals learned in RF-I are employed to design the elements of radio receivers, transmitters, and similar systems. Systems analysis, mixers, detectors, power amplifiers, low-noise amplifiers, and oscillators are covered. Full Description " + "description": "Fundamentals learned in RF-I are employed to design the elements of radio receivers, transmitters, and similar systems. Systems analysis, mixers, detectors, power amplifiers, low-noise amplifiers, and oscillators are covered." }, "ECE4420": { "subject": "ECE", "number": "4420", "name": "Digital Integ Circuits ", - "description": "Analysis and design of bipolar and MOS digital integrated circuit families and their applications in modern electronic systems. Full Description " + "description": "Analysis and design of bipolar and MOS digital integrated circuit families and their applications in modern electronic systems." }, "ECE4430": { "subject": "ECE", "number": "4430", "name": "Analog Integra Circuits ", - "description": "Analysis and design of analog ICs using analytic techniques and CAD tools. Topics include amplifiers, current sources, output circuits, and other analog building blocks. Full Description " + "description": "Analysis and design of analog ICs using analytic techniques and CAD tools. Topics include amplifiers, current sources, output circuits, and other analog building blocks." }, "ECE4435": { "subject": "ECE", "number": "4435", "name": "Operational Amp Design ", - "description": "Analysis and design techniques for utilization of integrated circuit operational amplifiers for applications in electronic systems. Full Description " + "description": "Analysis and design techniques for utilization of integrated circuit operational amplifiers for applications in electronic systems." }, "ECE4445": { "subject": "ECE", "number": "4445", "name": "Audio Engineering ", - "description": "Concepts of acoustics and electroacoustic modeling for the analysis and design of microphones, loudspeakers, and crossover networks. Methods of analysis and design of audio power amplifiers. Full Description " + "description": "Concepts of acoustics and electroacoustic modeling for the analysis and design of microphones, loudspeakers, and crossover networks. Methods of analysis and design of audio power amplifiers." }, "ECE4446": { "subject": "ECE", "number": "4446", "name": "Audio Engineering Lab ", - "description": "A companion laboratory to ECE 4445. Design, analysis, construction, modeling, and testing of circuits and systems pertaining to audio engineering. Full Description " + "description": "A companion laboratory to ECE 4445. Design, analysis, construction, modeling, and testing of circuits and systems pertaining to audio engineering." }, "ECE4451": { "subject": "ECE", "number": "4451", "name": "Semiconductor Dev-Commun ", - "description": "Advanced development of semiconductor device theory focusing on optoelectronic emitters, detectors, and high- frequency transistors to provide an understanding of devices used in communications systems. Full Description " + "description": "Advanced development of semiconductor device theory focusing on optoelectronic emitters, detectors, and high- frequency transistors to provide an understanding of devices used in communications systems." }, "ECE4452": { "subject": "ECE", "number": "4452", "name": "IC Fabrication ", - "description": "Introduction to microelectronic processing technologies and CMOS. Includes a laboratory for fabrication/testing of MOS transistors, basic CMOS circuits, integrated resistors and capacitors. Credit will not be awarded for ECE 4452 and ECE 4752. Full Description " + "description": "Introduction to microelectronic processing technologies and CMOS. Includes a laboratory for fabrication/testing of MOS transistors, basic CMOS circuits, integrated resistors and capacitors. Credit will not be awarded for ECE 4452 and ECE 4752." }, "ECE4460": { "subject": "ECE", "number": "4460", "name": "Electronic Packaging ", - "description": "Introduction to packaging technologies, technology drivers, electrical performance, thermal management, materials, optoelectronics, RF integration, reliability, system issues, assembly, testing. Full Description " + "description": "Introduction to packaging technologies, technology drivers, electrical performance, thermal management, materials, optoelectronics, RF integration, reliability, system issues, assembly, testing." }, "ECE4500": { "subject": "ECE", "number": "4500", "name": "Optical Engineering ", - "description": "Introduction to applications of geometric, physical optics to engineering, including optical measurements, matrix methods, instruments, interference, holography, beam optics, Fourier optics, and diffraction. Full Description " + "description": "Introduction to applications of geometric, physical optics to engineering, including optical measurements, matrix methods, instruments, interference, holography, beam optics, Fourier optics, and diffraction." }, "ECE4501": { "subject": "ECE", "number": "4501", "name": "Fiber Optics ", - "description": "Combined lecture-laboratory exploration of the technology of fiber optics, with special emphasis on optical fiber communications systems. Credit will not be awarded for ECE 4501 and ECE 4502. Full Description " + "description": "Combined lecture-laboratory exploration of the technology of fiber optics, with special emphasis on optical fiber communications systems. Credit will not be awarded for ECE 4501 and ECE 4502." }, "ECE4502": { "subject": "ECE", "number": "4502", "name": "Optical Fiber Comm ", - "description": "Combined lecture-laboratory exploration of the technology of fiber optics, with emphasis on optical fiber communication systems. Credit will not be awarded for ECE 4502 and ECE 4501. Full Description " + "description": "Combined lecture-laboratory exploration of the technology of fiber optics, with emphasis on optical fiber communication systems. Credit will not be awarded for ECE 4502 and ECE 4501." }, "ECE4550": { "subject": "ECE", "number": "4550", "name": "Control System Design ", - "description": "Design of control algorithms using state-space methods, microcontroller implementation of control algorithms, and laboratory projects emphasizing motion control applications. Full Description " + "description": "Design of control algorithms using state-space methods, microcontroller implementation of control algorithms, and laboratory projects emphasizing motion control applications." }, "ECE4551": { "subject": "ECE", "number": "4551", "name": "Systems & Controls I ", - "description": "Introduction to feedback control. Root locus and bode design for SISO systems, continuous and discrete. Introduction to state space formulation, continuous and discrete. Full Description " + "description": "Introduction to feedback control. Root locus and bode design for SISO systems, continuous and discrete. Introduction to state space formulation, continuous and discrete." }, "ECE4555": { "subject": "ECE", "number": "4555", "name": "Embedded&Hybrid Control ", - "description": "Modeling, analysis, and design of embedded and hybrid control systems. Full Description " + "description": "Modeling, analysis, and design of embedded and hybrid control systems." }, "ECE4560": { "subject": "ECE", "number": "4560", "name": "Intro-Automation&Robotic ", - "description": "Concurrent engineering principles; robotic manipulator kinematics, dynamics, and control; applications of robots in industry, medicine, and other areas; team projects and hands-on laboratory experience. Full Description " + "description": "Concurrent engineering principles; robotic manipulator kinematics, dynamics, and control; applications of robots in industry, medicine, and other areas; team projects and hands-on laboratory experience." }, "ECE4562": { "subject": "ECE", "number": "4562", "name": "Neural Nets & Fuzzy Ctrl ", - "description": "Principles of neural networks and fuzzy systems; the MATLAB Neural Network and Fuzzy Logic Toolboxes; examples from system identification, classification, and control; laboratory experience. Full Description " + "description": "Principles of neural networks and fuzzy systems; the MATLAB Neural Network and Fuzzy Logic Toolboxes; examples from system identification, classification, and control; laboratory experience." }, "ECE4563": { "subject": "ECE", "number": "4563", "name": "Game Theory ", - "description": "An introduction to game theory and its application to multiagent systems, including distributed routing, multivehicle control, and networked systems. Full Description " + "description": "An introduction to game theory and its application to multiagent systems, including distributed routing, multivehicle control, and networked systems." }, "ECE4570": { "subject": "ECE", "number": "4570", "name": "Modern System Theory ", - "description": "Study of the basic concepts in linear system theory and numerical linear algebra with applications to communication, computation, control, and signal processing. A unified treatment. Full Description " + "description": "Study of the basic concepts in linear system theory and numerical linear algebra with applications to communication, computation, control, and signal processing. A unified treatment." }, "ECE4580": { "subject": "ECE", "number": "4580", "name": "Computer Vision ", - "description": "Computational and theoretical aspects of computer vision. Application areas include robotics, autonomous vehicles, tracking, and image-guided surgery. Includes major project. Full Description " + "description": "Computational and theoretical aspects of computer vision. Application areas include robotics, autonomous vehicles, tracking, and image-guided surgery. Includes major project." }, "ECE4601": { "subject": "ECE", "number": "4601", "name": "Communication Systems ", - "description": "To present the fundamentals of modern digital communication systems and evaluate their performance with realistic channel models. Full Description " + "description": "To present the fundamentals of modern digital communication systems and evaluate their performance with realistic channel models." }, "ECE4602": { "subject": "ECE", "number": "4602", "name": "Communication System Lab ", - "description": "To examine the performance of analog and digital telecommunications systems and components. Credit will not be awarded for ECE 4612 and ECE 4602. Full Description " + "description": "To examine the performance of analog and digital telecommunications systems and components. Credit will not be awarded for ECE 4612 and ECE 4602." }, "ECE4604": { "subject": "ECE", "number": "4604", "name": "Network Dsgn&Simulation ", - "description": "Introduces the principles of Monte Carlo techniques and network simulation, and applies them to design issues in ATM systems. Full Description " + "description": "Introduces the principles of Monte Carlo techniques and network simulation, and applies them to design issues in ATM systems." }, "ECE4605": { "subject": "ECE", "number": "4605", "name": "Advanced Internetworking ", - "description": "Networking fundamentals, including TCP/IP protocol suite. Latest networking technologies in wireless networks and mobile computing, network quality of service, network programmability, and miscellaneous topics. Project intensive. Full Description " + "description": "Networking fundamentals, including TCP/IP protocol suite. Latest networking technologies in wireless networks and mobile computing, network quality of service, network programmability, and miscellaneous topics. Project intensive." }, "ECE4606": { "subject": "ECE", "number": "4606", "name": "Wireless Communications ", - "description": "Cellular concept, wireless propagation modeling; types of digital modulation used in wireless systems, diversity combining, performance over fading channels, and multiple access techniques. Full Description " + "description": "Cellular concept, wireless propagation modeling; types of digital modulation used in wireless systems, diversity combining, performance over fading channels, and multiple access techniques." }, "ECE4607": { "subject": "ECE", "number": "4607", "name": "Mobile&Wireless Networks ", - "description": "Basics of mobile and wireless networking. Architectures and communication protocols for wireless sensor networks, wireless local area networks, ad-hoc networks, cellular systems, WiMAX, and Wireless Mesh Networks. Full Description " + "description": "Basics of mobile and wireless networking. Architectures and communication protocols for wireless sensor networks, wireless local area networks, ad-hoc networks, cellular systems, WiMAX, and Wireless Mesh Networks." }, "ECE4612": { "subject": "ECE", "number": "4612", "name": "Telecom Systems Lab ", - "description": "Basic digital telecommunications systems are examined in a laboratory setting using electronic modules, covering concepts such as modulation, channel coding, AWGN, eye diagrams, and BER. Credit will not be awarded for ECE 4612 and ECE 4602. Full Description " + "description": "Basic digital telecommunications systems are examined in a laboratory setting using electronic modules, covering concepts such as modulation, channel coding, AWGN, eye diagrams, and BER. Credit will not be awarded for ECE 4612 and ECE 4602." }, "ECE4698": { "subject": "ECE", "number": "4698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "ECE4699": { "subject": "ECE", "number": "4699", "name": "Undergraduate Research ", - "description": "Independent Research conducted under the guidance of a faculty member. Full Description " + "description": "Independent Research conducted under the guidance of a faculty member." }, "ECE4751": { "subject": "ECE", "number": "4751", "name": "Laser Theory&Application ", - "description": "Provides an introduction to the theory and applications of laser principles and related instrumentation. Emphasis is on the fundamental principles underlying laser action. Crosslisted with PHYS 4751. Full Description " + "description": "Provides an introduction to the theory and applications of laser principles and related instrumentation. Emphasis is on the fundamental principles underlying laser action. Crosslisted with PHYS 4751." }, "ECE4752": { "subject": "ECE", "number": "4752", "name": "IC Fabrication ", - "description": "Gives students exposure to the various steps involved in the fabrication of integrated circuits and devices. The course will include a laboratory segment in which students fabricate MOS transistors, diffused resistors, and MOS capacitors from a bare silicon substrate. Crosslisted with CHE 4752. Credit will not be awarded for ECE 4752 and ECE 4452. Full Description " + "description": "Gives students exposure to the various steps involved in the fabrication of integrated circuits and devices. The course will include a laboratory segment in which students fabricate MOS transistors, diffused resistors, and MOS capacitors from a bare silicon substrate. Crosslisted with CHE 4752. Credit will not be awarded for ECE 4752 and ECE 4452." }, "ECE4753": { "subject": "ECE", "number": "4753", "name": "Topics in Engr Practice ", - "description": "Topics of current importance offered in collaboration with an approved partner of Georgia Tech's Distance Learning Program. Crosslisted with ME 4753. Full Description " + "description": "Topics of current importance offered in collaboration with an approved partner of Georgia Tech's Distance Learning Program. Crosslisted with ME 4753." }, "ECE4754": { "subject": "ECE", "number": "4754", "name": "Elec Packaging Assembly ", - "description": "The course provides hands-on instruction in electronics packaging, including assembly, reliability, thermal management, and test of next-generation microsystems. Crosslisted with ME and MSE 4754. Full Description " + "description": "The course provides hands-on instruction in electronics packaging, including assembly, reliability, thermal management, and test of next-generation microsystems. Crosslisted with ME and MSE 4754." }, "ECE4755": { "subject": "ECE", "number": "4755", "name": "Packaging Substrate Fab ", - "description": "This course provides hands-on instruction in basic packaging substrate fabrication techniques, including interconnect design and testing, dielectric deposition, via formation, and metallization. Crosslisted with CHE 4755. Full Description " + "description": "This course provides hands-on instruction in basic packaging substrate fabrication techniques, including interconnect design and testing, dielectric deposition, via formation, and metallization. Crosslisted with CHE 4755." }, "ECE4761": { "subject": "ECE", "number": "4761", "name": "Industrial Ctrls & Mfg ", - "description": "Students are introduced to industrial controls and the fundamentals of manufacturing with hands-on experience based on lab projects using industry software and hardware for communications and control. Crosslisted with PTFE 4761. Full Description " + "description": "Students are introduced to industrial controls and the fundamentals of manufacturing with hands-on experience based on lab projects using industry software and hardware for communications and control. Crosslisted with PTFE 4761." }, "ECE4781": { "subject": "ECE", "number": "4781", "name": "Biomed Instrumentation ", - "description": "A study of medical instrumentation from a systems viewpoint. Pertinent physiological and electro-physiological concepts will be covered. Credit not allowed for both ECE 4781 and (CHE 4781 or CHBE 4781 or BMED 4781 or ME 4781). Full Description " + "description": "A study of medical instrumentation from a systems viewpoint. Pertinent physiological and electro-physiological concepts will be covered. Credit not allowed for both ECE 4781 and (CHE 4781 or CHBE 4781 or BMED 4781 or ME 4781)." }, "ECE4782": { "subject": "ECE", "number": "4782", "name": "Biosystems Analysis ", - "description": "Analytical methods for modeling biological systems, including white-noise protocols for characterizing nonlinear systems. Crosslisted with BMED, CHE and ME 4782. Full Description " + "description": "Analytical methods for modeling biological systems, including white-noise protocols for characterizing nonlinear systems. Crosslisted with BMED, CHE and ME 4782." }, "ECE4783": { "subject": "ECE", "number": "4783", "name": "Intro-Medical Image Proc ", - "description": "A study of mathematical methods used in medical acquisition and processing. Concepts, algorithms, and methods associated with acquisition, processing, and display of two- and three-dimensional medical images are studied. Crosslisted with BMED 4783. Full Description " + "description": "A study of mathematical methods used in medical acquisition and processing. Concepts, algorithms, and methods associated with acquisition, processing, and display of two- and three-dimensional medical images are studied. Crosslisted with BMED 4783." }, "ECE4784": { "subject": "ECE", "number": "4784", "name": "Engr Electrophysiology ", - "description": "Basic concepts of electrophysiology from an engineering perspective. Functionality of relevant organs and systems; instrumentation tools which monitor electrophysiology function. Crosslisted with BMED 4784. Full Description " + "description": "Basic concepts of electrophysiology from an engineering perspective. Functionality of relevant organs and systems; instrumentation tools which monitor electrophysiology function. Crosslisted with BMED 4784." }, "ECE4801": { "subject": "ECE", "number": "4801", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE4802": { "subject": "ECE", "number": "4802", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE4803": { "subject": "ECE", "number": "4803", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE4804": { "subject": "ECE", "number": "4804", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE4805": { "subject": "ECE", "number": "4805", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE4811": { "subject": "ECE", "number": "4811", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE4812": { "subject": "ECE", "number": "4812", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE4813": { "subject": "ECE", "number": "4813", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE4814": { "subject": "ECE", "number": "4814", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE4815": { "subject": "ECE", "number": "4815", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE4823": { "subject": "ECE", "number": "4823", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE4833": { "subject": "ECE", "number": "4833", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE4881": { "subject": "ECE", "number": "4881", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE4882": { "subject": "ECE", "number": "4882", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE4883": { "subject": "ECE", "number": "4883", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE4884": { "subject": "ECE", "number": "4884", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE4891": { "subject": "ECE", "number": "4891", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE4892": { "subject": "ECE", "number": "4892", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE4893": { "subject": "ECE", "number": "4893", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE4894": { "subject": "ECE", "number": "4894", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE4900": { "subject": "ECE", "number": "4900", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "ECE4901": { "subject": "ECE", "number": "4901", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "ECE4902": { "subject": "ECE", "number": "4902", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "ECE4903": { "subject": "ECE", "number": "4903", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "ECE4951": { "subject": "ECE", "number": "4951", "name": "Undergrad Research I ", - "description": "Participation in an individual or group research project under the direction of a faculty member. Full Description " + "description": "Participation in an individual or group research project under the direction of a faculty member." }, "ECE4952": { "subject": "ECE", "number": "4952", "name": "Undergrad Research II ", - "description": "Participation in an individual or group research project under the direction of a faculty member. Full Description " + "description": "Participation in an individual or group research project under the direction of a faculty member." }, "ECE4XXX": { "subject": "ECE", "number": "4XXX", "name": "Elec/Comp Engr Elective ", - "description": " Full Description " + "description": "" }, "ECE6100": { "subject": "ECE", "number": "6100", "name": "Adv Comput Architecture ", - "description": "Comprehensive coverage of the architecture and system issues that confront the design of high-performance workstation/PC computer architectures with emphasis on quantitative evaluation. Credit is not allowed for both ECE 6100 and any of the following courses: ECE 4100, CS 4290, CS 6290. Full Description " + "description": "Comprehensive coverage of the architecture and system issues that confront the design of high-performance workstation/PC computer architectures with emphasis on quantitative evaluation. Credit is not allowed for both ECE 6100 and any of the following courses: ECE 4100, CS 4290, CS 6290." }, "ECE6101": { "subject": "ECE", "number": "6101", "name": "Parallel& Dist Comp Arch ", - "description": "An advanced study of the critical issues and limiting factors in the design of asynchronous and synchronous parallel and distributed architectures. Full Description " + "description": "An advanced study of the critical issues and limiting factors in the design of asynchronous and synchronous parallel and distributed architectures." }, "ECE6102": { "subject": "ECE", "number": "6102", "name": "Dependable Distribut Sys ", - "description": "Concepts, theory, and practice of dependable distributed systems. Techniques for tolerating hardware and software faults. Security aspects such as confidentiality, availability, and integrity. Full Description " + "description": "Concepts, theory, and practice of dependable distributed systems. Techniques for tolerating hardware and software faults. Security aspects such as confidentiality, availability, and integrity." }, "ECE6110": { "subject": "ECE", "number": "6110", "name": "CAD-Communication Netwks ", - "description": "Investigation of the methodologies and algorithms used for designing and optimizing computer/communications networks with a focus on the algorithmic aspects of network design. Full Description " + "description": "Investigation of the methodologies and algorithms used for designing and optimizing computer/communications networks with a focus on the algorithmic aspects of network design." }, "ECE6120": { "subject": "ECE", "number": "6120", "name": "Automata Theory ", - "description": "The course presents a broad base of topics in modern automata and switching theory. These elements form the essentials upon which modern digital systems are constructed. Full Description " + "description": "The course presents a broad base of topics in modern automata and switching theory. These elements form the essentials upon which modern digital systems are constructed." }, "ECE6121": { "subject": "ECE", "number": "6121", "name": "Combinatorial Strategies ", - "description": "Modern counting theory and algorithmic approaches necessary for discrete computation. Full Description " + "description": "Modern counting theory and algorithmic approaches necessary for discrete computation." }, "ECE6122": { "subject": "ECE", "number": "6122", "name": "Adv Prog Techniques ", - "description": "Covers a number of advanced topics in programming methods, data management, distributed computing, and advanced algorithms used in typical engineering applications. Credit will not be awarded for ECE 6122 and ECE 4122. Full Description " + "description": "Covers a number of advanced topics in programming methods, data management, distributed computing, and advanced algorithms used in typical engineering applications. Credit will not be awarded for ECE 6122 and ECE 4122." }, "ECE6130": { "subject": "ECE", "number": "6130", "name": "Adv VLSI Systems ", - "description": "An advanced treatment of VLSI systems analysis, design, and testing with emphasis on complex systems and how they are incorporated into a silicon environment. Credit is not allowed for both ECE 4130 and ECE 6130. Full Description " + "description": "An advanced treatment of VLSI systems analysis, design, and testing with emphasis on complex systems and how they are incorporated into a silicon environment. Credit is not allowed for both ECE 4130 and ECE 6130." }, "ECE6132": { "subject": "ECE", "number": "6132", "name": "Comp-aided VLSI Sys Dsgn ", - "description": "Theory and practice of computer-aided VLSI digital systems design. Logic synthesis, semi-custom VLSI design, high-level synthesis, low-power systems, and hardware/software co-design. Individual and group projects. Full Description " + "description": "Theory and practice of computer-aided VLSI digital systems design. Logic synthesis, semi-custom VLSI design, high-level synthesis, low-power systems, and hardware/software co-design. Individual and group projects." }, "ECE6133": { "subject": "ECE", "number": "6133", "name": "Phys Design Automat-VLSI ", - "description": "Various design automation problems in the physical design process of VLSI circuits including clustering, partitioning, floor planning, placement, routing, and compaction. Full Description " + "description": "Various design automation problems in the physical design process of VLSI circuits including clustering, partitioning, floor planning, placement, routing, and compaction." }, "ECE6140": { "subject": "ECE", "number": "6140", "name": "Digital Systems Test ", - "description": "Introduction to the basic concepts in digital systems testing. Advanced topics in fault modeling and simulation, test pattern generation, and design for testability. Full Description " + "description": "Introduction to the basic concepts in digital systems testing. Advanced topics in fault modeling and simulation, test pattern generation, and design for testability." }, "ECE6200": { "subject": "ECE", "number": "6200", "name": "Biomedical Applic MEMS ", - "description": "MEMS processing technologies, design of fabrication process flows, and applications of the technologies to the development of biomedical micro instrumentation and dectection methodologies. Full Description " + "description": "MEMS processing technologies, design of fabrication process flows, and applications of the technologies to the development of biomedical micro instrumentation and dectection methodologies." }, "ECE6229": { "subject": "ECE", "number": "6229", "name": "Introduction to MEMS ", - "description": "Introduction to Micro-Electro-Mechanical systems: Microfabrication techniques including: photolithography, etching, physical and chemical vapor deposition, electroplating, bonding and polymer processing. Application to sensors and actuators. Credit not allowed for both ECE 6229 and ME 6229 or CHBE 6229. Full Description " + "description": "Introduction to Micro-Electro-Mechanical systems: Microfabrication techniques including: photolithography, etching, physical and chemical vapor deposition, electroplating, bonding and polymer processing. Application to sensors and actuators. Credit not allowed for both ECE 6229 and ME 6229 or CHBE 6229." }, "ECE6250": { "subject": "ECE", "number": "6250", "name": "Adv Digital Signal Proc ", - "description": "An introduction to advanced signal processing methods that are used in a variety of applications areas. Full Description " + "description": "An introduction to advanced signal processing methods that are used in a variety of applications areas." }, "ECE6254": { "subject": "ECE", "number": "6254", "name": "Stat Digit Sig Proc&Mod ", - "description": "Introductory course in digital signal processing, and includes the following topics: signal modeling, optimum filters, and power spectrum estimations. Full Description " + "description": "Introductory course in digital signal processing, and includes the following topics: signal modeling, optimum filters, and power spectrum estimations." }, "ECE6255": { "subject": "ECE", "number": "6255", "name": "Digit Proc-Speech Signal ", - "description": "The application of digital signal processing to problems in speech communication. Part of this goal requires a laboratory project. Full Description " + "description": "The application of digital signal processing to problems in speech communication. Part of this goal requires a laboratory project." }, "ECE6258": { "subject": "ECE", "number": "6258", "name": "Digital Image Processing ", - "description": "An introduction to the theory of multidimensional signal processing and digital image processing, including key applications in multimedia products and services, and telecommunications. Full Description " + "description": "An introduction to the theory of multidimensional signal processing and digital image processing, including key applications in multimedia products and services, and telecommunications." }, "ECE6260": { "subject": "ECE", "number": "6260", "name": "Data Compression & Model ", - "description": "Theory and algorithms of signal encoding and decoding for data compression. Applications in information systems, digital telephony, digital television, and multimedia Internet. Full Description " + "description": "Theory and algorithms of signal encoding and decoding for data compression. Applications in information systems, digital telephony, digital television, and multimedia Internet." }, "ECE6271": { "subject": "ECE", "number": "6271", "name": "Adaptive Filtering ", - "description": "Basic theory of adaptive filter design and implementation. Steepest decent, LMS algorithms, nonlinear adaptive filters, and neural networks. Analysis of performance and applications. Full Description " + "description": "Basic theory of adaptive filter design and implementation. Steepest decent, LMS algorithms, nonlinear adaptive filters, and neural networks. Analysis of performance and applications." }, "ECE6272": { "subject": "ECE", "number": "6272", "name": "Fund-Radar Signal Proces ", - "description": "Signal modeling including radar cross section, multipath, and clutter. Properties of the ambiguity function and coded waveforms. Algorithms for Doppler processing, detection, and radar imaging. Full Description " + "description": "Signal modeling including radar cross section, multipath, and clutter. Properties of the ambiguity function and coded waveforms. Algorithms for Doppler processing, detection, and radar imaging." }, "ECE6273": { "subject": "ECE", "number": "6273", "name": "Pattern Recognit-Speech ", - "description": "Theory and application of pattern recognition with a special application section for automatic speech recognition and related signal processing. Full Description " + "description": "Theory and application of pattern recognition with a special application section for automatic speech recognition and related signal processing." }, "ECE6274": { "subject": "ECE", "number": "6274", "name": "Stat Natural Lang Proc ", - "description": "Foundations of statistical natural language processing established for text data analysis, language engineering, information extraction, and statistical inference. Applications using large text datasets are illustrated. Full Description " + "description": "Foundations of statistical natural language processing established for text data analysis, language engineering, information extraction, and statistical inference. Applications using large text datasets are illustrated." }, "ECE6276": { "subject": "ECE", "number": "6276", "name": "DSP Hardware Sys Desgin ", - "description": "A study of theory and practice in the design and implementation of DSP algorithms on programmable processors, multiprocessors, and ASICs. Full Description " + "description": "A study of theory and practice in the design and implementation of DSP algorithms on programmable processors, multiprocessors, and ASICs." }, "ECE6277": { "subject": "ECE", "number": "6277", "name": "DSP Software Sys Design ", - "description": "Specification, evaluation, and implementation of real-time DSP applications on embedded DSP-based environments. Full Description " + "description": "Specification, evaluation, and implementation of real-time DSP applications on embedded DSP-based environments." }, "ECE6279": { "subject": "ECE", "number": "6279", "name": "Spatial Array Processing ", - "description": "Introduce application areas where signals are sampled over space and time. Transfer knowledge of time-based techniques to spatial processing. Develop algorithms unique to spatial processing. Full Description " + "description": "Introduce application areas where signals are sampled over space and time. Transfer knowledge of time-based techniques to spatial processing. Develop algorithms unique to spatial processing." }, "ECE6280": { "subject": "ECE", "number": "6280", "name": "Cryptography & Security ", - "description": "Algebraic and number theory apporaches to cryptographic techniques, information security, secret key and public key encryption, signature schemes, hash functions, message authentication, and key distribution. Credit not allowed for both ECE 6280 and CS 6260. Full Description " + "description": "Algebraic and number theory apporaches to cryptographic techniques, information security, secret key and public key encryption, signature schemes, hash functions, message authentication, and key distribution. Credit not allowed for both ECE 6280 and CS 6260." }, "ECE6282": { "subject": "ECE", "number": "6282", "name": "Radar Imaging ", - "description": "An indepth study of digital signal processing methods for Synthetic Aperture Radar (SAR) image formation. Methods are also applicable to sonar. Full Description " + "description": "An indepth study of digital signal processing methods for Synthetic Aperture Radar (SAR) image formation. Methods are also applicable to sonar." }, "ECE6283": { "subject": "ECE", "number": "6283", "name": "Harm Analysis Sig Proc ", - "description": "Explores the role of sparse representations in signal processing. Specific topics include: frame decompositions, approximation theory, inverse problems, imaging, and compressed sensing. Full Description " + "description": "Explores the role of sparse representations in signal processing. Specific topics include: frame decompositions, approximation theory, inverse problems, imaging, and compressed sensing." }, "ECE6320": { "subject": "ECE", "number": "6320", "name": "Power Sys Ctrl&Operation ", - "description": "Introduction to methods used in the real-time operation and control of power systems as well as to the hardware and software technology of energy management systems (EMS). Credit will not be awarded for both ECE 6320 and ECEP 6301. Full Description " + "description": "Introduction to methods used in the real-time operation and control of power systems as well as to the hardware and software technology of energy management systems (EMS). Credit will not be awarded for both ECE 6320 and ECEP 6301." }, "ECE6321": { "subject": "ECE", "number": "6321", "name": "Power System Stability ", - "description": "Techniques for stability analysis of electric power systems and applications of these methods. Full Description " + "description": "Techniques for stability analysis of electric power systems and applications of these methods." }, "ECE6322": { "subject": "ECE", "number": "6322", "name": "Pwr Sys Plan&Reliability ", - "description": "To introduce basic concepts as well as analysis and optimization techniques underlying reliability assessment of electric power systems and planning techniques. Credit will not be awarded for both ECE 6322 and ECEP 6305. Full Description " + "description": "To introduce basic concepts as well as analysis and optimization techniques underlying reliability assessment of electric power systems and planning techniques. Credit will not be awarded for both ECE 6322 and ECEP 6305." }, "ECE6323": { "subject": "ECE", "number": "6323", "name": "Power System Protection ", - "description": "Theory and practice of modern power system protection techniques. Credit will not be awarded for both ECE 6323 and ECEP 6351. Full Description " + "description": "Theory and practice of modern power system protection techniques. Credit will not be awarded for both ECE 6323 and ECEP 6351." }, "ECE6330": { "subject": "ECE", "number": "6330", "name": "Power Electronic Devices ", - "description": "Physical considerations involved in the fabrication and use of power semiconductor devices and high-frequency magnetic transformers and inductors. Full Description " + "description": "Physical considerations involved in the fabrication and use of power semiconductor devices and high-frequency magnetic transformers and inductors." }, "ECE6331": { "subject": "ECE", "number": "6331", "name": "Power Electronic Cicuits ", - "description": "The analysis, control, and design of switching power converters: rectifiers, cycloconverters, voltage-sourced and current-source inverters, dc-dc converters, pfc and resonant converts. Full Description " + "description": "The analysis, control, and design of switching power converters: rectifiers, cycloconverters, voltage-sourced and current-source inverters, dc-dc converters, pfc and resonant converts." }, "ECE6332": { "subject": "ECE", "number": "6332", "name": "Power Electronic CAD Lab ", - "description": "To introduce the use of CAD tools in the simulation, analysis, and design of power electronic circuits and systems. Full Description " + "description": "To introduce the use of CAD tools in the simulation, analysis, and design of power electronic circuits and systems." }, "ECE6335": { "subject": "ECE", "number": "6335", "name": "Electric Machinery Analy ", - "description": "An introduction to the analysis and basic construction principles of rotating electric machines and transformers, including ac synchronous and induction machines and dc machines. Credit is now allowed for both ECE 4335 and ECE 6335. Full Description " + "description": "An introduction to the analysis and basic construction principles of rotating electric machines and transformers, including ac synchronous and induction machines and dc machines. Credit is now allowed for both ECE 4335 and ECE 6335." }, "ECE6336": { "subject": "ECE", "number": "6336", "name": "Electric Machine Drives ", - "description": "A study of the dynamics and control of electric machinery and variable speed machine drive systems. Full Description " + "description": "A study of the dynamics and control of electric machinery and variable speed machine drive systems." }, "ECE6350": { "subject": "ECE", "number": "6350", "name": "Applied Electromagnetics ", - "description": "The methodology and application of advanced electromagnetic theory. Full Description " + "description": "The methodology and application of advanced electromagnetic theory." }, "ECE6360": { "subject": "ECE", "number": "6360", "name": "Microwave Design ", - "description": "Applications of electromagnetic theory to microwave components and systems. Introduction to the latest characterization and design techniques including monolithic microwave integrated circuit (MMIC) technology. Full Description " + "description": "Applications of electromagnetic theory to microwave components and systems. Introduction to the latest characterization and design techniques including monolithic microwave integrated circuit (MMIC) technology." }, "ECE6361": { "subject": "ECE", "number": "6361", "name": "Microwave Design Lab ", - "description": "This laboratory course will teach microwave measurement/design fundamentals for both passive and active components. Students will use both CAD tools and network analyzers. Full Description " + "description": "This laboratory course will teach microwave measurement/design fundamentals for both passive and active components. Students will use both CAD tools and network analyzers." }, "ECE6370": { "subject": "ECE", "number": "6370", "name": "EM Radiation & Antennas ", - "description": "The fundamentals of electromagnetic radiation and antennas. Full Description " + "description": "The fundamentals of electromagnetic radiation and antennas." }, "ECE6380": { "subject": "ECE", "number": "6380", "name": "Intro Computational EM ", - "description": "The practical application of the finite-difference time-domain and finite element techniques to electromagnetic problems. Computer projects are required. Full Description " + "description": "The practical application of the finite-difference time-domain and finite element techniques to electromagnetic problems. Computer projects are required." }, "ECE6390": { "subject": "ECE", "number": "6390", "name": "Satellite Comm&Navig Sys ", - "description": "To introduce satellite communications and navigation system design including microwave transmission, satellite transponders, earth station hardware, and satellite networks. A design project is required. Full Description " + "description": "To introduce satellite communications and navigation system design including microwave transmission, satellite transponders, earth station hardware, and satellite networks. A design project is required." }, "ECE6412": { "subject": "ECE", "number": "6412", "name": "Analog Integ Circuit Dgn ", - "description": "Design of analog circuits using CMOS and bipolar technologies. Full Description " + "description": "Design of analog circuits using CMOS and bipolar technologies." }, "ECE6414": { "subject": "ECE", "number": "6414", "name": "Analog Integrate Sys Dgn ", - "description": "Design of analog systems using CMOS and bipolar technologies. A higher level of design for analog and digital systems is presented. Full Description " + "description": "Design of analog systems using CMOS and bipolar technologies. A higher level of design for analog and digital systems is presented." }, "ECE6416": { "subject": "ECE", "number": "6416", "name": "Low Noise Elec Sys Dsgn ", - "description": "A study of the sources of noise found in electronic instrumentation. Teaches the recognition of sources of noise and the design techniques to achieve noise reduction. Full Description " + "description": "A study of the sources of noise found in electronic instrumentation. Teaches the recognition of sources of noise and the design techniques to achieve noise reduction." }, "ECE6420": { "subject": "ECE", "number": "6420", "name": "Wireless IC Design ", - "description": "Wireless system specifications are translated to architectures and building blocks compatible with silicon technology. The course focuses on the analysis and design of these blocks. Full Description " + "description": "Wireless system specifications are translated to architectures and building blocks compatible with silicon technology. The course focuses on the analysis and design of these blocks." }, "ECE6422": { "subject": "ECE", "number": "6422", "name": "Interface IC Design ", - "description": "Design of high-performance integrated interface circuits for various MEMS and sensing devices. System level issues in integrated microsystems. Full Description " + "description": "Design of high-performance integrated interface circuits for various MEMS and sensing devices. System level issues in integrated microsystems." }, "ECE6430": { "subject": "ECE", "number": "6430", "name": "Digital MOS ICs ", - "description": "Detailed analysis of the operation and design of high- performance MOS digital integrated circuits. Emphasis is on circuit design techniques with examples from the literature. Full Description " + "description": "Detailed analysis of the operation and design of high- performance MOS digital integrated circuits. Emphasis is on circuit design techniques with examples from the literature." }, "ECE6435": { "subject": "ECE", "number": "6435", "name": "Neuro Analog VLSI Ckts ", - "description": "Large-scale analog computation for sensory and motor processing. Analog building blocks are presented, leading to VLSI systems inspired by neurobiological architectures and computational paradigms. Full Description " + "description": "Large-scale analog computation for sensory and motor processing. Analog building blocks are presented, leading to VLSI systems inspired by neurobiological architectures and computational paradigms." }, "ECE6440": { "subject": "ECE", "number": "6440", "name": "Frequency Synthesizers ", - "description": "Frequency synthesizers generate many discrete RF frequencies from one reference frequency. General synthesizers, digital PLL, direct digital, and hybrid synthesizers are covered. Full Description " + "description": "Frequency synthesizers generate many discrete RF frequencies from one reference frequency. General synthesizers, digital PLL, direct digital, and hybrid synthesizers are covered." }, "ECE6442": { "subject": "ECE", "number": "6442", "name": "Electronic Oscillators ", - "description": "Starting from nonlinear differential equations, this course presents a systematic approach to the design of electronic oscillators. Design of negative resistance and feedback oscillators is discussed. CAD techniques are employed. Full Description " + "description": "Starting from nonlinear differential equations, this course presents a systematic approach to the design of electronic oscillators. Design of negative resistance and feedback oscillators is discussed. CAD techniques are employed." }, "ECE6444": { "subject": "ECE", "number": "6444", "name": "Si-Based Hetero Dev & Ckts ", - "description": "Theory and design of novel silicon-germanium microelectronic devices and circuits. Materials, device physics, fabrication, measurement, circuit design, and system applications. Full Description " + "description": "Theory and design of novel silicon-germanium microelectronic devices and circuits. Materials, device physics, fabrication, measurement, circuit design, and system applications." }, "ECE6450": { "subject": "ECE", "number": "6450", "name": "Microelectronics Tech ", - "description": "Presents the fundamentals of microelectronics material, device, and circuit fabrication. Full Description " + "description": "Presents the fundamentals of microelectronics material, device, and circuit fabrication." }, "ECE6451": { "subject": "ECE", "number": "6451", "name": "Intro Microelec Theory ", - "description": "Basis of quantum mechanics, statistical mechanics, and the behavior of solids to serve as an introduction to the modern study of semiconductors and semiconductor devices. Full Description " + "description": "Basis of quantum mechanics, statistical mechanics, and the behavior of solids to serve as an introduction to the modern study of semiconductors and semiconductor devices." }, "ECE6453": { "subject": "ECE", "number": "6453", "name": "Theory Electronic Device ", - "description": "Presents the fundamentals of electronic device operation. Full Description " + "description": "Presents the fundamentals of electronic device operation." }, "ECE6455": { "subject": "ECE", "number": "6455", "name": "Semiconductor Proc Ctrl ", - "description": "This course is designed to explore methods of applying statistical process control and statistical quality control to semiconductor manufacturing processes. Students will be required to complete a design project. Full Description " + "description": "This course is designed to explore methods of applying statistical process control and statistical quality control to semiconductor manufacturing processes. Students will be required to complete a design project." }, "ECE6456": { "subject": "ECE", "number": "6456", "name": "Solar Cells ", - "description": "To provide a practical understanding of semiconductor materials and technology as it relates to design and development of efficient solar cells and photovoltaic systems. Full Description " + "description": "To provide a practical understanding of semiconductor materials and technology as it relates to design and development of efficient solar cells and photovoltaic systems." }, "ECE6458": { "subject": "ECE", "number": "6458", "name": "Gigascale Integration ", - "description": "Hierarchy of physical principles that enable understanding and estimation of future opportunities to achieve multibillion transistor silicon chips using sub-0.25 micron technology. Full Description " + "description": "Hierarchy of physical principles that enable understanding and estimation of future opportunities to achieve multibillion transistor silicon chips using sub-0.25 micron technology." }, "ECE6460": { "subject": "ECE", "number": "6460", "name": "Microelectromech Devices ", - "description": "Fundamental concepts for desgin of microelectromechanical devices (MEMS), including mechanical and thermal behavior of materials and structures, transduction principles, transducer design, and modeling. Full Description " + "description": "Fundamental concepts for desgin of microelectromechanical devices (MEMS), including mechanical and thermal behavior of materials and structures, transduction principles, transducer design, and modeling." }, "ECE6461": { "subject": "ECE", "number": "6461", "name": "Nanoelectronics ", - "description": "In this course carbon nanotubes are used as a framework to teach quantum transport as the foundatoin for all emerging nanoelectronic devices. Full Description " + "description": "In this course carbon nanotubes are used as a framework to teach quantum transport as the foundatoin for all emerging nanoelectronic devices." }, "ECE6500": { "subject": "ECE", "number": "6500", "name": "Fourier Tech&Signal Analy ", - "description": "Introduction to the use of Fourier Methods for analysis of signals. Full Description " + "description": "Introduction to the use of Fourier Methods for analysis of signals." }, "ECE6501": { "subject": "ECE", "number": "6501", "name": "Fourier Optic&Holography ", - "description": "Applications of the Fourier transform and linear systems theory to the analysis of optical propagation, diffraction imaging, holography, wavefront modulation, and signal processing. Full Description " + "description": "Applications of the Fourier transform and linear systems theory to the analysis of optical propagation, diffraction imaging, holography, wavefront modulation, and signal processing." }, "ECE6510": { "subject": "ECE", "number": "6510", "name": "Electro-Optics ", - "description": "Study of the fundamental principles and primary applications of lasers, and of detectors of optical radiation. Full Description " + "description": "Study of the fundamental principles and primary applications of lasers, and of detectors of optical radiation." }, "ECE6515": { "subject": "ECE", "number": "6515", "name": "Nanophotonics ", - "description": "Design of nano-structures to guide light and to develop a new set of optical devices. Full Description " + "description": "Design of nano-structures to guide light and to develop a new set of optical devices." }, "ECE6520": { "subject": "ECE", "number": "6520", "name": "Integrated Optics ", - "description": "Theory and design of optical waveguides and optical waveguide devices. Full Description " + "description": "Theory and design of optical waveguides and optical waveguide devices." }, "ECE6521": { "subject": "ECE", "number": "6521", "name": "Optical Fibers ", - "description": "Provides an in-depth understanding of the light-guiding properties of optical fibers as used in communication systems. Full Description " + "description": "Provides an in-depth understanding of the light-guiding properties of optical fibers as used in communication systems." }, "ECE6522": { "subject": "ECE", "number": "6522", "name": "Nonlinear Optics ", - "description": "Provides an introduction to the field of nonlinear optics, exploring the physical mechanisms, applications, and experimental techniques. Full Description " + "description": "Provides an introduction to the field of nonlinear optics, exploring the physical mechanisms, applications, and experimental techniques." }, "ECE6530": { "subject": "ECE", "number": "6530", "name": "Mod, Diffract&Cryst Opt ", - "description": "Provides a working knowledge of temporal and spatial optical modulation, diffractive optical devices, and crystal optics. Full Description " + "description": "Provides a working knowledge of temporal and spatial optical modulation, diffractive optical devices, and crystal optics." }, "ECE6540": { "subject": "ECE", "number": "6540", "name": "Organic Optoelectronics ", - "description": "Fundamental understanding of the optical and electronic properties of organic materials and devices that form the basic of the emerging technological area of printed flexible optoelectronics. Full Description " + "description": "Fundamental understanding of the optical and electronic properties of organic materials and devices that form the basic of the emerging technological area of printed flexible optoelectronics." }, "ECE6542": { "subject": "ECE", "number": "6542", "name": "Optoelectronic Systems ", - "description": "Optoelectronic devices (detectors, emitters, modulators) from the practical realized and theoretical performance perspective. Explores monolithic and hybrid integration of devices, packaging, and system implementation. Full Description " + "description": "Optoelectronic devices (detectors, emitters, modulators) from the practical realized and theoretical performance perspective. Explores monolithic and hybrid integration of devices, packaging, and system implementation." }, "ECE6543": { "subject": "ECE", "number": "6543", "name": "Fiber Optic Networks ", - "description": "Architectural, performance and design aspects of fiber-optic communications networks, components, and technologies. Relationship between the physical network implementation and the higher-level network architecture. Full Description " + "description": "Architectural, performance and design aspects of fiber-optic communications networks, components, and technologies. Relationship between the physical network implementation and the higher-level network architecture." }, "ECE6550": { "subject": "ECE", "number": "6550", "name": "Linear Sys and Controls ", - "description": "Introduction to linear system theory and feedback control. Topics include state space representations, controllability and observability, linear feedback control. Credit will not be awarded for both ECE 6550 and AE 6530. Full Description " + "description": "Introduction to linear system theory and feedback control. Topics include state space representations, controllability and observability, linear feedback control. Credit will not be awarded for both ECE 6550 and AE 6530." }, "ECE6551": { "subject": "ECE", "number": "6551", "name": "Digital Control ", - "description": "Techniques for analysis and synthesis of computer-based control systems. Design projects provide an understanding of the application of digital control to physical systems. Full Description " + "description": "Techniques for analysis and synthesis of computer-based control systems. Design projects provide an understanding of the application of digital control to physical systems." }, "ECE6552": { "subject": "ECE", "number": "6552", "name": "Nonlinear Systems ", - "description": "Classical analysis techniques and stability theory for nonlinear systems. Control design for nonlinear systems, including robotic systems. Design projects. Full Description " + "description": "Classical analysis techniques and stability theory for nonlinear systems. Control design for nonlinear systems, including robotic systems. Design projects." }, "ECE6553": { "subject": "ECE", "number": "6553", "name": "Optimal Control ", - "description": "Optimal control of dynamic systems, numerical optimization, techniques and their applications in solving optical-trajectory problems. Full Description " + "description": "Optimal control of dynamic systems, numerical optimization, techniques and their applications in solving optical-trajectory problems." }, "ECE6554": { "subject": "ECE", "number": "6554", "name": "Adaptive Control ", - "description": "Methods of parameter estimation and adaptive control for systems with constant or slowly varying unknown parameters. MATLAB design projects emphasizing applications to physical systems. Full Description " + "description": "Methods of parameter estimation and adaptive control for systems with constant or slowly varying unknown parameters. MATLAB design projects emphasizing applications to physical systems." }, "ECE6555": { "subject": "ECE", "number": "6555", "name": "Optimal Estimation ", - "description": "Techniques for signal and state estimation in the presence of measurement and process noise with the emphasis on Wiener and Kalman filtering. Full Description " + "description": "Techniques for signal and state estimation in the presence of measurement and process noise with the emphasis on Wiener and Kalman filtering." }, "ECE6556": { "subject": "ECE", "number": "6556", "name": "Intelligent Control ", - "description": "Principles of intelligent systems and their utility in modeling, identification, and control of complex systems; neuro-fuzzy tools applied to supervisory control; hands-on laboratory experience. Full Description " + "description": "Principles of intelligent systems and their utility in modeling, identification, and control of complex systems; neuro-fuzzy tools applied to supervisory control; hands-on laboratory experience." }, "ECE6557": { "subject": "ECE", "number": "6557", "name": "Manufacturing Sys Design ", - "description": "Analytic and simulation tools for design, control, and optimization of manufacturing systems. Discrete event dynamic systems and optimization. Full Description " + "description": "Analytic and simulation tools for design, control, and optimization of manufacturing systems. Discrete event dynamic systems and optimization." }, "ECE6558": { "subject": "ECE", "number": "6558", "name": "Stochastic Systems ", - "description": "Advanced techniques in stochastic analysis with emphasis on stochastic dynamics, nonlinear filtering and detection, stochastic control, and stochastic optimization and simulation methods. Full Description " + "description": "Advanced techniques in stochastic analysis with emphasis on stochastic dynamics, nonlinear filtering and detection, stochastic control, and stochastic optimization and simulation methods." }, "ECE6559": { "subject": "ECE", "number": "6559", "name": "Adv Linear Systems ", - "description": "Study of multivariable linear system theory and robust control design methodologies. Full Description " + "description": "Study of multivariable linear system theory and robust control design methodologies." }, "ECE6560": { "subject": "ECE", "number": "6560", "name": "PDEs Image Proc & Vision ", - "description": "Mathematical foundations and numerical aspects of partial-differential equation techniques used in computer vision. Topics inculde image smoothing and enhancement, edge detection, morphology, and image reconstruction. Full Description " + "description": "Mathematical foundations and numerical aspects of partial-differential equation techniques used in computer vision. Topics inculde image smoothing and enhancement, edge detection, morphology, and image reconstruction." }, "ECE6561": { "subject": "ECE", "number": "6561", "name": "Computing for Controls ", - "description": "Introduction to real-time computing, distributed computing, and software engineering in control systems. The particular requirements of control systems will be presented. Full Description " + "description": "Introduction to real-time computing, distributed computing, and software engineering in control systems. The particular requirements of control systems will be presented." }, "ECE6562": { "subject": "ECE", "number": "6562", "name": "Control Robotic Systems ", - "description": "Fundamental issues associated with autonomous robot control. Emphasizes biological perspective that forms the basis of many current developments in robotics. Full Description " + "description": "Fundamental issues associated with autonomous robot control. Emphasizes biological perspective that forms the basis of many current developments in robotics." }, "ECE6563": { "subject": "ECE", "number": "6563", "name": "Networked Control ", - "description": "Covers tools and techniques for networked control systems as well as application domains and promising research directions. Full Description " + "description": "Covers tools and techniques for networked control systems as well as application domains and promising research directions." }, "ECE6601": { "subject": "ECE", "number": "6601", "name": "Random Processes ", - "description": "To develop the theoretical framework for the processing of random signals and data. Full Description " + "description": "To develop the theoretical framework for the processing of random signals and data." }, "ECE6602": { "subject": "ECE", "number": "6602", "name": "Digital Communications ", - "description": "Basic M-ary digital communications systems, with emphasis on system design and performance analysis in the presence of additive noise. Full Description " + "description": "Basic M-ary digital communications systems, with emphasis on system design and performance analysis in the presence of additive noise." }, "ECE6603": { "subject": "ECE", "number": "6603", "name": "Adv Digit Communications ", - "description": "The theory and practice of efficient digital communications over linear dispersive channels, including adaptive equalization and synchronization. Full Description " + "description": "The theory and practice of efficient digital communications over linear dispersive channels, including adaptive equalization and synchronization." }, "ECE6604": { "subject": "ECE", "number": "6604", "name": "Personal & Mobile Commun ", - "description": "To introduce various topics that are fundamental to cellular mobile telephone systems. Full Description " + "description": "To introduce various topics that are fundamental to cellular mobile telephone systems." }, "ECE6605": { "subject": "ECE", "number": "6605", "name": "Information Theory ", - "description": "To introduce the mathematical theory of communications. Emphasis will be placed on Shannon's theorems and their use in the analysis and design of communication systems. Full Description " + "description": "To introduce the mathematical theory of communications. Emphasis will be placed on Shannon's theorems and their use in the analysis and design of communication systems." }, "ECE6606": { "subject": "ECE", "number": "6606", "name": "Coding Theory & Appl ", - "description": "To introduce the theory and practice of error control coding, with emphasis on linear, cyclic, convolutional, and parallel concatenated codes. Full Description " + "description": "To introduce the theory and practice of error control coding, with emphasis on linear, cyclic, convolutional, and parallel concatenated codes." }, "ECE6607": { "subject": "ECE", "number": "6607", "name": "Computer Comm Networks ", - "description": "Fundamental concepts of computer network architecture and protocols. Full Description " + "description": "Fundamental concepts of computer network architecture and protocols." }, "ECE6608": { "subject": "ECE", "number": "6608", "name": "Performance Analysis ", - "description": "Fundamental concepts of queuing systems, and applications of queuing theory to the performance evaluation of computer networks. Full Description " + "description": "Fundamental concepts of queuing systems, and applications of queuing theory to the performance evaluation of computer networks." }, "ECE6610": { "subject": "ECE", "number": "6610", "name": "Wireless Networks ", - "description": "Fundamental concepts of wireless networks. Full Description " + "description": "Fundamental concepts of wireless networks." }, "ECE6611": { "subject": "ECE", "number": "6611", "name": "Broadband Networking ", - "description": "Fundamental concepts of broadband networking, including network models, ATM networks, quality of service, and traffic management. Full Description " + "description": "Fundamental concepts of broadband networking, including network models, ATM networks, quality of service, and traffic management." }, "ECE6612": { "subject": "ECE", "number": "6612", "name": "Comp Network Security ", - "description": "Fundamental concepts of network information security, including encryption, secure access methods, and vulnerabilities in network protocols, operating systems, and network applications. Full Description " + "description": "Fundamental concepts of network information security, including encryption, secure access methods, and vulnerabilities in network protocols, operating systems, and network applications." }, "ECE6613": { "subject": "ECE", "number": "6613", "name": "Broadband Access Newwork ", - "description": "Study and comparison of ongoing and emerging access newtwork technologies, including hybrid-fiber-coax, FTTP/FTTH, Gigabit Ethernet, ADSL/VDSL, and ultra wideband wireless data over fiber systems. Full Description " + "description": "Study and comparison of ongoing and emerging access newtwork technologies, including hybrid-fiber-coax, FTTP/FTTH, Gigabit Ethernet, ADSL/VDSL, and ultra wideband wireless data over fiber systems." }, "ECE6614": { "subject": "ECE", "number": "6614", "name": "Multimedia Communication ", - "description": "Comprehensive coverage of media compression, synthesis and recognition, media communications and networking, and standards for audiovisual communications over wired and wireless networks. Full Description " + "description": "Comprehensive coverage of media compression, synthesis and recognition, media communications and networking, and standards for audiovisual communications over wired and wireless networks." }, "ECE6615": { "subject": "ECE", "number": "6615", "name": "Sensor Networks ", - "description": "Basics of sensor network communications. Applications, architectures, and communication protocols for sensor networks are treated in depth. Full Description " + "description": "Basics of sensor network communications. Applications, architectures, and communication protocols for sensor networks are treated in depth." }, "ECE6616": { "subject": "ECE", "number": "6616", "name": "Cognitive Radio Networks ", - "description": "Scarce spectrum needs to be dynamically managed. Architectures and communication protocols such as spectrum sensing, spectrum sharing, and spectrum mobility are treated in depth. Full Description " + "description": "Scarce spectrum needs to be dynamically managed. Architectures and communication protocols such as spectrum sensing, spectrum sharing, and spectrum mobility are treated in depth." }, "ECE6730": { "subject": "ECE", "number": "6730", "name": "Model&Sim:Found&Implemen ", - "description": "Foundations and algorithms concerning the development of conceptual models for systems, and their realization in the form of computer software; discrete and continuous models. Crosslisted with CSE 6730. Full Description " + "description": "Foundations and algorithms concerning the development of conceptual models for systems, and their realization in the form of computer software; discrete and continuous models. Crosslisted with CSE 6730." }, "ECE6744": { "subject": "ECE", "number": "6744", "name": "Topics in Engr Practice ", - "description": "Topics of current importance offered in collaboration with an approved partner of Georgia Tech's Distance Learning Program. Crosslisted with ME 6744. Full Description " + "description": "Topics of current importance offered in collaboration with an approved partner of Georgia Tech's Distance Learning Program. Crosslisted with ME 6744." }, "ECE6759": { "subject": "ECE", "number": "6759", "name": "Plasma Processing ", - "description": "Fundamental physics, chemistry, chemical engineering, and electrical engineering principles inherent in plasma processes. Includes etching, deposition, diagnostic methods, and control schemes. Crosslisted with CHE 6759. Full Description " + "description": "Fundamental physics, chemistry, chemical engineering, and electrical engineering principles inherent in plasma processes. Includes etching, deposition, diagnostic methods, and control schemes. Crosslisted with CHE 6759." }, "ECE6771": { "subject": "ECE", "number": "6771", "name": "Optoelectronics ", - "description": "Optoelectronic materials, physical processes, and devices. Includes compound semiconductor materials, excitation, recombination, gain, and modulation processes and devices such as emitters, detectors, and modulators. Crosslisted with PHYS 6771. Full Description " + "description": "Optoelectronic materials, physical processes, and devices. Includes compound semiconductor materials, excitation, recombination, gain, and modulation processes and devices such as emitters, detectors, and modulators. Crosslisted with PHYS 6771." }, "ECE6776": { "subject": "ECE", "number": "6776", "name": "Microelec Sys Packaging ", - "description": "Broad overview of system-level, cross-disciplinary microelectronics packaging technologies, including design, test, thermal, reliability, optoelectronics, and RF integration. Comparison of system-on-chip and system-on-package. Crosslisted with ME and MSE 6776. Full Description " + "description": "Broad overview of system-level, cross-disciplinary microelectronics packaging technologies, including design, test, thermal, reliability, optoelectronics, and RF integration. Comparison of system-on-chip and system-on-package. Crosslisted with ME and MSE 6776." }, "ECE6779": { "subject": "ECE", "number": "6779", "name": "Therm Pkg-Micro/Nano Sys ", - "description": "Passive, active, and hybrid thermal management techniques, and computational modeling of micro systems. Air cooling, simlge phase and phase change liquid cooling, heat pipes, and thermoelectrics. Crosslisted with ME 6779. Full Description " + "description": "Passive, active, and hybrid thermal management techniques, and computational modeling of micro systems. Air cooling, simlge phase and phase change liquid cooling, heat pipes, and thermoelectrics. Crosslisted with ME 6779." }, "ECE6780": { "subject": "ECE", "number": "6780", "name": "Medical Image Processing ", - "description": "A study of methods for enhancing, analyzing, interpreting, and visualizing information from two- and three-dimensional data obtained from a variety of medical imaging modalities. Crosslisted with CS and BMED 6780. Full Description " + "description": "A study of methods for enhancing, analyzing, interpreting, and visualizing information from two- and three-dimensional data obtained from a variety of medical imaging modalities. Crosslisted with CS and BMED 6780." }, "ECE6786": { "subject": "ECE", "number": "6786", "name": "Medical Imaging Systems ", - "description": "A study of the principles and design of medical imaging systems such as X-ray, ultrasound, nuclear medicine, and nuclear magnetic resonance. Crosslisted with BMED 6786. Full Description " + "description": "A study of the principles and design of medical imaging systems such as X-ray, ultrasound, nuclear medicine, and nuclear magnetic resonance. Crosslisted with BMED 6786." }, "ECE6787": { "subject": "ECE", "number": "6787", "name": "Quantitative Electrophys ", - "description": "A quantitative presentation of electrophysiological systems in biological organisms, emphasizing the electrical properties and modeling of neural and cardiac cells and systems. Crosslisted with BMED and PHYS 6787. Full Description " + "description": "A quantitative presentation of electrophysiological systems in biological organisms, emphasizing the electrical properties and modeling of neural and cardiac cells and systems. Crosslisted with BMED and PHYS 6787." }, "ECE6790": { "subject": "ECE", "number": "6790", "name": "Info Proc Model Neur Sys ", - "description": "Examines \"top-down\" modeling approaches for sensorineural systems, where optimal computational principles used in engineering(e.g., information theory, Bayesian inference, control theory) explain observed information processing. Full Description " + "description": "Examines \"top-down\" modeling approaches for sensorineural systems, where optimal computational principles used in engineering(e.g., information theory, Bayesian inference, control theory) explain observed information processing." }, "ECE6792": { "subject": "ECE", "number": "6792", "name": "Manufacturing Seminar ", - "description": "Guest speakers on a broad range of manufacturing-related topics: research, applications, and technology. Required for Certificate in Manufacturing. Crosslisted with ISYE and ME 6792. Full Description " + "description": "Guest speakers on a broad range of manufacturing-related topics: research, applications, and technology. Required for Certificate in Manufacturing. Crosslisted with ISYE and ME 6792." }, "ECE6XXX": { "subject": "ECE", "number": "6XXX", "name": "Elec/Comp Engr Elective ", - "description": " Full Description " + "description": "" }, "ECE7000": { "subject": "ECE", "number": "7000", "name": "Master's Thesis ", - "description": " Full Description " + "description": "" }, "ECE7055": { "subject": "ECE", "number": "7055", "name": "GT-SJTU ", - "description": "For GT-SJTU dual-MS students during terms when they are not taking other GT courses. Placeholder course. Full Description " + "description": "For GT-SJTU dual-MS students during terms when they are not taking other GT courses. Placeholder course." }, "ECE7056": { "subject": "ECE", "number": "7056", "name": "GT-TU ", - "description": "For GT-TU double-MS students during terms when they are not taking other GT courses. Full Description " + "description": "For GT-TU double-MS students during terms when they are not taking other GT courses." }, "ECE7102": { "subject": "ECE", "number": "7102", "name": "RISC Architectures ", - "description": "An advanced design-oriented class studying the design techniques and operational principles of modern Superscalar RISC datapaths. Full Description " + "description": "An advanced design-oriented class studying the design techniques and operational principles of modern Superscalar RISC datapaths." }, "ECE7103": { "subject": "ECE", "number": "7103", "name": "Advanced Memory Systems ", - "description": "Covers the basic trade-offs in architecting a high performance memory hierarchy at all levels, starting from the on-chip cache to main memory and storage sub-system. Full Description " + "description": "Covers the basic trade-offs in architecting a high performance memory hierarchy at all levels, starting from the on-chip cache to main memory and storage sub-system." }, "ECE7131": { "subject": "ECE", "number": "7131", "name": "Asynch & Self Timed Sys ", - "description": "Specification and design of asynchronous digital systems. Full Description " + "description": "Specification and design of asynchronous digital systems." }, "ECE7141": { "subject": "ECE", "number": "7141", "name": "Adv Digital Sys Test ", - "description": "Design and test techniques for high-speed digital systems operating at rates above 100 MHz with a practical emphasis via substantial projects. Full Description " + "description": "Design and test techniques for high-speed digital systems operating at rates above 100 MHz with a practical emphasis via substantial projects." }, "ECE7142": { "subject": "ECE", "number": "7142", "name": "Fault Tolerant Computing ", - "description": "Key concepts in fault-tolerant computing. Understanding and use of modern fault-tolerant hardware and software design practices. Case studies. Full Description " + "description": "Key concepts in fault-tolerant computing. Understanding and use of modern fault-tolerant hardware and software design practices. Case studies." }, "ECE7251": { "subject": "ECE", "number": "7251", "name": "Signal Detection&Estimat ", - "description": "Detection theory and estimation theory and their application to communications and statistical signal processing problems. Full Description " + "description": "Detection theory and estimation theory and their application to communications and statistical signal processing problems." }, "ECE7252": { "subject": "ECE", "number": "7252", "name": "Adv Signal Proc Theory ", - "description": "A lecture and seminar treatment of the latest developments in signal processing. Emphasis is placed on current literature and emerging research areas. Full Description " + "description": "A lecture and seminar treatment of the latest developments in signal processing. Emphasis is placed on current literature and emerging research areas." }, "ECE7370": { "subject": "ECE", "number": "7370", "name": "Antennas/Waves in Matter ", - "description": "Basic methods for characterizing the electromagnetic properties of common materials (geophysical, biological, etc.) and techniques for analyzing antennas and wave propagation in these materials. Full Description " + "description": "Basic methods for characterizing the electromagnetic properties of common materials (geophysical, biological, etc.) and techniques for analyzing antennas and wave propagation in these materials." }, "ECE7380": { "subject": "ECE", "number": "7380", "name": "Topics-Computational EM ", - "description": "Computational approaches for applications such as radar signature prediction, microwave antenna and device design, and modeling techniques for electronic packaging. Full Description " + "description": "Computational approaches for applications such as radar signature prediction, microwave antenna and device design, and modeling techniques for electronic packaging." }, "ECE7611": { "subject": "ECE", "number": "7611", "name": "Adv Communication Theory ", - "description": "Latest developments in communications and networking are treated in lecture and seminar. Emphasis on current literature and open research areas. Full Description " + "description": "Latest developments in communications and networking are treated in lecture and seminar. Emphasis on current literature and open research areas." }, "ECE7785": { "subject": "ECE", "number": "7785", "name": "Intro Robotics Research ", - "description": "Familiarizes students with the core areas of robotics; mechanics, control, perception, AI, and autonomy. Provides an introduction to the mathematical tools required in robotics research. Full Description " + "description": "Familiarizes students with the core areas of robotics; mechanics, control, perception, AI, and autonomy. Provides an introduction to the mathematical tools required in robotics research." }, "ECE7999": { "subject": "ECE", "number": "7999", "name": "Prep-Doctoral Qual Exam ", - "description": "This course is reseved for students who are studying for the ECE Preliminary Exam. Full Description " + "description": "This course is reseved for students who are studying for the ECE Preliminary Exam." }, "ECE8001": { "subject": "ECE", "number": "8001", "name": "ECE Seminar ", - "description": "Speakers with diverse backgrounds and representing many different industries, professions, and institutions describe their experiences, entrepreneurial ventures, and research challenges. Full Description " + "description": "Speakers with diverse backgrounds and representing many different industries, professions, and institutions describe their experiences, entrepreneurial ventures, and research challenges." }, "ECE8002": { "subject": "ECE", "number": "8002", "name": "ECE Seminar ", - "description": "Speakers with diverse backgrounds and representing different industries, professions, and institutions describe their experiences, entrepreneurial ventures, and research challenges. Full Description " + "description": "Speakers with diverse backgrounds and representing different industries, professions, and institutions describe their experiences, entrepreneurial ventures, and research challenges." }, "ECE8003": { "subject": "ECE", "number": "8003", "name": "ECE Seminar ", - "description": "Speakers with diverse backgrounds and representing many different industries, professions, and institutions describe their experiences, entrepreneurial ventures, and research challenges. Full Description " + "description": "Speakers with diverse backgrounds and representing many different industries, professions, and institutions describe their experiences, entrepreneurial ventures, and research challenges." }, "ECE8010": { "subject": "ECE", "number": "8010", "name": "Research Seminar ", - "description": "Seminar presentations describing ECE-related research projects, centers, and other activities at Georgia Tech. Full Description " + "description": "Seminar presentations describing ECE-related research projects, centers, and other activities at Georgia Tech." }, "ECE8020": { "subject": "ECE", "number": "8020", "name": "Pro Communication Skills ", - "description": "Written, oral, and graphical communication skills needed by electrical and computer engineering professionals. Full Description " + "description": "Written, oral, and graphical communication skills needed by electrical and computer engineering professionals." }, "ECE8022": { "subject": "ECE", "number": "8022", "name": "Prof Communication Sem ", - "description": "Seminar presentations on oral and written technical communication skills needed by electrical and computer engineering professionals. Credit for this course may not be used toward the master's degree in ECE. Full Description " + "description": "Seminar presentations on oral and written technical communication skills needed by electrical and computer engineering professionals. Credit for this course may not be used toward the master's degree in ECE." }, "ECE8750": { "subject": "ECE", "number": "8750", "name": "Robotics Research Fnd I ", - "description": "Multidisciplinary research course supervised by two robotics faculty from different schools participating in the robotics Ph.D. program. Full Description " + "description": "Multidisciplinary research course supervised by two robotics faculty from different schools participating in the robotics Ph.D. program." }, "ECE8751": { "subject": "ECE", "number": "8751", "name": "Robotics Research Fnd II ", - "description": "Continuation of AE 8751 (Robotics Research Foundation I). Full Description " + "description": "Continuation of AE 8751 (Robotics Research Foundation I)." }, "ECE8801": { "subject": "ECE", "number": "8801", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE8802": { "subject": "ECE", "number": "8802", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE8803": { "subject": "ECE", "number": "8803", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE8804": { "subject": "ECE", "number": "8804", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE8805": { "subject": "ECE", "number": "8805", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE8811": { "subject": "ECE", "number": "8811", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE8812": { "subject": "ECE", "number": "8812", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE8813": { "subject": "ECE", "number": "8813", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE8814": { "subject": "ECE", "number": "8814", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE8815": { "subject": "ECE", "number": "8815", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE8823": { "subject": "ECE", "number": "8823", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE8833": { "subject": "ECE", "number": "8833", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE8843": { "subject": "ECE", "number": "8843", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE8853": { "subject": "ECE", "number": "8853", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE8863": { "subject": "ECE", "number": "8863", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE8873": { "subject": "ECE", "number": "8873", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECE8881": { "subject": "ECE", "number": "8881", "name": "Special Topics-Lab ", - "description": " Full Description " + "description": "" }, "ECE8882": { "subject": "ECE", "number": "8882", "name": "Special Topics-Lab ", - "description": " Full Description " + "description": "" }, "ECE8883": { "subject": "ECE", "number": "8883", "name": "Special Topics-Lab ", - "description": " Full Description " + "description": "" }, "ECE8884": { "subject": "ECE", "number": "8884", "name": "Special Topics-Lab ", - "description": " Full Description " + "description": "" }, "ECE8891": { "subject": "ECE", "number": "8891", "name": "Special Topics-Lab ", - "description": " Full Description " + "description": "" }, "ECE8892": { "subject": "ECE", "number": "8892", "name": "Special Topics-Lab ", - "description": " Full Description " + "description": "" }, "ECE8893": { "subject": "ECE", "number": "8893", "name": "Special Topics-Lab ", - "description": " Full Description " + "description": "" }, "ECE8894": { "subject": "ECE", "number": "8894", "name": "Special Topics-Lab ", - "description": " Full Description " + "description": "" }, "ECE8900": { "subject": "ECE", "number": "8900", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "ECE8901": { "subject": "ECE", "number": "8901", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "ECE8902": { "subject": "ECE", "number": "8902", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "ECE8903": { "subject": "ECE", "number": "8903", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "ECE8997": { "subject": "ECE", "number": "8997", "name": "Teaching Assistantship ", - "description": "For students holding graduate teaching assistantships. Full Description " + "description": "For students holding graduate teaching assistantships." }, "ECE8998": { "subject": "ECE", "number": "8998", "name": "Research Assistantship ", - "description": "For students holding graduate research assistantships. Full Description " + "description": "For students holding graduate research assistantships." }, "ECE8999": { "subject": "ECE", "number": "8999", "name": "Prep-Doctoral Disserta'n ", - "description": "This course is reserved for students who are actively seeking Ph.D. advisors and /or dissertation topics. Full Description " + "description": "This course is reserved for students who are actively seeking Ph.D. advisors and /or dissertation topics." }, "ECE9000": { "subject": "ECE", "number": "9000", "name": "Doctoral Thesis ", - "description": " Full Description " + "description": "" }, "ECEP6301": { "subject": "ECEP", "number": "6301", "name": "Power Sys Ctrl&Operation ", - "description": "Introduction to methods for the real time operation and control of power systems; to study the hardware and software technologies of modern energy management systems. Credit will not be awarded for both ECEP 6301 and ECE 6320. Full Description " + "description": "Introduction to methods for the real time operation and control of power systems; to study the hardware and software technologies of modern energy management systems. Credit will not be awarded for both ECEP 6301 and ECE 6320." }, "ECEP6304": { "subject": "ECEP", "number": "6304", "name": "Power System Economics ", - "description": "Comprehensive introduction to electricity economics, including economic theory, markets, and policy. Renewable energy, information systems, smart grid, and consumers examined as drivers for market architecture. Full Description " + "description": "Comprehensive introduction to electricity economics, including economic theory, markets, and policy. Renewable energy, information systems, smart grid, and consumers examined as drivers for market architecture." }, "ECEP6305": { "subject": "ECEP", "number": "6305", "name": "Pwr Sys Plan&Reliability ", - "description": "To introduce basic concepts as well as analysis and optimization techniques underlying reliability assessment of electric power systems and planning techniques. Credit not awarded for both ECEP 6305 and ECE 6322. Full Description " + "description": "To introduce basic concepts as well as analysis and optimization techniques underlying reliability assessment of electric power systems and planning techniques. Credit not awarded for both ECEP 6305 and ECE 6322." }, "ECEP6310": { "subject": "ECEP", "number": "6310", "name": "Capstone Project ", - "description": "Apply methods and techniques learned throughout the program to conduct energy system design. Students prepare a project proposal leading to a final report and presentation. Full Description " + "description": "Apply methods and techniques learned throughout the program to conduct energy system design. Students prepare a project proposal leading to a final report and presentation." }, "ECEP6351": { "subject": "ECEP", "number": "6351", "name": "Power System Protection ", - "description": "The theory and practice of modern power system protection techniques. Credit will not be awarded for both ECEP 6351 and ECE 6323. Full Description " + "description": "The theory and practice of modern power system protection techniques. Credit will not be awarded for both ECEP 6351 and ECE 6323." }, "ECON1001": { "subject": "ECON", "number": "1001", "name": "Economics at Work ", - "description": "Students are introduced to career opportunities in ecnomics and explore/identify how economics is used in different employment contexts. Full Description " + "description": "Students are introduced to career opportunities in ecnomics and explore/identify how economics is used in different employment contexts." }, "ECON1XXX": { "subject": "ECON", "number": "1XXX", "name": "Economics Elective ", - "description": " Full Description " + "description": "" }, "ECON2100": { "subject": "ECON", "number": "2100", "name": "Economics and Policy ", - "description": "Practice in analysis of decision problems of relevance to students in public policy and personal decision areas. Issues relating to individual decisions to produce, consume, invest, and trade will be explored. Analytical approaches will enable students to use and incorporate basic elements of micro- and macro-economic analysis and to appreciate issues regarding testing and measurements.Students can receive credit for either ECON 2100 or ECON 2101, or for ECON 2105/2106.Students cannot receive credit for ECON 2100 and ECON 2101 or for ECON 2100 and ECON 2105/2106 or for ECON 2101 and ECON 2105/2106. Full Description " + "description": "Practice in analysis of decision problems of relevance to students in public policy and personal decision areas. Issues relating to individual decisions to produce, consume, invest, and trade will be explored. Analytical approaches will enable students to use and incorporate basic elements of micro- and macro-economic analysis and to appreciate issues regarding testing and measurements.Students can receive credit for either ECON 2100 or ECON 2101, or for ECON 2105/2106.Students cannot receive credit for ECON 2100 and ECON 2101 or for ECON 2100 and ECON 2105/2106 or for ECON 2101 and ECON 2105/2106." }, "ECON2101": { "subject": "ECON", "number": "2101", "name": "The Global Economy ", - "description": "Historical and theoretical understanding of global economy, including international trade, finance, investment production; regional economic integration; economic development; environment, using micro and macro economic principles.Students can receive credit for either ECON 2100 or ECON 2101,or for ECON 2105/2106. Students cannot receivecredit for ECON 2100 and ECON 2101 or for ECON 2100 and ECON 2105/2106 or for ECON 2101 and ECON 2105/2106. Full Description " + "description": "Historical and theoretical understanding of global economy, including international trade, finance, investment production; regional economic integration; economic development; environment, using micro and macro economic principles.Students can receive credit for either ECON 2100 or ECON 2101,or for ECON 2105/2106. Students cannot receivecredit for ECON 2100 and ECON 2101 or for ECON 2100 and ECON 2105/2106 or for ECON 2101 and ECON 2105/2106." }, "ECON2105": { "subject": "ECON", "number": "2105", "name": "Prin of Macroeconomics ", - "description": "This principles of economics course is intended to introduce students to concepts that will enable them to understand and analyze economic aggregates and evaluate economic policies.Students can receive credit for either ECON 2100 or ECON 2101,or for ECON 2105/2106. Students cannot receive credit for ECON 2100 and ECON 2101 or for ECON 2100 and ECON 2105/2106 or for ECON 2101 and ECON 2105/2106. Full Description " + "description": "This principles of economics course is intended to introduce students to concepts that will enable them to understand and analyze economic aggregates and evaluate economic policies.Students can receive credit for either ECON 2100 or ECON 2101,or for ECON 2105/2106. Students cannot receive credit for ECON 2100 and ECON 2101 or for ECON 2100 and ECON 2105/2106 or for ECON 2101 and ECON 2105/2106." }, "ECON2106": { "subject": "ECON", "number": "2106", "name": "Prin of Microeconomics ", - "description": "This principles of economics course is intended to introduce students to concepts that will enable them to understand and analyze structure and performance of the market economy. Students can receive credit for either ECON 2100 or ECON 2101,or for ECON 2105/2106. Students cannot receive credit for ECON 2100 and ECON 2101 or for ECON 2100 and ECON 2105/2106 or for ECON 2101 and ECON 2105/2106. Full Description " + "description": "This principles of economics course is intended to introduce students to concepts that will enable them to understand and analyze structure and performance of the market economy. Students can receive credit for either ECON 2100 or ECON 2101,or for ECON 2105/2106. Students cannot receive credit for ECON 2100 and ECON 2101 or for ECON 2100 and ECON 2105/2106 or for ECON 2101 and ECON 2105/2106." }, "ECON2250": { "subject": "ECON", "number": "2250", "name": "Statistics for Economist ", - "description": "This course provides an introduction to probability theory and statistical inference. Students will explore tools and concepts relevant to the study of economics and gain a familiarity with statistical software widely used by economists. Full Description " + "description": "This course provides an introduction to probability theory and statistical inference. Students will explore tools and concepts relevant to the study of economics and gain a familiarity with statistical software widely used by economists." }, "ECON2698": { "subject": "ECON", "number": "2698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "ECON2699": { "subject": "ECON", "number": "2699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "ECON2803": { "subject": "ECON", "number": "2803", "name": "Special Topics ", - "description": "Special topic offerings of current interest not included in permanent courses. Full Description " + "description": "Special topic offerings of current interest not included in permanent courses." }, "ECON2XXX": { "subject": "ECON", "number": "2XXX", "name": "Economics Elective ", - "description": " Full Description " + "description": "" }, "ECON3110": { "subject": "ECON", "number": "3110", "name": "Adv Microeconomic Analys ", - "description": "Review of important mathematical tools and techniques used in advanced microeconomics. Advanced topics include the estimation of demand and cost functions; the role of government in the economy (externalities, property rights, and public goods); public choice theory; factor markets (especially labor and capital markets); models of monopoly; pricing techniques used by firms with market power (monopolies and oligopolies); and game theory. Full Description " + "description": "Review of important mathematical tools and techniques used in advanced microeconomics. Advanced topics include the estimation of demand and cost functions; the role of government in the economy (externalities, property rights, and public goods); public choice theory; factor markets (especially labor and capital markets); models of monopoly; pricing techniques used by firms with market power (monopolies and oligopolies); and game theory." }, "ECON3120": { "subject": "ECON", "number": "3120", "name": "Advanced Macroeconomics ", - "description": "Integrates issues arising from international economic relationships with the macroeconomic dynamics of domestic economies. Income determination in the open economy and the effect of stabilization policies on the international monetary system. Full Description " + "description": "Integrates issues arising from international economic relationships with the macroeconomic dynamics of domestic economies. Income determination in the open economy and the effect of stabilization policies on the international monetary system." }, "ECON3150": { "subject": "ECON", "number": "3150", "name": "Econ & Finance Modeling ", - "description": "The course develops student ability to model the essential elements of the investment decision through use of a valuation model and spreadsheet analysis. Expands upon basic knowledge of present value analysis to recognize risk, growth, capital markets, and market valuation of ongoing operations. Full Description " + "description": "The course develops student ability to model the essential elements of the investment decision through use of a valuation model and spreadsheet analysis. Expands upon basic knowledge of present value analysis to recognize risk, growth, capital markets, and market valuation of ongoing operations." }, "ECON3160": { "subject": "ECON", "number": "3160", "name": "Empirical Economics ", - "description": "Develops student abilities to logically formulate economic issues; identify and collect data from traditional and Internet sources; analyze data using spreadsheet and presentation software; generate sound and defensible conclusions and recommendations; and make effective presentations of analysis and conclusions. Full Description " + "description": "Develops student abilities to logically formulate economic issues; identify and collect data from traditional and Internet sources; analyze data using spreadsheet and presentation software; generate sound and defensible conclusions and recommendations; and make effective presentations of analysis and conclusions." }, "ECON3161": { "subject": "ECON", "number": "3161", "name": "Econometric Analysis ", - "description": "Econometric techniques and applications in economic and business analysis. Practical issues involving modeling, estimation, hypothesis testing, and emphasizing computer implementation through econometric software. Full Description " + "description": "Econometric techniques and applications in economic and business analysis. Practical issues involving modeling, estimation, hypothesis testing, and emphasizing computer implementation through econometric software." }, "ECON3300": { "subject": "ECON", "number": "3300", "name": "Intl Energy Markets ", - "description": "Economics of international energy markets and how business and government policy decisions are made. Economic models, and financial, institutional and regulatory aspects of energy markets. Full Description " + "description": "Economics of international energy markets and how business and government policy decisions are made. Economic models, and financial, institutional and regulatory aspects of energy markets." }, "ECON3XXX": { "subject": "ECON", "number": "3XXX", "name": "Economics Elective ", - "description": " Full Description " + "description": "" }, "ECON4060": { "subject": "ECON", "number": "4060", "name": "Money & Capital Markets ", - "description": "An examination of the role of money in the exchange process, the Federal Reserve's monetary policy strategy, and the impact of monetary policy on financial markets and aggregate economic activity. Full Description " + "description": "An examination of the role of money in the exchange process, the Federal Reserve's monetary policy strategy, and the impact of monetary policy on financial markets and aggregate economic activity." }, "ECON4160": { "subject": "ECON", "number": "4160", "name": "Economic Forecasting ", - "description": "An introduction to widely used economic and business forecasting methods, emphasizing quantitative approaches and computer implementation through time-series econometric software. Full Description " + "description": "An introduction to widely used economic and business forecasting methods, emphasizing quantitative approaches and computer implementation through time-series econometric software." }, "ECON4170": { "subject": "ECON", "number": "4170", "name": "Mathematical Economics ", - "description": "The application of mathematical tools to economic analysis. Topics include static analysis, comparative-static analysis, optimization, and dynamic analysis. Full Description " + "description": "The application of mathematical tools to economic analysis. Topics include static analysis, comparative-static analysis, optimization, and dynamic analysis." }, "ECON4180": { "subject": "ECON", "number": "4180", "name": "Game Theory Economics ", - "description": "Course covers static games of complete information, dynamic games of complete information, static games of incomplete information and dynamic games of incomplete information. Full Description " + "description": "Course covers static games of complete information, dynamic games of complete information, static games of incomplete information and dynamic games of incomplete information." }, "ECON4232": { "subject": "ECON", "number": "4232", "name": "Labor Economics ", - "description": "Provides an introduction to the theory and practice of contemporary labor economics. The aim is to understand the forces that influence behavior in the labor market. Full Description " + "description": "Provides an introduction to the theory and practice of contemporary labor economics. The aim is to understand the forces that influence behavior in the labor market." }, "ECON4301": { "subject": "ECON", "number": "4301", "name": "Econ of Contracts ", - "description": "Builds from analysis of the individual in a trading or transaction situation to study organizations as groups of affiliated individuals. Assesses the situations when organizations are preferable to markets as forms of organizing economic and social activity. Institutional economics and transaction cost economics are studied. Analysis of corporate restructuring and privatization. Full Description " + "description": "Builds from analysis of the individual in a trading or transaction situation to study organizations as groups of affiliated individuals. Assesses the situations when organizations are preferable to markets as forms of organizing economic and social activity. Institutional economics and transaction cost economics are studied. Analysis of corporate restructuring and privatization." }, "ECON4311": { "subject": "ECON", "number": "4311", "name": "Global Enterprise ", - "description": "This introductory course on the multinational enterprise (MNE) will examine from an economic and interdisciplinary perspective the challenges facing MNE's in a fast-changing international business environment. The emphasis will be on the use of economic tools to analyze these issues and understand their managerial implications. Full Description " + "description": "This introductory course on the multinational enterprise (MNE) will examine from an economic and interdisciplinary perspective the challenges facing MNE's in a fast-changing international business environment. The emphasis will be on the use of economic tools to analyze these issues and understand their managerial implications." }, "ECON4321": { "subject": "ECON", "number": "4321", "name": "Tech & Entrepreneurship ", - "description": "Analysis of level and type of entrepreneurial activity. Study of business and economic history, legal, and institutional arrangements. Full Description " + "description": "Analysis of level and type of entrepreneurial activity. Study of business and economic history, legal, and institutional arrangements." }, "ECON4340": { "subject": "ECON", "number": "4340", "name": "Industrial Organization ", - "description": "This course examines the theory of the firm, the relationship between market structure, practices, and performance, and the determinants of technological change. The role (and ability) of government policy to solve various market failures, via antitrust enforcement, regulation, etc., is also discussed. Full Description " + "description": "This course examines the theory of the firm, the relationship between market structure, practices, and performance, and the determinants of technological change. The role (and ability) of government policy to solve various market failures, via antitrust enforcement, regulation, etc., is also discussed." }, "ECON4345": { "subject": "ECON", "number": "4345", "name": "Economic Regulation ", - "description": "This course examines how government economically regulates private industry, how it might regulate more efficiently, and when it should not regulate at all. General theories of antitrust enforcement and economic regulation are developed and applied to a variety of industry cases. Full Description " + "description": "This course examines how government economically regulates private industry, how it might regulate more efficiently, and when it should not regulate at all. General theories of antitrust enforcement and economic regulation are developed and applied to a variety of industry cases." }, "ECON4350": { "subject": "ECON", "number": "4350", "name": "International Economics ", - "description": "This is an introductory course in international economics and will cover important topics in trade theory, trade policy, and international finance. The emphasis will be on using economic tools to analyze a variety of current events in the world economy. Full Description " + "description": "This is an introductory course in international economics and will cover important topics in trade theory, trade policy, and international finance. The emphasis will be on using economic tools to analyze a variety of current events in the world economy." }, "ECON4351": { "subject": "ECON", "number": "4351", "name": "Int'l Financial Econ ", - "description": "This course familiarizes students with concepts, models, theories and applications in international markets. Full Description " + "description": "This course familiarizes students with concepts, models, theories and applications in international markets." }, "ECON4355": { "subject": "ECON", "number": "4355", "name": "Global Financial Econ ", - "description": "Examines the system of markets and institutions for exchange of capital, money, and goods, in the global marketplace; impact on national economics and fundamental economic global relationships. Full Description " + "description": "Examines the system of markets and institutions for exchange of capital, money, and goods, in the global marketplace; impact on national economics and fundamental economic global relationships." }, "ECON4357": { "subject": "ECON", "number": "4357", "name": "Law&Econ-Global Trading ", - "description": " Full Description " + "description": "" }, "ECON4360": { "subject": "ECON", "number": "4360", "name": "Network Economics ", - "description": "This course will examine alternative network architectures (e.g. simple ring networks, two star networks connected by a trunk line), explore how differences in a network's economic characteristics have different market structure implications and accordingly, lead to alternative public policy stances. Full Description " + "description": "This course will examine alternative network architectures (e.g. simple ring networks, two star networks connected by a trunk line), explore how differences in a network's economic characteristics have different market structure implications and accordingly, lead to alternative public policy stances." }, "ECON4411": { "subject": "ECON", "number": "4411", "name": "Economic Development ", - "description": "Concepts and studies of developing economies. Selected topics include development experience and theories, growth, agriculture, urbanization, industrialization, and links between trade policy and development. Full Description " + "description": "Concepts and studies of developing economies. Selected topics include development experience and theories, growth, agriculture, urbanization, industrialization, and links between trade policy and development." }, "ECON4412": { "subject": "ECON", "number": "4412", "name": "Cost-Benefit Analysis ", - "description": "This course will acquaint the student with the principles, tools, issues, strengths, and limitations of cost-benefit analysis (CBA); to prepare the student to competently review, criticize, and use CBA studies; and to enable the student to carry out limited CBA studies. Full Description " + "description": "This course will acquaint the student with the principles, tools, issues, strengths, and limitations of cost-benefit analysis (CBA); to prepare the student to competently review, criticize, and use CBA studies; and to enable the student to carry out limited CBA studies." }, "ECON4415": { "subject": "ECON", "number": "4415", "name": "Confl&Secur in DevCountr ", - "description": "This course engages undergraduate students in the analysis of multiple dimensions of contemporary civil conflict and serves as an introduction to economic studies of terrorism. Full Description " + "description": "This course engages undergraduate students in the analysis of multiple dimensions of contemporary civil conflict and serves as an introduction to economic studies of terrorism." }, "ECON4421": { "subject": "ECON", "number": "4421", "name": "Urban & Regional Econ ", - "description": "Economics of regions, cities, and space. Theories of growth and location, effects of urbanization, agglomeration, and congestion. Public policy relating to urban and regional problems. Full Description " + "description": "Economics of regions, cities, and space. Theories of growth and location, effects of urbanization, agglomeration, and congestion. Public policy relating to urban and regional problems." }, "ECON4430": { "subject": "ECON", "number": "4430", "name": "Transportation Economics ", - "description": "Economic analysis for the design, operation, and management of transportation and communication systems. Study of systems analysis and modeling. Application to industry and study of industrial change and dynamics. Special attention to corporate restructuring and industrial consolidation and merger. Full Description " + "description": "Economic analysis for the design, operation, and management of transportation and communication systems. Study of systems analysis and modeling. Application to industry and study of industrial change and dynamics. Special attention to corporate restructuring and industrial consolidation and merger." }, "ECON4440": { "subject": "ECON", "number": "4440", "name": "Economics of Environment ", - "description": "This course covers three aspects of environmental economics. First, it considers policy interventions appropriate to problems involving environmental externalities. Second, it explains methods used to estimate economic values for environmental goods. Finally, it explains the economics of depletable and renewable resources. Full Description " + "description": "This course covers three aspects of environmental economics. First, it considers policy interventions appropriate to problems involving environmental externalities. Second, it explains methods used to estimate economic values for environmental goods. Finally, it explains the economics of depletable and renewable resources." }, "ECON4450": { "subject": "ECON", "number": "4450", "name": "Afric-Amer Entrepreneur ", - "description": "History and dynamics of African-American business. Impact of racial segregation on business formation. Case studies and empirical exercises. Full Description " + "description": "History and dynamics of African-American business. Impact of racial segregation on business formation. Case studies and empirical exercises." }, "ECON4460": { "subject": "ECON", "number": "4460", "name": "Public Economics ", - "description": "This course focuses on public goods, how public decisions regarding public goods are made, the \"free-rider\" problem, voting and taxation principles, welfare, the Tiebout Hypothesis, budgeting, and fiscal policies. Full Description " + "description": "This course focuses on public goods, how public decisions regarding public goods are made, the \"free-rider\" problem, voting and taxation principles, welfare, the Tiebout Hypothesis, budgeting, and fiscal policies." }, "ECON4510": { "subject": "ECON", "number": "4510", "name": "Health Economics ", - "description": "This course surveys the theoretical and empirical evidence regarding current issues in health and health care. Individual-level models of health behaviors and the demand for health and medical insurance are presented. The economic behaviors of physicians, hospitals, and insurance companies are also characterized. The possible role of government in encouraging the equitable and efficient performance of health markets is discussed with a particular emphasis on current debates involving individual health decisions, health care reform, and the diffusion of new medical technologies. Full Description " + "description": "This course surveys the theoretical and empirical evidence regarding current issues in health and health care. Individual-level models of health behaviors and the demand for health and medical insurance are presented. The economic behaviors of physicians, hospitals, and insurance companies are also characterized. The possible role of government in encouraging the equitable and efficient performance of health markets is discussed with a particular emphasis on current debates involving individual health decisions, health care reform, and the diffusion of new medical technologies." }, "ECON4610": { "subject": "ECON", "number": "4610", "name": "Seminar-Economic Policy ", - "description": "The objective of the course is to enable students to interpret current economic problems and policies using the economic models learned in their theory courses. Students study the current \"Economic Report of the President\" and apply analytical tools to the data included in the text. Each student selects a current issue for detailed examination and report. Full Description " + "description": "The objective of the course is to enable students to interpret current economic problems and policies using the economic models learned in their theory courses. Students study the current \"Economic Report of the President\" and apply analytical tools to the data included in the text. Each student selects a current issue for detailed examination and report." }, "ECON4620": { "subject": "ECON", "number": "4620", "name": "History-Economic Thought ", - "description": "This course is concerned with the economists who interpreted and influenced the development of capitalism and socialism over the last two centuries. Full Description " + "description": "This course is concerned with the economists who interpreted and influenced the development of capitalism and socialism over the last two centuries." }, "ECON4698": { "subject": "ECON", "number": "4698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member, Full Description " + "description": "Independent research conducted under the guidance of a faculty member," }, "ECON4699": { "subject": "ECON", "number": "4699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "ECON4740": { "subject": "ECON", "number": "4740", "name": "Sem-Political Economy ", - "description": "Capstone experience in which students apply the tools of politicall economy to international issues. Crosslisted with INTA 4740. Full Description " + "description": "Capstone experience in which students apply the tools of politicall economy to international issues. Crosslisted with INTA 4740." }, "ECON4741": { "subject": "ECON", "number": "4741", "name": "Thesis-Political Economy ", - "description": "Individual project applying the tools of political economy to international issues. Crosslisted with INTA 4741. Full Description " + "description": "Individual project applying the tools of political economy to international issues. Crosslisted with INTA 4741." }, "ECON4803": { "subject": "ECON", "number": "4803", "name": "Special Topics ", - "description": "Courses designed to permit students and a professor to pursue a specialized interest in an area of economics not extensively treated in the offerings of the School. Full Description " + "description": "Courses designed to permit students and a professor to pursue a specialized interest in an area of economics not extensively treated in the offerings of the School." }, "ECON4811": { "subject": "ECON", "number": "4811", "name": "Special Topics ", - "description": "Courses designed to permit students and a professor to pursue a specialized interest in an area of economics not extensively treated in the offerings of the School. Full Description " + "description": "Courses designed to permit students and a professor to pursue a specialized interest in an area of economics not extensively treated in the offerings of the School." }, "ECON4812": { "subject": "ECON", "number": "4812", "name": "Special Topics ", - "description": "Courses designed to permit students and a professor to pursue a specialized interest in an area of economics not extensively treated in the offerings of the School. Full Description " + "description": "Courses designed to permit students and a professor to pursue a specialized interest in an area of economics not extensively treated in the offerings of the School." }, "ECON4813": { "subject": "ECON", "number": "4813", "name": "Special Topics ", - "description": "Courses designed to permit students and a professor to pursue a specialized interest in an area of economics not extensively treated in the offerings of the School. Full Description " + "description": "Courses designed to permit students and a professor to pursue a specialized interest in an area of economics not extensively treated in the offerings of the School." }, "ECON4814": { "subject": "ECON", "number": "4814", "name": "Special Topics ", - "description": "Courses designed to permit students and a professor to pursue a specialized interest in an area of economics not extensively treated in the offerings of the School. Full Description " + "description": "Courses designed to permit students and a professor to pursue a specialized interest in an area of economics not extensively treated in the offerings of the School." }, "ECON4815": { "subject": "ECON", "number": "4815", "name": "Special Topics ", - "description": "Courses designed to permit students and a professor to pursue a specialized interest in an area of economics not extensively treated in the offerings of the School. Full Description " + "description": "Courses designed to permit students and a professor to pursue a specialized interest in an area of economics not extensively treated in the offerings of the School." }, "ECON4901": { "subject": "ECON", "number": "4901", "name": "Special Problems ", - "description": "Designed to permit independent study with a faculty member. Full Description " + "description": "Designed to permit independent study with a faculty member." }, "ECON4910": { "subject": "ECON", "number": "4910", "name": "Individual Research ", - "description": "Course related to independent student research. Topics determined by instructor and student. Full Description " + "description": "Course related to independent student research. Topics determined by instructor and student." }, "ECON4990": { "subject": "ECON", "number": "4990", "name": "Econ Internship ", - "description": "Course projects related to professional internships. Topics and requirements to be arranged by student, instructor, and sponsor. Full Description " + "description": "Course projects related to professional internships. Topics and requirements to be arranged by student, instructor, and sponsor." }, "ECON4XXX": { "subject": "ECON", "number": "4XXX", "name": "Economics Elective ", - "description": " Full Description " + "description": "" }, "ECON6100": { "subject": "ECON", "number": "6100", "name": "Economics for Managers ", - "description": "A survey of microeconomic and macroeconomic concepts essential to the academic preparation of prospective managers. Economic theory used as a framework for contemporary managerial decision making. Full Description " + "description": "A survey of microeconomic and macroeconomic concepts essential to the academic preparation of prospective managers. Economic theory used as a framework for contemporary managerial decision making." }, "ECON6105": { "subject": "ECON", "number": "6105", "name": "Macroeconomics ", - "description": "Macroeconomic theory, including determination of national income, employment, the general price level, and potential for economic growth. Sources of macroeconomic instability and stabilization policies. Full Description " + "description": "Macroeconomic theory, including determination of national income, employment, the general price level, and potential for economic growth. Sources of macroeconomic instability and stabilization policies." }, "ECON6106": { "subject": "ECON", "number": "6106", "name": "Microeconomic Analysis ", - "description": "Microeconomics, resource allocation decisions of households, businesses, and government agencies. Enables the student to understand and apply economic principles to consumer, business, and government decisions. Full Description " + "description": "Microeconomics, resource allocation decisions of households, businesses, and government agencies. Enables the student to understand and apply economic principles to consumer, business, and government decisions." }, "ECON6110": { "subject": "ECON", "number": "6110", "name": "Econ-Corporate Strategy ", - "description": "Applies microeconomic and macroeconomic theory to the development of modern corporate strategy, including organizational boundaries, market structure and competition, industry analysis, and competitive advantage. Full Description " + "description": "Applies microeconomic and macroeconomic theory to the development of modern corporate strategy, including organizational boundaries, market structure and competition, industry analysis, and competitive advantage." }, "ECON6121": { "subject": "ECON", "number": "6121", "name": "Research Methods ", - "description": "Introduces students to issues related to conducting research in economics. Topics include the derivation of empirical models from theoretical constructs, causality, experimental and non-experimental data, hypothesis testing, and policy analysis. Students also become familiar with electronic data sources and retrieval and are introduced to several professional software packages. Full Description " + "description": "Introduces students to issues related to conducting research in economics. Topics include the derivation of empirical models from theoretical constructs, causality, experimental and non-experimental data, hypothesis testing, and policy analysis. Students also become familiar with electronic data sources and retrieval and are introduced to several professional software packages." }, "ECON6130": { "subject": "ECON", "number": "6130", "name": "Quantitative Meth-Econ ", - "description": "This course covers fundamental quantitative tools used in economic and econometric analysis, which includes topics in differential calculus, optimization, and linear algebra. Full Description " + "description": "This course covers fundamental quantitative tools used in economic and econometric analysis, which includes topics in differential calculus, optimization, and linear algebra." }, "ECON6140": { "subject": "ECON", "number": "6140", "name": "Probability & Statistics ", - "description": "This course gives students the necessary background for taking courses in the econometrics sequence. Topics include descriptive statistics, continuous and discrete probability distributions, parameter estimation, one- and two-sample hypothesis testing, and bivariate regression models. Full Description " + "description": "This course gives students the necessary background for taking courses in the econometrics sequence. Topics include descriptive statistics, continuous and discrete probability distributions, parameter estimation, one- and two-sample hypothesis testing, and bivariate regression models." }, "ECON6150": { "subject": "ECON", "number": "6150", "name": "Cost Benefit Analysis ", - "description": "The application of economic, financial, and quantitative reasoning and tools to issues of resource allocation and policy, primarily in the public sector. Full Description " + "description": "The application of economic, financial, and quantitative reasoning and tools to issues of resource allocation and policy, primarily in the public sector." }, "ECON6160": { "subject": "ECON", "number": "6160", "name": "Econometric Analysis ", - "description": "This course introduces advanced econometric methods on estimation and testing, including instrumental variable estimation, panel data analysis, limited dependent variable models, and simultaneous equation system. The course emphasizes applications of these techniques to real-world problems using professional software packages. Full Description " + "description": "This course introduces advanced econometric methods on estimation and testing, including instrumental variable estimation, panel data analysis, limited dependent variable models, and simultaneous equation system. The course emphasizes applications of these techniques to real-world problems using professional software packages." }, "ECON6161": { "subject": "ECON", "number": "6161", "name": "Econometric Modeling ", - "description": "This course introduces techniques on economic and business forecasting, focusing on regression analysis and ARIMA models. Testing for unit roots and cointegration are also discussed. Professional software packages for forecasting are used in applications. Full Description " + "description": "This course introduces techniques on economic and business forecasting, focusing on regression analysis and ARIMA models. Testing for unit roots and cointegration are also discussed. Professional software packages for forecasting are used in applications." }, "ECON6162": { "subject": "ECON", "number": "6162", "name": "Discrete Choice Econ ", - "description": "Focuses on econometric methods for which the dependent variable represents an \"either-or\" choice. Included in the set of topics are binary and multinomial logic, ordered choice, heteroskedastic extreme value, bivariate and multivariate probit, nested logit structures, discrete/continuous, and Poisson models. The course includes numerous applications using professional software programs. Full Description " + "description": "Focuses on econometric methods for which the dependent variable represents an \"either-or\" choice. Included in the set of topics are binary and multinomial logic, ordered choice, heteroskedastic extreme value, bivariate and multivariate probit, nested logit structures, discrete/continuous, and Poisson models. The course includes numerous applications using professional software programs." }, "ECON6200": { "subject": "ECON", "number": "6200", "name": "Money & Capital Markets ", - "description": "The role of money in the exchange process, Federal Reserve strategy, and the impact of monetary policy on financial markets and aggregate economic activity. Full Description " + "description": "The role of money in the exchange process, Federal Reserve strategy, and the impact of monetary policy on financial markets and aggregate economic activity." }, "ECON6310": { "subject": "ECON", "number": "6310", "name": "Public Economics ", - "description": "An examination of public goods, public decision making, voting, free riders, taxation principles, welfare, the Tiebout Hypothesis, budgeting, and fiscal policy. Full Description " + "description": "An examination of public goods, public decision making, voting, free riders, taxation principles, welfare, the Tiebout Hypothesis, budgeting, and fiscal policy." }, "ECON6330": { "subject": "ECON", "number": "6330", "name": "Urban & Regional Econ ", - "description": "Economics of regions, cities, and space. Theories of growth and location, effects of urbanization, agglomeration, and congestion. Public policy relating to urban and regional problems. Full Description " + "description": "Economics of regions, cities, and space. Theories of growth and location, effects of urbanization, agglomeration, and congestion. Public policy relating to urban and regional problems." }, "ECON6341": { "subject": "ECON", "number": "6341", "name": "Transportation Economics ", - "description": "Examines the economics of transportation markets, including resource allocation, economic welfare, government regulation, and public policy. Using an econometric case study approach, the course develops the necessary steps for testing hypotheses, analyzing the finding of recent studies, and exploring implications for the development and implementation of transportation policy. Full Description " + "description": "Examines the economics of transportation markets, including resource allocation, economic welfare, government regulation, and public policy. Using an econometric case study approach, the course develops the necessary steps for testing hypotheses, analyzing the finding of recent studies, and exploring implications for the development and implementation of transportation policy." }, "ECON6360": { "subject": "ECON", "number": "6360", "name": "Development Economics ", - "description": "Concepts and models of development and growth in Third World countries, emphasizing modeling and testing of recent changes in the Third World . Topics include economic growth, trade and globalization, poverty and inequity, migration, population growth, unemployment, agricultural development, the environment, and the role of the market versus the state. Full Description " + "description": "Concepts and models of development and growth in Third World countries, emphasizing modeling and testing of recent changes in the Third World . Topics include economic growth, trade and globalization, poverty and inequity, migration, population growth, unemployment, agricultural development, the environment, and the role of the market versus the state." }, "ECON6380": { "subject": "ECON", "number": "6380", "name": "Economic of Environment ", - "description": "Examines the management of natural resources and the environment from an economic perspective. Topics include resource valuation methods, optimal resource management, regulation of pollution and sustainable development. Issues are studied through economic models and empirical testing. Full Description " + "description": "Examines the management of natural resources and the environment from an economic perspective. Topics include resource valuation methods, optimal resource management, regulation of pollution and sustainable development. Issues are studied through economic models and empirical testing." }, "ECON6431": { "subject": "ECON", "number": "6431", "name": "Global Enterprise ", - "description": "This course uses economic tools to examine strategic aspects of competition and collaboration in an integrated global market. Topics include the determinants and changes in the boundaries of global firms, competitive advantage and value creation, the nature of global markets, and strategic positioning in the global market place. Full Description " + "description": "This course uses economic tools to examine strategic aspects of competition and collaboration in an integrated global market. Topics include the determinants and changes in the boundaries of global firms, competitive advantage and value creation, the nature of global markets, and strategic positioning in the global market place." }, "ECON6440": { "subject": "ECON", "number": "6440", "name": "Economics of Technology ", - "description": "This course explores the impact that innovation, technology progress, and R&D activities have upon a firm's pricing and output behavior. Based upon computer case studies, biotechnology, and telecommunications sectors, the course further analyzes the economic role that firm size and entrepreneurial opportunities play in technological development and innovation. Full Description " + "description": "This course explores the impact that innovation, technology progress, and R&D activities have upon a firm's pricing and output behavior. Based upon computer case studies, biotechnology, and telecommunications sectors, the course further analyzes the economic role that firm size and entrepreneurial opportunities play in technological development and innovation." }, "ECON6450": { "subject": "ECON", "number": "6450", "name": "Black Entrepreneurship ", - "description": "Explores African-American entrepreneurship from the ante-bellum period to the present. Implications of economic and socio-political developments are given particular attention, including the urbanization of blacks, the rise of benevolent societies following slavery, institutionalization of Jim Crow segregation, desegregation, and affirmative action's role in an emerging class of black entrepreneurs. Full Description " + "description": "Explores African-American entrepreneurship from the ante-bellum period to the present. Implications of economic and socio-political developments are given particular attention, including the urbanization of blacks, the rise of benevolent societies following slavery, institutionalization of Jim Crow segregation, desegregation, and affirmative action's role in an emerging class of black entrepreneurs." }, "ECON6460": { "subject": "ECON", "number": "6460", "name": "Industrial Organization ", - "description": "This course examines modern theories of the firm, market power, and competitive strategy. Game theory is employed throughout the course. Full Description " + "description": "This course examines modern theories of the firm, market power, and competitive strategy. Game theory is employed throughout the course." }, "ECON6510": { "subject": "ECON", "number": "6510", "name": "Health Economics ", - "description": "A critical survey of the current theoretical and empirical issues involving the economics of health and health care. Full Description " + "description": "A critical survey of the current theoretical and empirical issues involving the economics of health and health care." }, "ECON6610": { "subject": "ECON", "number": "6610", "name": "Economic Policy ", - "description": "Interprets current economic problems and policies using fundamental economic principles. Full Description " + "description": "Interprets current economic problems and policies using fundamental economic principles." }, "ECON6620": { "subject": "ECON", "number": "6620", "name": "Economic Thought ", - "description": "Economists who interpreted and influenced the development of capitalism and socialism over the last two centuries. Full Description " + "description": "Economists who interpreted and influenced the development of capitalism and socialism over the last two centuries." }, "ECON6650": { "subject": "ECON", "number": "6650", "name": "International Economics ", - "description": "Explores international economic issues. The first part examines aspects of international trade, including specialization and exchange, strategy, labor and capital movements, preferential trading arrangements, and economic development. The second part analyzes international finance, including exchange rates, open economy macro policies, Eurocurrency markets, and the international monetary system. Full Description " + "description": "Explores international economic issues. The first part examines aspects of international trade, including specialization and exchange, strategy, labor and capital movements, preferential trading arrangements, and economic development. The second part analyzes international finance, including exchange rates, open economy macro policies, Eurocurrency markets, and the international monetary system." }, "ECON6XXX": { "subject": "ECON", "number": "6XXX", "name": "Economics Elective ", - "description": " Full Description " + "description": "" }, "ECON7000": { "subject": "ECON", "number": "7000", "name": "Master's Thesis ", - "description": " Full Description " + "description": "" }, "ECON7004": { "subject": "ECON", "number": "7004", "name": "Math for Economists ", - "description": "Topics include matrix algebra, limits and open sets, implicit functions and their derivatives, quadratic forms and definite matrices, unconstrained and constrained static optimization, dynamic optimization and economic applications. Full Description " + "description": "Topics include matrix algebra, limits and open sets, implicit functions and their derivatives, quadratic forms and definite matrices, unconstrained and constrained static optimization, dynamic optimization and economic applications." }, "ECON7012": { "subject": "ECON", "number": "7012", "name": "Microeconomic Theory I ", - "description": "The topics covered in this course are axiomatic theory of consumer behavior, consumer choice, classical demand theory, aggregate demand, choice under uncertainty, producer theory and partial equilibrium analysis. Full Description " + "description": "The topics covered in this course are axiomatic theory of consumer behavior, consumer choice, classical demand theory, aggregate demand, choice under uncertainty, producer theory and partial equilibrium analysis." }, "ECON7013": { "subject": "ECON", "number": "7013", "name": "Microeconomic Theory II ", - "description": "The subject areas in this course are general equilibrium, welfare economics, externalities, public goods, economics of information and inter-temporal dynamic analysis. Full Description " + "description": "The subject areas in this course are general equilibrium, welfare economics, externalities, public goods, economics of information and inter-temporal dynamic analysis." }, "ECON7015": { "subject": "ECON", "number": "7015", "name": "Game Theory ", - "description": "Static and dynamic games of complete and incomplete information, and mechanism design. Economic applications include Cournot, Bertrand and Stackelberg duopolies, voluntary provision of public goods, auctions, procurement contracts and time inconsistency issues. Full Description " + "description": "Static and dynamic games of complete and incomplete information, and mechanism design. Economic applications include Cournot, Bertrand and Stackelberg duopolies, voluntary provision of public goods, auctions, procurement contracts and time inconsistency issues." }, "ECON7022": { "subject": "ECON", "number": "7022", "name": "Econometrics I ", - "description": "This course is a comprehensive introduction to mathematical statistics principles underlying statistical analyses in economics. It covers probability theory, expectation, sampling, asymptotic results, the main families of probability distributions studied in economics, estimation and hypothesis testing. Full Description " + "description": "This course is a comprehensive introduction to mathematical statistics principles underlying statistical analyses in economics. It covers probability theory, expectation, sampling, asymptotic results, the main families of probability distributions studied in economics, estimation and hypothesis testing." }, "ECON7023": { "subject": "ECON", "number": "7023", "name": "Econometrics II ", - "description": "Linear and nonlinear regression analyses, hypothesis testing, ordinary and generalized least squares, instrumental variables estimation, the generalized method of moments, the method of maximum likelihood, methods for stationary time series, unit roots and cointegration, and specification testing. Full Description " + "description": "Linear and nonlinear regression analyses, hypothesis testing, ordinary and generalized least squares, instrumental variables estimation, the generalized method of moments, the method of maximum likelihood, methods for stationary time series, unit roots and cointegration, and specification testing." }, "ECON7025": { "subject": "ECON", "number": "7025", "name": "Empirical Res Methods ", - "description": "Topics include up-to-date theory for data analysis, including time series, cross section and panel, and empirical applications using panel data, time series data and cross-sectional data. Full Description " + "description": "Topics include up-to-date theory for data analysis, including time series, cross section and panel, and empirical applications using panel data, time series data and cross-sectional data." }, "ECON7026": { "subject": "ECON", "number": "7026", "name": "Microeconomet Analysis ", - "description": "Focus on empirical microeconometric methods, including binary, multinomial, and ordered response models, and event history models. Topics include sampling, estimation, and model interpretation. Full Description " + "description": "Focus on empirical microeconometric methods, including binary, multinomial, and ordered response models, and event history models. Topics include sampling, estimation, and model interpretation." }, "ECON7031": { "subject": "ECON", "number": "7031", "name": "Micro of Innovation ", - "description": "Historical evolution of institutions that promote innovation, knowledge as a public good, prizes and intellectual property rights as incentive mechanisms, models of cumulative innovation, patent and copyright enforcement and litigation, private versus public funding, and the effects introduced by network externalities and globalization issues. Full Description " + "description": "Historical evolution of institutions that promote innovation, knowledge as a public good, prizes and intellectual property rights as incentive mechanisms, models of cumulative innovation, patent and copyright enforcement and litigation, private versus public funding, and the effects introduced by network externalities and globalization issues." }, "ECON7032": { "subject": "ECON", "number": "7032", "name": "Macro of Innovation ", - "description": "Macroeconomic factors that lead to technological change, the roles played by technological innovation and knowledge spillovers as promoters of economic growth, and the scope for fiscal and monetary policies to foment research and development and hence economic growth. Full Description " + "description": "Macroeconomic factors that lead to technological change, the roles played by technological innovation and knowledge spillovers as promoters of economic growth, and the scope for fiscal and monetary policies to foment research and development and hence economic growth." }, "ECON7102": { "subject": "ECON", "number": "7102", "name": "Environmental Econ I ", - "description": "Topics include externalities, property rights, incentive design, emission taxes, tradable emission permits, renewable and nonrenewable resources, innovation incentives originating with environmental regulations and globalization, trans-boundary polluntants within and across nations, international environmental agreements, and the globalization impacts on the environment. Full Description " + "description": "Topics include externalities, property rights, incentive design, emission taxes, tradable emission permits, renewable and nonrenewable resources, innovation incentives originating with environmental regulations and globalization, trans-boundary polluntants within and across nations, international environmental agreements, and the globalization impacts on the environment." }, "ECON7103": { "subject": "ECON", "number": "7103", "name": "Environmental Econ II ", - "description": "Empirical course, built upon the theoretical topics covered in Environmental Economics I. Students are given an in-depth coverage of key empirical papers in environmental economics, either papers that have tested several hypotheses derived from theoretical models or papers that are advancing knowledge in the field, generating empirical results for which no theory yet exists. Full Description " + "description": "Empirical course, built upon the theoretical topics covered in Environmental Economics I. Students are given an in-depth coverage of key empirical papers in environmental economics, either papers that have tested several hypotheses derived from theoretical models or papers that are advancing knowledge in the field, generating empirical results for which no theory yet exists." }, "ECON7111": { "subject": "ECON", "number": "7111", "name": "Indust Organization I ", - "description": "Topics include market structures and the strategic behavior of firms (monopoly, oligopoly, imperfect competition), research and development, adoption of new technologies, regulations, procurement, antitrust law and competition policy. Full Description " + "description": "Topics include market structures and the strategic behavior of firms (monopoly, oligopoly, imperfect competition), research and development, adoption of new technologies, regulations, procurement, antitrust law and competition policy." }, "ECON7112": { "subject": "ECON", "number": "7112", "name": "Industrial Organization II ", - "description": "Empirical course that trains students to empirically examine the theoretical issues arising in Industrial Organization I. Students are taught about how to use existing data, collect and compile their own datasets and use frontier methods in empirical Industrial Organization to test hypotheses that originate from the theories related to pricing, product and process innovation, among others. Full Description " + "description": "Empirical course that trains students to empirically examine the theoretical issues arising in Industrial Organization I. Students are taught about how to use existing data, collect and compile their own datasets and use frontier methods in empirical Industrial Organization to test hypotheses that originate from the theories related to pricing, product and process innovation, among others." }, "ECON7121": { "subject": "ECON", "number": "7121", "name": "International Econ I ", - "description": "Topics include Ricardian and Hecksher-Ohlin models, extensions to many goods and factors, trade in intermediate inputs and wages, increasing returns, gains from trade and regional agreements, import tariffs and dumping, import quotas and export subsidies, political economy of trade policy and trade and endogenous growth. It also examines the relationship between international trade, foreign direct investment and technological innovation and diffusion. Full Description " + "description": "Topics include Ricardian and Hecksher-Ohlin models, extensions to many goods and factors, trade in intermediate inputs and wages, increasing returns, gains from trade and regional agreements, import tariffs and dumping, import quotas and export subsidies, political economy of trade policy and trade and endogenous growth. It also examines the relationship between international trade, foreign direct investment and technological innovation and diffusion." }, "ECON7122": { "subject": "ECON", "number": "7122", "name": "International Econ II ", - "description": "Empirical extension of International Economics I, which surveys the empirical literature and presents the key empirical results related to the topics discussed in the theoretical course. It also discusses frontier empirical work in the field, empirical studies that go beyond the testable hypotheses originated with theory. Full Description " + "description": "Empirical extension of International Economics I, which surveys the empirical literature and presents the key empirical results related to the topics discussed in the theoretical course. It also discusses frontier empirical work in the field, empirical studies that go beyond the testable hypotheses originated with theory." }, "ECON7130": { "subject": "ECON", "number": "7130", "name": "Res Dev & Pres Workshop ", - "description": "Lecture topics include instructions on writing research papers in Economics and presenting their work. Contents of presentations and research undertaken by students depend on students' research interests. Students receive personalized feedback on research and presentations. Full Description " + "description": "Lecture topics include instructions on writing research papers in Economics and presenting their work. Contents of presentations and research undertaken by students depend on students' research interests. Students receive personalized feedback on research and presentations." }, "ECON8801": { "subject": "ECON", "number": "8801", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECON8802": { "subject": "ECON", "number": "8802", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECON8803": { "subject": "ECON", "number": "8803", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ECON8910": { "subject": "ECON", "number": "8910", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "ECON8990": { "subject": "ECON", "number": "8990", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "ECON8997": { "subject": "ECON", "number": "8997", "name": "Teaching Assistantship ", - "description": "For graduate students holding teaching assistantships. Full Description " + "description": "For graduate students holding teaching assistantships." }, "ECON8998": { "subject": "ECON", "number": "8998", "name": "Research Assistantship ", - "description": "For graduate students holding research assistantships. Full Description " + "description": "For graduate students holding research assistantships." }, "ECON9000": { "subject": "ECON", "number": "9000", "name": "Doctoral Thesis ", - "description": " Full Description " + "description": "" }, "ENGL0199": { "subject": "ENGL", "number": "0199", "name": "Support for ENGL 1101 ", - "description": "This course provides support for students taking ENGL 1101, reinforces student competencies, develops language skills, and encourages reflection. Full Description " + "description": "This course provides support for students taking ENGL 1101, reinforces student competencies, develops language skills, and encourages reflection." }, "ENGL1101": { "subject": "ENGL", "number": "1101", "name": "English Composition I ", - "description": "Develops analytical reading and writing skills through the investigation of methods used in cultural and literary studies and the application of those methods to specific texts. Full Description " + "description": "Develops analytical reading and writing skills through the investigation of methods used in cultural and literary studies and the application of those methods to specific texts." }, "ENGL1102": { "subject": "ENGL", "number": "1102", "name": "English Composition II ", - "description": "Develops communication skills in networked electronic environments, emphasizes interpretation and evaluation of cultural texts, and incorporates research methods in print and on the Internet. Full Description " + "description": "Develops communication skills in networked electronic environments, emphasizes interpretation and evaluation of cultural texts, and incorporates research methods in print and on the Internet." }, "ENTR6001": { "subject": "ENTR", "number": "6001", "name": "Sys Thinking Principles ", - "description": "Understanding problem formulation and representation in terms of the fundamental nature of phenomena of interest and connections and interactions among the elements of the problem. Full Description " + "description": "Understanding problem formulation and representation in terms of the fundamental nature of phenomena of interest and connections and interactions among the elements of the problem." }, "ENTR6002": { "subject": "ENTR", "number": "6002", "name": "Sys Think Applications ", - "description": "Applications of systems thinking to problem formulation and representation. Full Description " + "description": "Applications of systems thinking to problem formulation and representation." }, "ENTR6011": { "subject": "ENTR", "number": "6011", "name": "Ent Trans Principles ", - "description": "Understanding the nature of organizations, the driving forces for change, and how change is addressed, including the role of leadership in envisioning, communicating, and managing. Full Description " + "description": "Understanding the nature of organizations, the driving forces for change, and how change is addressed, including the role of leadership in envisioning, communicating, and managing." }, "ENTR6012": { "subject": "ENTR", "number": "6012", "name": "Ent Trans Practices ", - "description": "Applications of methods and tools for enterprise transformation. Full Description " + "description": "Applications of methods and tools for enterprise transformation." }, "ENTR6021": { "subject": "ENTR", "number": "6021", "name": "Ent Model Fundamentals ", - "description": "Understanding modeling, simulation and visualization of complex systems and networks as applied to analysis and design of enterprises for delivery of products and services. Full Description " + "description": "Understanding modeling, simulation and visualization of complex systems and networks as applied to analysis and design of enterprises for delivery of products and services." }, "ENTR6022": { "subject": "ENTR", "number": "6022", "name": "Ent Modeling Practices ", - "description": "Applications of modeling, simulation and visualization of complex systems and networks to analysis and design of enterprises for delivery of products and services. Full Description " + "description": "Applications of modeling, simulation and visualization of complex systems and networks to analysis and design of enterprises for delivery of products and services." }, "ENTR6031": { "subject": "ENTR", "number": "6031", "name": "Val Driven Tran Concepts ", - "description": " Full Description " + "description": "" }, "ENTR6032": { "subject": "ENTR", "number": "6032", "name": "Val Driven Tran Strategy ", - "description": "Application and case studies of value-driven enterprise transformation. Full Description " + "description": "Application and case studies of value-driven enterprise transformation." }, "ENTR6041": { "subject": "ENTR", "number": "6041", "name": "Ent Strategy Analysis ", - "description": "Understanding strategy concepts, the nature of competition and company performance, and strategy frameworks related to enterprise transformation. Full Description " + "description": "Understanding strategy concepts, the nature of competition and company performance, and strategy frameworks related to enterprise transformation." }, "ENTR6042": { "subject": "ENTR", "number": "6042", "name": "Ent Strategy Planning ", - "description": "Understanding of strategy formulation, business and enterprise strategies, the nature of innovation, and strategy implementation. Full Description " + "description": "Understanding of strategy formulation, business and enterprise strategies, the nature of innovation, and strategy implementation." }, "ENTR6051": { "subject": "ENTR", "number": "6051", "name": "Trans Econ Principles ", - "description": "Understanding principles of economic systems analysis and assessment for enterprise transformation. Full Description " + "description": "Understanding principles of economic systems analysis and assessment for enterprise transformation." }, "ENTR6052": { "subject": "ENTR", "number": "6052", "name": "Trans Econ Methodology ", - "description": "Methods and tools for analysis of microeconomic systems, project management and cost estimation. Full Description " + "description": "Methods and tools for analysis of microeconomic systems, project management and cost estimation." }, "ENTR6053": { "subject": "ENTR", "number": "6053", "name": "Trans Econ Investments ", - "description": "Methods and tools for economic valuation of investments, discounted cash flow models, and real option models, all applied in the context of enterprise transformation. Full Description " + "description": "Methods and tools for economic valuation of investments, discounted cash flow models, and real option models, all applied in the context of enterprise transformation." }, "ENTR6061": { "subject": "ENTR", "number": "6061", "name": "Fund Info Strategy & Mgt ", - "description": "Understanding the fundamentals of information strategy and management, the impact of IT on organizational capabilities, and IT-enabled enterprise transformation. Full Description " + "description": "Understanding the fundamentals of information strategy and management, the impact of IT on organizational capabilities, and IT-enabled enterprise transformation." }, "ENTR6062": { "subject": "ENTR", "number": "6062", "name": "Info Sys Implementation ", - "description": "Understanding the basics of strategic IT planning and the management and evaluation of IT infrastructure for enterprise transformation. Full Description " + "description": "Understanding the basics of strategic IT planning and the management and evaluation of IT infrastructure for enterprise transformation." }, "ENTR6063": { "subject": "ENTR", "number": "6063", "name": "Info Sys Leadership ", - "description": "Case-based analysis of the role and challenges of IT leadership for enterprise transformation and management of diverse IT infrastructure in a global business environment. Full Description " + "description": "Case-based analysis of the role and challenges of IT leadership for enterprise transformation and management of diverse IT infrastructure in a global business environment." }, "ENTR7000": { "subject": "ENTR", "number": "7000", "name": "Thesis ", - "description": "Master's Thesis. Full Description " + "description": "Master's Thesis." }, "FREN1001": { "subject": "FREN", "number": "1001", "name": "Elementary French I ", - "description": "An introduction to the French language and culture of the French-speaking world. Beginning of a survey of basic French grammar and the development of the four language skills of listening, speaking, reading, and writing French. Some aspects of everyday life in the French speaking world will also be introduced. Humanities credit awarded for FREN 1001 upon successful completion of FREN 1002 or FREN 2001. Full Description " + "description": "An introduction to the French language and culture of the French-speaking world. Beginning of a survey of basic French grammar and the development of the four language skills of listening, speaking, reading, and writing French. Some aspects of everyday life in the French speaking world will also be introduced. Humanities credit awarded for FREN 1001 upon successful completion of FREN 1002 or FREN 2001." }, "FREN1002": { "subject": "FREN", "number": "1002", "name": "Elementary French II ", - "description": "The second part of an introduction to the French language and the culture of the French-speaking world. Completion of the survey of basic French grammar and further development of the four language skills. Aspects of everyday life in the French-speaking world will be introduced. Full Description " + "description": "The second part of an introduction to the French language and the culture of the French-speaking world. Completion of the survey of basic French grammar and further development of the four language skills. Aspects of everyday life in the French-speaking world will be introduced." }, "FREN1813": { "subject": "FREN", "number": "1813", "name": "Special Topics ", - "description": "Topics of current interest in French. Full Description " + "description": "Topics of current interest in French." }, "FREN1XXX": { "subject": "FREN", "number": "1XXX", "name": "French Elective ", - "description": " Full Description " + "description": "" }, "FREN2001": { "subject": "FREN", "number": "2001", "name": "French Culture I ", - "description": "Proficiency-based introduction to selected sociocultural aspects of France: geography, demography, social institutions, history, art, socioeconomic problems, and current events; incorporates grammar review. Conducted in French. Full Description " + "description": "Proficiency-based introduction to selected sociocultural aspects of France: geography, demography, social institutions, history, art, socioeconomic problems, and current events; incorporates grammar review. Conducted in French." }, "FREN2002": { "subject": "FREN", "number": "2002", "name": "French Culture II ", - "description": "Proficiency-based introduction to selected sociocultural aspects of France: geography, demography, social institutions, history, art, socioeconomic problems, and current events; incorporates grammar review. Conducted in French. Full Description " + "description": "Proficiency-based introduction to selected sociocultural aspects of France: geography, demography, social institutions, history, art, socioeconomic problems, and current events; incorporates grammar review. Conducted in French." }, "FREN2005": { "subject": "FREN", "number": "2005", "name": "LBAT Culture & Language ", - "description": "Profeciency-based introduction to sociocultural aspects of the French speaking world. Part of the French intensive summer LBAT program. Admission by application only. Conducted in French. Full Description " + "description": "Profeciency-based introduction to sociocultural aspects of the French speaking world. Part of the French intensive summer LBAT program. Admission by application only. Conducted in French." }, "FREN2698": { "subject": "FREN", "number": "2698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "FREN2699": { "subject": "FREN", "number": "2699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "FREN2813": { "subject": "FREN", "number": "2813", "name": "Special Topics ", - "description": "Topics of current interest in French. Full Description " + "description": "Topics of current interest in French." }, "FREN2XXX": { "subject": "FREN", "number": "2XXX", "name": "French Elective ", - "description": " Full Description " + "description": "" }, "FREN3000": { "subject": "FREN", "number": "3000", "name": "Survey of French Lit ", - "description": "This course introduces students to French literature. Taugh in French. Full Description " + "description": "This course introduces students to French literature. Taugh in French." }, "FREN3001": { "subject": "FREN", "number": "3001", "name": "French Lit 1800-1900 ", - "description": "Romanticism, the reappearance of lyric poetry, the importance of the individual as opposed to classical anonymity. Realism and naturalism with emphasis on the development of the novel. Conducted in French. Full Description " + "description": "Romanticism, the reappearance of lyric poetry, the importance of the individual as opposed to classical anonymity. Realism and naturalism with emphasis on the development of the novel. Conducted in French." }, "FREN3002": { "subject": "FREN", "number": "3002", "name": "French Lit 1900-Present ", - "description": "Exploration of currents in modern prose, poetry, and drama. Conducted in French. Full Description " + "description": "Exploration of currents in modern prose, poetry, and drama. Conducted in French." }, "FREN3004": { "subject": "FREN", "number": "3004", "name": "Drama Workshop ", - "description": "Literary and theatrical aspects of French drama are explored through class discussion and performance of selections from contemporary and classical plays. Full Description " + "description": "Literary and theatrical aspects of French drama are explored through class discussion and performance of selections from contemporary and classical plays." }, "FREN3011": { "subject": "FREN", "number": "3011", "name": "France Today I ", - "description": "Culture, history, and geography of modern France through lectures, videos, downloads from the Internet, audio and video tapes, and class discussions. Short papers, generated by use of a computer software package, treating assigned topics to enhance writing skills. Conducted in French. Full Description " + "description": "Culture, history, and geography of modern France through lectures, videos, downloads from the Internet, audio and video tapes, and class discussions. Short papers, generated by use of a computer software package, treating assigned topics to enhance writing skills. Conducted in French." }, "FREN3012": { "subject": "FREN", "number": "3012", "name": "France Today II ", - "description": "Culture, history, and geography of modern France through lectures, videos, downloads from the Internet, audio and video tapes, and class discussions. Short papers, generated by use of a computer software package, treating assigned topics to enhance writing skills. Conducted in French. Full Description " + "description": "Culture, history, and geography of modern France through lectures, videos, downloads from the Internet, audio and video tapes, and class discussions. Short papers, generated by use of a computer software package, treating assigned topics to enhance writing skills. Conducted in French." }, "FREN3014": { "subject": "FREN", "number": "3014", "name": "Intro To Contemp France ", - "description": "This course will introduce students enrolled in the Georgia Tech Lorraine summer program to issues in contemporary France. Taught in French. Full Description " + "description": "This course will introduce students enrolled in the Georgia Tech Lorraine summer program to issues in contemporary France. Taught in French." }, "FREN3015": { "subject": "FREN", "number": "3015", "name": "Social Identities French ", - "description": "Analysis of production, reception and perceptions of clashing class identities in France via films, novels, plays, short stories, and newspapers. Conducted in French. Full Description " + "description": "Analysis of production, reception and perceptions of clashing class identities in France via films, novels, plays, short stories, and newspapers. Conducted in French." }, "FREN3017": { "subject": "FREN", "number": "3017", "name": "Paris: Modernity Today ", - "description": "This course explores contemporary Paris and its representations in light of its modern history and culture. Taught in French. Full Description " + "description": "This course explores contemporary Paris and its representations in light of its modern history and culture. Taught in French." }, "FREN3030": { "subject": "FREN", "number": "3030", "name": "French Phonetics ", - "description": "A detailed analysis of the significant features of the French sound system, intonation curves, and graphic representation of individual sounds. Conducted in French. Full Description " + "description": "A detailed analysis of the significant features of the French sound system, intonation curves, and graphic representation of individual sounds. Conducted in French." }, "FREN3040": { "subject": "FREN", "number": "3040", "name": "Reading and Translation ", - "description": "This course will prepare students to the techniques of rapid reading in French, and give them tools to translate and use texts. Taught in French. Full Description " + "description": "This course will prepare students to the techniques of rapid reading in French, and give them tools to translate and use texts. Taught in French." }, "FREN3061": { "subject": "FREN", "number": "3061", "name": "Adv Business French I ", - "description": "Advanced Business French, overview of French commerce, communications, publicity, various social milieus, and the work place. Full Description " + "description": "Advanced Business French, overview of French commerce, communications, publicity, various social milieus, and the work place." }, "FREN3062": { "subject": "FREN", "number": "3062", "name": "Adv Business French II ", - "description": "Advanced Business French. Overview of French commerce, communications, publicity, various social milieus, and the work place. Full Description " + "description": "Advanced Business French. Overview of French commerce, communications, publicity, various social milieus, and the work place." }, "FREN3110": { "subject": "FREN", "number": "3110", "name": "Comics & Graphic Arts ", - "description": "This course studies French comics as a genre and its interrelationships with graphic arts and literature. Conducted in French. Full Description " + "description": "This course studies French comics as a genre and its interrelationships with graphic arts and literature. Conducted in French." }, "FREN3121": { "subject": "FREN", "number": "3121", "name": "Advanced Composition ", - "description": "In-depth study of advanced grammar patterns as used in written expressions. Conducted in French. Full Description " + "description": "In-depth study of advanced grammar patterns as used in written expressions. Conducted in French." }, "FREN3500": { "subject": "FREN", "number": "3500", "name": "Field Work Abroad ", - "description": "This course will focus on theme-based individual projects abroad. Full Description " + "description": "This course will focus on theme-based individual projects abroad." }, "FREN3551": { "subject": "FREN", "number": "3551", "name": "Fren for Professions I ", - "description": "Study aspects of literature, philosophy, culture, geography, history, business, and industry in France and other francophone countries in these applied-language courses. Taught in French. Full Description " + "description": "Study aspects of literature, philosophy, culture, geography, history, business, and industry in France and other francophone countries in these applied-language courses. Taught in French." }, "FREN3552": { "subject": "FREN", "number": "3552", "name": "Fren for Professions II ", - "description": "Study aspects of literature, philosophy, culture, geography, history, business, and industry in France and other francophone countries in these applied-language courses. Taught in French. Full Description " + "description": "Study aspects of literature, philosophy, culture, geography, history, business, and industry in France and other francophone countries in these applied-language courses. Taught in French." }, "FREN3555": { "subject": "FREN", "number": "3555", "name": "French for Engineers I ", - "description": "Study basics of math, physics, chemistry, biology, geology, computing, and the Internet in this applied language course sequence. Taught in French. Full Description " + "description": "Study basics of math, physics, chemistry, biology, geology, computing, and the Internet in this applied language course sequence. Taught in French." }, "FREN3556": { "subject": "FREN", "number": "3556", "name": "French for Engineers II ", - "description": "Study basics fo math, physics, chemistry, biology, geology, computing, and the Internet in this applied language course sequence. Taught in French. Full Description " + "description": "Study basics fo math, physics, chemistry, biology, geology, computing, and the Internet in this applied language course sequence. Taught in French." }, "FREN3691": { "subject": "FREN", "number": "3691", "name": "French LBAT I ", - "description": "Refinement of accuracy and flexibility in oral/written expression. Focus on appropriate use of strategies, business negotiation protocols, lexical precision. Incorporates grammar review. Part of the French intensive summer language program. See catalog p. ??. Admission by application only. Full Description " + "description": "Refinement of accuracy and flexibility in oral/written expression. Focus on appropriate use of strategies, business negotiation protocols, lexical precision. Incorporates grammar review. Part of the French intensive summer language program. See catalog p. ??. Admission by application only." }, "FREN3692": { "subject": "FREN", "number": "3692", "name": "French LBAT II ", - "description": "Study of business, technological, and cultural issues, tendencies and patterns of behavior among French speaking people. Value systems and their manifestations. Part of the French intensive summer language program. See catalog p. ?? Admission by application only. Full Description " + "description": "Study of business, technological, and cultural issues, tendencies and patterns of behavior among French speaking people. Value systems and their manifestations. Part of the French intensive summer language program. See catalog p. ?? Admission by application only." }, "FREN3693": { "subject": "FREN", "number": "3693", "name": "French LBAT III ", - "description": "Business organizations and use of technology in France. Specialized vocabularies of economics, engineering, and computer science. Attention to geographical and anthropological aspects of selected social and political situations. Part of the French intensive summer language program. See catalog p. ?? Admission by application only. Full Description " + "description": "Business organizations and use of technology in France. Specialized vocabularies of economics, engineering, and computer science. Attention to geographical and anthropological aspects of selected social and political situations. Part of the French intensive summer language program. See catalog p. ?? Admission by application only." }, "FREN3694": { "subject": "FREN", "number": "3694", "name": "LBAT French Sem Abroad ", - "description": "Two-week seminar in France highlighting business and technology. Field study of technology firms, economic trends, business institutions, and cultural protocols. Journals and papers assigned. Admission by application only. Full Description " + "description": "Two-week seminar in France highlighting business and technology. Field study of technology firms, economic trends, business institutions, and cultural protocols. Journals and papers assigned. Admission by application only." }, "FREN3813": { "subject": "FREN", "number": "3813", "name": "Special Topics ", - "description": "Permits a group of students and a professor to pursue areas of the French language not covered in other courses in the department. Full Description " + "description": "Permits a group of students and a professor to pursue areas of the French language not covered in other courses in the department." }, "FREN3823": { "subject": "FREN", "number": "3823", "name": "Special Topics ", - "description": "Topics of current interest in French. Full Description " + "description": "Topics of current interest in French." }, "FREN3833": { "subject": "FREN", "number": "3833", "name": "Special Topics ", - "description": "Topics of current interest in French. Full Description " + "description": "Topics of current interest in French." }, "FREN3XXX": { "subject": "FREN", "number": "3XXX", "name": "French Elective ", - "description": " Full Description " + "description": "" }, "FREN4001": { "subject": "FREN", "number": "4001", "name": "French Stylistics ", - "description": "Advanced study of syntax and semantics, aimed at development of stylistic sensitivity. Analysis of representative literary and current interest texts for practice in conversation and composition. Conducted in French. Full Description " + "description": "Advanced study of syntax and semantics, aimed at development of stylistic sensitivity. Analysis of representative literary and current interest texts for practice in conversation and composition. Conducted in French." }, "FREN4011": { "subject": "FREN", "number": "4011", "name": "French Art ", - "description": "This course will explore contemporary French art in the historical, economic and cultural contexts of production and reception. Taught in French. Full Description " + "description": "This course will explore contemporary French art in the historical, economic and cultural contexts of production and reception. Taught in French." }, "FREN4013": { "subject": "FREN", "number": "4013", "name": "Literature & Visual Arts ", - "description": "This course studies French Literature and its interrelationships with various arts (painting, music, cinema, architecture or opera), often through several periods. Conducted in French. Full Description " + "description": "This course studies French Literature and its interrelationships with various arts (painting, music, cinema, architecture or opera), often through several periods. Conducted in French." }, "FREN4061": { "subject": "FREN", "number": "4061", "name": "Fren Science & Tech I ", - "description": "Introduction to scientific and technical French. Analysis and discussion of scientific and technical material pertaining to current issues in the scientific and technical communities. Background in chemistry, physics, or biology required. Full Description " + "description": "Introduction to scientific and technical French. Analysis and discussion of scientific and technical material pertaining to current issues in the scientific and technical communities. Background in chemistry, physics, or biology required." }, "FREN4062": { "subject": "FREN", "number": "4062", "name": "Fren Science & Tech II ", - "description": "Introduction to scientific and technical French. Analysis and discussion of scientific and technical material pertaining to current issues in the scientific and technical communities. Background in chemistry, physics, or biology required. Full Description " + "description": "Introduction to scientific and technical French. Analysis and discussion of scientific and technical material pertaining to current issues in the scientific and technical communities. Background in chemistry, physics, or biology required." }, "FREN4101": { "subject": "FREN", "number": "4101", "name": "Francophone Lit I ", - "description": "Exploration of the literature of the francophone world. Currents in modern prose, poetry, and drama. Conducted in French. Full Description " + "description": "Exploration of the literature of the francophone world. Currents in modern prose, poetry, and drama. Conducted in French." }, "FREN4102": { "subject": "FREN", "number": "4102", "name": "Francophone Lit II ", - "description": "Continuation of Literature of the Francophone World I. Currents in modern prose, poetry, and drama. Conducted in French. Full Description " + "description": "Continuation of Literature of the Francophone World I. Currents in modern prose, poetry, and drama. Conducted in French." }, "FREN4103": { "subject": "FREN", "number": "4103", "name": "Francophone Africa ", - "description": "This course will explore contemporary Africa and its representations in light of its modern history and culture. Full Description " + "description": "This course will explore contemporary Africa and its representations in light of its modern history and culture." }, "FREN4105": { "subject": "FREN", "number": "4105", "name": "Francophone Cinema ", - "description": "This course will explore contemporary Africa and its representations in light of its modern history and culture. Taught in French. Full Description " + "description": "This course will explore contemporary Africa and its representations in light of its modern history and culture. Taught in French." }, "FREN4107": { "subject": "FREN", "number": "4107", "name": "African Diasporas France ", - "description": "Intercultural class taught in French about the complex nature of the African Diasporas in France from their historical development to our present day society. Full Description " + "description": "Intercultural class taught in French about the complex nature of the African Diasporas in France from their historical development to our present day society." }, "FREN4200": { "subject": "FREN", "number": "4200", "name": "Intro French Philosophy ", - "description": "Introduction to major French philosophical texts with an emphasis on post-WWI thinkers (includes Existentialism, Structuralism, Post-Structuralism, Postmodernism, Deconstructionism). Conducted in French. Full Description " + "description": "Introduction to major French philosophical texts with an emphasis on post-WWI thinkers (includes Existentialism, Structuralism, Post-Structuralism, Postmodernism, Deconstructionism). Conducted in French." }, "FREN4241": { "subject": "FREN", "number": "4241", "name": "French Cinema I ", - "description": "A topical approach focusing on the major contributions of French cinema and cinematographic aesthetics, from the 1908s to contemporary films. Conducted in French. Full Description " + "description": "A topical approach focusing on the major contributions of French cinema and cinematographic aesthetics, from the 1908s to contemporary films. Conducted in French." }, "FREN4242": { "subject": "FREN", "number": "4242", "name": "French Cinema II ", - "description": "In-depth and concentrated study of French cinema. Particular attention devoted to the French New Wave, the development of film theory and criticism in France. Conducted in French. Full Description " + "description": "In-depth and concentrated study of French cinema. Particular attention devoted to the French New Wave, the development of film theory and criticism in France. Conducted in French." }, "FREN4300": { "subject": "FREN", "number": "4300", "name": "France and Globalization ", - "description": "Intercultural class about French attitudes and policies toward globalization as well as France's role in the European Community. Conducted in French. Full Description " + "description": "Intercultural class about French attitudes and policies toward globalization as well as France's role in the European Community. Conducted in French." }, "FREN4500": { "subject": "FREN", "number": "4500", "name": "Intercultural Seminar ", - "description": "Integrates cross-cultural research and reflection into discussion of current issues in the French-speaking world. Intended for students who have some study-abroad experience in a French-speaking country. Conducted in French. Full Description " + "description": "Integrates cross-cultural research and reflection into discussion of current issues in the French-speaking world. Intended for students who have some study-abroad experience in a French-speaking country. Conducted in French." }, "FREN4695": { "subject": "FREN", "number": "4695", "name": "French Internship ", - "description": "Professional experience with a business/organization in which students enhance their language skills and cultural knowledge in French in relation to the practical goals/objectives of the entity. Full Description " + "description": "Professional experience with a business/organization in which students enhance their language skills and cultural knowledge in French in relation to the practical goals/objectives of the entity." }, "FREN4698": { "subject": "FREN", "number": "4698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "FREN4699": { "subject": "FREN", "number": "4699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "FREN4813": { "subject": "FREN", "number": "4813", "name": "Special Topics ", - "description": "Topics of interest not covered in the regular course offerings. Full Description " + "description": "Topics of interest not covered in the regular course offerings." }, "FREN4823": { "subject": "FREN", "number": "4823", "name": "Special Topics ", - "description": "Topics of current interest in French. Full Description " + "description": "Topics of current interest in French." }, "FREN4833": { "subject": "FREN", "number": "4833", "name": "Special Topics ", - "description": "Topics of current interest in French. Full Description " + "description": "Topics of current interest in French." }, "FREN4901": { "subject": "FREN", "number": "4901", "name": "Special Problems ", - "description": "Provides the special instruction required under special programs. Full Description " + "description": "Provides the special instruction required under special programs." }, "FREN4902": { "subject": "FREN", "number": "4902", "name": "Special Problems ", - "description": "Provides the special instruction required under special programs. Full Description " + "description": "Provides the special instruction required under special programs." }, "FREN4XXX": { "subject": "FREN", "number": "4XXX", "name": "French Elective ", - "description": " Full Description " + "description": "" }, "FS4000": { "subject": "FS", "number": "4000", "name": "Foreign Studies ", - "description": "Course used by students participating in an exchange program with a foreign university. Full Description " + "description": "Course used by students participating in an exchange program with a foreign university." }, "FS4003": { "subject": "FS", "number": "4003", "name": "Foreign Studies ", - "description": "Course used by students participating in an exchange program with a foreign university. Full Description " + "description": "Course used by students participating in an exchange program with a foreign university." }, "FS4006": { "subject": "FS", "number": "4006", "name": "Foreign Studies ", - "description": "Course used by students participating in an exchange program with a foreign university. Full Description " + "description": "Course used by students participating in an exchange program with a foreign university." }, "FS4009": { "subject": "FS", "number": "4009", "name": "Foreign Studies ", - "description": "Course used by students participating in an exchange program with a foreign univeristy. Full Description " + "description": "Course used by students participating in an exchange program with a foreign univeristy." }, "FS6000": { "subject": "FS", "number": "6000", "name": "Foreign Studies ", - "description": "Course used by students participating in an exchange program with a foreign university. Full Description " + "description": "Course used by students participating in an exchange program with a foreign university." }, "FS6003": { "subject": "FS", "number": "6003", "name": "Foreign Studies ", - "description": "Course used by students participating in an exchange program with a foreign university. Full Description " + "description": "Course used by students participating in an exchange program with a foreign university." }, "FS6006": { "subject": "FS", "number": "6006", "name": "Foreign Studies ", - "description": "Course used by students participating in an exchange program with a foreign university. Full Description " + "description": "Course used by students participating in an exchange program with a foreign university." }, "GRMN1001": { "subject": "GRMN", "number": "1001", "name": "Elementary German I ", - "description": "An introduction to German language and culture. Beginning of a survey of basic German grammar and the development of the four language skills of listening, speaking, reading and writing. Some aspects of everyday life in the German-speaking world will also be introduced. Humanities credit awarded for GRMN 1001 upon successful completion of GRMN 1002 or 2001. Full Description " + "description": "An introduction to German language and culture. Beginning of a survey of basic German grammar and the development of the four language skills of listening, speaking, reading and writing. Some aspects of everyday life in the German-speaking world will also be introduced. Humanities credit awarded for GRMN 1001 upon successful completion of GRMN 1002 or 2001." }, "GRMN1002": { "subject": "GRMN", "number": "1002", "name": "Elementary German II ", - "description": "The second part of an introduction to German language and culture. Survey of more basic German grammar and the development of the four language skills of listening, speaking, reading, and writing. Some aspects of everyday life in the German-speaking world will also be introduced. Full Description " + "description": "The second part of an introduction to German language and culture. Survey of more basic German grammar and the development of the four language skills of listening, speaking, reading, and writing. Some aspects of everyday life in the German-speaking world will also be introduced." }, "GRMN1813": { "subject": "GRMN", "number": "1813", "name": "Special Topics ", - "description": "Topics of current interest in German. Full Description " + "description": "Topics of current interest in German." }, "GRMN1XXX": { "subject": "GRMN", "number": "1XXX", "name": "German Elective ", - "description": " Full Description " + "description": "" }, "GRMN2001": { "subject": "GRMN", "number": "2001", "name": "Intermediate German I ", - "description": "Review of basic grammatical concepts and vocabulary build-up. Selected readings, audio and video material on the cultural, historical, and intellectual development of Germany. Teaching and class discussion in German. Full Description " + "description": "Review of basic grammatical concepts and vocabulary build-up. Selected readings, audio and video material on the cultural, historical, and intellectual development of Germany. Teaching and class discussion in German." }, "GRMN2002": { "subject": "GRMN", "number": "2002", "name": "Intermediate German II ", - "description": "Continuation of GRMN 2001. Full Description " + "description": "Continuation of GRMN 2001." }, "GRMN2698": { "subject": "GRMN", "number": "2698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "GRMN2699": { "subject": "GRMN", "number": "2699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "GRMN2813": { "subject": "GRMN", "number": "2813", "name": "Special Topics ", - "description": "Topics of current interest in German. Full Description " + "description": "Topics of current interest in German." }, "GRMN2XXX": { "subject": "GRMN", "number": "2XXX", "name": "German Elective ", - "description": " Full Description " + "description": "" }, "GRMN3010": { "subject": "GRMN", "number": "3010", "name": "Intro-German Literature ", - "description": "Introduction to the periods and genres of German literature from the Middle Ages to modern times. Conducted in German. Full Description " + "description": "Introduction to the periods and genres of German literature from the Middle Ages to modern times. Conducted in German." }, "GRMN3011": { "subject": "GRMN", "number": "3011", "name": "Germany Today ", - "description": "Introduction to current issues in contemporary Germany. Lectures, papers, and class discussions. Conducted in German. Full Description " + "description": "Introduction to current issues in contemporary Germany. Lectures, papers, and class discussions. Conducted in German." }, "GRMN3023": { "subject": "GRMN", "number": "3023", "name": "Advanced German Grammar ", - "description": "Students refine their command and understanding of German grammar through in-class discussion in German, formal exercises, and communicative application of grammatical topics. Taught in German. Full Description " + "description": "Students refine their command and understanding of German grammar through in-class discussion in German, formal exercises, and communicative application of grammatical topics. Taught in German." }, "GRMN3024": { "subject": "GRMN", "number": "3024", "name": "Conversation&Composition ", - "description": "A combination of conversation, composition, and stylistics, this course is designed to promote listening, speaking, and writing proficiency; expansion of vocabulary; stylistic skills. Full Description " + "description": "A combination of conversation, composition, and stylistics, this course is designed to promote listening, speaking, and writing proficiency; expansion of vocabulary; stylistic skills." }, "GRMN3026": { "subject": "GRMN", "number": "3026", "name": "Stylistics ", - "description": "This course introduces students to stylistic difference and idiomatic usages of German, expands vocabulary, and enlarges upon grammatical and syntactic structures. Taught in German. Credit not allowed for both GRMN 3026 and GRMN 3026. Full Description " + "description": "This course introduces students to stylistic difference and idiomatic usages of German, expands vocabulary, and enlarges upon grammatical and syntactic structures. Taught in German. Credit not allowed for both GRMN 3026 and GRMN 3026." }, "GRMN3030": { "subject": "GRMN", "number": "3030", "name": "Crossing Borders Lit/Cul ", - "description": "The class examines politics of immigration and integration such as national, geographic, ethnic, race, gender, and sexuality boundaries in literature and film. Taught in German. Full Description " + "description": "The class examines politics of immigration and integration such as national, geographic, ethnic, race, gender, and sexuality boundaries in literature and film. Taught in German." }, "GRMN3055": { "subject": "GRMN", "number": "3055", "name": "Fairy Tales Grimm/Disney ", - "description": "Discussion of socio-historical, cultural, and literary themes in German fairy tales, their place in Western tradition, and their echo in contemporary society. Conducted in German. Full Description " + "description": "Discussion of socio-historical, cultural, and literary themes in German fairy tales, their place in Western tradition, and their echo in contemporary society. Conducted in German." }, "GRMN3071": { "subject": "GRMN", "number": "3071", "name": "Intro-Business German I ", - "description": "Analysis and discussion of texts and videos pertaining to issues in the current business world. Full Description " + "description": "Analysis and discussion of texts and videos pertaining to issues in the current business world." }, "GRMN3110": { "subject": "GRMN", "number": "3110", "name": "TV & Electronic Culture ", - "description": "This course examines the significance of television, computer games, film and online sites (among other sources) in contemporary German culture. Taught in German. Full Description " + "description": "This course examines the significance of television, computer games, film and online sites (among other sources) in contemporary German culture. Taught in German." }, "GRMN3695": { "subject": "GRMN", "number": "3695", "name": "Structure,Commun&Corr ", - "description": "Overview of Germany's business structure, such as industries, service sector, banking system, relation to the European Union, the United States, and the global economy. Site visits. Admission by application only. Full Description " + "description": "Overview of Germany's business structure, such as industries, service sector, banking system, relation to the European Union, the United States, and the global economy. Site visits. Admission by application only." }, "GRMN3696": { "subject": "GRMN", "number": "3696", "name": "Current Issues ", - "description": "Themes oriented toward business German, with emphasis on historical, social, cultural, and political questions pertaining to the development of modern Germany. Admissions by application only. Full Description " + "description": "Themes oriented toward business German, with emphasis on historical, social, cultural, and political questions pertaining to the development of modern Germany. Admissions by application only." }, "GRMN3697": { "subject": "GRMN", "number": "3697", "name": "Communication & Culture ", - "description": "Development of language skills through discussions, compositions, journals, oral reports, and presentations. Individual and group projects use interviews, explore German surroundings, and focus on cross-cultural issues. Admission by application only. Full Description " + "description": "Development of language skills through discussions, compositions, journals, oral reports, and presentations. Individual and group projects use interviews, explore German surroundings, and focus on cross-cultural issues. Admission by application only." }, "GRMN3813": { "subject": "GRMN", "number": "3813", "name": "Special Topics ", - "description": "Permits a group of students and a professor to pursue areas of the German language not covered in other courses in the department. Full Description " + "description": "Permits a group of students and a professor to pursue areas of the German language not covered in other courses in the department." }, "GRMN3823": { "subject": "GRMN", "number": "3823", "name": "Special Topics ", - "description": "Topics of current interest in German. Full Description " + "description": "Topics of current interest in German." }, "GRMN3833": { "subject": "GRMN", "number": "3833", "name": "Special Topics ", - "description": "Topics of current interest in German. Full Description " + "description": "Topics of current interest in German." }, "GRMN3901": { "subject": "GRMN", "number": "3901", "name": "Special Problems ", - "description": "Small group or individual instruction. Full Description " + "description": "Small group or individual instruction." }, "GRMN3XXX": { "subject": "GRMN", "number": "3XXX", "name": "German Elective ", - "description": " Full Description " + "description": "" }, "GRMN4010": { "subject": "GRMN", "number": "4010", "name": "Perspectives Grmn Media ", - "description": "A comparison of differences in representation between various German media sources applied towards the development of a critical understanding of media language to influence, persuade, inform and entertain. Full Description " + "description": "A comparison of differences in representation between various German media sources applied towards the development of a critical understanding of media language to influence, persuade, inform and entertain." }, "GRMN4012": { "subject": "GRMN", "number": "4012", "name": "German Identity ", - "description": "Images of a nation are composed of characteristic traits, some cliches and stereotypes. This course examines a possible German Identity from a variety of viewpoints: history, geography, linguistics, culture, values and traditions, literature, music and the arts, architecture, film, politics and daily life. Full Description " + "description": "Images of a nation are composed of characteristic traits, some cliches and stereotypes. This course examines a possible German Identity from a variety of viewpoints: history, geography, linguistics, culture, values and traditions, literature, music and the arts, architecture, film, politics and daily life." }, "GRMN4023": { "subject": "GRMN", "number": "4023", "name": "Select Readings-Ger Lit ", - "description": "Study of selected authors, movements, genres, in German literature. Selection varies. Conducted in German. Full Description " + "description": "Study of selected authors, movements, genres, in German literature. Selection varies. Conducted in German." }, "GRMN4024": { "subject": "GRMN", "number": "4024", "name": "Ger Film and Literature ", - "description": "A survey of German culture and recent past as presented through films and related literary works illuminating Germany's quest for identity since 1945. Full Description " + "description": "A survey of German culture and recent past as presented through films and related literary works illuminating Germany's quest for identity since 1945." }, "GRMN4025": { "subject": "GRMN", "number": "4025", "name": "German Culture & Film ", - "description": "This course offers a survey of German Cinema from the 1930s to the 1900s. These films will be analyzed as reflections of the historical, social, and cultural context in which they originated. Full Description " + "description": "This course offers a survey of German Cinema from the 1930s to the 1900s. These films will be analyzed as reflections of the historical, social, and cultural context in which they originated." }, "GRMN4026": { "subject": "GRMN", "number": "4026", "name": "German Post-Wall Cinema ", - "description": "This course offers a cross-section of the most important German films since 1989. Students will analyze the narratives in the context of contemporary German history, society, and culture. Full Description " + "description": "This course offers a cross-section of the most important German films since 1989. Students will analyze the narratives in the context of contemporary German history, society, and culture." }, "GRMN4061": { "subject": "GRMN", "number": "4061", "name": "Adv Business German I ", - "description": "Advanced principles of German business organization and language. Taught through the use of reading, audio, and video materials. Conducted in German. Full Description " + "description": "Advanced principles of German business organization and language. Taught through the use of reading, audio, and video materials. Conducted in German." }, "GRMN4065": { "subject": "GRMN", "number": "4065", "name": "European Union ", - "description": "The European Union plays an increasing role in European politics and daily life. This seminar examines the origins of the European Union, its institutions, legal framework, and current topics such as immigration, enlargement, and relationships with other countries. Full Description " + "description": "The European Union plays an increasing role in European politics and daily life. This seminar examines the origins of the European Union, its institutions, legal framework, and current topics such as immigration, enlargement, and relationships with other countries." }, "GRMN4120": { "subject": "GRMN", "number": "4120", "name": "Literary Repr of History ", - "description": "This course examines how literary representation reveals interpretations of historical events and the relationship between history and fiction in selected German history. Taught in German. Full Description " + "description": "This course examines how literary representation reveals interpretations of historical events and the relationship between history and fiction in selected German history. Taught in German." }, "GRMN4126": { "subject": "GRMN", "number": "4126", "name": "Advanced Stylistics ", - "description": "This course incorporates study of stylistic difference and idiomatic usages of German, expands vocabulary, and solidifies and enlarges upon grammatical and syntactic structures. Taught in German. Full Description " + "description": "This course incorporates study of stylistic difference and idiomatic usages of German, expands vocabulary, and solidifies and enlarges upon grammatical and syntactic structures. Taught in German." }, "GRMN4500": { "subject": "GRMN", "number": "4500", "name": "Intercultural Seminar ", - "description": "Integrates cross-cultural research and reflection into discussion of current issues Germany. Intended for students who have had some study-abroad experience in Germany. Conducted in German. Full Description " + "description": "Integrates cross-cultural research and reflection into discussion of current issues Germany. Intended for students who have had some study-abroad experience in Germany. Conducted in German." }, "GRMN4691": { "subject": "GRMN", "number": "4691", "name": "Berlin in the 20th Cent ", - "description": "By engaging contemporaneous topics in film, literature, photography, etc., students will investigate topics that dominated the different periods of Berlin's turbulent history. Taught in German. Full Description " + "description": "By engaging contemporaneous topics in film, literature, photography, etc., students will investigate topics that dominated the different periods of Berlin's turbulent history. Taught in German." }, "GRMN4693": { "subject": "GRMN", "number": "4693", "name": "Ind Transf Grmn Soc/Econ ", - "description": "Examination of technological and societal changes resulting from transformation of an industrial area to one dominated by high tech and media industries. Taught in German. Full Description " + "description": "Examination of technological and societal changes resulting from transformation of an industrial area to one dominated by high tech and media industries. Taught in German." }, "GRMN4694": { "subject": "GRMN", "number": "4694", "name": "200 Yrs of Grmn Technlgy ", - "description": "The course chronicles German technological inventions, industrial development and the resulting social changes from the Industrial Revolution through Globalization. Taught in German. Prerequisites: GRMN 2002 or equivalent plus at least one 3000-level course. Full Description " + "description": "The course chronicles German technological inventions, industrial development and the resulting social changes from the Industrial Revolution through Globalization. Taught in German. Prerequisites: GRMN 2002 or equivalent plus at least one 3000-level course." }, "GRMN4695": { "subject": "GRMN", "number": "4695", "name": "German Internship ", - "description": "Professional experience with a business/organization in which students enhance their language skills and cultural knowledge in German in relation to the practical goals/objectives of the entity. Full Description " + "description": "Professional experience with a business/organization in which students enhance their language skills and cultural knowledge in German in relation to the practical goals/objectives of the entity." }, "GRMN4698": { "subject": "GRMN", "number": "4698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "GRMN4699": { "subject": "GRMN", "number": "4699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "GRMN4813": { "subject": "GRMN", "number": "4813", "name": "Special Topics ", - "description": "Topics of interest not covered in the regular course offerings. Full Description " + "description": "Topics of interest not covered in the regular course offerings." }, "GRMN4823": { "subject": "GRMN", "number": "4823", "name": "Special Topics ", - "description": "Topics of current interest in German. Full Description " + "description": "Topics of current interest in German." }, "GRMN4833": { "subject": "GRMN", "number": "4833", "name": "Special Topics ", - "description": "Topics of current interest in German. Full Description " + "description": "Topics of current interest in German." }, "GRMN4901": { "subject": "GRMN", "number": "4901", "name": "Special Problems ", - "description": "Special problems course for advanced students. Topics to be arranged with instructor. Full Description " + "description": "Special problems course for advanced students. Topics to be arranged with instructor." }, "GRMN4902": { "subject": "GRMN", "number": "4902", "name": "Special Problems ", - "description": "Special problems course for advanced students. Topics to be arranged with instructor. Full Description " + "description": "Special problems course for advanced students. Topics to be arranged with instructor." }, "GRMN4XXX": { "subject": "GRMN", "number": "4XXX", "name": "German Elective ", - "description": " Full Description " + "description": "" }, "GT1000": { "subject": "GT", "number": "1000", "name": "GT Freshman Seminar ", - "description": "Discussion of topics related to academic, social and professional success including learning styles, time management, major and career exploration, leadership and teamwork. Full Description " + "description": "Discussion of topics related to academic, social and professional success including learning styles, time management, major and career exploration, leadership and teamwork." }, "GT1201": { "subject": "GT", "number": "1201", "name": "Explr Grand Challenges ", - "description": "A problem-based learning approach to developing problem solving skills for multidisciplinary teams of freshmen to tackle Grand Challenges facing humanity. Full Description " + "description": "A problem-based learning approach to developing problem solving skills for multidisciplinary teams of freshmen to tackle Grand Challenges facing humanity." }, "GT1900": { "subject": "GT", "number": "1900", "name": "Re-entry Planning ", - "description": "Placeholder for returning student. Full Description " + "description": "Placeholder for returning student." }, "GT2100": { "subject": "GT", "number": "2100", "name": "Success Seminar ", - "description": "This academic skills seminar is designed to help students develop personalized strategies for success within the rigorous academic environment at Georgia Tech. Full Description " + "description": "This academic skills seminar is designed to help students develop personalized strategies for success within the rigorous academic environment at Georgia Tech." }, "GT2201": { "subject": "GT", "number": "2201", "name": "Grand Challenges Research Proj ", - "description": "This course is for participants in year 2 of the Grand Challenges program. Students will organize into small teams of 4-8 student to pursue research and development projects that were approved and funded in year 1. Participating students can also propose new projects. Full Description " + "description": "This course is for participants in year 2 of the Grand Challenges program. Students will organize into small teams of 4-8 student to pursue research and development projects that were approved and funded in year 1. Participating students can also propose new projects." }, "GT2202": { "subject": "GT", "number": "2202", "name": "Grand Challenges Research Proj ", - "description": "This course is for participants in year 2 of the Grand Challenges program. Students will organize into small teams of 4-8 student to pursue research and development projects that were approved and funded in year 1. Participating students can also propose new projects. Full Description " + "description": "This course is for participants in year 2 of the Grand Challenges program. Students will organize into small teams of 4-8 student to pursue research and development projects that were approved and funded in year 1. Participating students can also propose new projects." }, "GT2500": { "subject": "GT", "number": "2500", "name": "ThinkBig@Tech ", - "description": "ThinkBig@Tech are faculty led Living Learning Communities. Students participating in these programs will be engaging closely with faculty. The topic of each Living Learning Community is based on the faculty interests, and students sign up for the one they are interested in. Full Description " + "description": "ThinkBig@Tech are faculty led Living Learning Communities. Students participating in these programs will be engaging closely with faculty. The topic of each Living Learning Community is based on the faculty interests, and students sign up for the one they are interested in." }, "GT2694": { "subject": "GT", "number": "2694", "name": "Undergraduate Internship ", - "description": "Undergraduate Internship for which the student is paid, Freshmen and Sophomores only. Full Description " + "description": "Undergraduate Internship for which the student is paid, Freshmen and Sophomores only." }, "GT2802": { "subject": "GT", "number": "2802", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "GT2803": { "subject": "GT", "number": "2803", "name": "Special Topics ", - "description": "Practice based fundamentals for students interested in invention: ideas and actions that create tangible value and lead to significant positive change. Work in multidisciplinary teams. Full Description " + "description": "Practice based fundamentals for students interested in invention: ideas and actions that create tangible value and lead to significant positive change. Work in multidisciplinary teams." }, "GT2811": { "subject": "GT", "number": "2811", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "GT2812": { "subject": "GT", "number": "2812", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "GT2813": { "subject": "GT", "number": "2813", "name": "Transfer Student Seminar ", - "description": "Discussion of topics related to the academic and personal transition of new transfer students, including campus resources, major and career exploration, and academic and personal success strategies. Full Description " + "description": "Discussion of topics related to the academic and personal transition of new transfer students, including campus resources, major and career exploration, and academic and personal success strategies." }, "GT4500": { "subject": "GT", "number": "4500", "name": "ThinkBig@Tech ", - "description": "ThinkBig@Tech are faculty led Living Learning Communities. Students participating in these programs will be engaging closely with faculty. The topic of each Living Learning Community is based on the faculty interests, and students sign up for the one they are interested in. Full Description " + "description": "ThinkBig@Tech are faculty led Living Learning Communities. Students participating in these programs will be engaging closely with faculty. The topic of each Living Learning Community is based on the faculty interests, and students sign up for the one they are interested in." }, "GT4694": { "subject": "GT", "number": "4694", "name": "Undergraduate Internship ", - "description": "Undergraduate Internship for which the student is paid, Juniors and Seniors only. Full Description " + "description": "Undergraduate Internship for which the student is paid, Juniors and Seniors only." }, "GT4701": { "subject": "GT", "number": "4701", "name": "Inventions and Startups ", - "description": "The theory and practice of innovation and startup creation. Full Description " + "description": "The theory and practice of innovation and startup creation." }, "GT4801": { "subject": "GT", "number": "4801", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "GT4813": { "subject": "GT", "number": "4813", "name": "Proj In Energy Systems ", - "description": "Multidisciplinary project in the area of energy systems. Open to students completing the minor in Energy Systems. Students must have completed or be on track to complete all requriements for the energy systems minor except this course. Full Description " + "description": "Multidisciplinary project in the area of energy systems. Open to students completing the minor in Energy Systems. Students must have completed or be on track to complete all requriements for the energy systems minor except this course." }, "GT4823": { "subject": "GT", "number": "4823", "name": "Special Topics - Design ", - "description": "Seniors will work in teams to apply a systematic design process to real multidisciplinary problems. Problems selected from a broad spectrum of interest areas, including biomedical, environmental, mechanical, industrial design, electrical and thermal/fluids. Full Description " + "description": "Seniors will work in teams to apply a systematic design process to real multidisciplinary problems. Problems selected from a broad spectrum of interest areas, including biomedical, environmental, mechanical, industrial design, electrical and thermal/fluids." }, "GTL2000": { "subject": "GTL", "number": "2000", "name": "Ga Tech Lorraine Seminar ", - "description": "Seminar discussing aspects of European cities. Part of the Georgia Tech Lorraine summer program Full Description " + "description": "Seminar discussing aspects of European cities. Part of the Georgia Tech Lorraine summer program" }, "GTL6001": { "subject": "GTL", "number": "6001", "name": "GTL and SUPELEC ", - "description": "GTL - SUPELEC Full Description " + "description": "GTL - SUPELEC" }, "GTL6010": { "subject": "GTL", "number": "6010", "name": "CentraleSupelec ", - "description": " Full Description " + "description": "" }, "GTL6011": { "subject": "GTL", "number": "6011", "name": "GTL - SUPELEC ", - "description": "For students attending both GTL and SUPELEC. Full Description " + "description": "For students attending both GTL and SUPELEC." }, "GTL6012": { "subject": "GTL", "number": "6012", "name": "GTL - ENSAM ", - "description": "For students attending both GTL and ENSAM Full Description " + "description": "For students attending both GTL and ENSAM" }, "GTL6014": { "subject": "GTL", "number": "6014", "name": "GTL - ENSEA ", - "description": "For students attending both GTL and ENSEA Full Description " + "description": "For students attending both GTL and ENSEA" }, "GTL6015": { "subject": "GTL", "number": "6015", "name": "GTL - INPL ENSEM ", - "description": "For students attending both GTL and INPL ENSEM. Full Description " + "description": "For students attending both GTL and INPL ENSEM." }, "GTL6016": { "subject": "GTL", "number": "6016", "name": "GTL - INPT ENSEEIHT ", - "description": "For students attending both GLT and INPT ENSEEIHT. Full Description " + "description": "For students attending both GLT and INPT ENSEEIHT." }, "GTL6018": { "subject": "GTL", "number": "6018", "name": "GTL - UTC ", - "description": " Full Description " + "description": "" }, "GTL6020": { "subject": "GTL", "number": "6020", "name": "GTL-INSA ", - "description": "For students attending both GTL and INSA. Full Description " + "description": "For students attending both GTL and INSA." }, "GTL6021": { "subject": "GTL", "number": "6021", "name": "CentraleSupelec ", - "description": " Full Description " + "description": "" }, "GTL6022": { "subject": "GTL", "number": "6022", "name": "ENSTA Bretagne ", - "description": " Full Description " + "description": "" }, "GTL6023": { "subject": "GTL", "number": "6023", "name": "IMT ", - "description": "For Ecoles des Mines(all) + Telecom Sud Paris Full Description " + "description": "For Ecoles des Mines(all) + Telecom Sud Paris" }, "GTL6024": { "subject": "GTL", "number": "6024", "name": "USTL ", - "description": " Full Description " + "description": "" }, "GTL6025": { "subject": "GTL", "number": "6025", "name": "GTL and ENSAM ", - "description": " Full Description " + "description": "" }, "GTL6110": { "subject": "GTL", "number": "6110", "name": "GTL - BRESCIA ", - "description": " Full Description " + "description": "" }, "GTL6114": { "subject": "GTL", "number": "6114", "name": "GTL-UTT ", - "description": "For students attending both GTL and UTT (universite de Technologie de Troye) Full Description " + "description": "For students attending both GTL and UTT (universite de Technologie de Troye)" }, "GTL6119": { "subject": "GTL", "number": "6119", "name": "GTL-ESIE ", - "description": " Full Description " + "description": "" }, "HIN1814": { "subject": "HIN", "number": "1814", "name": "Special Topics ", - "description": "Topics of current interest in Hindi Languages. Full Description " + "description": "Topics of current interest in Hindi Languages." }, "HIN1824": { "subject": "HIN", "number": "1824", "name": "Special Topics ", - "description": "Topics of current interest in Hindi Languages. Full Description " + "description": "Topics of current interest in Hindi Languages." }, "HIN2813": { "subject": "HIN", "number": "2813", "name": "Special Topics ", - "description": "Topics of current interest in Hindi Languages. Full Description " + "description": "Topics of current interest in Hindi Languages." }, "HIN3813": { "subject": "HIN", "number": "3813", "name": "Special Topics ", - "description": "Topics of current interest in Hindi Languages. Full Description " + "description": "Topics of current interest in Hindi Languages." }, "HIN4813": { "subject": "HIN", "number": "4813", "name": "Special Topics ", - "description": "Topics of current interest in Hindi Languages. Full Description " + "description": "Topics of current interest in Hindi Languages." }, "HIST2111": { "subject": "HIST", "number": "2111", "name": "United States to 1877 ", - "description": "Colonial settlement, the American Revolution and the Constitution, antebellum expansion, slavery and plantation economy, sectional conflict and Civil War, Reconstruction. Full Description " + "description": "Colonial settlement, the American Revolution and the Constitution, antebellum expansion, slavery and plantation economy, sectional conflict and Civil War, Reconstruction." }, "HIST2112": { "subject": "HIST", "number": "2112", "name": "United States since 1877 ", - "description": "The social, political, and economic history of the United States since Reconstruction. Topics include American industrialization, two world wars, New Deal, and the Civil Rights movement. Full Description " + "description": "The social, political, and economic history of the United States since Reconstruction. Topics include American industrialization, two world wars, New Deal, and the Civil Rights movement." }, "HP6403": { "subject": "HP", "number": "6403", "name": "Radiological Health I ", - "description": "Applied nuclear and atomic physics, radioactive decay, radiation interactions, radiation dosimetry, and safety guidelines; instrumentation, radiation protection and basics of criticality safety. Full Description " + "description": "Applied nuclear and atomic physics, radioactive decay, radiation interactions, radiation dosimetry, and safety guidelines; instrumentation, radiation protection and basics of criticality safety." }, "HP6406": { "subject": "HP", "number": "6406", "name": "Radiological Health II ", - "description": "Radiation quantities, microdosimetry, biological effects of ionizing radiation, radiation risk, internal radiation protection, ALARA, and radiological emergency response. Full Description " + "description": "Radiation quantities, microdosimetry, biological effects of ionizing radiation, radiation risk, internal radiation protection, ALARA, and radiological emergency response." }, "HP6416": { "subject": "HP", "number": "6416", "name": "App Radiol Health Lab ", - "description": "Advanced laboratory course in radiochemical and instrumental analysis. Practical radiation/radioactivity monitoring problems in nuclear facilities and environmental surveillance. Full Description " + "description": "Advanced laboratory course in radiochemical and instrumental analysis. Practical radiation/radioactivity monitoring problems in nuclear facilities and environmental surveillance." }, "HP6506": { "subject": "HP", "number": "6506", "name": "Operational Health Phys ", - "description": "Radiation sources, radiological safety practices and procedures for nuclear facilities, and the impact of radiological safety in the design of such facilities. Full Description " + "description": "Radiation sources, radiological safety practices and procedures for nuclear facilities, and the impact of radiological safety in the design of such facilities." }, "HP6601": { "subject": "HP", "number": "6601", "name": "Industrial Hygiene ", - "description": "Chemical, physical, biological, and ergonomic exposures. Occupational environment regulations. Application of scientific and engineering principles to hazard evaluation and general occupational health control measures. Full Description " + "description": "Chemical, physical, biological, and ergonomic exposures. Occupational environment regulations. Application of scientific and engineering principles to hazard evaluation and general occupational health control measures." }, "HP6755": { "subject": "HP", "number": "6755", "name": "Rad Assessment&Waste Mgt ", - "description": "Critical analyses of sources and human exposures, mathematical models for movement through the biosphere, environmental transport, and exposure for nuclear facilities and waste disposal processing. Crosslisted with NRE 6755. Full Description " + "description": "Critical analyses of sources and human exposures, mathematical models for movement through the biosphere, environmental transport, and exposure for nuclear facilities and waste disposal processing. Crosslisted with NRE 6755." }, "HP6756": { "subject": "HP", "number": "6756", "name": "Radiation Physics ", - "description": "Characteristics of atomic and nuclear radiation, transition probabilities, radioactivity and isotopes, cross sections, electromagnetic radiation, neutrons, and charged particle interaction with matter. Crosslisted with NRE 6756. Full Description " + "description": "Characteristics of atomic and nuclear radiation, transition probabilities, radioactivity and isotopes, cross sections, electromagnetic radiation, neutrons, and charged particle interaction with matter. Crosslisted with NRE 6756." }, "HP6757": { "subject": "HP", "number": "6757", "name": "Radiation Detection ", - "description": "Introduction to the theory and application of radiation detectors, measurement methods, signal processing, and data analysis. Crosslisted with NRE 6757. Full Description " + "description": "Introduction to the theory and application of radiation detectors, measurement methods, signal processing, and data analysis. Crosslisted with NRE 6757." }, "HP6758": { "subject": "HP", "number": "6758", "name": "Numerical Methods in ME ", - "description": "Numerical methods for solution of engineering problems; initial, eigenvalue, and boundary-value problems; computational stability for ordinary and linear partial differential equations. Crosslisted with ME and NRE 6758. Full Description " + "description": "Numerical methods for solution of engineering problems; initial, eigenvalue, and boundary-value problems; computational stability for ordinary and linear partial differential equations. Crosslisted with ME and NRE 6758." }, "HP6XXX": { "subject": "HP", "number": "6XXX", "name": "Health Phys ELective ", - "description": " Full Description " + "description": "" }, "HP7000": { "subject": "HP", "number": "7000", "name": "Master's Thesis ", - "description": " Full Description " + "description": "" }, "HP7757": { "subject": "HP", "number": "7757", "name": "Teaching Practicum ", - "description": "Supervised teaching for doctoral students. Teaching techniques, course and curriculum design, student evaluation methods and criteria. Students may, in some instances, prepare and present lectures. Crosslisted with NRE, ME, and CHBE 7757. Full Description " + "description": "Supervised teaching for doctoral students. Teaching techniques, course and curriculum design, student evaluation methods and criteria. Students may, in some instances, prepare and present lectures. Crosslisted with NRE, ME, and CHBE 7757." }, "HP8011": { "subject": "HP", "number": "8011", "name": "Seminar-Health Physics ", - "description": "Seminars involving current research projects presented by graduate students, faculty, and invited speakers. Full Description " + "description": "Seminars involving current research projects presented by graduate students, faculty, and invited speakers." }, "HP8012": { "subject": "HP", "number": "8012", "name": "Seminar-Health Physics ", - "description": "Seminars involving current research projects presented by graduate students, faculty, and invited speakers. Full Description " + "description": "Seminars involving current research projects presented by graduate students, faculty, and invited speakers." }, "HP8801": { "subject": "HP", "number": "8801", "name": "Spec Top-Health Physics ", - "description": "Special topic offerings of current interest in health physics not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in health physics not included in regular courses." }, "HP8802": { "subject": "HP", "number": "8802", "name": "Spec Top-Health Physics ", - "description": "Special topic offerings of current interest in health physics not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in health physics not included in regular courses." }, "HP8803": { "subject": "HP", "number": "8803", "name": "Spec Top-Health Physics ", - "description": "Special topics offerings of current interest in health physics not included in regular courses. Full Description " + "description": "Special topics offerings of current interest in health physics not included in regular courses." }, "HP8804": { "subject": "HP", "number": "8804", "name": "Spec Top-Health Physics ", - "description": "Special topic offerings of current interest in health physics not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in health physics not included in regular courses." }, "HP8805": { "subject": "HP", "number": "8805", "name": "Spec Top-Health Physics ", - "description": "Special topic offerings of current interest in health physics not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in health physics not included in regular courses." }, "HP8806": { "subject": "HP", "number": "8806", "name": "Spec Top-Health Physics ", - "description": "Special topic offerings of current interest in health physics not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in health physics not included in regular courses." }, "HP8901": { "subject": "HP", "number": "8901", "name": "Spec Prob-Health Physics ", - "description": "Individual studies and/or experimental investigations of problems of current interest in health physics. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in health physics." }, "HP8902": { "subject": "HP", "number": "8902", "name": "Spec Prob-Health Physics ", - "description": "Individual studies and/or experimental investigations of problems of current interest in health physics. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in health physics." }, "HP8903": { "subject": "HP", "number": "8903", "name": "Spec Prob-Health Physics ", - "description": "Individual studies and/or experimental investigations of problems of current interest in health physics. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in health physics." }, "HP8904": { "subject": "HP", "number": "8904", "name": "Spec Prob-Health Physics ", - "description": "Individual studies and/or experimental investigations of problems of current interest in health physics. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in health physics." }, "HP8905": { "subject": "HP", "number": "8905", "name": "Spec Prob-Health Physics ", - "description": "Individual studies and/or experimental investigations of problems of current interest in health physics. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in health physics." }, "HP8906": { "subject": "HP", "number": "8906", "name": "Spec Prob-Health Physics ", - "description": "Individual studies and/or experimental investigations of problems of current interest in health physics. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in health physics." }, "HP8997": { "subject": "HP", "number": "8997", "name": "Teaching Assistantship ", - "description": "For graduate students holding a graduate teaching assistantship. Full Description " + "description": "For graduate students holding a graduate teaching assistantship." }, "HP8998": { "subject": "HP", "number": "8998", "name": "Research Assistantship ", - "description": "For graduate students holding a graduate research assistantship. Full Description " + "description": "For graduate students holding a graduate research assistantship." }, "HP9000": { "subject": "HP", "number": "9000", "name": "Doctoral Thesis ", - "description": " Full Description " + "description": "" }, "HPS11XX": { "subject": "HPS", "number": "11XX", "name": "Wellness Requirement ", - "description": " Full Description " + "description": "" }, "HPS1XXX": { "subject": "HPS", "number": "1XXX", "name": "Health&Perform Sci Elect ", - "description": " Full Description " + "description": "" }, "HPS2XXX": { "subject": "HPS", "number": "2XXX", "name": "Health&Perform Sci Elect ", - "description": " Full Description " + "description": "" }, "HS4001": { "subject": "HS", "number": "4001", "name": "Intro to Health Systems ", - "description": "Background of U.S. healthcare; the workforce; mechanisms and costs of delivery; facilities; ambulatory care; regulation and quality; managed care, finance, and role of government. Full Description " + "description": "Background of U.S. healthcare; the workforce; mechanisms and costs of delivery; facilities; ambulatory care; regulation and quality; managed care, finance, and role of government." }, "HS6000": { "subject": "HS", "number": "6000", "name": "Healthcare Delivery ", - "description": "Historical background; the healthcare workforce; nature, problems, and costs of delivery sites; health planning, finance, role of government, alternative delivery models, and health policy. Full Description " + "description": "Historical background; the healthcare workforce; nature, problems, and costs of delivery sites; health planning, finance, role of government, alternative delivery models, and health policy." }, "HS6100": { "subject": "HS", "number": "6100", "name": "Healthcare Deliv Models ", - "description": "Progression in service delivery from individual providers to complex financing and delivery organizations. Alternative models are explored with an emphasis on access, efficiency, and effectiveness. Full Description " + "description": "Progression in service delivery from individual providers to complex financing and delivery organizations. Alternative models are explored with an emphasis on access, efficiency, and effectiveness." }, "HS6200": { "subject": "HS", "number": "6200", "name": "Healthcare Financial Mgt ", - "description": "Applications of accounting and finance in the healthcare delivery system; methods of reimbursement, product costing, strategic financial planning, and capital formation. Full Description " + "description": "Applications of accounting and finance in the healthcare delivery system; methods of reimbursement, product costing, strategic financial planning, and capital formation." }, "HS6300": { "subject": "HS", "number": "6300", "name": "Healthcare Info Systems ", - "description": "Application of information systems to assist in medical practice including communication within the healthcare enterprise, reimbursement for care, clinical decision making, and assessment of outcomes. Full Description " + "description": "Application of information systems to assist in medical practice including communication within the healthcare enterprise, reimbursement for care, clinical decision making, and assessment of outcomes." }, "HS6400": { "subject": "HS", "number": "6400", "name": "Health Systems Practice ", - "description": "An actual project conducted by individual graduate students within a healthcare institution or a health service organization. Project has both a faculty and site sponsor. Full Description " + "description": "An actual project conducted by individual graduate students within a healthcare institution or a health service organization. Project has both a faculty and site sponsor." }, "HS6XXX": { "subject": "HS", "number": "6XXX", "name": "Health Systems Elective ", - "description": " Full Description " + "description": "" }, "HS8803": { "subject": "HS", "number": "8803", "name": "Special Topics ", - "description": "Topics of current interest in health systems. Full Description " + "description": "Topics of current interest in health systems." }, "HS8811": { "subject": "HS", "number": "8811", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "HS8813": { "subject": "HS", "number": "8813", "name": "Special Topics ", - "description": "Topics of current interest in health systems. Full Description " + "description": "Topics of current interest in health systems." }, "HS8900": { "subject": "HS", "number": "8900", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "HS8901": { "subject": "HS", "number": "8901", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "HS8997": { "subject": "HS", "number": "8997", "name": "Teaching Assistantship ", - "description": "For graduate students holding graduate teaching assistantships. Full Description " + "description": "For graduate students holding graduate teaching assistantships." }, "HS8998": { "subject": "HS", "number": "8998", "name": "Research Assistantship ", - "description": "For graduate students holding graduate research assistantships. Full Description " + "description": "For graduate students holding graduate research assistantships." }, "HTS1001": { "subject": "HTS", "number": "1001", "name": "Intro-Hist, Tech, & Soc ", - "description": "An introduction to classic texts, key concepts, and research opportunitites in history and sociology. Full Description " + "description": "An introduction to classic texts, key concepts, and research opportunitites in history and sociology." }, "HTS1031": { "subject": "HTS", "number": "1031", "name": "Europe Since Renaissance ", - "description": "Social, political, economic, and cultural history of Europe since the Renaissance. Topics include Renaissance; Reformation; political, scientific, and industrial revolutions; nationalism; fascism and communism; decolonization. Full Description " + "description": "Social, political, economic, and cultural history of Europe since the Renaissance. Topics include Renaissance; Reformation; political, scientific, and industrial revolutions; nationalism; fascism and communism; decolonization." }, "HTS1081": { "subject": "HTS", "number": "1081", "name": "Engineering in History ", - "description": "Uses historical case studies to examine the relationship between engineers and the larger society in which they function. Often taught jointly with engineering faculty. Full Description " + "description": "Uses historical case studies to examine the relationship between engineers and the larger society in which they function. Often taught jointly with engineering faculty." }, "HTS1XXX": { "subject": "HTS", "number": "1XXX", "name": "Hist,Tech & Soc Elective ", - "description": " Full Description " + "description": "" }, "HTS2001": { "subject": "HTS", "number": "2001", "name": "Early American History ", - "description": "North America to 1763, including native cultures, contacts with European colonizers, settlement strategies and patterns, and foundation of American political and economic institutions. Full Description " + "description": "North America to 1763, including native cultures, contacts with European colonizers, settlement strategies and patterns, and foundation of American political and economic institutions." }, "HTS2002": { "subject": "HTS", "number": "2002", "name": "American Revolution ", - "description": "The American Revolution as political debate, war, and social upheaval, with attention to the framing and ratification of the Constitution. Full Description " + "description": "The American Revolution as political debate, war, and social upheaval, with attention to the framing and ratification of the Constitution." }, "HTS2006": { "subject": "HTS", "number": "2006", "name": "Hist-Old South to 1865 ", - "description": "A study of social, political, and economic developments in the South from the colonial period through the Civil War. Full Description " + "description": "A study of social, political, and economic developments in the South from the colonial period through the Civil War." }, "HTS2007": { "subject": "HTS", "number": "2007", "name": "History of the New South ", - "description": "An examination of social, political, and economic developments from the Reconstruction period to the present. Full Description " + "description": "An examination of social, political, and economic developments from the Reconstruction period to the present." }, "HTS2011": { "subject": "HTS", "number": "2011", "name": "The Gilded Age ", - "description": "Populism, the currency question, immigration, the rise of big business, war, and reform in one of the most turbulent periods of American history. Full Description " + "description": "Populism, the currency question, immigration, the rise of big business, war, and reform in one of the most turbulent periods of American history." }, "HTS2013": { "subject": "HTS", "number": "2013", "name": "Modern America ", - "description": "Dawning of the atomic age, anticommunism, the Civil Rights Movement, New Frontier and Great Society, Vietnam and the tumultuous 1960s, and end of Cold War. Full Description " + "description": "Dawning of the atomic age, anticommunism, the Civil Rights Movement, New Frontier and Great Society, Vietnam and the tumultuous 1960s, and end of Cold War." }, "HTS2015": { "subject": "HTS", "number": "2015", "name": "History Sports America ", - "description": "Examines American sport from colonial to contemporary times. Focuses on the rise of organized sports and the influence of race, class, gender, and ethnicity. Full Description " + "description": "Examines American sport from colonial to contemporary times. Focuses on the rise of organized sports and the influence of race, class, gender, and ethnicity." }, "HTS2016": { "subject": "HTS", "number": "2016", "name": "Soc Issues&Public Policy ", - "description": "Draws on sociological theory and research to understand the major economic, social, and cultural issues facing American society today. Full Description " + "description": "Draws on sociological theory and research to understand the major economic, social, and cultural issues facing American society today." }, "HTS2036": { "subject": "HTS", "number": "2036", "name": "Revolutionary Europe ", - "description": "Industrialization and political revolution, the development of political ideologies and labor activism, modern nation-state building, and imperialism from the French Revolution to World War I. Full Description " + "description": "Industrialization and political revolution, the development of political ideologies and labor activism, modern nation-state building, and imperialism from the French Revolution to World War I." }, "HTS2037": { "subject": "HTS", "number": "2037", "name": "20th Century Europe ", - "description": "Global war and the Bolshevik Revolution, rise and fall of Mussolini and Hitler, Stalinism, the Holocaust, Cold War, decolonization, and the movement toward European integration. Full Description " + "description": "Global war and the Bolshevik Revolution, rise and fall of Mussolini and Hitler, Stalinism, the Holocaust, Cold War, decolonization, and the movement toward European integration." }, "HTS2040": { "subject": "HTS", "number": "2040", "name": "Hist Islamic Societies ", - "description": "Survey of Middle East from pre-Islamic times to Ottoman rule, tracing the development of Islamic society and emphasizing the plurality of culture in the region. Full Description " + "description": "Survey of Middle East from pre-Islamic times to Ottoman rule, tracing the development of Islamic society and emphasizing the plurality of culture in the region." }, "HTS2041": { "subject": "HTS", "number": "2041", "name": "Hist-Modern Middle East ", - "description": "The transformation of the Middle East in the modern era and the relationship of the \"East\" and \"West\" in the contemporary world. Full Description " + "description": "The transformation of the Middle East in the modern era and the relationship of the \"East\" and \"West\" in the contemporary world." }, "HTS2061": { "subject": "HTS", "number": "2061", "name": "Traditional Asia ", - "description": "Civilizations of East Asia up to 1850, emphasizing traditional cultures in China and Japan, including religion, science, formation of empires, social life, and commerce. Full Description " + "description": "Civilizations of East Asia up to 1850, emphasizing traditional cultures in China and Japan, including religion, science, formation of empires, social life, and commerce." }, "HTS2062": { "subject": "HTS", "number": "2062", "name": "Asia in the Modern World ", - "description": "Civilizations of India, China, and Japan since 1600, emphasizing Western impact and adaptation of these countries' political, economic, and social systems. Full Description " + "description": "Civilizations of India, China, and Japan since 1600, emphasizing Western impact and adaptation of these countries' political, economic, and social systems." }, "HTS2080": { "subject": "HTS", "number": "2080", "name": "Intro Hist Disease & Med ", - "description": "Introduction to the history of disease and medicine since the Renaissance focusing on infectious diseases, the rise of germ theory, and evolution of medical training. Cerdit not allowed for both HTS 2080 and HTS 3087. Full Description " + "description": "Introduction to the history of disease and medicine since the Renaissance focusing on infectious diseases, the rise of germ theory, and evolution of medical training. Cerdit not allowed for both HTS 2080 and HTS 3087." }, "HTS2081": { "subject": "HTS", "number": "2081", "name": "Scientific Revolution ", - "description": "A critical approach to the Scientific Revolution, introducing students to primary documents and images from the period and emphasizing interpretive strategies and methods. Full Description " + "description": "A critical approach to the Scientific Revolution, introducing students to primary documents and images from the period and emphasizing interpretive strategies and methods." }, "HTS2082": { "subject": "HTS", "number": "2082", "name": "Tech& Sci-Industrial Age ", - "description": "Surveys major developments in technology and science since 1600 and places them in the broader social context of their times. Full Description " + "description": "Surveys major developments in technology and science since 1600 and places them in the broader social context of their times." }, "HTS2084": { "subject": "HTS", "number": "2084", "name": "Technology and Society ", - "description": "Analyzes social conditions that promote or retard technological activity, emphasizing role of business, the state, and scientific and engineering professions, and the emergence of consumerism. Full Description " + "description": "Analyzes social conditions that promote or retard technological activity, emphasizing role of business, the state, and scientific and engineering professions, and the emergence of consumerism." }, "HTS2085": { "subject": "HTS", "number": "2085", "name": "Reel History I ", - "description": "Students evaluate films as sources for specific historical events by viewing films, reading historical documents, and applying critical analysis to written assignments and class discussions. Full Description " + "description": "Students evaluate films as sources for specific historical events by viewing films, reading historical documents, and applying critical analysis to written assignments and class discussions." }, "HTS2100": { "subject": "HTS", "number": "2100", "name": "Sci, Tech & Modern World ", - "description": "An introduction to perspectives on how developments in science and technology at once reflect and influence politics and society on a global scale. Full Description " + "description": "An introduction to perspectives on how developments in science and technology at once reflect and influence politics and society on a global scale." }, "HTS2101": { "subject": "HTS", "number": "2101", "name": "Research Methods ", - "description": "Interdisciplinary survey based on critical readings of the methods historians and social scientists use to generate knowledge about social life. Students engage in \"hands-on\" research. Full Description " + "description": "Interdisciplinary survey based on critical readings of the methods historians and social scientists use to generate knowledge about social life. Students engage in \"hands-on\" research." }, "HTS2698": { "subject": "HTS", "number": "2698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "HTS2699": { "subject": "HTS", "number": "2699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "HTS2803": { "subject": "HTS", "number": "2803", "name": "Special Topics ", - "description": "Allows a group of students and a professor to study topics not covered in other courses in the department. Full Description " + "description": "Allows a group of students and a professor to study topics not covered in other courses in the department." }, "HTS2813": { "subject": "HTS", "number": "2813", "name": "Special Topics ", - "description": "Allows a group of students and a professor to study topics not covered in other courses in the department. Full Description " + "description": "Allows a group of students and a professor to study topics not covered in other courses in the department." }, "HTS2823": { "subject": "HTS", "number": "2823", "name": "Special Topics ", - "description": "Allows a group of students and a professor to study topics not covered in other courses in the department. Full Description " + "description": "Allows a group of students and a professor to study topics not covered in other courses in the department." }, "HTS2927": { "subject": "HTS", "number": "2927", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "HTS2928": { "subject": "HTS", "number": "2928", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "HTS2929": { "subject": "HTS", "number": "2929", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "HTS2XXX": { "subject": "HTS", "number": "2XXX", "name": "Hist,Tech & Soc Elective ", - "description": " Full Description " + "description": "" }, "HTS3001": { "subject": "HTS", "number": "3001", "name": "American Economic Hist ", - "description": "U.S. economic history since 1607, including regional specialization, agriculture, industrialization, technology, government and economy, money and banking, labor, international trade, and contemporary economic problems. Full Description " + "description": "U.S. economic history since 1607, including regional specialization, agriculture, industrialization, technology, government and economy, money and banking, labor, international trade, and contemporary economic problems." }, "HTS3002": { "subject": "HTS", "number": "3002", "name": "Hist-American Business ", - "description": "Evolution of business institutions from colonial period to present, including entrepreneurship, business-government relations, institutional innovation, and twentieth century managerial capitalism. Full Description " + "description": "Evolution of business institutions from colonial period to present, including entrepreneurship, business-government relations, institutional innovation, and twentieth century managerial capitalism." }, "HTS3003": { "subject": "HTS", "number": "3003", "name": "Soc of Econ Institutions ", - "description": "Examines links between economic structures-markets, regulatory bodies, and labor relations systems-and the wider structural and cultural context. Full Description " + "description": "Examines links between economic structures-markets, regulatory bodies, and labor relations systems-and the wider structural and cultural context." }, "HTS3005": { "subject": "HTS", "number": "3005", "name": "Amer Environmental Hist ", - "description": "Transformation of the North American environment since 1500, including different notions of nature, romantic responses to wilderness during industrialization, rise of conservation movements, and environmental policy. Full Description " + "description": "Transformation of the North American environment since 1500, including different notions of nature, romantic responses to wilderness during industrialization, rise of conservation movements, and environmental policy." }, "HTS3006": { "subject": "HTS", "number": "3006", "name": "United States Labor Hist ", - "description": "The changing nature of work and labor relations, with focus on unionization and government regulation, and equity issues in the workplace. Full Description " + "description": "The changing nature of work and labor relations, with focus on unionization and government regulation, and equity issues in the workplace." }, "HTS3007": { "subject": "HTS", "number": "3007", "name": "Soc of Work and Industry ", - "description": "Analyzes paid employment as a decisive social attachment, emphasizing work organizations, technological change and authority relations, and social inequality among diverse groups of employees. Full Description " + "description": "Analyzes paid employment as a decisive social attachment, emphasizing work organizations, technological change and authority relations, and social inequality among diverse groups of employees." }, "HTS3008": { "subject": "HTS", "number": "3008", "name": "Class,Power & Inequality ", - "description": "This course examines how social class and the market economy affect inequality and stratification in the U.S., with additional attention to the roles of race and gender. Full Description " + "description": "This course examines how social class and the market economy affect inequality and stratification in the U.S., with additional attention to the roles of race and gender." }, "HTS3009": { "subject": "HTS", "number": "3009", "name": "The American Civil War ", - "description": "Social, economic, political, and military aspects of the Civil War, including causes of the war, military campaigns, and long-term consequences. Full Description " + "description": "Social, economic, political, and military aspects of the Civil War, including causes of the war, military campaigns, and long-term consequences." }, "HTS3011": { "subject": "HTS", "number": "3011", "name": "City in American Hist ", - "description": "Examines the historical background of the American city since colonial times, including city planning, urban technology and services, neighborhoods, and race relations. Full Description " + "description": "Examines the historical background of the American city since colonial times, including city planning, urban technology and services, neighborhoods, and race relations." }, "HTS3012": { "subject": "HTS", "number": "3012", "name": "Urban Sociology ", - "description": "Sociological perspectives on the city, urbanization, and problems of community, evolution of cities and problems of urban life in the United States and Third World. Full Description " + "description": "Sociological perspectives on the city, urbanization, and problems of community, evolution of cities and problems of urban life in the United States and Third World." }, "HTS3015": { "subject": "HTS", "number": "3015", "name": "History of Vietnam War ", - "description": "Diplomatic, military, and social aspects of America's war in Vietnam, including antiwar protests, the defense industry boom, and the war's enduring impact on American life. Full Description " + "description": "Diplomatic, military, and social aspects of America's war in Vietnam, including antiwar protests, the defense industry boom, and the war's enduring impact on American life." }, "HTS3016": { "subject": "HTS", "number": "3016", "name": "Women & Gender in U.S. ", - "description": "Course examines themes and theories of women's and gender history since the colonial period, including work, family, race, sexuality, and politics. Full Description " + "description": "Course examines themes and theories of women's and gender history since the colonial period, including work, family, race, sexuality, and politics." }, "HTS3017": { "subject": "HTS", "number": "3017", "name": "Sociology of Gender ", - "description": "Gender as a dimension of social life that shapes and is shaped by the economy, schooling, family, politics, medicine and health, race, and social class. Full Description " + "description": "Gender as a dimension of social life that shapes and is shaped by the economy, schooling, family, politics, medicine and health, race, and social class." }, "HTS3018": { "subject": "HTS", "number": "3018", "name": "Religions & Cults in US ", - "description": "Explores controversial and influential new religious movements and cults in America, focusing on their origin, appeal, and impact. Full Description " + "description": "Explores controversial and influential new religious movements and cults in America, focusing on their origin, appeal, and impact." }, "HTS3019": { "subject": "HTS", "number": "3019", "name": "Family&Sexuality in U.S. ", - "description": "Changing patterns of family life and sex roles since colonial times, with a focus on mainstream ideals, utopian alternatives, and social criticism. Full Description " + "description": "Changing patterns of family life and sex roles since colonial times, with a focus on mainstream ideals, utopian alternatives, and social criticism." }, "HTS3020": { "subject": "HTS", "number": "3020", "name": "Gender and Technology ", - "description": "Course examines the ways in which the design, development, and application of technologies, as well as cultural responses to them, have been gendered historically. Full Description " + "description": "Course examines the ways in which the design, development, and application of technologies, as well as cultural responses to them, have been gendered historically." }, "HTS3021": { "subject": "HTS", "number": "3021", "name": "Women in Science & Engr ", - "description": "Women in science and engineering and gender differences in participation, location, and status. Examines education, access, and apprenticeship, culture of science and engineering. Full Description " + "description": "Women in science and engineering and gender differences in participation, location, and status. Examines education, access, and apprenticeship, culture of science and engineering." }, "HTS3022": { "subject": "HTS", "number": "3022", "name": "Gender and Sports ", - "description": "Examines how gender norms and beliefs shape sport structures, participation opportunities and experiences in American sport. Full Description " + "description": "Examines how gender norms and beliefs shape sport structures, participation opportunities and experiences in American sport." }, "HTS3023": { "subject": "HTS", "number": "3023", "name": "Free People of Color ", - "description": "Free people of color during the era of slavery, including everyday life, political and social philosophies, literature, community development, and movements for social change. Full Description " + "description": "Free people of color during the era of slavery, including everyday life, political and social philosophies, literature, community development, and movements for social change." }, "HTS3024": { "subject": "HTS", "number": "3024", "name": "African-Amer His to 1865 ", - "description": "The experience of African and African American people in North America from the beginnings of slavery until the era of emancipation in the Civil War. Full Description " + "description": "The experience of African and African American people in North America from the beginnings of slavery until the era of emancipation in the Civil War." }, "HTS3025": { "subject": "HTS", "number": "3025", "name": "Afr-Amer Hist since 1865 ", - "description": "The African American experience since 1865, including Reconstruction, segregation, the African American family, the Harlem Renaissance, the Civil Rights Movement, and Black Power. Full Description " + "description": "The African American experience since 1865, including Reconstruction, segregation, the African American family, the Harlem Renaissance, the Civil Rights Movement, and Black Power." }, "HTS3026": { "subject": "HTS", "number": "3026", "name": "Race and Ethnicity ", - "description": "Nature and significance of dominant/minority relations, including legacies of colonialism and slavery, roots of residential segregation, and effects of race on American politics. Full Description " + "description": "Nature and significance of dominant/minority relations, including legacies of colonialism and slavery, roots of residential segregation, and effects of race on American politics." }, "HTS3027": { "subject": "HTS", "number": "3027", "name": "Civil Rights Movement ", - "description": "Examines why the civil rights movement emerged, how it was successful, and the impact it had on the U.S. Full Description " + "description": "Examines why the civil rights movement emerged, how it was successful, and the impact it had on the U.S." }, "HTS3028": { "subject": "HTS", "number": "3028", "name": "Ancient Greece ", - "description": "Classical Athens and Sparta, myths and legends in historical context. Course ends with Alexander the Great and the rise of Rome. Full Description " + "description": "Classical Athens and Sparta, myths and legends in historical context. Course ends with Alexander the Great and the rise of Rome." }, "HTS3029": { "subject": "HTS", "number": "3029", "name": "Ancient Rome ", - "description": "Growth of the Republic, antics and follies of the emperors, accomplishments of Rome, and causes of decline. Early Christianity and its impact on Europe included. Full Description " + "description": "Growth of the Republic, antics and follies of the emperors, accomplishments of Rome, and causes of decline. Early Christianity and its impact on Europe included." }, "HTS3030": { "subject": "HTS", "number": "3030", "name": "Medieval Europe ", - "description": "The rise of barbarian kingdoms from Rome's ashes, the explosion of Islam, the monastic movement, Charlemagne's empire, the blossoming of medieval culture, and developinG European monarchies. Full Description " + "description": "The rise of barbarian kingdoms from Rome's ashes, the explosion of Islam, the monastic movement, Charlemagne's empire, the blossoming of medieval culture, and developinG European monarchies." }, "HTS3031": { "subject": "HTS", "number": "3031", "name": "European Labor History ", - "description": "The labor movement from 1700s to the present, including an examination of Marx and socialism, unionization, and work conditions, especially in Britain, Germany, and France. Full Description " + "description": "The labor movement from 1700s to the present, including an examination of Marx and socialism, unionization, and work conditions, especially in Britain, Germany, and France." }, "HTS3032": { "subject": "HTS", "number": "3032", "name": "Europe Intellectual Hist ", - "description": "Introduction to intellectual problems and trends in modern Europe, including loss of faith in progress, evil and ethics, post-colonialism, feminism, linguistics, and psycho-analytic thought. Full Description " + "description": "Introduction to intellectual problems and trends in modern Europe, including loss of faith in progress, evil and ethics, post-colonialism, feminism, linguistics, and psycho-analytic thought." }, "HTS3033": { "subject": "HTS", "number": "3033", "name": "Medieval England ", - "description": "Political, economic, and cultural development of England during the Middle Ages (c. 350-1400). Myths and legends of Stonehenge, the Druids, and King Arthur's Camelot explored. Full Description " + "description": "Political, economic, and cultural development of England during the Middle Ages (c. 350-1400). Myths and legends of Stonehenge, the Druids, and King Arthur's Camelot explored." }, "HTS3035": { "subject": "HTS", "number": "3035", "name": "Britain 1815-1914 ", - "description": "Developments in nineteenth-century Britain, including the industrial revolution, the growth of political democracy, imperialism, and movements for Irish Home rule and democratic socialism. Full Description " + "description": "Developments in nineteenth-century Britain, including the industrial revolution, the growth of political democracy, imperialism, and movements for Irish Home rule and democratic socialism." }, "HTS3036": { "subject": "HTS", "number": "3036", "name": "Britain Since 1914 ", - "description": "Britain's experience of two world wars, the growth of Labour and decline of the Liberals, the Welfare State, Thatcherism, and Tony Blair's \"New Labour\". Full Description " + "description": "Britain's experience of two world wars, the growth of Labour and decline of the Liberals, the Welfare State, Thatcherism, and Tony Blair's \"New Labour\"." }, "HTS3038": { "subject": "HTS", "number": "3038", "name": "French Revolution ", - "description": "Economic, intellectual, and cultural causes of the French Revolution, Jacobinism and the Terror, careers of Robespierre and Danton, and rise and fall of Napoleon's empire. Full Description " + "description": "Economic, intellectual, and cultural causes of the French Revolution, Jacobinism and the Terror, careers of Robespierre and Danton, and rise and fall of Napoleon's empire." }, "HTS3039": { "subject": "HTS", "number": "3039", "name": "Modern France ", - "description": "France from 1815 to 1968, emphasizing the continuing project of creating France as a powerful nation within the context of global culture and politics. Full Description " + "description": "France from 1815 to 1968, emphasizing the continuing project of creating France as a powerful nation within the context of global culture and politics." }, "HTS3041": { "subject": "HTS", "number": "3041", "name": "Modern Spain ", - "description": "Resistance to Napoleon, deformed industrialization, Anarchist and fascist experiments form the background for Spain's transition from dictatorship to democracy after Franco's death. Full Description " + "description": "Resistance to Napoleon, deformed industrialization, Anarchist and fascist experiments form the background for Spain's transition from dictatorship to democracy after Franco's death." }, "HTS3043": { "subject": "HTS", "number": "3043", "name": "Modern Germany ", - "description": "Consolidation of Germany since Napoleonic wars, Germany's contributions both hideous and glorious to Europe and the West, and recent unification of East and West Germany. Full Description " + "description": "Consolidation of Germany since Napoleonic wars, Germany's contributions both hideous and glorious to Europe and the West, and recent unification of East and West Germany." }, "HTS3045": { "subject": "HTS", "number": "3045", "name": "Nazi Germany-Holocaust ", - "description": "Genocide in the twentieth century, emphasizing the extermination of European Jews. Course investigates roots of racism, eugenics, and ideologies of genocide in comparative perspective. Full Description " + "description": "Genocide in the twentieth century, emphasizing the extermination of European Jews. Course investigates roots of racism, eugenics, and ideologies of genocide in comparative perspective." }, "HTS3046": { "subject": "HTS", "number": "3046", "name": "Sci Pol Culture Nazi Ger ", - "description": "Examines the social, political and cultural context of science and technology in Nazi Germany to understand the interaction of science and politics under totalitarian regimes. Full Description " + "description": "Examines the social, political and cultural context of science and technology in Nazi Germany to understand the interaction of science and politics under totalitarian regimes." }, "HTS3048": { "subject": "HTS", "number": "3048", "name": "Modern Russian History ", - "description": "Provides an overview of Russian history during the 20th Century. Special emphasis will be on the Soviet period of Russian history from 1917-1991. Full Description " + "description": "Provides an overview of Russian history during the 20th Century. Special emphasis will be on the Soviet period of Russian history from 1917-1991." }, "HTS3051": { "subject": "HTS", "number": "3051", "name": "Women&Gender-Middle East ", - "description": "The role of women in imperial, nationalist, and Islamist political programs in the Middle East and the impact of politics on women's lives. Full Description " + "description": "The role of women in imperial, nationalist, and Islamist political programs in the Middle East and the impact of politics on women's lives." }, "HTS3055": { "subject": "HTS", "number": "3055", "name": "Globalization Modern Era ", - "description": "This course examines the process of globalization and global change in the twentieth century. Also offers a critical examination of various theories of globalization. Full Description " + "description": "This course examines the process of globalization and global change in the twentieth century. Also offers a critical examination of various theories of globalization." }, "HTS3061": { "subject": "HTS", "number": "3061", "name": "Modern China ", - "description": "The decline of Confucian order, the impact of the West, changes and continuities of Chinese culture, the Communist revolution, nationalism, and economic reforms since 1978. Full Description " + "description": "The decline of Confucian order, the impact of the West, changes and continuities of Chinese culture, the Communist revolution, nationalism, and economic reforms since 1978." }, "HTS3062": { "subject": "HTS", "number": "3062", "name": "Modern Japan ", - "description": "Japan's transformation in one century from a feudal state into an economic superpower and the impact of these changes on the Japanese people. Full Description " + "description": "Japan's transformation in one century from a feudal state into an economic superpower and the impact of these changes on the Japanese people." }, "HTS3063": { "subject": "HTS", "number": "3063", "name": "British Colonization ", - "description": "Analysis of four British settlement colonies-Australia, New Zealand, Canada, and South Africa-emphasizing settlement, race relations, and national identity. Full Description " + "description": "Analysis of four British settlement colonies-Australia, New Zealand, Canada, and South Africa-emphasizing settlement, race relations, and national identity." }, "HTS3064": { "subject": "HTS", "number": "3064", "name": "Sociology of Development ", - "description": "Course examines competing perspectives on international development and surveys some of the crucial issues, including political instability, facing the Third World today. Full Description " + "description": "Course examines competing perspectives on international development and surveys some of the crucial issues, including political instability, facing the Third World today." }, "HTS3065": { "subject": "HTS", "number": "3065", "name": "Hist Global Societies ", - "description": "Examines the historical patterns of interaction and inter- dependence between world regions, from approximately the 13th century to global interdependence to the contemporary world. Full Description " + "description": "Examines the historical patterns of interaction and inter- dependence between world regions, from approximately the 13th century to global interdependence to the contemporary world." }, "HTS3066": { "subject": "HTS", "number": "3066", "name": "Soc-Politics & Society ", - "description": "Political sociology studies the way power is distributed in society. This course takes a comparative and historical approach, focusing on the development of the nation-state. Full Description " + "description": "Political sociology studies the way power is distributed in society. This course takes a comparative and historical approach, focusing on the development of the nation-state." }, "HTS3067": { "subject": "HTS", "number": "3067", "name": "Revolutionary Movement ", - "description": "Comparative analysis of the origin, development, and impact of major twentieth century revolutionary movements. Full Description " + "description": "Comparative analysis of the origin, development, and impact of major twentieth century revolutionary movements." }, "HTS3068": { "subject": "HTS", "number": "3068", "name": "Social Movements ", - "description": "Why do social movements emerge? Why might they succeed? This course examines how ordinary people challenge powerful segments of society and contribute to social change. Full Description " + "description": "Why do social movements emerge? Why might they succeed? This course examines how ordinary people challenge powerful segments of society and contribute to social change." }, "HTS3069": { "subject": "HTS", "number": "3069", "name": "Modern Cuba ", - "description": "Cuba since 1492 emphasizing slavery and sugar, wars of independence, the revolution of 1959, and the regime of Fidel Castro. Full Description " + "description": "Cuba since 1492 emphasizing slavery and sugar, wars of independence, the revolution of 1959, and the regime of Fidel Castro." }, "HTS3070": { "subject": "HTS", "number": "3070", "name": "Culture and Society ", - "description": "Covers core issues in the study of culture. Focuses on key sites, social practices, and institutions. Topics include education, medicine, consumption, and the mass media. Full Description " + "description": "Covers core issues in the study of culture. Focuses on key sites, social practices, and institutions. Topics include education, medicine, consumption, and the mass media." }, "HTS3071": { "subject": "HTS", "number": "3071", "name": "Sociology of Crime ", - "description": "This course examines the theories and issues such as perceptions of crime and criminals, characteristics of offenders and victims, and how crime is studied. Full Description " + "description": "This course examines the theories and issues such as perceptions of crime and criminals, characteristics of offenders and victims, and how crime is studied." }, "HTS3072": { "subject": "HTS", "number": "3072", "name": "Sociology of Education ", - "description": "Examines sociological perspectives on how individual, school, and social factors influence students and teachers. Particular attention is paid to gender, race, ethnicity, and social class. Full Description " + "description": "Examines sociological perspectives on how individual, school, and social factors influence students and teachers. Particular attention is paid to gender, race, ethnicity, and social class." }, "HTS3073": { "subject": "HTS", "number": "3073", "name": "Sociology of Sports ", - "description": "Examines what constitutes \"sports,\" and uses sociological lens to study sports relationship to education, policy, media, deviance, violence as well as gender, race and class. Full Description " + "description": "Examines what constitutes \"sports,\" and uses sociological lens to study sports relationship to education, policy, media, deviance, violence as well as gender, race and class." }, "HTS3075": { "subject": "HTS", "number": "3075", "name": "Foundations Sports Stds ", - "description": "Offers case studies of the multidisciplinary study of sports using the lenses of history, sociology, economics, science and technology to understand sports practices and controversies. Full Description " + "description": "Offers case studies of the multidisciplinary study of sports using the lenses of history, sociology, economics, science and technology to understand sports practices and controversies." }, "HTS3080": { "subject": "HTS", "number": "3080", "name": "History of Rocketry ", - "description": "Examines the history of rocketry, scientists, and organizations in the US, USSR, and Europe during the twentieth century. Full Description " + "description": "Examines the history of rocketry, scientists, and organizations in the US, USSR, and Europe during the twentieth century." }, "HTS3081": { "subject": "HTS", "number": "3081", "name": "Tech and Environment ", - "description": "Examines how technology affected the environment during the 20th Century, with special attention to issues like industrialization, pollution, overcrowding, and the biotech revolution. Full Description " + "description": "Examines how technology affected the environment during the 20th Century, with special attention to issues like industrialization, pollution, overcrowding, and the biotech revolution." }, "HTS3082": { "subject": "HTS", "number": "3082", "name": "Sociology of Science ", - "description": "The growth of science, its social structure; deviance and norms, the social context of scientific knowledge and practice, and science policy. Credit not allowed for both HTS 3082 and HTS 6115. Full Description " + "description": "The growth of science, its social structure; deviance and norms, the social context of scientific knowledge and practice, and science policy. Credit not allowed for both HTS 3082 and HTS 6115." }, "HTS3083": { "subject": "HTS", "number": "3083", "name": "Tech & American Society ", - "description": "The complex interplay between technical innovation and cultural change in the United States since 1850, with emphasis on the emergence of modern consumer-oriented society. Full Description " + "description": "The complex interplay between technical innovation and cultural change in the United States since 1850, with emphasis on the emergence of modern consumer-oriented society." }, "HTS3084": { "subject": "HTS", "number": "3084", "name": "Culture & Technology ", - "description": "Modernism and post-modernism: this course investigates culturally creative responses to modern manufacturing, transportation (trains, cars, airplanes), evolving gender ideals, and new communications. Full Description " + "description": "Modernism and post-modernism: this course investigates culturally creative responses to modern manufacturing, transportation (trains, cars, airplanes), evolving gender ideals, and new communications." }, "HTS3085": { "subject": "HTS", "number": "3085", "name": "Law,Technology& Politics ", - "description": "Examines the ways in which courts, legislatures, and regulatory agencies have responded to challenges posed by new technology and shaped the course of technical change. Full Description " + "description": "Examines the ways in which courts, legislatures, and regulatory agencies have responded to challenges posed by new technology and shaped the course of technical change." }, "HTS3086": { "subject": "HTS", "number": "3086", "name": "Soc of Medicine & Health ", - "description": "Relationship between health and society, including health care problems in the United States and culture's role in defining health and sickness and in determining appropriate therapies. Full Description " + "description": "Relationship between health and society, including health care problems in the United States and culture's role in defining health and sickness and in determining appropriate therapies." }, "HTS3087": { "subject": "HTS", "number": "3087", "name": "History of Medicine ", - "description": "An introduction to historical perspectives on the development of medicine, and its relationship to health, illness, and society. Credit not allowed for both HTS 3087 and HTS 2080. Full Description " + "description": "An introduction to historical perspectives on the development of medicine, and its relationship to health, illness, and society. Credit not allowed for both HTS 3087 and HTS 2080." }, "HTS3088": { "subject": "HTS", "number": "3088", "name": "Race Medicine & Science ", - "description": "Examines how race is an issue in medicine and science in ways such as education, professions, treatments, experiments, and as a subject of analysis. Full Description " + "description": "Examines how race is an issue in medicine and science in ways such as education, professions, treatments, experiments, and as a subject of analysis." }, "HTS3089": { "subject": "HTS", "number": "3089", "name": "Science Tech & Sports ", - "description": "This course examines what constitutes a \"sport,\" debates on the role of social inequality in sports, and the intersection of science, technology and sport. Full Description " + "description": "This course examines what constitutes a \"sport,\" debates on the role of social inequality in sports, and the intersection of science, technology and sport." }, "HTS3100": { "subject": "HTS", "number": "3100", "name": "Intro To Museum Studies ", - "description": "Covers theoretical and practical issues in museum studies, including the role of material culture in scholarly work, registration of artifacts, exhibit design, and public relations. Full Description " + "description": "Covers theoretical and practical issues in museum studies, including the role of material culture in scholarly work, registration of artifacts, exhibit design, and public relations." }, "HTS3102": { "subject": "HTS", "number": "3102", "name": "Social Theory&Structure ", - "description": "Introduction to social theory, providing students with skills for reading theory and examining works of major social theorists, including Marx, Weber, Durkheim, Gilman, and Bourdieu. Full Description " + "description": "Introduction to social theory, providing students with skills for reading theory and examining works of major social theorists, including Marx, Weber, Durkheim, Gilman, and Bourdieu." }, "HTS3103": { "subject": "HTS", "number": "3103", "name": "Honor's Thesis ", - "description": "This course is designed to allow honor's students to distinguish themselves by producing a significant, original research paper. Full Description " + "description": "This course is designed to allow honor's students to distinguish themselves by producing a significant, original research paper." }, "HTS3803": { "subject": "HTS", "number": "3803", "name": "Special Topics ", - "description": "Allows a group of students and a professor to study topics not covered in other courses in the department. Full Description " + "description": "Allows a group of students and a professor to study topics not covered in other courses in the department." }, "HTS3813": { "subject": "HTS", "number": "3813", "name": "Special Topics ", - "description": "Allows a group of students and a professor to study topics not covered in other courses in the department. Full Description " + "description": "Allows a group of students and a professor to study topics not covered in other courses in the department." }, "HTS3823": { "subject": "HTS", "number": "3823", "name": "Special Topics ", - "description": "Allows a group of students and a professor to study topics not covered in other courses in the department. Full Description " + "description": "Allows a group of students and a professor to study topics not covered in other courses in the department." }, "HTS3XXX": { "subject": "HTS", "number": "3XXX", "name": "Hist,Tech & Soc Elective ", - "description": " Full Description " + "description": "" }, "HTS4001": { "subject": "HTS", "number": "4001", "name": "Seminar in US History ", - "description": "Advanced undergraduate topics in U.S. history. Designed for HTS majors, but open to other students with junior or senior standing. Full Description " + "description": "Advanced undergraduate topics in U.S. history. Designed for HTS majors, but open to other students with junior or senior standing." }, "HTS4011": { "subject": "HTS", "number": "4011", "name": "Seminar in Sociology ", - "description": "Advanced undergraduate topics in sociology. Designed for HTS majors, but open to other students with junior or senior standing. Full Description " + "description": "Advanced undergraduate topics in sociology. Designed for HTS majors, but open to other students with junior or senior standing." }, "HTS4031": { "subject": "HTS", "number": "4031", "name": "Seminar in European Hist ", - "description": "Advanced undergraduate topics in European history. Designed for HTS majors, but open to other students with junior or senior standing. Full Description " + "description": "Advanced undergraduate topics in European history. Designed for HTS majors, but open to other students with junior or senior standing." }, "HTS4061": { "subject": "HTS", "number": "4061", "name": "Seminar in Asian History ", - "description": "Advanced undergraduate topics in Asian history. Designed for HTS majors, but open to other students with junior or senior standing. Full Description " + "description": "Advanced undergraduate topics in Asian history. Designed for HTS majors, but open to other students with junior or senior standing." }, "HTS4081": { "subject": "HTS", "number": "4081", "name": "Seminar in Hist of Tech ", - "description": "Advanced undergraduate topics in the history of technology. Designed for HTS majors, but open to other students with junior or senior standing. Full Description " + "description": "Advanced undergraduate topics in the history of technology. Designed for HTS majors, but open to other students with junior or senior standing." }, "HTS4086": { "subject": "HTS", "number": "4086", "name": "Sem Health Med & Society ", - "description": "Advanced undergraduate topics in health and medicine. Designed for HTS majors and HMS minors, but open to other students with junior or senior standing. Full Description " + "description": "Advanced undergraduate topics in health and medicine. Designed for HTS majors and HMS minors, but open to other students with junior or senior standing." }, "HTS4091": { "subject": "HTS", "number": "4091", "name": "Seminar Global Issues ", - "description": " Full Description " + "description": "" }, "HTS4698": { "subject": "HTS", "number": "4698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "HTS4699": { "subject": "HTS", "number": "4699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "HTS4811": { "subject": "HTS", "number": "4811", "name": "Special Topics ", - "description": "Topics of interest not covered in the regular course offering. Full Description " + "description": "Topics of interest not covered in the regular course offering." }, "HTS4812": { "subject": "HTS", "number": "4812", "name": "Special Topics ", - "description": "Topics of interest not covered in the regular course offerings. Full Description " + "description": "Topics of interest not covered in the regular course offerings." }, "HTS4813": { "subject": "HTS", "number": "4813", "name": "Special Topics ", - "description": "Topics of interest not covered in the regular course offerings. Full Description " + "description": "Topics of interest not covered in the regular course offerings." }, "HTS4814": { "subject": "HTS", "number": "4814", "name": "Special Topics ", - "description": "Topics of current interest not covered in the regular course offerings. Full Description " + "description": "Topics of current interest not covered in the regular course offerings." }, "HTS4815": { "subject": "HTS", "number": "4815", "name": "Special Topics ", - "description": "Topics of interest not covered in the regular course offerings. Full Description " + "description": "Topics of interest not covered in the regular course offerings." }, "HTS4823": { "subject": "HTS", "number": "4823", "name": "Special Topics ", - "description": "Allows a group of students and a professor to study topics not covered in other courses in the department. Full Description " + "description": "Allows a group of students and a professor to study topics not covered in other courses in the department." }, "HTS4833": { "subject": "HTS", "number": "4833", "name": "Special Topics ", - "description": "Allows a group of students and a professor to study topics not covered in other courses in the department. Full Description " + "description": "Allows a group of students and a professor to study topics not covered in other courses in the department." }, "HTS4843": { "subject": "HTS", "number": "4843", "name": "Special Topics ", - "description": "Allows a student and a professor to study topics not included in other courses in the department. Full Description " + "description": "Allows a student and a professor to study topics not included in other courses in the department." }, "HTS4925": { "subject": "HTS", "number": "4925", "name": "Special Problems in HTS ", - "description": "Individual studies of topics of current interest in history, technology, and society. Full Description " + "description": "Individual studies of topics of current interest in history, technology, and society." }, "HTS4926": { "subject": "HTS", "number": "4926", "name": "Special Problems in HTS ", - "description": "Individual studies of topics of current interest in History, Technology, and Society. Full Description " + "description": "Individual studies of topics of current interest in History, Technology, and Society." }, "HTS4927": { "subject": "HTS", "number": "4927", "name": "Special Problems in HTS ", - "description": "Individual studies of topics of current interest in History, Technology, and Society. Full Description " + "description": "Individual studies of topics of current interest in History, Technology, and Society." }, "HTS4928": { "subject": "HTS", "number": "4928", "name": "Special Problems in HTS ", - "description": "Individual studies of topics of current interest in History, Technology, and Society. Full Description " + "description": "Individual studies of topics of current interest in History, Technology, and Society." }, "HTS4929": { "subject": "HTS", "number": "4929", "name": "Special Problems in HTS ", - "description": "Individual studies of topics of current interest in History, Technology, and Society. Full Description " + "description": "Individual studies of topics of current interest in History, Technology, and Society." }, "HTS4990": { "subject": "HTS", "number": "4990", "name": "HTS Internship ", - "description": "Recognition for a paid or unpaid, full or part-time, employment experience that is relevant to a student's history and sociology education. Full Description " + "description": "Recognition for a paid or unpaid, full or part-time, employment experience that is relevant to a student's history and sociology education." }, "HTS4XXX": { "subject": "HTS", "number": "4XXX", "name": "Hist,Tech & Soc Elective ", - "description": " Full Description " + "description": "" }, "HTS6001": { "subject": "HTS", "number": "6001", "name": "Proseminar-Social Theory ", - "description": "An introduction to key theoretical traditions in modern social theory, including both classical and contemporary works. Full Description " + "description": "An introduction to key theoretical traditions in modern social theory, including both classical and contemporary works." }, "HTS6002": { "subject": "HTS", "number": "6002", "name": "Proseminar-Hist of Tech ", - "description": "Identifies major areas of interest in the history of technology and introduces a variety of approaches to the discipline. Full Description " + "description": "Identifies major areas of interest in the history of technology and introduces a variety of approaches to the discipline." }, "HTS6101": { "subject": "HTS", "number": "6101", "name": "Soc & Pol Hist of U.S. ", - "description": "Examines the social experiences of Americans and the political contexts in which they lived. Full Description " + "description": "Examines the social experiences of Americans and the political contexts in which they lived." }, "HTS6102": { "subject": "HTS", "number": "6102", "name": "Soc & Pol Hist of Europe ", - "description": "Classic works and debates in European social history, including transition from feudalism to capitalism, French Revolution, rural history and industrialization, and origins of nationalism. Full Description " + "description": "Classic works and debates in European social history, including transition from feudalism to capitalism, French Revolution, rural history and industrialization, and origins of nationalism." }, "HTS6103": { "subject": "HTS", "number": "6103", "name": "Soc&Pol Hist-Nonwestern ", - "description": "Covers basic empirical and relevant theoretical literature in English on the social and political history of Africa, Asia, and/or Latin America. Full Description " + "description": "Covers basic empirical and relevant theoretical literature in English on the social and political history of Africa, Asia, and/or Latin America." }, "HTS6106": { "subject": "HTS", "number": "6106", "name": "Business Org & Pol Econ ", - "description": "Examines the historical evolution and contemporary operations of business institutions within the larger context of political economy; emphasis on business, government, and technology. Full Description " + "description": "Examines the historical evolution and contemporary operations of business institutions within the larger context of political economy; emphasis on business, government, and technology." }, "HTS6110": { "subject": "HTS", "number": "6110", "name": "Gender,Science & Tech ", - "description": "Examines the ways in which gendered relations shape scientific and technological institutions, careers, artifacts, knowledge, and culture. Full Description " + "description": "Examines the ways in which gendered relations shape scientific and technological institutions, careers, artifacts, knowledge, and culture." }, "HTS6111": { "subject": "HTS", "number": "6111", "name": "Tech & Modern Culture ", - "description": "Introduces the complex interplay between technological systems and diffuse systems of consumption, social organization, and culture beyond the act of production. Full Description " + "description": "Introduces the complex interplay between technological systems and diffuse systems of consumption, social organization, and culture beyond the act of production." }, "HTS6112": { "subject": "HTS", "number": "6112", "name": "Studies-Science & Engr ", - "description": "Empirical investigation of scientific and engineering practice in historical and contemporary settings. Full Description " + "description": "Empirical investigation of scientific and engineering practice in historical and contemporary settings." }, "HTS6113": { "subject": "HTS", "number": "6113", "name": "Development Tech Sci ", - "description": "Explores the impact of science and technology on development and modernization. Credit not allowed for both HTS 6113 and HTS 4011. Full Description " + "description": "Explores the impact of science and technology on development and modernization. Credit not allowed for both HTS 6113 and HTS 4011." }, "HTS6114": { "subject": "HTS", "number": "6114", "name": "Hist Science ", - "description": "Explores topics in the history of science in their social and political contexts. Full Description " + "description": "Explores topics in the history of science in their social and political contexts." }, "HTS6115": { "subject": "HTS", "number": "6115", "name": "Sociology Sci Tech ", - "description": "Explores current debates in the history of the sociology of science and technology. Credit not allowed for both HTS 6115 and HTS 3082. Full Description " + "description": "Explores current debates in the history of the sociology of science and technology. Credit not allowed for both HTS 6115 and HTS 3082." }, "HTS6116": { "subject": "HTS", "number": "6116", "name": "Environmental History ", - "description": "Surveys the field of global environmental history with examples taken from biology, geography, sociology and anthropology. Full Description " + "description": "Surveys the field of global environmental history with examples taken from biology, geography, sociology and anthropology." }, "HTS6117": { "subject": "HTS", "number": "6117", "name": "Urbanization ", - "description": "An intensive introduction to the political, social, and economic forces involved in the process of urbanization. Credit not allowed for both HTS 6117 and HTS 6105. Full Description " + "description": "An intensive introduction to the political, social, and economic forces involved in the process of urbanization. Credit not allowed for both HTS 6117 and HTS 6105." }, "HTS6118": { "subject": "HTS", "number": "6118", "name": "Sci Tech & The Economy ", - "description": "Examines how science and technology are related to economic institutions and processes. Credit not allowed for both HTS 6118 and HTS 6107. Full Description " + "description": "Examines how science and technology are related to economic institutions and processes. Credit not allowed for both HTS 6118 and HTS 6107." }, "HTS6119": { "subject": "HTS", "number": "6119", "name": "Race and Ethnicity ", - "description": "Examines the structural impact of racism and ethnic discrimination on American society, and the controversies over racial and ethnic identity. Credit not allowed for both HTS 6119 and HTS 6108. Full Description " + "description": "Examines the structural impact of racism and ethnic discrimination on American society, and the controversies over racial and ethnic identity. Credit not allowed for both HTS 6119 and HTS 6108." }, "HTS6120": { "subject": "HTS", "number": "6120", "name": "Inequality Sci Tech ", - "description": "Explores the impacts of science and technology on inequality, as well as how notions of difference have shaped science and technology. Credit not allowed for both HTS 6120 and HTS 6109. Full Description " + "description": "Explores the impacts of science and technology on inequality, as well as how notions of difference have shaped science and technology. Credit not allowed for both HTS 6120 and HTS 6109." }, "HTS6121": { "subject": "HTS", "number": "6121", "name": "Science Tech Security ", - "description": "Topics in the study of the relationship between national security and the scientific-technological enterprise from diverse perspectives. Full Description " + "description": "Topics in the study of the relationship between national security and the scientific-technological enterprise from diverse perspectives." }, "HTS6122": { "subject": "HTS", "number": "6122", "name": "History of Medicine ", - "description": "The impact of disease in history, modern developments in medicine and health focusing on western medicine in a global context. Full Description " + "description": "The impact of disease in history, modern developments in medicine and health focusing on western medicine in a global context." }, "HTS6123": { "subject": "HTS", "number": "6123", "name": "Social & Cultural BIOMED ", - "description": "Introduces students to the changing social, political, and corporate worlds of the biological sciences, biotechnology, and biomedicine. Full Description " + "description": "Introduces students to the changing social, political, and corporate worlds of the biological sciences, biotechnology, and biomedicine." }, "HTS6124": { "subject": "HTS", "number": "6124", "name": "Sci&Tech Beyond Borders ", - "description": "Discusses the roles of science and technology as instruments of social control and of social change in development and modernization. Credit not allowed for both HTS 6124 and HTS 6104. Full Description " + "description": "Discusses the roles of science and technology as instruments of social control and of social change in development and modernization. Credit not allowed for both HTS 6124 and HTS 6104." }, "HTS6743": { "subject": "HTS", "number": "6743", "name": "STS Core Seminar ", - "description": "This survey course covers key works in Science, Technology & Society, and guest lectures introduce students to faculty doing STS-related research across the Ivan Allen College. Credit not allowed for both HTS 6743 and PUBP 6743 or LCC 6743. Full Description " + "description": "This survey course covers key works in Science, Technology & Society, and guest lectures introduce students to faculty doing STS-related research across the Ivan Allen College. Credit not allowed for both HTS 6743 and PUBP 6743 or LCC 6743." }, "HTS6XXX": { "subject": "HTS", "number": "6XXX", "name": "Hist,Tech&Society Elect ", - "description": " Full Description " + "description": "" }, "HTS7001": { "subject": "HTS", "number": "7001", "name": "Sociohistorical Analysis ", - "description": "Introduces key concepts and methods used in the historical analysis of social phenomena. Full Description " + "description": "Introduces key concepts and methods used in the historical analysis of social phenomena." }, "HTS7002": { "subject": "HTS", "number": "7002", "name": "Research & Writing Sem ", - "description": "Introduces methods of sociohistorical research and writing; requires preparation of an original research paper based on primary sources. Full Description " + "description": "Introduces methods of sociohistorical research and writing; requires preparation of an original research paper based on primary sources." }, "HTS8001": { "subject": "HTS", "number": "8001", "name": "Labor,Indus,Tech&Society ", - "description": "An intensive, team-taught reading seminar covering major themes and classic works in these fields. Full Description " + "description": "An intensive, team-taught reading seminar covering major themes and classic works in these fields." }, "HTS8801": { "subject": "HTS", "number": "8801", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "HTS8802": { "subject": "HTS", "number": "8802", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "HTS8803": { "subject": "HTS", "number": "8803", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "HTS8804": { "subject": "HTS", "number": "8804", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "HTS8805": { "subject": "HTS", "number": "8805", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "HTS8806": { "subject": "HTS", "number": "8806", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "HTS8901": { "subject": "HTS", "number": "8901", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "HTS8902": { "subject": "HTS", "number": "8902", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "HTS8903": { "subject": "HTS", "number": "8903", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "HTS8904": { "subject": "HTS", "number": "8904", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "HTS8905": { "subject": "HTS", "number": "8905", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "HTS8906": { "subject": "HTS", "number": "8906", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "HTS8997": { "subject": "HTS", "number": "8997", "name": "Teaching Assistantship ", - "description": "For graduate students holding a teaching assistantship. Full Description " + "description": "For graduate students holding a teaching assistantship." }, "HTS8998": { "subject": "HTS", "number": "8998", "name": "Research Assistantship ", - "description": "For graduate students holding a research assistantship. Full Description " + "description": "For graduate students holding a research assistantship." }, "HTS9000": { "subject": "HTS", "number": "9000", "name": "Doctoral Thesis ", - "description": " Full Description " + "description": "" }, "ID1XXX": { "subject": "ID", "number": "1XXX", "name": "Industrial Dsgn Elective ", - "description": " Full Description " + "description": "" }, "ID2011": { "subject": "ID", "number": "2011", "name": "Intro to Design I ", - "description": "Foundation course in visual communications theory and practice, continuing the development of two-dimensional visual literacy. Emphasis on both analog and digital media. Full Description " + "description": "Foundation course in visual communications theory and practice, continuing the development of two-dimensional visual literacy. Emphasis on both analog and digital media." }, "ID2012": { "subject": "ID", "number": "2012", "name": "Intro to Design II ", - "description": "Foundation course in form giving and representing, continuing the development of three-dimensional visual literacy. Emphasis on visual relationships between form and image. Full Description " + "description": "Foundation course in form giving and representing, continuing the development of three-dimensional visual literacy. Emphasis on visual relationships between form and image." }, "ID2021": { "subject": "ID", "number": "2021", "name": "ID Studio 1 ", - "description": "This course provides an introduction to the design process on visual principles and presentation techniques with a focus on sketching and modeling techniques related to 3D form. Full Description " + "description": "This course provides an introduction to the design process on visual principles and presentation techniques with a focus on sketching and modeling techniques related to 3D form." }, "ID2022": { "subject": "ID", "number": "2022", "name": "ID Studio 2 ", - "description": "This course applies more structured design methods to research and exploration of product form and function and introduces concepts of universal design and user centered design. Full Description " + "description": "This course applies more structured design methods to research and exploration of product form and function and introduces concepts of universal design and user centered design." }, "ID2201": { "subject": "ID", "number": "2201", "name": "Issues for Design ", - "description": "Introduction to the broad environmental issues that face humankind as a participant in the biosphere. Full Description " + "description": "Introduction to the broad environmental issues that face humankind as a participant in the biosphere." }, "ID2202": { "subject": "ID", "number": "2202", "name": "Hist-Modern Indust Dsgn ", - "description": "History and development of industrial design from the beginning of the Industrial Revolution to the present. Full Description " + "description": "History and development of industrial design from the beginning of the Industrial Revolution to the present." }, "ID2320": { "subject": "ID", "number": "2320", "name": "Human Factors in Design ", - "description": "This course examines the theory of Human Factors to provide a working knowledge of the physical and cognitive attributes of people that designers must accomodate. Full Description " + "description": "This course examines the theory of Human Factors to provide a working knowledge of the physical and cognitive attributes of people that designers must accomodate." }, "ID2401": { "subject": "ID", "number": "2401", "name": "Visual Design Thinking ", - "description": "Introduction to techniques to help designers build a vocabulary to support effective visual communication including fundamentals of layout, sketching, rendering, schematics, information graphics & storyboarding. Full Description " + "description": "Introduction to techniques to help designers build a vocabulary to support effective visual communication including fundamentals of layout, sketching, rendering, schematics, information graphics & storyboarding." }, "ID2698": { "subject": "ID", "number": "2698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "ID2699": { "subject": "ID", "number": "2699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "ID2XXX": { "subject": "ID", "number": "2XXX", "name": "Industrial Dsgn Elective ", - "description": " Full Description " + "description": "" }, "ID3011": { "subject": "ID", "number": "3011", "name": "Intermediate Design I ", - "description": "The systematic design process as applied to industrial design and packaging problems. Full Description " + "description": "The systematic design process as applied to industrial design and packaging problems." }, "ID3012": { "subject": "ID", "number": "3012", "name": "Intermediate Design II ", - "description": "Various dimensions of human factors applied to design, including: aging, disability, normal age change, childhood and adult anthropometrics, and human capability. Full Description " + "description": "Various dimensions of human factors applied to design, including: aging, disability, normal age change, childhood and adult anthropometrics, and human capability." }, "ID3031": { "subject": "ID", "number": "3031", "name": "Health Des Studio 1 ", - "description": "The application of systematic design methods to projects focused on the design development of new and/or improved health-related products with an emphasis on inclusive design. Full Description " + "description": "The application of systematic design methods to projects focused on the design development of new and/or improved health-related products with an emphasis on inclusive design." }, "ID3032": { "subject": "ID", "number": "3032", "name": "Health Des Studio 2 ", - "description": "The application of systematic design methods to projects focused on the design development of new and/or improved health-related products with an emphasis on products and product systems. Full Description " + "description": "The application of systematic design methods to projects focused on the design development of new and/or improved health-related products with an emphasis on products and product systems." }, "ID3041": { "subject": "ID", "number": "3041", "name": "Product Dev Studio 1 ", - "description": "The application of systematic design methods to projects focused on the use of parametric design and CNC capabilities in the design development of products, services & systems. Full Description " + "description": "The application of systematic design methods to projects focused on the use of parametric design and CNC capabilities in the design development of products, services & systems." }, "ID3042": { "subject": "ID", "number": "3042", "name": "Product Dev Studio 2 ", - "description": "The application of systematic design methods to projects focused on the design development of 'real-world' products, services & systems in collaboration with external sponsors. Full Description " + "description": "The application of systematic design methods to projects focused on the design development of 'real-world' products, services & systems in collaboration with external sponsors." }, "ID3051": { "subject": "ID", "number": "3051", "name": "Interactive ID Studio 1 ", - "description": "The application of systematic design methods to projects focused on new applications of sensor-based technologies with an emphasis on the importance of user-centered design. Full Description " + "description": "The application of systematic design methods to projects focused on new applications of sensor-based technologies with an emphasis on the importance of user-centered design." }, "ID3052": { "subject": "ID", "number": "3052", "name": "Interactive ID Studio 2 ", - "description": "The application of systematic design methods to projects focused on new applications of sensor-based technologies with an emphasis on interactive environments, navigation and mobility. Full Description " + "description": "The application of systematic design methods to projects focused on new applications of sensor-based technologies with an emphasis on interactive environments, navigation and mobility." }, "ID3103": { "subject": "ID", "number": "3103", "name": "Indust Dsgn Computing I ", - "description": "Introduction to 2-D computer drawing systems. Full Description " + "description": "Introduction to 2-D computer drawing systems." }, "ID3104": { "subject": "ID", "number": "3104", "name": "Indust Dsgn Computing II ", - "description": "Introduction to 3-D modeling systems. Full Description " + "description": "Introduction to 3-D modeling systems." }, "ID3201": { "subject": "ID", "number": "3201", "name": "Design and Community ", - "description": "Students explore socially and environmentally responsible industrial design practices at home and abroad, and partner with local organizations to develop community-based design projects. Full Description " + "description": "Students explore socially and environmentally responsible industrial design practices at home and abroad, and partner with local organizations to develop community-based design projects." }, "ID3301": { "subject": "ID", "number": "3301", "name": "Materials I ", - "description": "This course examines the characteristics, production technologies, histories, and environmental impacts of nine categories of renewable materials familiar to industrial design. Full Description " + "description": "This course examines the characteristics, production technologies, histories, and environmental impacts of nine categories of renewable materials familiar to industrial design." }, "ID3302": { "subject": "ID", "number": "3302", "name": "Materials II ", - "description": "Examination of characteristics, production technologies, histories, and environmental impacts of nonrenewable materials used in industrial design. Full Description " + "description": "Examination of characteristics, production technologies, histories, and environmental impacts of nonrenewable materials used in industrial design." }, "ID3320": { "subject": "ID", "number": "3320", "name": "Design Methods ", - "description": "This course introduces students to current user-centric design methods used to identify, understand, assess and prioritize the factors that contribute to more effective design solutions. Full Description " + "description": "This course introduces students to current user-centric design methods used to identify, understand, assess and prioritize the factors that contribute to more effective design solutions." }, "ID3510": { "subject": "ID", "number": "3510", "name": "Interactive Products ", - "description": "This course provides an introduction to interactive product design including the basics of sensor technologies, electronics and programming required to produce working product concept prototypes. Full Description " + "description": "This course provides an introduction to interactive product design including the basics of sensor technologies, electronics and programming required to produce working product concept prototypes." }, "ID3520": { "subject": "ID", "number": "3520", "name": "Tangible Interaction ", - "description": "This course addresses the design process related to interactive environments. Projects will emphasize the inclusion of ubiquitous and emerging interactive technologies. Full Description " + "description": "This course addresses the design process related to interactive environments. Projects will emphasize the inclusion of ubiquitous and emerging interactive technologies." }, "ID3803": { "subject": "ID", "number": "3803", "name": "Special Topics ", - "description": "Topics of current interest in industrial design. Full Description " + "description": "Topics of current interest in industrial design." }, "ID3813": { "subject": "ID", "number": "3813", "name": "Special Topics ", - "description": "Topics of current interest in Industrial Design. Full Description " + "description": "Topics of current interest in Industrial Design." }, "ID3901": { "subject": "ID", "number": "3901", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "ID3902": { "subject": "ID", "number": "3902", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "ID3XXX": { "subject": "ID", "number": "3XXX", "name": "Industrial Dsgn Elective ", - "description": " Full Description " + "description": "" }, "ID4011": { "subject": "ID", "number": "4011", "name": "Advanced Design I ", - "description": "Application of the design process to advanced multidisciplinary design problems. Experience in solving real design problems from areas such as consumer products and equipment, transportation and equipment. Full Description " + "description": "Application of the design process to advanced multidisciplinary design problems. Experience in solving real design problems from areas such as consumer products and equipment, transportation and equipment." }, "ID4012": { "subject": "ID", "number": "4012", "name": "Advanced Design II ", - "description": "Capstone industrial design project of student's own choosing, with consent of instructor, to refine problem-solving and design ability in preparation for professional practice. Full Description " + "description": "Capstone industrial design project of student's own choosing, with consent of instructor, to refine problem-solving and design ability in preparation for professional practice." }, "ID4061": { "subject": "ID", "number": "4061", "name": "ID Capstone Des Studio 1 ", - "description": "Comprehensive team-based projects incorporating an iterative approach to design development of products, & systems with emphasis on integration of research, design, prototyping and testing. Full Description " + "description": "Comprehensive team-based projects incorporating an iterative approach to design development of products, & systems with emphasis on integration of research, design, prototyping and testing." }, "ID4062": { "subject": "ID", "number": "4062", "name": "ID Capstone Des Studio 2 ", - "description": "Comprehensive individual projects incorporating an iterative approach to design development of products, & systems with emphasis on integration of research, design, prototyping and testing. Full Description " + "description": "Comprehensive individual projects incorporating an iterative approach to design development of products, & systems with emphasis on integration of research, design, prototyping and testing." }, "ID4071": { "subject": "ID", "number": "4071", "name": "Invention Studio 1 ", - "description": "Comprehensive projects incorporating an iterative approach to design development of products, systems & services with emphasis on invention, design and manufacturing. Full Description " + "description": "Comprehensive projects incorporating an iterative approach to design development of products, systems & services with emphasis on invention, design and manufacturing." }, "ID4072": { "subject": "ID", "number": "4072", "name": "Invention Studio 2 ", - "description": "Comprehensive projects incorporating an iterative approach to design development of products, systems & services with emphasis on invention, innovation and entrepreneurship. Full Description " + "description": "Comprehensive projects incorporating an iterative approach to design development of products, systems & services with emphasis on invention, innovation and entrepreneurship." }, "ID4081": { "subject": "ID", "number": "4081", "name": "ID/ME Colab Des Studio 1 ", - "description": "An interdisciplinary team-based approach to integrate industrial design and engineering competencies in design development of products and systems with emphasis on corporate-sponsored projects. Full Description " + "description": "An interdisciplinary team-based approach to integrate industrial design and engineering competencies in design development of products and systems with emphasis on corporate-sponsored projects." }, "ID4082": { "subject": "ID", "number": "4082", "name": "ID/ME Colab Des Studio 2 ", - "description": "An interdisciplinary team-based approach to integrate industrial design and engineering competencies in design development of products and systems with emphasis on humanitarian projects. Full Description " + "description": "An interdisciplinary team-based approach to integrate industrial design and engineering competencies in design development of products and systems with emphasis on humanitarian projects." }, "ID4103": { "subject": "ID", "number": "4103", "name": "Alias Studio I ", - "description": "Introduction to modeling, rendering, and animation with Alias Studio software. Full Description " + "description": "Introduction to modeling, rendering, and animation with Alias Studio software." }, "ID4104": { "subject": "ID", "number": "4104", "name": "Alias Studio II ", - "description": "Introduction to product animation using Alias Studio software. Full Description " + "description": "Introduction to product animation using Alias Studio software." }, "ID4105": { "subject": "ID", "number": "4105", "name": "Adv Modeling Concepts ", - "description": "The Advance Modeling Concepts Course explores concepts, tools and theories used to model and validate complex forms encountered in the product design process. Full Description " + "description": "The Advance Modeling Concepts Course explores concepts, tools and theories used to model and validate complex forms encountered in the product design process." }, "ID4106": { "subject": "ID", "number": "4106", "name": "Parametric Product Model ", - "description": "This course focuses on advanced digital methods in product modeling for visual analysis, flexible design approaches and digital fabrication methods. Full Description " + "description": "This course focuses on advanced digital methods in product modeling for visual analysis, flexible design approaches and digital fabrication methods." }, "ID4201": { "subject": "ID", "number": "4201", "name": "Design/Research Methods ", - "description": "Research methods applicable to industrial design including task definition, information gathering, and analysis. Full Description " + "description": "Research methods applicable to industrial design including task definition, information gathering, and analysis." }, "ID4202": { "subject": "ID", "number": "4202", "name": "Professional Practice ", - "description": "Principles of consulting and corporate industrial design including preparation of the professional portfolio. Full Description " + "description": "Principles of consulting and corporate industrial design including preparation of the professional portfolio." }, "ID4203": { "subject": "ID", "number": "4203", "name": "French Society & Culture ", - "description": "Studies in French society and culture. Full Description " + "description": "Studies in French society and culture." }, "ID4204": { "subject": "ID", "number": "4204", "name": "Theorizing Design ", - "description": "Introduction to what designers do and how they undertake their tasks; examples will come from a variety of design disciplines. Full Description " + "description": "Introduction to what designers do and how they undertake their tasks; examples will come from a variety of design disciplines." }, "ID4205": { "subject": "ID", "number": "4205", "name": "French Design & Culture ", - "description": "Studies in French design and culture. Full Description " + "description": "Studies in French design and culture." }, "ID4206": { "subject": "ID", "number": "4206", "name": "Culture of Objects ", - "description": "This seminar surveys the theories and methodologies within the field of industrial design that locate meaning in the designed object as derived from culture. Full Description " + "description": "This seminar surveys the theories and methodologies within the field of industrial design that locate meaning in the designed object as derived from culture." }, "ID4210": { "subject": "ID", "number": "4210", "name": "Intro Universal Design ", - "description": "This course provides an introduction to universal design focusing on the implications of ability on the usability of places, products, and systems for all individuals. Full Description " + "description": "This course provides an introduction to universal design focusing on the implications of ability on the usability of places, products, and systems for all individuals." }, "ID4320": { "subject": "ID", "number": "4320", "name": "Prototyping Interaction ", - "description": "This course exposes students to a range of practical methods for research and design exploration to support the design development of interactive products and technologies. Full Description " + "description": "This course exposes students to a range of practical methods for research and design exploration to support the design development of interactive products and technologies." }, "ID4418": { "subject": "ID", "number": "4418", "name": "Design Sketching ", - "description": "This course addresses drawing and visualization techniques necessary for design thinking and development and introduces methods and processes to formulate and present visual information. Full Description " + "description": "This course addresses drawing and visualization techniques necessary for design thinking and development and introduces methods and processes to formulate and present visual information." }, "ID4450": { "subject": "ID", "number": "4450", "name": "Portfolio Development ", - "description": "The portfolio development course provides students with a structured approach to preparing a professional visual record of their work in print and digital formats. Full Description " + "description": "The portfolio development course provides students with a structured approach to preparing a professional visual record of their work in print and digital formats." }, "ID4510": { "subject": "ID", "number": "4510", "name": "Wearable Product Design ", - "description": "Wearable Product Design explores techniques in producing designs and prototypes for on-body interactions, and general textile knowledge for making effective wearable products. Full Description " + "description": "Wearable Product Design explores techniques in producing designs and prototypes for on-body interactions, and general textile knowledge for making effective wearable products." }, "ID4698": { "subject": "ID", "number": "4698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "ID4699": { "subject": "ID", "number": "4699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "ID4803": { "subject": "ID", "number": "4803", "name": "Special Topics-Furniture ", - "description": "Special topics in furniture design not covered in the professional curriculum. Full Description " + "description": "Special topics in furniture design not covered in the professional curriculum." }, "ID4813": { "subject": "ID", "number": "4813", "name": "Spec Top: Sustainability ", - "description": "Special topics in sustainability not included in the professional curriculum. Full Description " + "description": "Special topics in sustainability not included in the professional curriculum." }, "ID4823": { "subject": "ID", "number": "4823", "name": "Special Topic-Info Tech ", - "description": "Special topics in information technology not included in the professional curriculum. Full Description " + "description": "Special topics in information technology not included in the professional curriculum." }, "ID4833": { "subject": "ID", "number": "4833", "name": "Spec Top: Collaborative ", - "description": "Application of the design process to advanced multidisciplinary problems by a team. Projects from a range of interest areas: consumer, industrial products, transportation, furniture. Full Description " + "description": "Application of the design process to advanced multidisciplinary problems by a team. Projects from a range of interest areas: consumer, industrial products, transportation, furniture." }, "ID4843": { "subject": "ID", "number": "4843", "name": "Spec Topics: Hist/Theory ", - "description": "Special topics in history and theory not included in the professional curriculum. Full Description " + "description": "Special topics in history and theory not included in the professional curriculum." }, "ID4900": { "subject": "ID", "number": "4900", "name": "Spec Prob: Visual Comm ", - "description": "Special problems in communication not covered in the professional curriculum. Full Description " + "description": "Special problems in communication not covered in the professional curriculum." }, "ID4901": { "subject": "ID", "number": "4901", "name": "Spec Prob:Mentor Program ", - "description": "Special problems in teaching pedagogy; mentoring by senior faculty in basic and intermediate design courses. Full Description " + "description": "Special problems in teaching pedagogy; mentoring by senior faculty in basic and intermediate design courses." }, "ID4902": { "subject": "ID", "number": "4902", "name": "Spec Prob:Mentor Program ", - "description": "Special problems in teaching pedagogy; mentoring by senior faculty in basic and intermediate design courses. Full Description " + "description": "Special problems in teaching pedagogy; mentoring by senior faculty in basic and intermediate design courses." }, "ID4903": { "subject": "ID", "number": "4903", "name": "Special Prob: Research ", - "description": "Special research topics for advanced students not covered in the professional curriculum. Full Description " + "description": "Special research topics for advanced students not covered in the professional curriculum." }, "ID4904": { "subject": "ID", "number": "4904", "name": "Special Prob: Research ", - "description": "Special research topics for advanced students not covered in the professional curriculum. Full Description " + "description": "Special research topics for advanced students not covered in the professional curriculum." }, "ID4XXX": { "subject": "ID", "number": "4XXX", "name": "Industrial Dsgn Elective ", - "description": " Full Description " + "description": "" }, "ID6100": { "subject": "ID", "number": "6100", "name": "Intro to ID Grad Studies ", - "description": "Introduction to the theory and practice of graduate studies in Industrial Design in relation to behavior research and consumer products. Full Description " + "description": "Introduction to the theory and practice of graduate studies in Industrial Design in relation to behavior research and consumer products." }, "ID6101": { "subject": "ID", "number": "6101", "name": "Human Centered Design ", - "description": "This course examines design artifacts in relation to the human body, aging, disabilities, and environments. Full Description " + "description": "This course examines design artifacts in relation to the human body, aging, disabilities, and environments." }, "ID6200": { "subject": "ID", "number": "6200", "name": "Graduate Studio I ", - "description": "Graduate application of the design process to advanced multidisciplinary design problems. Experience in solving real design problems for consumer products. Full Description " + "description": "Graduate application of the design process to advanced multidisciplinary design problems. Experience in solving real design problems for consumer products." }, "ID6201": { "subject": "ID", "number": "6201", "name": "Graduate Studio II ", - "description": "Graduate-level application of the design process to advanced multidisciplinary problems. Full Description " + "description": "Graduate-level application of the design process to advanced multidisciplinary problems." }, "ID6214": { "subject": "ID", "number": "6214", "name": "Strategic Design Language ", - "description": "Introduction to techniques to help designers clarify and support design ideas in a strategic business context by exploring methods to better leverage visual design skills. Full Description " + "description": "Introduction to techniques to help designers clarify and support design ideas in a strategic business context by exploring methods to better leverage visual design skills." }, "ID6215": { "subject": "ID", "number": "6215", "name": "Service Design ", - "description": "This course introduces best practices of service design and focuses on the alignment and design of multiple brand touch points to optimize customer experience. Full Description " + "description": "This course introduces best practices of service design and focuses on the alignment and design of multiple brand touch points to optimize customer experience." }, "ID6271": { "subject": "ID", "number": "6271", "name": "Healthcare Des of Future ", - "description": "Introduction to research-based approaches to integrated healthcare design innovation. Full Description " + "description": "Introduction to research-based approaches to integrated healthcare design innovation." }, "ID6400": { "subject": "ID", "number": "6400", "name": "Master's Project ", - "description": "Student produces a product prototype that must meet with instructor's approval. Full Description " + "description": "Student produces a product prototype that must meet with instructor's approval." }, "ID6401": { "subject": "ID", "number": "6401", "name": "Visualizing Interaction ", - "description": "Introduction to techniques that empower designers to plan and create effective and clear visual communication depicting the interaction and relationships between people, products, and services. Full Description " + "description": "Introduction to techniques that empower designers to plan and create effective and clear visual communication depicting the interaction and relationships between people, products, and services." }, "ID6420": { "subject": "ID", "number": "6420", "name": "Advanced Sketching ", - "description": "This class will focus on developing advanced, traditional (non-digital) sketching, rendering, and presentation techniques. Full Description " + "description": "This class will focus on developing advanced, traditional (non-digital) sketching, rendering, and presentation techniques." }, "ID6509": { "subject": "ID", "number": "6509", "name": "Comp Creativity Des Cogn ", - "description": "This course investigates computational methods, models, tools that support design creativity and cognition. Credit not allowed for both ID 6509 and ARCH 6509. Full Description " + "description": "This course investigates computational methods, models, tools that support design creativity and cognition. Credit not allowed for both ID 6509 and ARCH 6509." }, "ID6510": { "subject": "ID", "number": "6510", "name": "Design for Interaction ", - "description": "This course examines opportunities for designers to leverage visualization and prototyping methods to foster new applications of technology to enhance user experience in everyday life. Full Description " + "description": "This course examines opportunities for designers to leverage visualization and prototyping methods to foster new applications of technology to enhance user experience in everyday life." }, "ID6515": { "subject": "ID", "number": "6515", "name": "Interface Prototyping ", - "description": "This course focuses on the development of interactive prototypes for digital displays. Students learn how graphic and interactive design principles can be represented through prototypes. Full Description " + "description": "This course focuses on the development of interactive prototypes for digital displays. Students learn how graphic and interactive design principles can be represented through prototypes." }, "ID6753": { "subject": "ID", "number": "6753", "name": "HCI Prof Prep & Practice ", - "description": "Preparation for a professional career in HCI. Speakers. Atlanta-area lab visits. Career trajectories. Project presentations. Technical, resume and interviewing skills. Atlanta-area HCI resources. Full Description " + "description": "Preparation for a professional career in HCI. Speakers. Atlanta-area lab visits. Career trajectories. Project presentations. Technical, resume and interviewing skills. Atlanta-area HCI resources." }, "ID6763": { "subject": "ID", "number": "6763", "name": "Design Interactv Environ ", - "description": "Investigate and design ambient, intelligent, interactive interfaces and computational applications in tangible and physical environment to support health, wellness and quality of life. Credit not allowed for both ID 6763 and COA 6763 or CS 6763. Full Description " + "description": "Investigate and design ambient, intelligent, interactive interfaces and computational applications in tangible and physical environment to support health, wellness and quality of life. Credit not allowed for both ID 6763 and COA 6763 or CS 6763." }, "ID6800": { "subject": "ID", "number": "6800", "name": "Adv Universal Design ", - "description": "This course provides an advanced level to universal design focusing on the implications of ability on the usability of places, products, and systems for all individuals. Full Description " + "description": "This course provides an advanced level to universal design focusing on the implications of ability on the usability of places, products, and systems for all individuals." }, "ID6820": { "subject": "ID", "number": "6820", "name": "Web Usability & Access ", - "description": "This course will teach students the fundamentals of web design and usability issues in online environments, with an emphasis on universal design principles and accessibility. Full Description " + "description": "This course will teach students the fundamentals of web design and usability issues in online environments, with an emphasis on universal design principles and accessibility." }, "ID6998": { "subject": "ID", "number": "6998", "name": "HCI Master's Project ", - "description": "Final project for students completing a Human-Computer Interaction master's degree in the Digitial Media track. Repeatable for multi-semester projects. Full Description " + "description": "Final project for students completing a Human-Computer Interaction master's degree in the Digitial Media track. Repeatable for multi-semester projects." }, "ID7000": { "subject": "ID", "number": "7000", "name": "Master's Thesis ", - "description": "Provides students with the opportunity to pursue advanced research under the guidance of a faculty member. Full Description " + "description": "Provides students with the opportunity to pursue advanced research under the guidance of a faculty member." }, "ID8900": { "subject": "ID", "number": "8900", "name": "Special Problems ", - "description": "Special problems in industrial design. Full Description " + "description": "Special problems in industrial design." }, "ID8903": { "subject": "ID", "number": "8903", "name": "Special Problems in HCI ", - "description": "Small-group of individual investigation of advanced topics in human-computer interaction. Guided study and research. Full Description " + "description": "Small-group of individual investigation of advanced topics in human-computer interaction. Guided study and research." }, "IL6450": { "subject": "IL", "number": "6450", "name": "Analytical Methods ", - "description": "This course provides an overview of optimization, statistical, and stochastic models and methods with special emphasis on application to logistics. Full Description " + "description": "This course provides an overview of optimization, statistical, and stochastic models and methods with special emphasis on application to logistics." }, "IL6451": { "subject": "IL", "number": "6451", "name": "Demand and Yield Mgt ", - "description": "This course focuses on demand estimation and modeling and revenue management. Full Description " + "description": "This course focuses on demand estimation and modeling and revenue management." }, "IL6452": { "subject": "IL", "number": "6452", "name": "Reverse Green Logistics ", - "description": "This course addresses issues, driving forces, and analytical approaches to aid in designing operating reverse logistics systems. Full Description " + "description": "This course addresses issues, driving forces, and analytical approaches to aid in designing operating reverse logistics systems." }, "IL6453": { "subject": "IL", "number": "6453", "name": "Labor Relations ", - "description": "This course compares labor practices in Europe, North America, and Asia with special attention on the influences on logistics. Full Description " + "description": "This course compares labor practices in Europe, North America, and Asia with special attention on the influences on logistics." }, "IL6454": { "subject": "IL", "number": "6454", "name": "European Trade&Transport ", - "description": "This course provides an overview of legal, cultural, political, and infrastructure issues influencing logistics in Europe. Full Description " + "description": "This course provides an overview of legal, cultural, political, and infrastructure issues influencing logistics in Europe." }, "IL6455": { "subject": "IL", "number": "6455", "name": "Finance for Logistics ", - "description": "This course provides an in-depth understanding of concepts of finance that relate to logistics, such as valuing logistics activities and measuring logistics performance. Full Description " + "description": "This course provides an in-depth understanding of concepts of finance that relate to logistics, such as valuing logistics activities and measuring logistics performance." }, "IL6456": { "subject": "IL", "number": "6456", "name": "Financial Decisions ", - "description": "This course provides a thorough understanding of the key elements of building a better logistics business case. Full Description " + "description": "This course provides a thorough understanding of the key elements of building a better logistics business case." }, "IL6457": { "subject": "IL", "number": "6457", "name": "American Trade&Transport ", - "description": "This course provides an overview of legal, cultural, political, and infrastructure issues influencing logistics practices in the Americas. Full Description " + "description": "This course provides an overview of legal, cultural, political, and infrastructure issues influencing logistics practices in the Americas." }, "IL6458": { "subject": "IL", "number": "6458", "name": "Warehousing ", - "description": "This course surveys the different types of warehouses and their functions, principles of operation, and strategic relationship to the supply chain. Full Description " + "description": "This course surveys the different types of warehouses and their functions, principles of operation, and strategic relationship to the supply chain." }, "IL6459": { "subject": "IL", "number": "6459", "name": "Intl Trade & Transport ", - "description": "This course discusses how international trade is financed, what instruments are used and how they work, how transactions are settled, and the role of documentation. Full Description " + "description": "This course discusses how international trade is financed, what instruments are used and how they work, how transactions are settled, and the role of documentation." }, "IL6460": { "subject": "IL", "number": "6460", "name": "Intl Freight Management ", - "description": "This course focuses on international freight management including consolidation, export packaging, customs, tracking, terminal operations, mode selection, and carrier selection. Full Description " + "description": "This course focuses on international freight management including consolidation, export packaging, customs, tracking, terminal operations, mode selection, and carrier selection." }, "IL6461": { "subject": "IL", "number": "6461", "name": "Asian Trade & Transport ", - "description": "This course provides an overview of legal, cultural, political, and infrastructure issues influencing logistics practices in Asia. Full Description " + "description": "This course provides an overview of legal, cultural, political, and infrastructure issues influencing logistics practices in Asia." }, "IL6464": { "subject": "IL", "number": "6464", "name": "ERP Systems ", - "description": "This course provides a strategic view of Enterprise Resource Planning and its relationship to logistics functions. Full Description " + "description": "This course provides a strategic view of Enterprise Resource Planning and its relationship to logistics functions." }, "IL6465": { "subject": "IL", "number": "6465", "name": "Marketing Channels ", - "description": "This course focuses on logistics and supply chain issues as they impact the global marketing strategies of companies. Full Description " + "description": "This course focuses on logistics and supply chain issues as they impact the global marketing strategies of companies." }, "IL6466": { "subject": "IL", "number": "6466", "name": "Global Supply Chain ", - "description": "This course focuses on concepts and models for designing and measuring a global supply chain, with special focus on the impact of e-commerce. Full Description " + "description": "This course focuses on concepts and models for designing and measuring a global supply chain, with special focus on the impact of e-commerce." }, "IL6467": { "subject": "IL", "number": "6467", "name": "Transportation ", - "description": "This course focuses on logistics planning, execution, and performance measurement in the transportation industry. Full Description " + "description": "This course focuses on logistics planning, execution, and performance measurement in the transportation industry." }, "IL6468": { "subject": "IL", "number": "6468", "name": "Manufacturing ", - "description": "This course focuses on logistics issues within the manufacturing facility including inventory, throughput, lead-time batching, and managing variability. Full Description " + "description": "This course focuses on logistics issues within the manufacturing facility including inventory, throughput, lead-time batching, and managing variability." }, "IL6472": { "subject": "IL", "number": "6472", "name": "Supply Chain Lab III ", - "description": "This course integrates supply chain management techniques in the Americas, Asia, and Europe through case studies. Full Description " + "description": "This course integrates supply chain management techniques in the Americas, Asia, and Europe through case studies." }, "IL6475": { "subject": "IL", "number": "6475", "name": "Cases-Intl Logistics I ", - "description": "In this course, cases are used to integrate strategic, management, and operating issues in international logistics and supply chain design. Full Description " + "description": "In this course, cases are used to integrate strategic, management, and operating issues in international logistics and supply chain design." }, "IL6476": { "subject": "IL", "number": "6476", "name": "Cases-Intl Logistics II ", - "description": "In this course, cases are used t integrate strategic, management, and operating issues in international logistics and supply chain design. Full Description " + "description": "In this course, cases are used t integrate strategic, management, and operating issues in international logistics and supply chain design." }, "IL6477": { "subject": "IL", "number": "6477", "name": "Cases-Intl Logistics III ", - "description": "In this course, cases are used to integrate strategic, management, and operating issues in international logistics and supply chain design. Full Description " + "description": "In this course, cases are used to integrate strategic, management, and operating issues in international logistics and supply chain design." }, "IL6478": { "subject": "IL", "number": "6478", "name": "Cases-Intl Logistics IV ", - "description": "In this course, cases are used to integrate strategic, management, and operating issues in international logistics and supply chain design. Full Description " + "description": "In this course, cases are used to integrate strategic, management, and operating issues in international logistics and supply chain design." }, "IL6480": { "subject": "IL", "number": "6480", "name": "Supply Chain Lab I ", - "description": "This course integrates supply chain management techniques in the region through readings, case studies, meetings and site visits. Typically Supply Chain Lab I focuses on the US. Credit not allowed for both IL 6480 and IL 6470. Full Description " + "description": "This course integrates supply chain management techniques in the region through readings, case studies, meetings and site visits. Typically Supply Chain Lab I focuses on the US. Credit not allowed for both IL 6480 and IL 6470." }, "IL6481": { "subject": "IL", "number": "6481", "name": "Supply Chain Lab II ", - "description": "This course integrates supply chain management techniques in the region through readings, case studies, meetings and site visits. Typically Supply Chain Lab II focuses on Europe. Credit not allowed for both IL 6481 and IL 6471. Full Description " + "description": "This course integrates supply chain management techniques in the region through readings, case studies, meetings and site visits. Typically Supply Chain Lab II focuses on Europe. Credit not allowed for both IL 6481 and IL 6471." }, "IL6483": { "subject": "IL", "number": "6483", "name": "Supply Chain Lab IV ", - "description": "This course integrates supply chain management techniques in the region through readings, case studies, meetings and site visits. Typically Supply Chain Lab IV focuses on Asia. Credit not allowed for both IL 6483 and IL 6473. Full Description " + "description": "This course integrates supply chain management techniques in the region through readings, case studies, meetings and site visits. Typically Supply Chain Lab IV focuses on Asia. Credit not allowed for both IL 6483 and IL 6473." }, "IL6484": { "subject": "IL", "number": "6484", "name": "Supply Chain Lab V ", - "description": "This course integrates supply chain management techinques in the region through readings, case studies, meetings, and site visits. Typically Supply Chain Lab V focuses on Mexico and NAFTA. Credit not allowed for both IL 6484 and IL 6474. Full Description " + "description": "This course integrates supply chain management techinques in the region through readings, case studies, meetings, and site visits. Typically Supply Chain Lab V focuses on Mexico and NAFTA. Credit not allowed for both IL 6484 and IL 6474." }, "IL8801": { "subject": "IL", "number": "8801", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "IMBA6000": { "subject": "IMBA", "number": "6000", "name": "Decision Making ", - "description": "A multifirm, competitive management simulation. The objective is to sharpen intra-firm communications skills using the internet as the communications channel and the art of compromise. Full Description " + "description": "A multifirm, competitive management simulation. The objective is to sharpen intra-firm communications skills using the internet as the communications channel and the art of compromise." }, "IMBA6010": { "subject": "IMBA", "number": "6010", "name": "Cross Cultural Commun ", - "description": "Participants learn tools and information to improve communications skills with new approaches and increased understanding while taking into account the effects of cross-cultural differences on communications. Full Description " + "description": "Participants learn tools and information to improve communications skills with new approaches and increased understanding while taking into account the effects of cross-cultural differences on communications." }, "IMBA6021": { "subject": "IMBA", "number": "6021", "name": "Data Analysis for Bus ", - "description": "Covers common statistical tools for the analysis of corporate data such as descriptive statistics, probability concepts, sampling and estimation, hypothesis testing, and regression analysis. Full Description " + "description": "Covers common statistical tools for the analysis of corporate data such as descriptive statistics, probability concepts, sampling and estimation, hypothesis testing, and regression analysis." }, "IMBA6030": { "subject": "IMBA", "number": "6030", "name": "Org Behavior and Theory ", - "description": "Students learn the basic concepts and principles of organizational behavior and utilize such to analyze and solve organizational decision-making problems. Full Description " + "description": "Students learn the basic concepts and principles of organizational behavior and utilize such to analyze and solve organizational decision-making problems." }, "IMBA6031": { "subject": "IMBA", "number": "6031", "name": "Leadershp & Org Behavior ", - "description": "This course focuses on the challenges in leading teams and organizations in increasingly complex, global, and dynamic business environments. Full Description " + "description": "This course focuses on the challenges in leading teams and organizations in increasingly complex, global, and dynamic business environments." }, "IMBA6040": { "subject": "IMBA", "number": "6040", "name": "Global Economics ", - "description": "Participants are provided with a non-traditional approach using an analytical method with a global perspective to the concepts and role of economics in the world environment. Full Description " + "description": "Participants are provided with a non-traditional approach using an analytical method with a global perspective to the concepts and role of economics in the world environment." }, "IMBA6050": { "subject": "IMBA", "number": "6050", "name": "Fin & Managerial Account ", - "description": "Course covers financial reporting and analysis issues facing firms, and managerial accounting information necessary for planning, controlling, and decision making within such firms. Full Description " + "description": "Course covers financial reporting and analysis issues facing firms, and managerial accounting information necessary for planning, controlling, and decision making within such firms." }, "IMBA6061": { "subject": "IMBA", "number": "6061", "name": "Information Systems ", - "description": "Tools and techniques to manage the information technology infrastructure that supports a global organization. Full Description " + "description": "Tools and techniques to manage the information technology infrastructure that supports a global organization." }, "IMBA6070": { "subject": "IMBA", "number": "6070", "name": "World Finance ", - "description": "A two-part course providing an understanding of finance concepts and how they are used. The course then further integrates international and ethical considerations wherever applicable. Full Description " + "description": "A two-part course providing an understanding of finance concepts and how they are used. The course then further integrates international and ethical considerations wherever applicable." }, "IMBA6071": { "subject": "IMBA", "number": "6071", "name": "Financial Management ", - "description": "An introduction to finance. Topics include time value of money, capital budgeting, risk and return, capital structure, dividend policy, and working capital management. Full Description " + "description": "An introduction to finance. Topics include time value of money, capital budgeting, risk and return, capital structure, dividend policy, and working capital management." }, "IMBA6081": { "subject": "IMBA", "number": "6081", "name": "Manf and Service Mgt ", - "description": "Covers the basic conceptual and analytical skills that are required in managing operations and confronting operational problems in competitive markets. Full Description " + "description": "Covers the basic conceptual and analytical skills that are required in managing operations and confronting operational problems in competitive markets." }, "IMBA6090": { "subject": "IMBA", "number": "6090", "name": "Marketing&Consumer Behav ", - "description": "Students are provided with an understanding of marketing and consumer behavior concepts and tools with an international environment approach. Full Description " + "description": "Students are provided with an understanding of marketing and consumer behavior concepts and tools with an international environment approach." }, "IMBA6101": { "subject": "IMBA", "number": "6101", "name": "Prod Strat for Glob Mkts ", - "description": "Developing and marketing new products and services with an emphasis on international markets. Full Description " + "description": "Developing and marketing new products and services with an emphasis on international markets." }, "IMBA6110": { "subject": "IMBA", "number": "6110", "name": "Risk Management ", - "description": "A course based upon a combination of cases, historical data, and theoretical interpretation on the analysis and allocation of risk in international investment and technology transfer. Full Description " + "description": "A course based upon a combination of cases, historical data, and theoretical interpretation on the analysis and allocation of risk in international investment and technology transfer." }, "IMBA6121": { "subject": "IMBA", "number": "6121", "name": "Global Workforce Mgt ", - "description": "A survey of global workforce management principles and the skills necessary to function effectively in a supervisory role in a global organization. Full Description " + "description": "A survey of global workforce management principles and the skills necessary to function effectively in a supervisory role in a global organization." }, "IMBA6131": { "subject": "IMBA", "number": "6131", "name": "Strategic Management ", - "description": "Integrate knowledge of the functional areas of a business to understand how firms gain and sustain a competitive advantage in a globally competitive environment. Full Description " + "description": "Integrate knowledge of the functional areas of a business to understand how firms gain and sustain a competitive advantage in a globally competitive environment." }, "IMBA6140": { "subject": "IMBA", "number": "6140", "name": "Comparative Systems ", - "description": "This course utilizes case studies of companies in various industries and in national cultures to highlight organizational and cultural differences between major economies in the global environment. Full Description " + "description": "This course utilizes case studies of companies in various industries and in national cultures to highlight organizational and cultural differences between major economies in the global environment." }, "IMBA6150": { "subject": "IMBA", "number": "6150", "name": "Entrepreneurship ", - "description": "Participants explore the increasing importance of small and medium-sized businesses and new ventures in international business. Full Description " + "description": "Participants explore the increasing importance of small and medium-sized businesses and new ventures in international business." }, "IMBA6160": { "subject": "IMBA", "number": "6160", "name": "Business Regulations ", - "description": "Deals with learning how to control the legal aspects of international decisions. Full Description " + "description": "Deals with learning how to control the legal aspects of international decisions." }, "IMBA6170": { "subject": "IMBA", "number": "6170", "name": "Quality,Sust Tech,Compet ", - "description": "Students learn the philosophy and techniques of strategic quality management while focusing on assessment and group decisions centered on sustaining technology and competitiveness. Full Description " + "description": "Students learn the philosophy and techniques of strategic quality management while focusing on assessment and group decisions centered on sustaining technology and competitiveness." }, "IMBA6180": { "subject": "IMBA", "number": "6180", "name": "Leadership Skills ", - "description": "Focuses on identifying and developing the attributes of successful leadership. Full Description " + "description": "Focuses on identifying and developing the attributes of successful leadership." }, "IMBA6200": { "subject": "IMBA", "number": "6200", "name": "Strategic Bus Simulation ", - "description": "A unifying course providing a simulated application of the material taught in the core courses of the program. Full Description " + "description": "A unifying course providing a simulated application of the material taught in the core courses of the program." }, "IMBA6210": { "subject": "IMBA", "number": "6210", "name": "Analy of Emerging Tech ", - "description": "A case-based course dealing with the role and impact of digital technology in large and small organizations, with special emphasis on multinational companies. Full Description " + "description": "A case-based course dealing with the role and impact of digital technology in large and small organizations, with special emphasis on multinational companies." }, "IMBA6220": { "subject": "IMBA", "number": "6220", "name": "Entrepreneurship Seminar ", - "description": "A case course building an information bank of theory and practice on start-up enterprises. Several entrepreneurs will co-teach the course with a faculty leader. Full Description " + "description": "A case course building an information bank of theory and practice on start-up enterprises. Several entrepreneurs will co-teach the course with a faculty leader." }, "IMBA6230": { "subject": "IMBA", "number": "6230", "name": "Intl Bus Negotiations ", - "description": "A role-play course involving the complex international negotiation simulation dealing with an international business enterprise and its relationship with one or more governments. Full Description " + "description": "A role-play course involving the complex international negotiation simulation dealing with an international business enterprise and its relationship with one or more governments." }, "IMBA6240": { "subject": "IMBA", "number": "6240", "name": "Ethics in Global Bus ", - "description": "Examines the appropriate roles of business in global society, the roles of government and regulation in monitoring business, and the ethical responsibilitites of managers in global organizations. Full Description " + "description": "Examines the appropriate roles of business in global society, the roles of government and regulation in monitoring business, and the ethical responsibilitites of managers in global organizations." }, "IMBA6250": { "subject": "IMBA", "number": "6250", "name": "International Finance ", - "description": "Analysis of foreign exchange markets, exchange rate risk management, international portfolio investments, international asset pricing, cross-border M&A, and equilibrium conditions in international markets. Full Description " + "description": "Analysis of foreign exchange markets, exchange rate risk management, international portfolio investments, international asset pricing, cross-border M&A, and equilibrium conditions in international markets." }, "IMBA6260": { "subject": "IMBA", "number": "6260", "name": "Glob Supp Chain & E-Comm ", - "description": "Examines business, managerial and economic issues in the management of global supply chains and the role of electronic commerce in the supply chain. Full Description " + "description": "Examines business, managerial and economic issues in the management of global supply chains and the role of electronic commerce in the supply chain." }, "IMBA6300": { "subject": "IMBA", "number": "6300", "name": "Anal of Global Env I ", - "description": "Analysis of a specific region through an international study tour with emphasis on understanding the economy, culture and business environment. Full Description " + "description": "Analysis of a specific region through an international study tour with emphasis on understanding the economy, culture and business environment." }, "IMBA6310": { "subject": "IMBA", "number": "6310", "name": "Anal of Global Env II ", - "description": "Analysis of a specific region through an international study tour with emphasis on understanding the economy, culture and business environment. Full Description " + "description": "Analysis of a specific region through an international study tour with emphasis on understanding the economy, culture and business environment." }, "IMBA6311": { "subject": "IMBA", "number": "6311", "name": "Anal of Global Environ ", - "description": "Analysis of a specific region through an international study tour with emphasis on understanding its economy, culture and business environment. Full Description " + "description": "Analysis of a specific region through an international study tour with emphasis on understanding its economy, culture and business environment." }, "IMBA6400": { "subject": "IMBA", "number": "6400", "name": "Global Strategy Proj I ", - "description": "Students work on a real world problem related to global strategy. The focus in this course is on data collection and problem definition. Full Description " + "description": "Students work on a real world problem related to global strategy. The focus in this course is on data collection and problem definition." }, "IMBA6401": { "subject": "IMBA", "number": "6401", "name": "Global Strategy Proj I ", - "description": "Students work on a real world problem related to global strategy. The focus in this course is on problem definition, data collection and client engagement management. Full Description " + "description": "Students work on a real world problem related to global strategy. The focus in this course is on problem definition, data collection and client engagement management." }, "IMBA6410": { "subject": "IMBA", "number": "6410", "name": "Global Strategy Proj II ", - "description": "Students work on a real world problem related to global strategy. The focus in this course is on defining a preliminary solution that has desirable characteristics. Full Description " + "description": "Students work on a real world problem related to global strategy. The focus in this course is on defining a preliminary solution that has desirable characteristics." }, "IMBA6411": { "subject": "IMBA", "number": "6411", "name": "Global Strategy Proj II ", - "description": "Students work on a real world problem related to global strategy. The focus in this course is on problem definition, data collection and client engagement management. Full Description " + "description": "Students work on a real world problem related to global strategy. The focus in this course is on problem definition, data collection and client engagement management." }, "IMBA6420": { "subject": "IMBA", "number": "6420", "name": "Global Strategy Proj III ", - "description": "Students work on a real world problem related to global strategy. The focus in this course is on defining and presenting a comprehensive solution. Full Description " + "description": "Students work on a real world problem related to global strategy. The focus in this course is on defining and presenting a comprehensive solution." }, "IMBA6430": { "subject": "IMBA", "number": "6430", "name": "Bus Str Sustainability ", - "description": "Cross-functional strategies to address competitive and regulatory demands placed on firms for achieving sustainable business practices. Full Description " + "description": "Cross-functional strategies to address competitive and regulatory demands placed on firms for achieving sustainable business practices." }, "INTA1002": { "subject": "INTA", "number": "1002", "name": "Effective Study Abroad ", - "description": "Introduces essential background information concerning countries, concepts, and what to do in order to gain maximum benefit from participation in school-sponsored study abroad programs. Full Description " + "description": "Introduces essential background information concerning countries, concepts, and what to do in order to gain maximum benefit from participation in school-sponsored study abroad programs." }, "INTA1050": { "subject": "INTA", "number": "1050", "name": "The World Today ", - "description": "Introduction to current issues of politics, geography, and history around the globe, using a wide variety of media and sources. Full Description " + "description": "Introduction to current issues of politics, geography, and history around the globe, using a wide variety of media and sources." }, "INTA1110": { "subject": "INTA", "number": "1110", "name": "Intro to Int'l Relations ", - "description": "An introduction to the major principles, concepts, actors, and theories of the international system and their application to current issues in world affairs. Full Description " + "description": "An introduction to the major principles, concepts, actors, and theories of the international system and their application to current issues in world affairs." }, "INTA1200": { "subject": "INTA", "number": "1200", "name": "American Government ", - "description": "Examines American government in relation to other political and economic systems in countries around the world. Credit not allowed for both POL 1101 and INTA 1200. Full Description " + "description": "Examines American government in relation to other political and economic systems in countries around the world. Credit not allowed for both POL 1101 and INTA 1200." }, "INTA1XXX": { "subject": "INTA", "number": "1XXX", "name": "Int'l Affairs Elective ", - "description": " Full Description " + "description": "" }, "INTA2001": { "subject": "INTA", "number": "2001", "name": "Careers In Intl Affairs ", - "description": "Reinforces career development and planning process for international affairs majors. Includes facilitation of decision-making skills, job search strategies, self-assessment, and overview from industry speakers. Credit not allowed for both INTA 2001 and INTA 1001. Full Description " + "description": "Reinforces career development and planning process for international affairs majors. Includes facilitation of decision-making skills, job search strategies, self-assessment, and overview from industry speakers. Credit not allowed for both INTA 2001 and INTA 1001." }, "INTA2010": { "subject": "INTA", "number": "2010", "name": "Empirical Methods ", - "description": "Develops skills in research design, model building, and hypothesis construction. Provides experience in using computer software programs to perform statistical tests including t-tests, chi-square, and regression. Full Description " + "description": "Develops skills in research design, model building, and hypothesis construction. Provides experience in using computer software programs to perform statistical tests including t-tests, chi-square, and regression." }, "INTA2030": { "subject": "INTA", "number": "2030", "name": "Ethics in Int'l Affairs ", - "description": "Surveys the main traditions and theories of international ethics with a focus on intervention and the use of force, human rights, self-determination, and global distributive justice. Full Description " + "description": "Surveys the main traditions and theories of international ethics with a focus on intervention and the use of force, human rights, self-determination, and global distributive justice." }, "INTA2040": { "subject": "INTA", "number": "2040", "name": "Sci,Tech & Int'l Affairs ", - "description": "An overview of science and technology as a determinant in the development and functioning of states and societies worldwide and the international context for the development of science and technology. Full Description " + "description": "An overview of science and technology as a determinant in the development and functioning of states and societies worldwide and the international context for the development of science and technology." }, "INTA2042": { "subject": "INTA", "number": "2042", "name": "Intro-Global WMD Issues ", - "description": "This course will explore the challenges, history, and major theoretical frameworks relating to weapons of mass destruction (WMD). Full Description " + "description": "This course will explore the challenges, history, and major theoretical frameworks relating to weapons of mass destruction (WMD)." }, "INTA2050": { "subject": "INTA", "number": "2050", "name": "Intro to Global Develpmt ", - "description": "Mainstream and critical approaches to development, the role of diverse institutions and projects, and implications for sustainability in the countries of the global south. Full Description " + "description": "Mainstream and critical approaches to development, the role of diverse institutions and projects, and implications for sustainability in the countries of the global south." }, "INTA2100": { "subject": "INTA", "number": "2100", "name": "Great Power Relations ", - "description": "Juxtaposes competing explanations for the patterns of conflict and cooperation among nations, illustrated by relations among the great powers of Europe and Asia during the past two centuries. Full Description " + "description": "Juxtaposes competing explanations for the patterns of conflict and cooperation among nations, illustrated by relations among the great powers of Europe and Asia during the past two centuries." }, "INTA2120": { "subject": "INTA", "number": "2120", "name": "Intro to Intl Security ", - "description": "Introduction to the role of theory and provide an understanding of the significance of various issues in international security. Full Description " + "description": "Introduction to the role of theory and provide an understanding of the significance of various issues in international security." }, "INTA2210": { "subject": "INTA", "number": "2210", "name": "Pol Phil & Ideologies ", - "description": "Explores political ideologies and philosophies, including theories of democracy, capitalism, and socialism, as well as rival views of the \"good society\" in comparative and historical perspective. Full Description " + "description": "Explores political ideologies and philosophies, including theories of democracy, capitalism, and socialism, as well as rival views of the \"good society\" in comparative and historical perspective." }, "INTA2220": { "subject": "INTA", "number": "2220", "name": "Govt& Pol-Western Europe ", - "description": "A comparative analysis of the politics and major institutions of the countries of contemporary Western Europe. Full Description " + "description": "A comparative analysis of the politics and major institutions of the countries of contemporary Western Europe." }, "INTA2221": { "subject": "INTA", "number": "2221", "name": "Politics of the EU ", - "description": "Introduction and overview of the history and politics of the European Union from its inception to the new era of development under the 2009 Lisbon Treaty. Full Description " + "description": "Introduction and overview of the history and politics of the European Union from its inception to the new era of development under the 2009 Lisbon Treaty." }, "INTA2230": { "subject": "INTA", "number": "2230", "name": "Govt & Politics of Asia ", - "description": "An introduction to the major issues and aspects of the politics, societies, and cultures of East Asia, and the changing role of the region in international affairs. Full Description " + "description": "An introduction to the major issues and aspects of the politics, societies, and cultures of East Asia, and the changing role of the region in international affairs." }, "INTA2241": { "subject": "INTA", "number": "2241", "name": "Govt Pol Soc-Lat America ", - "description": "Introduction to the study of historical forces, cultural production, identity, political development and contemporary issues in Latin America. Full Description " + "description": "Introduction to the study of historical forces, cultural production, identity, political development and contemporary issues in Latin America." }, "INTA2260": { "subject": "INTA", "number": "2260", "name": "Govt Pol Soc-Middle East ", - "description": "Introduction to the study and analysis of contemporary Middle East politics with an emphasis on the Arab states. Full Description " + "description": "Introduction to the study and analysis of contemporary Middle East politics with an emphasis on the Arab states." }, "INTA2698": { "subject": "INTA", "number": "2698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "INTA2699": { "subject": "INTA", "number": "2699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "INTA2803": { "subject": "INTA", "number": "2803", "name": "Special Topics ", - "description": "Topics of current interest in International Affairs. Full Description " + "description": "Topics of current interest in International Affairs." }, "INTA2813": { "subject": "INTA", "number": "2813", "name": "Special Topics ", - "description": "Topics of current interest in International Affairs. Full Description " + "description": "Topics of current interest in International Affairs." }, "INTA2823": { "subject": "INTA", "number": "2823", "name": "Special Topics ", - "description": "Topics of current interest in International Affairs. Full Description " + "description": "Topics of current interest in International Affairs." }, "INTA2833": { "subject": "INTA", "number": "2833", "name": "Special Topics ", - "description": "Topics of current interest in International Affairs. Full Description " + "description": "Topics of current interest in International Affairs." }, "INTA2901": { "subject": "INTA", "number": "2901", "name": "Special Problems ", - "description": "Independent study with a faculty member. Full Description " + "description": "Independent study with a faculty member." }, "INTA2902": { "subject": "INTA", "number": "2902", "name": "Special Problems ", - "description": "Independent study with a faculty member. Full Description " + "description": "Independent study with a faculty member." }, "INTA2903": { "subject": "INTA", "number": "2903", "name": "Special Problems ", - "description": "Independent study with a faculty member. Full Description " + "description": "Independent study with a faculty member." }, "INTA2XXX": { "subject": "INTA", "number": "2XXX", "name": "Int'l Affairs Elective ", - "description": " Full Description " + "description": "" }, "INTA3010": { "subject": "INTA", "number": "3010", "name": "Intl Technology Transfer ", - "description": "Explores the impact of technology transfer on key contexts such as economic development and the international diffusion of defense production and technology. Full Description " + "description": "Explores the impact of technology transfer on key contexts such as economic development and the international diffusion of defense production and technology." }, "INTA3012": { "subject": "INTA", "number": "3012", "name": "War in the 20th Century ", - "description": "Provides historical foundation and understanding of the causes, conduct and consequences of modern war to support informed discussion and analysis of contemporary crisis and conflict. Full Description " + "description": "Provides historical foundation and understanding of the causes, conduct and consequences of modern war to support informed discussion and analysis of contemporary crisis and conflict." }, "INTA3020": { "subject": "INTA", "number": "3020", "name": "Contemporary Mexico ", - "description": "This course examines the socio-economic and political history and development of twentieth century Mexico, with a focus on current problems and issues. Full Description " + "description": "This course examines the socio-economic and political history and development of twentieth century Mexico, with a focus on current problems and issues." }, "INTA3031": { "subject": "INTA", "number": "3031", "name": "Human Rights ", - "description": "Explores how processes of globalization and advances in communication and technology have heightened and shaped human rights as a concern in international politics. Full Description " + "description": "Explores how processes of globalization and advances in communication and technology have heightened and shaped human rights as a concern in international politics." }, "INTA3042": { "subject": "INTA", "number": "3042", "name": "Energy & Intl Security ", - "description": "Examines issues at the intersection of national energy security and international conflict and cooperation. Full Description " + "description": "Examines issues at the intersection of national energy security and international conflict and cooperation." }, "INTA3043": { "subject": "INTA", "number": "3043", "name": "Space Policy ", - "description": "Examination of the origins, evolution and range of current challenges and debates in international space policy issues, including civil, military, and commercial activities. Full Description " + "description": "Examination of the origins, evolution and range of current challenges and debates in international space policy issues, including civil, military, and commercial activities." }, "INTA3044": { "subject": "INTA", "number": "3044", "name": "Global Politics of Tech ", - "description": "Examination of the economic and political dynamics that influence how regulations governing technology are adopted around the world. Full Description " + "description": "Examination of the economic and political dynamics that influence how regulations governing technology are adopted around the world." }, "INTA3050": { "subject": "INTA", "number": "3050", "name": "Global Citizenship ", - "description": "Explore the meaning of global citizenship in scholarly and public debates and how it is \"practiced\" by individuals and \"institutionalized\" by universities, corporations and organizations. Full Description " + "description": "Explore the meaning of global citizenship in scholarly and public debates and how it is \"practiced\" by individuals and \"institutionalized\" by universities, corporations and organizations." }, "INTA3101": { "subject": "INTA", "number": "3101", "name": "Int'l Institutions ", - "description": "Scrutinizes the evolution of international institutions, and juxtaposes competing theoretical approaches for understanding the changing roles and functions of institutions in world affairs. Full Description " + "description": "Scrutinizes the evolution of international institutions, and juxtaposes competing theoretical approaches for understanding the changing roles and functions of institutions in world affairs." }, "INTA3102": { "subject": "INTA", "number": "3102", "name": "Problem of Proliferation ", - "description": "Explores the political and economic issues, both international as well as domestic, involved in the spread of the weapons of mass destruction since the end of the Second World War. Full Description " + "description": "Explores the political and economic issues, both international as well as domestic, involved in the spread of the weapons of mass destruction since the end of the Second World War." }, "INTA3103": { "subject": "INTA", "number": "3103", "name": "Challenge of Terrorism ", - "description": "Examines the contexts that nurture domestic and international terrorism, the variety of terrorist organizations, and alternative approaches to combating the problem. Full Description " + "description": "Examines the contexts that nurture domestic and international terrorism, the variety of terrorist organizations, and alternative approaches to combating the problem." }, "INTA3104": { "subject": "INTA", "number": "3104", "name": "Int'l Negotations ", - "description": "Examines the theories of bargaining and negotiation, with an emphasis on explaining success and failure in U.S. foreign policy and national security negotiations. Full Description " + "description": "Examines the theories of bargaining and negotiation, with an emphasis on explaining success and failure in U.S. foreign policy and national security negotiations." }, "INTA3110": { "subject": "INTA", "number": "3110", "name": "U.S. Foreign Policy ", - "description": "Analyzes the formulation and implementation of America's foreign policy from 1914 to the present, stressing economic, political, and strategic factors. Full Description " + "description": "Analyzes the formulation and implementation of America's foreign policy from 1914 to the present, stressing economic, political, and strategic factors." }, "INTA3111": { "subject": "INTA", "number": "3111", "name": "U.S. Defense Policy ", - "description": "Examines contemporary American defense policy, including the formulation of strategy, the defense budget, force structure, and nontraditional uses of military force. Full Description " + "description": "Examines contemporary American defense policy, including the formulation of strategy, the defense budget, force structure, and nontraditional uses of military force." }, "INTA3120": { "subject": "INTA", "number": "3120", "name": "European Security Issues ", - "description": "Explores the contemporary European security environment, including threats, challenges, and various security architectures (e.g., NATO, the WEU, and the OSCE). Full Description " + "description": "Explores the contemporary European security environment, including threats, challenges, and various security architectures (e.g., NATO, the WEU, and the OSCE)." }, "INTA3121": { "subject": "INTA", "number": "3121", "name": "Russia and Eurasia ", - "description": "Examines the many dimensions of the foreign and security policies of Russia and the other new post-Soviet states of Russia and Eurasia. Full Description " + "description": "Examines the many dimensions of the foreign and security policies of Russia and the other new post-Soviet states of Russia and Eurasia." }, "INTA3130": { "subject": "INTA", "number": "3130", "name": "Foreign Policy of China ", - "description": "Analyzes the major dimensions of the foreign policies of the People's Republic of China and the domestic and international influences shaping those policies. Full Description " + "description": "Analyzes the major dimensions of the foreign policies of the People's Republic of China and the domestic and international influences shaping those policies." }, "INTA3131": { "subject": "INTA", "number": "3131", "name": "Pacific Security Issues ", - "description": "Examines past, present, and future security concerns in the Pacific, including the Korean peninsula, Japanese defense, the emergence of China as a military power, and the forward basing of American troops and materiel. Full Description " + "description": "Examines past, present, and future security concerns in the Pacific, including the Korean peninsula, Japanese defense, the emergence of China as a military power, and the forward basing of American troops and materiel." }, "INTA3203": { "subject": "INTA", "number": "3203", "name": "Comparative Politics ", - "description": "Contrasts competing theoretical perspectives in the comparative analysis of political systems. Full Description " + "description": "Contrasts competing theoretical perspectives in the comparative analysis of political systems." }, "INTA3220": { "subject": "INTA", "number": "3220", "name": "Gov't & Politics-Germany ", - "description": "Examines the government and politics of Germany with an in-depth focus on the post-1945 period. NOTE: When taught jointly with the School of Modern Languages, all lectures, assignments, and readings are in German. Full Description " + "description": "Examines the government and politics of Germany with an in-depth focus on the post-1945 period. NOTE: When taught jointly with the School of Modern Languages, all lectures, assignments, and readings are in German." }, "INTA3221": { "subject": "INTA", "number": "3221", "name": "Post-Soviet Politics ", - "description": "Focuses on the challenge of building new social, political, and economic systems in Russia, but also considers some of the special problems confronting the other fourteen post-Soviet states. Full Description " + "description": "Focuses on the challenge of building new social, political, and economic systems in Russia, but also considers some of the special problems confronting the other fourteen post-Soviet states." }, "INTA3223": { "subject": "INTA", "number": "3223", "name": "Transatlantic Relations ", - "description": "Analysis of the different aspects of the relationship between the US and the EU and how it is characterized by cooperation, conflict and competition. Full Description " + "description": "Analysis of the different aspects of the relationship between the US and the EU and how it is characterized by cooperation, conflict and competition." }, "INTA3230": { "subject": "INTA", "number": "3230", "name": "Gov't & Politics-China ", - "description": "Investigates the structure and institutions of political power as well as the patterns and features of political change in the contemporary People's Republic of China. Full Description " + "description": "Investigates the structure and institutions of political power as well as the patterns and features of political change in the contemporary People's Republic of China." }, "INTA3231": { "subject": "INTA", "number": "3231", "name": "Gov't & Politics-Japan ", - "description": "Examines the main institutions, policies, and politics of contemporary Japan. Investigates the impact of social, cultural, and economic forces on Japan's government and politics. Full Description " + "description": "Examines the main institutions, policies, and politics of contemporary Japan. Investigates the impact of social, cultural, and economic forces on Japan's government and politics." }, "INTA3240": { "subject": "INTA", "number": "3240", "name": "Gov't & Politics-Africa ", - "description": "A survey of the history, cultures, social systems, governments, economies, and international roles of Africa. Selected case studies of individual countries are presented. Full Description " + "description": "A survey of the history, cultures, social systems, governments, economies, and international roles of Africa. Selected case studies of individual countries are presented." }, "INTA3241": { "subject": "INTA", "number": "3241", "name": "Latin American Politics ", - "description": "Surveys the government and politics of Latin America. The course begins with an overview of the region's geography and history, and then explains why demographic government has had a tenuous existence in this area. Full Description " + "description": "Surveys the government and politics of Latin America. The course begins with an overview of the region's geography and history, and then explains why demographic government has had a tenuous existence in this area." }, "INTA3242": { "subject": "INTA", "number": "3242", "name": "Soccer & Global Politics ", - "description": "An examination of regional and national identity, development, and politics through the history of soccer. Full Description " + "description": "An examination of regional and national identity, development, and politics through the history of soccer." }, "INTA3243": { "subject": "INTA", "number": "3243", "name": "US-Latin American Relat ", - "description": "Study of government and non-governmental influences on policy and effectiveness of political, economic, and military instruments of power in Latin America. Full Description " + "description": "Study of government and non-governmental influences on policy and effectiveness of political, economic, and military instruments of power in Latin America." }, "INTA3260": { "subject": "INTA", "number": "3260", "name": "Middle East Relations ", - "description": "Course will provide an in-depth understanding of the Arab-Israeli conflict using theories of international relations and comparative politics. Full Description " + "description": "Course will provide an in-depth understanding of the Arab-Israeli conflict using theories of international relations and comparative politics." }, "INTA3301": { "subject": "INTA", "number": "3301", "name": "Int'l Political Econ ", - "description": "Analyzes the relationship between political and economic issues in international affairs. Examines the interaction of states and markets in the context of trade, investment, and production. Full Description " + "description": "Analyzes the relationship between political and economic issues in international affairs. Examines the interaction of states and markets in the context of trade, investment, and production." }, "INTA3303": { "subject": "INTA", "number": "3303", "name": "Pol Economy-Development ", - "description": "Surveys theories of economic development and political change, and examines a range of cases that include the European-American experience, the East Asian episode, and the transition from socialism. Full Description " + "description": "Surveys theories of economic development and political change, and examines a range of cases that include the European-American experience, the East Asian episode, and the transition from socialism." }, "INTA3304": { "subject": "INTA", "number": "3304", "name": "Int'l Trade & Production ", - "description": "Examines the political economy of international trade and the global production process with particular emphasis on conflict and cooperation in national competition for high- technology industries. Full Description " + "description": "Examines the political economy of international trade and the global production process with particular emphasis on conflict and cooperation in national competition for high- technology industries." }, "INTA3321": { "subject": "INTA", "number": "3321", "name": "Pol Econ-Europe Integrat ", - "description": "Explores the processes and problems of political and economic integration in the European Union, the world's largest trading bloc. Full Description " + "description": "Explores the processes and problems of political and economic integration in the European Union, the world's largest trading bloc." }, "INTA3330": { "subject": "INTA", "number": "3330", "name": "Political Economy-China ", - "description": "Examines the centuries of stagnation and the recent rapid growth of the Chinese economy, and seeks to understand the current interaction between politics and economic development in the People's Republic of China. Full Description " + "description": "Examines the centuries of stagnation and the recent rapid growth of the Chinese economy, and seeks to understand the current interaction between politics and economic development in the People's Republic of China." }, "INTA3331": { "subject": "INTA", "number": "3331", "name": "Political Economy-Japan ", - "description": "Surveys the political foundations and economic achievements of modern Japan. Explores the interaction of domestic and international forces, and analyzes Japan's changing world role. Full Description " + "description": "Surveys the political foundations and economic achievements of modern Japan. Explores the interaction of domestic and international forces, and analyzes Japan's changing world role." }, "INTA3773": { "subject": "INTA", "number": "3773", "name": "Global Issues&Leadership ", - "description": "Invited project based seminar: Uses global issues to explore diverse viewpoints, cultures and cognitive biases to develop leadership and presentation skills in small diverse groups. Full Description " + "description": "Invited project based seminar: Uses global issues to explore diverse viewpoints, cultures and cognitive biases to develop leadership and presentation skills in small diverse groups." }, "INTA3803": { "subject": "INTA", "number": "3803", "name": "Special Topics ", - "description": "Selected topics will vary from term to term. Full Description " + "description": "Selected topics will vary from term to term." }, "INTA3813": { "subject": "INTA", "number": "3813", "name": "Specil Topics ", - "description": "Selected topics will vary from term to term. Full Description " + "description": "Selected topics will vary from term to term." }, "INTA3823": { "subject": "INTA", "number": "3823", "name": "Special Topics ", - "description": "Topics of current interest in International Affairs. Full Description " + "description": "Topics of current interest in International Affairs." }, "INTA3833": { "subject": "INTA", "number": "3833", "name": "Special Topics ", - "description": "Topics of current interest in International Affairs. Full Description " + "description": "Topics of current interest in International Affairs." }, "INTA3XXX": { "subject": "INTA", "number": "3XXX", "name": "Int'l Affairs Elective ", - "description": " Full Description " + "description": "" }, "INTA4007": { "subject": "INTA", "number": "4007", "name": "Intell & Int'l Security ", - "description": "This coures examines the history, nature and business of secret intelligence as a critical element of national and international security, with special emphasis given to its role in the global war on terror, and the relationship between the intelligence community and policy makers. Full Description " + "description": "This coures examines the history, nature and business of secret intelligence as a critical element of national and international security, with special emphasis given to its role in the global war on terror, and the relationship between the intelligence community and policy makers." }, "INTA4011": { "subject": "INTA", "number": "4011", "name": "Technology& Military Org ", - "description": "Addresses the impact of technological developments on the evolution of military organization and on international conflict from the Battle of Agincourt (1415) to the Gulf War (1991). Full Description " + "description": "Addresses the impact of technological developments on the evolution of military organization and on international conflict from the Battle of Agincourt (1415) to the Gulf War (1991)." }, "INTA4014": { "subject": "INTA", "number": "4014", "name": "Scenario and Pathgaming ", - "description": "Introduces students to the construction and presentation of formalized scenarios for international planning, and into the formation, implementation, and assessment of path games. Credit not allowed for both INTA 4014 and INTA 6014. Full Description " + "description": "Introduces students to the construction and presentation of formalized scenarios for international planning, and into the formation, implementation, and assessment of path games. Credit not allowed for both INTA 4014 and INTA 6014." }, "INTA4016": { "subject": "INTA", "number": "4016", "name": "Strategy & Arms Control ", - "description": "Explores elements of military strategy and tactics, weapons proliferation, and arms control efforts. Full Description " + "description": "Explores elements of military strategy and tactics, weapons proliferation, and arms control efforts." }, "INTA4040": { "subject": "INTA", "number": "4040", "name": "Environmental Politics ", - "description": "Examines the interface between politics and the environment. Foci include sustainable development, the politics of the rain forest, eco-tourism, and export agriculture and the environment. Full Description " + "description": "Examines the interface between politics and the environment. Foci include sustainable development, the politics of the rain forest, eco-tourism, and export agriculture and the environment." }, "INTA4050": { "subject": "INTA", "number": "4050", "name": "Int'l Affair&Tech Policy ", - "description": "International policy issues in which science and technology figure prominently. Topics include: health, environment, information technologies, arms control and defense, critical infrastructure, transportation, and energy. Emphasis placed on policy analysis and formation. Full Description " + "description": "International policy issues in which science and technology figure prominently. Topics include: health, environment, information technologies, arms control and defense, critical infrastructure, transportation, and energy. Emphasis placed on policy analysis and formation." }, "INTA4060": { "subject": "INTA", "number": "4060", "name": "International Law ", - "description": "Explores major issues, concepts and cases in public international law and their policy ramifications. Specific topics include human rights, armed conflict, crimes against humanity, and the environment. Full Description " + "description": "Explores major issues, concepts and cases in public international law and their policy ramifications. Specific topics include human rights, armed conflict, crimes against humanity, and the environment." }, "INTA4101": { "subject": "INTA", "number": "4101", "name": "Vietnam War Politics ", - "description": "Strategic approaches and political environments of the United States, North Vietnam, China, and the USSR during 1954-1975 Vietnam War. Full Description " + "description": "Strategic approaches and political environments of the United States, North Vietnam, China, and the USSR during 1954-1975 Vietnam War." }, "INTA4121": { "subject": "INTA", "number": "4121", "name": "Sem Europe-Euro Security ", - "description": "Examines the history, institutional structure, and functions, as well as current policy challenges facing NATO and other European security arrangements. Full Description " + "description": "Examines the history, institutional structure, and functions, as well as current policy challenges facing NATO and other European security arrangements." }, "INTA4230": { "subject": "INTA", "number": "4230", "name": "Sem in Europe-Euro Union ", - "description": "Explores the history and processes of economic and political integration within the framework of the European Union. Full Description " + "description": "Explores the history and processes of economic and political integration within the framework of the European Union." }, "INTA4240": { "subject": "INTA", "number": "4240", "name": "Argentine Politics ", - "description": "Survey of the politics, history, and culture of Argentina. Topics include Argentine economic and political failure, the politics of immigration, and the relationship between culture and development. Full Description " + "description": "Survey of the politics, history, and culture of Argentina. Topics include Argentine economic and political failure, the politics of immigration, and the relationship between culture and development." }, "INTA4241": { "subject": "INTA", "number": "4241", "name": "Democracy-Third World ", - "description": "Surveys the Third World democratization. Assesses various theories of democratization. Examines various measures of democracy and explores the depth and consolidation of the current democratization boom. Full Description " + "description": "Surveys the Third World democratization. Assesses various theories of democratization. Examines various measures of democracy and explores the depth and consolidation of the current democratization boom." }, "INTA4330": { "subject": "INTA", "number": "4330", "name": "Chinese Economic Reform ", - "description": "Addresses the profound and consequential process of the Chinese economic reform that started at the end of the 1970s and has led to China's rapid economic growth. Full Description " + "description": "Addresses the profound and consequential process of the Chinese economic reform that started at the end of the 1970s and has led to China's rapid economic growth." }, "INTA4331": { "subject": "INTA", "number": "4331", "name": "Chinese Politics ", - "description": "Investigates the organizational apparatus through which the Chinese Communist Party exercises leadership over politics and society, and the way in which reforms have changed those relationships. Full Description " + "description": "Investigates the organizational apparatus through which the Chinese Communist Party exercises leadership over politics and society, and the way in which reforms have changed those relationships." }, "INTA4332": { "subject": "INTA", "number": "4332", "name": "Chinese Institutions ", - "description": "Supervised field research on the Chinese institutions and policy-making process especially in the areas of economic and social issues. Full Description " + "description": "Supervised field research on the Chinese institutions and policy-making process especially in the areas of economic and social issues." }, "INTA4333": { "subject": "INTA", "number": "4333", "name": "Korean Security Policy ", - "description": "An examination of the principal policy issues facing the United States with regard to the Korean Peninsula and the principal neighboring states, China and Japan. Full Description " + "description": "An examination of the principal policy issues facing the United States with regard to the Korean Peninsula and the principal neighboring states, China and Japan." }, "INTA4340": { "subject": "INTA", "number": "4340", "name": "Latin American Economics ", - "description": "Examines institutional, interest group, international, and economic inputs and outputs of regional integration. Full Description " + "description": "Examines institutional, interest group, international, and economic inputs and outputs of regional integration." }, "INTA4500": { "subject": "INTA", "number": "4500", "name": "INTA Pro-Seminar ", - "description": "Capstone experience in which students formulate strategies and policies to cope with international problems. Themes vary from seminar to seminar. Credit not allowed for both INTA 4500 and INTA 4400. Full Description " + "description": "Capstone experience in which students formulate strategies and policies to cope with international problems. Themes vary from seminar to seminar. Credit not allowed for both INTA 4500 and INTA 4400." }, "INTA4698": { "subject": "INTA", "number": "4698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "INTA4699": { "subject": "INTA", "number": "4699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "INTA4740": { "subject": "INTA", "number": "4740", "name": "Sem-Political Economy ", - "description": "Capstone experience in which students apply tools of political economy to international issues. Crosslisted with ECOn 4740. Full Description " + "description": "Capstone experience in which students apply tools of political economy to international issues. Crosslisted with ECOn 4740." }, "INTA4741": { "subject": "INTA", "number": "4741", "name": "Thesis-Political Economy ", - "description": "Individual project applying the tools of political economy to international issues. Crosslisted with ECON 4741. Full Description " + "description": "Individual project applying the tools of political economy to international issues. Crosslisted with ECON 4741." }, "INTA4742": { "subject": "INTA", "number": "4742", "name": "Mod, Sim&Military Gaming ", - "description": "Creation and use of modeling and simulation tools to analyze and train students regarding strategic events in international relations. Credit not allowed for both INTA 4742 and INTA 6742 (or CSE 6742 or CS 4343). Full Description " + "description": "Creation and use of modeling and simulation tools to analyze and train students regarding strategic events in international relations. Credit not allowed for both INTA 4742 and INTA 6742 (or CSE 6742 or CS 4343)." }, "INTA4743": { "subject": "INTA", "number": "4743", "name": "Japan Society & Politics ", - "description": "Surveys key aspects of Japanese society and politics through the use of Japanese language readings, films, and other instructionsal materials. Course taught mostly in Japanese. Crosslisted with JAPN 4743. Full Description " + "description": "Surveys key aspects of Japanese society and politics through the use of Japanese language readings, films, and other instructionsal materials. Course taught mostly in Japanese. Crosslisted with JAPN 4743." }, "INTA4744": { "subject": "INTA", "number": "4744", "name": "Global Develop Capstone ", - "description": "Teams develop solutions to multidisciplinary problems selected from globalization, food security, infrastructure, health, water, sanitation, hygiene, ecosystem resilience, services, capacity building, and urbanization. Full Description " + "description": "Teams develop solutions to multidisciplinary problems selected from globalization, food security, infrastructure, health, water, sanitation, hygiene, ecosystem resilience, services, capacity building, and urbanization." }, "INTA4803": { "subject": "INTA", "number": "4803", "name": "Special Topics ", - "description": "Selected topics will vary from term to term. Full Description " + "description": "Selected topics will vary from term to term." }, "INTA4811": { "subject": "INTA", "number": "4811", "name": "Special Topics ", - "description": "Topics of interest not covered in the regular course offerings. Full Description " + "description": "Topics of interest not covered in the regular course offerings." }, "INTA4812": { "subject": "INTA", "number": "4812", "name": "Special Topics ", - "description": "Topics of interest not covered in the regular course offerings. Full Description " + "description": "Topics of interest not covered in the regular course offerings." }, "INTA4813": { "subject": "INTA", "number": "4813", "name": "Special Topics ", - "description": "Topics of interest not covered in the regular course offerings. Full Description " + "description": "Topics of interest not covered in the regular course offerings." }, "INTA4814": { "subject": "INTA", "number": "4814", "name": "Special Topics ", - "description": "Topics of interest not covered in the regular course offerings. Full Description " + "description": "Topics of interest not covered in the regular course offerings." }, "INTA4815": { "subject": "INTA", "number": "4815", "name": "Special Topics ", - "description": "Topics of interest not covered in the regular course offerings. Full Description " + "description": "Topics of interest not covered in the regular course offerings." }, "INTA4823": { "subject": "INTA", "number": "4823", "name": "Special Topics ", - "description": "Selected topics will vary from term to term. Full Description " + "description": "Selected topics will vary from term to term." }, "INTA4833": { "subject": "INTA", "number": "4833", "name": "Special Topics ", - "description": "Selected topics will vary from term to term. Full Description " + "description": "Selected topics will vary from term to term." }, "INTA4901": { "subject": "INTA", "number": "4901", "name": "Special Problems ", - "description": "Independent study with a faculty member. Full Description " + "description": "Independent study with a faculty member." }, "INTA4902": { "subject": "INTA", "number": "4902", "name": "Special Problems ", - "description": "Independent study with a faculty member. Full Description " + "description": "Independent study with a faculty member." }, "INTA4903": { "subject": "INTA", "number": "4903", "name": "Special Problems ", - "description": "Independent study with a faculty member. Full Description " + "description": "Independent study with a faculty member." }, "INTA4XXX": { "subject": "INTA", "number": "4XXX", "name": "Int'l Affairs Elective ", - "description": " Full Description " + "description": "" }, "INTA6002": { "subject": "INTA", "number": "6002", "name": "Strategic Decisions ", - "description": "Examines the dynamics of individual, group, organizational, cross-cultural, and international interaction. Full Description " + "description": "Examines the dynamics of individual, group, organizational, cross-cultural, and international interaction." }, "INTA6003": { "subject": "INTA", "number": "6003", "name": "Empirical Research Meth ", - "description": "This course introduces research methods in international affairs. It emphasizes writing research proposals, empirical techniques, gathering and assembling data, and methods for analyzing and reporting results. Full Description " + "description": "This course introduces research methods in international affairs. It emphasizes writing research proposals, empirical techniques, gathering and assembling data, and methods for analyzing and reporting results." }, "INTA6004": { "subject": "INTA", "number": "6004", "name": "Model,Forecast&Decision ", - "description": "This course introduces modeling and forecasting in strategic decision making, analysis of long-term developments, path gaming, formal analysis of games, and simulation. Full Description " + "description": "This course introduces modeling and forecasting in strategic decision making, analysis of long-term developments, path gaming, formal analysis of games, and simulation." }, "INTA6011": { "subject": "INTA", "number": "6011", "name": "Intl Trade&Tech Transfer ", - "description": "This course examines the relationship between international trade and technology transfer and their effect on national competitiveness, national security, and international cooperation and coercion. Full Description " + "description": "This course examines the relationship between international trade and technology transfer and their effect on national competitiveness, national security, and international cooperation and coercion." }, "INTA6014": { "subject": "INTA", "number": "6014", "name": "Scenario and Path Gaming ", - "description": "Introduces students to the construction and presentation of formalized scenerios for international planning, and into the formulation, implementation and assessment of path games. Credit not allowed for both INTA 6014 and INTA 4014. Full Description " + "description": "Introduces students to the construction and presentation of formalized scenerios for international planning, and into the formulation, implementation and assessment of path games. Credit not allowed for both INTA 6014 and INTA 4014." }, "INTA6015": { "subject": "INTA", "number": "6015", "name": "Technology& Military Org ", - "description": "Explores changes in military technology, organization, and operations leading to new conceptions of the conduct of warfare as a result of revolutions in military affairs. Full Description " + "description": "Explores changes in military technology, organization, and operations leading to new conceptions of the conduct of warfare as a result of revolutions in military affairs." }, "INTA6016": { "subject": "INTA", "number": "6016", "name": "Strategy & Arms Control ", - "description": "Explores elements of military strategy and tactics, weapons proliferation, and arms control efforts. Full Description " + "description": "Explores elements of military strategy and tactics, weapons proliferation, and arms control efforts." }, "INTA6022": { "subject": "INTA", "number": "6022", "name": "Ethics & Intl Affairs ", - "description": "An overview of the main tradition and theories of international ethics applied to four major issues: intervention and the use of force; human rights; self- determination; and global distributive justice. Full Description " + "description": "An overview of the main tradition and theories of international ethics applied to four major issues: intervention and the use of force; human rights; self- determination; and global distributive justice." }, "INTA6102": { "subject": "INTA", "number": "6102", "name": "Intl Relations Theory ", - "description": "This course provides an introduction to theoretical approaches to understanding international relations. The focus of the course is on system-level theories and sub-systematic-level theories. Full Description " + "description": "This course provides an introduction to theoretical approaches to understanding international relations. The focus of the course is on system-level theories and sub-systematic-level theories." }, "INTA6103": { "subject": "INTA", "number": "6103", "name": "International Security ", - "description": "Examines traditional and nontraditional issues in international security, including the uses of military force, military strategy and policy, arms control, peacekeeping, the environment, and migration. Full Description " + "description": "Examines traditional and nontraditional issues in international security, including the uses of military force, military strategy and policy, arms control, peacekeeping, the environment, and migration." }, "INTA6105": { "subject": "INTA", "number": "6105", "name": "Intl Institutional Dsgn ", - "description": "This course examines international institutions and their effect on foreign policy decision makers. Specific topics include: the theoretical study of cooperation; supranatural organizations and informal institutions. Full Description " + "description": "This course examines international institutions and their effect on foreign policy decision makers. Specific topics include: the theoretical study of cooperation; supranatural organizations and informal institutions." }, "INTA6106": { "subject": "INTA", "number": "6106", "name": "The State-Intl Affairs ", - "description": "Explores various concepts of the state in international affairs as well as the concepts of sovereignty and revolution. Full Description " + "description": "Explores various concepts of the state in international affairs as well as the concepts of sovereignty and revolution." }, "INTA6111": { "subject": "INTA", "number": "6111", "name": "US Foreign Secur Strat ", - "description": "This course focuses on the design and implementation of U.S. foreign policy and national strategy in the areas of arms control, the Third World, and economic policy. Full Description " + "description": "This course focuses on the design and implementation of U.S. foreign policy and national strategy in the areas of arms control, the Third World, and economic policy." }, "INTA6121": { "subject": "INTA", "number": "6121", "name": "Sem in Europe: Euro Sec ", - "description": "This course examines the history, institutional structure and functions, and current policy challenges facing the North Atlantic Treaty Organization (NATO) and other European security institutions. Full Description " + "description": "This course examines the history, institutional structure and functions, and current policy challenges facing the North Atlantic Treaty Organization (NATO) and other European security institutions." }, "INTA6131": { "subject": "INTA", "number": "6131", "name": "Pacific Security Issues ", - "description": "Examines past, present, and future security concerns in the Pacific, including the Korean pennisula, Japanese defense, the emergence of China as a military power, and the forward basing of American troops and material. Full Description " + "description": "Examines past, present, and future security concerns in the Pacific, including the Korean pennisula, Japanese defense, the emergence of China as a military power, and the forward basing of American troops and material." }, "INTA6202": { "subject": "INTA", "number": "6202", "name": "Comparative Politics ", - "description": "This course surveys the major political types of the late twentieth century world and explores their various development characteristics. Full Description " + "description": "This course surveys the major political types of the late twentieth century world and explores their various development characteristics." }, "INTA6203": { "subject": "INTA", "number": "6203", "name": "Compar Institut Design ", - "description": "This course examines the creation, maintenance, and evolution of political institutions, and the ways in which institutions affect policy choice. Full Description " + "description": "This course examines the creation, maintenance, and evolution of political institutions, and the ways in which institutions affect policy choice." }, "INTA6302": { "subject": "INTA", "number": "6302", "name": "Intl Political Economy ", - "description": "This course is an introduction to the politics of international economic relations. Major theoretical approaches are applied to international trade, international monetary relations, and global production in the modern era. Full Description " + "description": "This course is an introduction to the politics of international economic relations. Major theoretical approaches are applied to international trade, international monetary relations, and global production in the modern era." }, "INTA6304": { "subject": "INTA", "number": "6304", "name": "Modernization&Developmnt ", - "description": "This course empirically examines processes in which a country's organizational structure is altered through economic development, political democratization, and/or social liberalization. Full Description " + "description": "This course empirically examines processes in which a country's organizational structure is altered through economic development, political democratization, and/or social liberalization." }, "INTA6306": { "subject": "INTA", "number": "6306", "name": "Globalization ", - "description": "Research seminar exploring theoretical perspectives on globalization and the political and economic issues facing modern states and their citizens in a \"borderless\" world. Full Description " + "description": "Research seminar exploring theoretical perspectives on globalization and the political and economic issues facing modern states and their citizens in a \"borderless\" world." }, "INTA6320": { "subject": "INTA", "number": "6320", "name": "Sem in Europe-Euro Union ", - "description": "This course explores the history and processes of economic and political integration within the framework of the European Union. Full Description " + "description": "This course explores the history and processes of economic and political integration within the framework of the European Union." }, "INTA6330": { "subject": "INTA", "number": "6330", "name": "Pol Econ-East Asia ", - "description": "This course explores the politics of economic development in China, Japan, and Korea. Focal issues include: trade patterns, financial institutions, trade-bloc formation, industrial competitiveness, and the status of U.S.-East Asian economic relations. Full Description " + "description": "This course explores the politics of economic development in China, Japan, and Korea. Focal issues include: trade patterns, financial institutions, trade-bloc formation, industrial competitiveness, and the status of U.S.-East Asian economic relations." }, "INTA6331": { "subject": "INTA", "number": "6331", "name": "Chinese Political Econ ", - "description": "This course examines the Chinese social and economic development from the seventh century to current day. Specific emphasis is placed on the political economic reforms of Deng Xiaoping and assessing the implications of continued Chinese modernization. Full Description " + "description": "This course examines the Chinese social and economic development from the seventh century to current day. Specific emphasis is placed on the political economic reforms of Deng Xiaoping and assessing the implications of continued Chinese modernization." }, "INTA6740": { "subject": "INTA", "number": "6740", "name": "Innovation and the State ", - "description": "Research seminar exploring the role of the state in industrial development, innovation and business-government relations. Special attention given to science and technology policies and their influence in different international and industrial contexts. Crosslisted with PUBP 6740. Full Description " + "description": "Research seminar exploring the role of the state in industrial development, innovation and business-government relations. Special attention given to science and technology policies and their influence in different international and industrial contexts. Crosslisted with PUBP 6740." }, "INTA6742": { "subject": "INTA", "number": "6742", "name": "Mod, Sim&Military Gaming ", - "description": "Focuses on the creation and use of modeling and simulation tools to analyze and train students regarding strategic events in international relations. Credit not allowed for both INTA 6742 and CSE 6742 (or INTA 4742 or CS 4343). Full Description " + "description": "Focuses on the creation and use of modeling and simulation tools to analyze and train students regarding strategic events in international relations. Credit not allowed for both INTA 6742 and CSE 6742 (or INTA 4742 or CS 4343)." }, "INTA6753": { "subject": "INTA", "number": "6753", "name": "Comp Science&Tech Policy ", - "description": "Examination of the social, political, and cultural contexts of science and technology, and how they affect the research, development, and regulatory policies of nations. Crosslisted with PUBP 6753. Full Description " + "description": "Examination of the social, political, and cultural contexts of science and technology, and how they affect the research, development, and regulatory policies of nations. Crosslisted with PUBP 6753." }, "INTA6XXX": { "subject": "INTA", "number": "6XXX", "name": "Intl Affairs Elective ", - "description": " Full Description " + "description": "" }, "INTA7000": { "subject": "INTA", "number": "7000", "name": "Master's Thesis ", - "description": "Under the direct supervision of one or more faculty members, graduate students will complete an original research design and execute that study. Full Description " + "description": "Under the direct supervision of one or more faculty members, graduate students will complete an original research design and execute that study." }, "INTA8000": { "subject": "INTA", "number": "8000", "name": "Sci,Tech&Int'l Affairs I ", - "description": "Research course introducing engineers and scientists to issues in science and technology as related to international security policy and development. Full Description " + "description": "Research course introducing engineers and scientists to issues in science and technology as related to international security policy and development." }, "INTA8001": { "subject": "INTA", "number": "8001", "name": "Sci,Tech&Intl Affairs II ", - "description": "Research course introducing engineers and scientists to issues in science and technology as related to international security policy and development. Full Description " + "description": "Research course introducing engineers and scientists to issues in science and technology as related to international security policy and development." }, "INTA8010": { "subject": "INTA", "number": "8010", "name": "IAST Ph.D. Proseminar ", - "description": "An overview of resources and practices of doctoral research in International Affairs, Science, and Technology. Meetings will consist of faculty guest lectures and talks from Library personnel and others. Full Description " + "description": "An overview of resources and practices of doctoral research in International Affairs, Science, and Technology. Meetings will consist of faculty guest lectures and talks from Library personnel and others." }, "INTA8801": { "subject": "INTA", "number": "8801", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "INTA8802": { "subject": "INTA", "number": "8802", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "INTA8803": { "subject": "INTA", "number": "8803", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "INTA8804": { "subject": "INTA", "number": "8804", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "INTA8805": { "subject": "INTA", "number": "8805", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "INTA8813": { "subject": "INTA", "number": "8813", "name": "Special Topics ", - "description": "Topics of interest in the field of international affairs. Full Description " + "description": "Topics of interest in the field of international affairs." }, "INTA8823": { "subject": "INTA", "number": "8823", "name": "Special Topics ", - "description": "Topics of interest in International Affairs. Full Description " + "description": "Topics of interest in International Affairs." }, "INTA8833": { "subject": "INTA", "number": "8833", "name": "Special Topics ", - "description": "Topics of interest in the field of International Affairs. Full Description " + "description": "Topics of interest in the field of International Affairs." }, "INTA8901": { "subject": "INTA", "number": "8901", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "INTA8902": { "subject": "INTA", "number": "8902", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "INTA8903": { "subject": "INTA", "number": "8903", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "INTA8997": { "subject": "INTA", "number": "8997", "name": "Teaching Assistantship ", - "description": "For graduate students with a teaching assistantship. Full Description " + "description": "For graduate students with a teaching assistantship." }, "INTA8998": { "subject": "INTA", "number": "8998", "name": "Research Assistantship ", - "description": "For graduate students with a research assistantship. Full Description " + "description": "For graduate students with a research assistantship." }, "INTA9000": { "subject": "INTA", "number": "9000", "name": "Doctoral Thesis ", - "description": " Full Description " + "description": "" }, "INTN2000": { "subject": "INTN", "number": "2000", "name": "Professional Internship ", - "description": "Academic related professional work experience. Full Description " + "description": "Academic related professional work experience." }, "INTN2006": { "subject": "INTN", "number": "2006", "name": "P/T Professional Internship ", - "description": "Supervised domestic work experience for freshmen and sophomore interns working 20-29 hours per week in their major field of study for a semester. Full Description " + "description": "Supervised domestic work experience for freshmen and sophomore interns working 20-29 hours per week in their major field of study for a semester." }, "INTN2009": { "subject": "INTN", "number": "2009", "name": "P/T Professional Internship ", - "description": "Supervised domestic work experience for freshmen and sophomore interns working 30 to 35 hours per week in their major field of study for a semester. Full Description " + "description": "Supervised domestic work experience for freshmen and sophomore interns working 30 to 35 hours per week in their major field of study for a semester." }, "INTN3011": { "subject": "INTN", "number": "3011", "name": "Work Abroad Semester ", - "description": "Undergradute interns working outside the United States. Full Description " + "description": "Undergradute interns working outside the United States." }, "INTN3016": { "subject": "INTN", "number": "3016", "name": "Work Abroad Semester ", - "description": "Supervised professional international experience for undergraduate interns working abroad full-time in their major field of study for approximately 50% of a semester. Full Description " + "description": "Supervised professional international experience for undergraduate interns working abroad full-time in their major field of study for approximately 50% of a semester." }, "INTN3019": { "subject": "INTN", "number": "3019", "name": "Work Abroad Semester ", - "description": "Supervised professional international experience for undergraduate interns working abroad full-time in their major field of study for approximately 75% of a semester. Full Description " + "description": "Supervised professional international experience for undergraduate interns working abroad full-time in their major field of study for approximately 75% of a semester." }, "INTN4000": { "subject": "INTN", "number": "4000", "name": "Professional Internship ", - "description": "Academis related professional work experience. Full Description " + "description": "Academis related professional work experience." }, "INTN4006": { "subject": "INTN", "number": "4006", "name": "P/T Professional Internship ", - "description": "Supervised domestic work experience for junior or senior interns working 20-29 hours per week in their major field of study for a semester. Full Description " + "description": "Supervised domestic work experience for junior or senior interns working 20-29 hours per week in their major field of study for a semester." }, "INTN4009": { "subject": "INTN", "number": "4009", "name": "P/T Professional Internship ", - "description": "Supervised domestic work experience for junior or senior interns working 30-35 hours per week in their major field of study for a semester. Full Description " + "description": "Supervised domestic work experience for junior or senior interns working 30-35 hours per week in their major field of study for a semester." }, "IPCO3011": { "subject": "IPCO", "number": "3011", "name": "Int'l Plan Co-op Abroad ", - "description": "International Plan Co-ops working outside the United States. Full Description " + "description": "International Plan Co-ops working outside the United States." }, "IPFS3012": { "subject": "IPFS", "number": "3012", "name": "Int'l Plan-Exchange Prgm ", - "description": "Placeholder course to document Intrenationl Plan students who are studying abroad in participation with an exchange program and in fullfullment of their International Plan requirements. Full Description " + "description": "Placeholder course to document Intrenationl Plan students who are studying abroad in participation with an exchange program and in fullfullment of their International Plan requirements." }, "IPIN3011": { "subject": "IPIN", "number": "3011", "name": "Int'l Plan Intern Abroad ", - "description": "International Plan interns working outside the United States. Full Description " + "description": "International Plan interns working outside the United States." }, "IPSA3012": { "subject": "IPSA", "number": "3012", "name": "Int'l Plan-Study Abroad ", - "description": "Placeholder course to document International Plan students who are studying abroad in participation with a summer, faculty-led program and in fullfullment of their International Plan requirements. Full Description " + "description": "Placeholder course to document International Plan students who are studying abroad in participation with a summer, faculty-led program and in fullfullment of their International Plan requirements." }, "ISYE1XXX": { "subject": "ISYE", "number": "1XXX", "name": "Indust&Sys Engr ELective ", - "description": " Full Description " + "description": "" }, "ISYE2027": { "subject": "ISYE", "number": "2027", "name": "Probability With Apps ", - "description": "Topics include conditional probability, density and distribution functions from engineering, expectation, conditional expectation, laws of large numbers, central limit theorem, and introduction to Poisson Processes. Full Description " + "description": "Topics include conditional probability, density and distribution functions from engineering, expectation, conditional expectation, laws of large numbers, central limit theorem, and introduction to Poisson Processes." }, "ISYE2028": { "subject": "ISYE", "number": "2028", "name": "Basic Statistical Meth ", - "description": "Point and interval estimation of systems parameters, statistical decision making about differences in system parameters, analysis and modeling of relationships between variables. Full Description " + "description": "Point and interval estimation of systems parameters, statistical decision making about differences in system parameters, analysis and modeling of relationships between variables." }, "ISYE2127": { "subject": "ISYE", "number": "2127", "name": "Honors Probability ", - "description": "Topics parallel those in ISYE 2027 with an intended treatment that is more innovative and challenging. Credit not allowed for both ISYE 2127 and 2027. Full Description " + "description": "Topics parallel those in ISYE 2027 with an intended treatment that is more innovative and challenging. Credit not allowed for both ISYE 2127 and 2027." }, "ISYE2128": { "subject": "ISYE", "number": "2128", "name": "Honors Statistics ", - "description": "Topics parallel to those in ISYE 2028 with an intended treatment that is more innovative and challenging. Credit not given for both ISYE 2028 and 2128. Full Description " + "description": "Topics parallel to those in ISYE 2028 with an intended treatment that is more innovative and challenging. Credit not given for both ISYE 2028 and 2128." }, "ISYE2698": { "subject": "ISYE", "number": "2698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "ISYE2699": { "subject": "ISYE", "number": "2699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "ISYE2801": { "subject": "ISYE", "number": "2801", "name": "Special Topics ", - "description": "Courses in special topics of timely interest to the profession, conducted by resident or visiting faculty. Full Description " + "description": "Courses in special topics of timely interest to the profession, conducted by resident or visiting faculty." }, "ISYE2XXX": { "subject": "ISYE", "number": "2XXX", "name": "Indust&Sys Engr Elective ", - "description": " Full Description " + "description": "" }, "ISYE3025": { "subject": "ISYE", "number": "3025", "name": "Engineering Economy ", - "description": "Introduction to engineering economic decision making, economic decision criteria, discounted cash flow, replacement and timing decisions, risk, depreciation, and income tax. Full Description " + "description": "Introduction to engineering economic decision making, economic decision criteria, discounted cash flow, replacement and timing decisions, risk, depreciation, and income tax." }, "ISYE3039": { "subject": "ISYE", "number": "3039", "name": "Methods-Quality Improve ", - "description": "Topics include quality system requirements, designed experiments, process capability analysis, measurement capability, statistical process control, and acceptance sampling plans. Credit will not be awarded for both ISYE 3039 and ISYE 6382. Full Description " + "description": "Topics include quality system requirements, designed experiments, process capability analysis, measurement capability, statistical process control, and acceptance sampling plans. Credit will not be awarded for both ISYE 3039 and ISYE 6382." }, "ISYE3044": { "subject": "ISYE", "number": "3044", "name": "Simulation Analy & Dsgn ", - "description": "Discrete event simulation methodology emphasizing the statistical basis for simulation modeling and analysis. Overview of computer languages and simulation design applied to various industrial situations. Full Description " + "description": "Discrete event simulation methodology emphasizing the statistical basis for simulation modeling and analysis. Overview of computer languages and simulation design applied to various industrial situations." }, "ISYE3103": { "subject": "ISYE", "number": "3103", "name": "Sply Chain Mod:Logistics ", - "description": "Course focuses on engineering design concepts and optimization models for logistics decision making in three modules: supply chain design, planning and execution, and transportation. Full Description " + "description": "Course focuses on engineering design concepts and optimization models for logistics decision making in three modules: supply chain design, planning and execution, and transportation." }, "ISYE3104": { "subject": "ISYE", "number": "3104", "name": "Sply Chain Mod:Manf&Ware ", - "description": "Design and operation of manufacturing and warehousing facilities. Full Description " + "description": "Design and operation of manufacturing and warehousing facilities." }, "ISYE3133": { "subject": "ISYE", "number": "3133", "name": "Engineering Optimization ", - "description": "Topics include modeling with networks and graphs; linear, nonlinear, and integer programming, construction of models employing modern modeling languages; and general solution strategies. Full Description " + "description": "Topics include modeling with networks and graphs; linear, nonlinear, and integer programming, construction of models employing modern modeling languages; and general solution strategies." }, "ISYE3232": { "subject": "ISYE", "number": "3232", "name": "Stochastic Mfg&Serv Sys ", - "description": "Methods for describing stochastic movements of material in manufacturing facilities, supply chain, and equipment maintenance networks. Includes analysis of congestion, delays, and inventory ordering policies. Full Description " + "description": "Methods for describing stochastic movements of material in manufacturing facilities, supply chain, and equipment maintenance networks. Includes analysis of congestion, delays, and inventory ordering policies." }, "ISYE3770": { "subject": "ISYE", "number": "3770", "name": "Statistics& Applications ", - "description": "Introduction to probability, probability distributions, point estimation, confidence intervals, hypothesis testing, linear regression, and analysis of variance. Crosslisted with MATH 3770 and CEE 3770. Also, credit not awarded for both ISYE 3770 and MATH 3670. Full Description " + "description": "Introduction to probability, probability distributions, point estimation, confidence intervals, hypothesis testing, linear regression, and analysis of variance. Crosslisted with MATH 3770 and CEE 3770. Also, credit not awarded for both ISYE 3770 and MATH 3670." }, "ISYE3790": { "subject": "ISYE", "number": "3790", "name": "Intro-Cognitive Science ", - "description": "Multidisciplinary perspectives on cognitive science. Interdisciplinary approaches to issues in cognition, including memory, language, problem solving, learning, perception, and action. Crosslisted with CS, PST, and PSYC 3790. Full Description " + "description": "Multidisciplinary perspectives on cognitive science. Interdisciplinary approaches to issues in cognition, including memory, language, problem solving, learning, perception, and action. Crosslisted with CS, PST, and PSYC 3790." }, "ISYE3833": { "subject": "ISYE", "number": "3833", "name": "Special Topics ", - "description": "Courses in special topics of timely interest to the profession, conducted by resident or visiting faculty. Full Description " + "description": "Courses in special topics of timely interest to the profession, conducted by resident or visiting faculty." }, "ISYE3XXX": { "subject": "ISYE", "number": "3XXX", "name": "Indust&Sys Engr Elective ", - "description": " Full Description " + "description": "" }, "ISYE4009": { "subject": "ISYE", "number": "4009", "name": "Human Integrated Systems ", - "description": "Topics include general cognitive systems engineering concepts and principles, and specific concepts and principles of interface design, task analysis, prototyping, and empirical usability of evaluation methods. Full Description " + "description": "Topics include general cognitive systems engineering concepts and principles, and specific concepts and principles of interface design, task analysis, prototyping, and empirical usability of evaluation methods." }, "ISYE4031": { "subject": "ISYE", "number": "4031", "name": "Regression/Forecasting ", - "description": "Regression analysis: multiple linear regression, diagnostics, and variable selection. Forecasting: exponential smoothing techniques and autoregressive moving average models. Full Description " + "description": "Regression analysis: multiple linear regression, diagnostics, and variable selection. Forecasting: exponential smoothing techniques and autoregressive moving average models." }, "ISYE4106": { "subject": "ISYE", "number": "4106", "name": "Senior Design ", - "description": "Senior design project requiring student to formulate a project plan with an off-campus enterprise. Includes specific milestones, targets, and evaluation criteria. Full Description " + "description": "Senior design project requiring student to formulate a project plan with an off-campus enterprise. Includes specific milestones, targets, and evaluation criteria." }, "ISYE4111": { "subject": "ISYE", "number": "4111", "name": "Adv Supply Chain Logists ", - "description": "This course is a follow-up to ISyE 3103 that covers optimization models and case studies for logistics network design and logistics operations. Full Description " + "description": "This course is a follow-up to ISyE 3103 that covers optimization models and case studies for logistics network design and logistics operations." }, "ISYE4133": { "subject": "ISYE", "number": "4133", "name": "Advanced Optimization ", - "description": "Theory and implementation of practical methods to find good or optimal solutions to optimization problems too large or complex to solve in a straightforward way. Full Description " + "description": "Theory and implementation of practical methods to find good or optimal solutions to optimization problems too large or complex to solve in a straightforward way." }, "ISYE4232": { "subject": "ISYE", "number": "4232", "name": "Advanced Stochastic Sys ", - "description": "The course will cover Jackson Networks and Markov Decision Processes with applications to production/inventory systems, customer contact centers, revenue management, and health care. Full Description " + "description": "The course will cover Jackson Networks and Markov Decision Processes with applications to production/inventory systems, customer contact centers, revenue management, and health care." }, "ISYE4301": { "subject": "ISYE", "number": "4301", "name": "Supply Chain Economics ", - "description": "The course studies techniques for coordination and collaboration in supply chains. Applications include pricing strategies, revenue management, gaming, and incentives. Full Description " + "description": "The course studies techniques for coordination and collaboration in supply chains. Applications include pricing strategies, revenue management, gaming, and incentives." }, "ISYE4311": { "subject": "ISYE", "number": "4311", "name": "Capital Invest Analysis ", - "description": "Students learn core concepts and techniques for economic decision and analysis of complex capital investment problems that involve dimensions of time, uncertainty and strategy. Full Description " + "description": "Students learn core concepts and techniques for economic decision and analysis of complex capital investment problems that involve dimensions of time, uncertainty and strategy." }, "ISYE4331": { "subject": "ISYE", "number": "4331", "name": "Honors Optimization ", - "description": "Topics parallel those in ISYE 4231 with an intended treatment that is more innovative and challenging. Credit not given for both ISYE 4331 and 4231. Full Description " + "description": "Topics parallel those in ISYE 4231 with an intended treatment that is more innovative and challenging. Credit not given for both ISYE 4331 and 4231." }, "ISYE4698": { "subject": "ISYE", "number": "4698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "ISYE4699": { "subject": "ISYE", "number": "4699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "ISYE4740": { "subject": "ISYE", "number": "4740", "name": "Bio-Inspired Design ", - "description": "We examine evolutionary adaptation as a course for engineering design inspiration, utilizing principles of scaling, adaptability, and robust multifunctionality that characterize biological systems. Credit not allowed for both ISYE 4740 and (BIOL 4740, or PTFE 4740 or MSE 4740 or ME 4740). Full Description " + "description": "We examine evolutionary adaptation as a course for engineering design inspiration, utilizing principles of scaling, adaptability, and robust multifunctionality that characterize biological systems. Credit not allowed for both ISYE 4740 and (BIOL 4740, or PTFE 4740 or MSE 4740 or ME 4740)." }, "ISYE4800": { "subject": "ISYE", "number": "4800", "name": "Special Topics ", - "description": "ISYE Senior Design Preparation. Full Description " + "description": "ISYE Senior Design Preparation." }, "ISYE4801": { "subject": "ISYE", "number": "4801", "name": "Special Topics ", - "description": "Courses in special topics of timely interest to the profession, conducted by resident or visiting faculty. Full Description " + "description": "Courses in special topics of timely interest to the profession, conducted by resident or visiting faculty." }, "ISYE4802": { "subject": "ISYE", "number": "4802", "name": "Special Topics ", - "description": "Courses in special topics of timely interest to the profession, conducted by resident or visiting faculty. Full Description " + "description": "Courses in special topics of timely interest to the profession, conducted by resident or visiting faculty." }, "ISYE4803": { "subject": "ISYE", "number": "4803", "name": "Special Topics ", - "description": "Courses in special topics of timely interest to the profession, conducted by resident or visiting faculty. Full Description " + "description": "Courses in special topics of timely interest to the profession, conducted by resident or visiting faculty." }, "ISYE4813": { "subject": "ISYE", "number": "4813", "name": "Special Topics ", - "description": "Courses in special topics of timely interest to the profession conducted by resident or visiting faculty. Full Description " + "description": "Courses in special topics of timely interest to the profession conducted by resident or visiting faculty." }, "ISYE4823": { "subject": "ISYE", "number": "4823", "name": "Special Topics ", - "description": "Courses in special topics of timely interest to the profession, conducted by resident or visiting faculty. Full Description " + "description": "Courses in special topics of timely interest to the profession, conducted by resident or visiting faculty." }, "ISYE4833": { "subject": "ISYE", "number": "4833", "name": "Honors Topics ", - "description": "Topics of current interest in the field of ISYE that are covered with an appropriately high level of innovation and rigor. Full Description " + "description": "Topics of current interest in the field of ISYE that are covered with an appropriately high level of innovation and rigor." }, "ISYE4991": { "subject": "ISYE", "number": "4991", "name": "Special Problems ", - "description": "A variable hour credit opportunity to develop initiative and apply fundamental principles by performing semioriginal laboratory or research work in ISYE. Full Description " + "description": "A variable hour credit opportunity to develop initiative and apply fundamental principles by performing semioriginal laboratory or research work in ISYE." }, "ISYE4992": { "subject": "ISYE", "number": "4992", "name": "Special Problems ", - "description": "A variable credit hour opportunity to develop initiative and apply fundamental principles by performing semioriginal laboratory or research work in ISYE. Full Description " + "description": "A variable credit hour opportunity to develop initiative and apply fundamental principles by performing semioriginal laboratory or research work in ISYE." }, "ISYE4993": { "subject": "ISYE", "number": "4993", "name": "Special Problems ", - "description": "A variable credit hour opportunity to develop initiative and apply fundamental principles by performing semioriginal laboratory or research work in ISYE. Full Description " + "description": "A variable credit hour opportunity to develop initiative and apply fundamental principles by performing semioriginal laboratory or research work in ISYE." }, "ISYE4XXX": { "subject": "ISYE", "number": "4XXX", "name": "Indust&Sys Engr Elective ", - "description": " Full Description " + "description": "" }, "ISYE6101": { "subject": "ISYE", "number": "6101", "name": "Organizational Behavior ", - "description": "Studies the scientific generation, formalization, and application of the knowledge of individual and group behaviors that engineers need to function effectively within contexts. Full Description " + "description": "Studies the scientific generation, formalization, and application of the knowledge of individual and group behaviors that engineers need to function effectively within contexts." }, "ISYE6201": { "subject": "ISYE", "number": "6201", "name": "Manufacturing Systems ", - "description": "Topics include analysis of flows, bottlenecks and queuing, types of operations, manufacturing inventories, aggregreate production planning, lot sizes and lead times, and pull production systems. Full Description " + "description": "Topics include analysis of flows, bottlenecks and queuing, types of operations, manufacturing inventories, aggregreate production planning, lot sizes and lead times, and pull production systems." }, "ISYE6202": { "subject": "ISYE", "number": "6202", "name": "Warehousing Systems ", - "description": "Topics include design and analysis of materials handling systems, warehouse layout, order picking strategies, warehousing inventories, warehouse management systems, integration of production and distribution systems. Credit will not be awarded for both ISYE 6202 and ISYE 6383. Full Description " + "description": "Topics include design and analysis of materials handling systems, warehouse layout, order picking strategies, warehousing inventories, warehouse management systems, integration of production and distribution systems. Credit will not be awarded for both ISYE 6202 and ISYE 6383." }, "ISYE6203": { "subject": "ISYE", "number": "6203", "name": "Transp&Supply Chain Sys ", - "description": "Topics include supply chain characterization, site location, mode selection, distribution planning, vehicle routing, demand management, replenishment management, geographic information systems, and real-time control issues. Credit will not be awarded for both ISYE 6203 and ISYE 6383. Full Description " + "description": "Topics include supply chain characterization, site location, mode selection, distribution planning, vehicle routing, demand management, replenishment management, geographic information systems, and real-time control issues. Credit will not be awarded for both ISYE 6203 and ISYE 6383." }, "ISYE6205": { "subject": "ISYE", "number": "6205", "name": "Cognitive Engineering ", - "description": "Application of cognitive science concepts to system design, and the development of concepts appropriate for understanding and aiding cognition in naturally or technologically complex environments. Full Description " + "description": "Application of cognitive science concepts to system design, and the development of concepts appropriate for understanding and aiding cognition in naturally or technologically complex environments." }, "ISYE6215": { "subject": "ISYE", "number": "6215", "name": "Human-Machine Systems ", - "description": "The development and use of mathematical models of human behavior are considered. Approaches from estimation theory, control theory, queuing theory, and fuzzy set theory are considered. Full Description " + "description": "The development and use of mathematical models of human behavior are considered. Approaches from estimation theory, control theory, queuing theory, and fuzzy set theory are considered." }, "ISYE6223": { "subject": "ISYE", "number": "6223", "name": "Human Decision Making ", - "description": "Prescriptive and descriptive theories of human decision making are discussed/contrasted. Approaches to aiding human decision making are considered in context of these theoretical frameworks. Full Description " + "description": "Prescriptive and descriptive theories of human decision making are discussed/contrasted. Approaches to aiding human decision making are considered in context of these theoretical frameworks." }, "ISYE6224": { "subject": "ISYE", "number": "6224", "name": "Topics:Human-Integr Sys ", - "description": "State-of-the-art research directions including supervisory control models of human command control tasks; human-computer interface in scheduling and supervision of flexible manufacturing systems. Full Description " + "description": "State-of-the-art research directions including supervisory control models of human command control tasks; human-computer interface in scheduling and supervision of flexible manufacturing systems." }, "ISYE6225": { "subject": "ISYE", "number": "6225", "name": "Engineering Economy ", - "description": "Advanced engineering economy topics, including economic worth, economic optimization under constraints, risk and uncertainty, foundations of utility theory. Full Description " + "description": "Advanced engineering economy topics, including economic worth, economic optimization under constraints, risk and uncertainty, foundations of utility theory." }, "ISYE6227": { "subject": "ISYE", "number": "6227", "name": "Intro to Financial Engr ", - "description": "Advanced techniques for economic analysis of capital investment. Basic terminology and financial engineering concepts for managing and valuing project risk. Real options applications in systems engineering. Full Description " + "description": "Advanced techniques for economic analysis of capital investment. Basic terminology and financial engineering concepts for managing and valuing project risk. Real options applications in systems engineering." }, "ISYE6229": { "subject": "ISYE", "number": "6229", "name": "Productivity Analysis ", - "description": "Modern measurement of productivity measurement and analysis including principles, issues, and latest techniques associated with benchmarking, efficiency measurement, and productivity tracking. Empirical studies and group projects. Full Description " + "description": "Modern measurement of productivity measurement and analysis including principles, issues, and latest techniques associated with benchmarking, efficiency measurement, and productivity tracking. Empirical studies and group projects." }, "ISYE6230": { "subject": "ISYE", "number": "6230", "name": "Economic Decision Analy ", - "description": "Topics include preferences and utilities, social choice, equilibrium concepts, noncooperative and cooperative game theory, price mechanisms, auction mechanisms, voting theory, and incentive compatibility. Full Description " + "description": "Topics include preferences and utilities, social choice, equilibrium concepts, noncooperative and cooperative game theory, price mechanisms, auction mechanisms, voting theory, and incentive compatibility." }, "ISYE6231": { "subject": "ISYE", "number": "6231", "name": "Human Integrated Systems ", - "description": "Analysis and design of complex work domains in technological environments. Credit not allowed for both ISYE 6231 and AE 6721. Full Description " + "description": "Analysis and design of complex work domains in technological environments. Credit not allowed for both ISYE 6231 and AE 6721." }, "ISYE6232": { "subject": "ISYE", "number": "6232", "name": "Real-Time Systems ", - "description": "Study of system safety, human error, and software reliability. Full Description " + "description": "Study of system safety, human error, and software reliability." }, "ISYE6234": { "subject": "ISYE", "number": "6234", "name": "Measurement & Evaluation ", - "description": "Measurements of complex systems including workload, operator strategy, and performance. Full Description " + "description": "Measurements of complex systems including workload, operator strategy, and performance." }, "ISYE6307": { "subject": "ISYE", "number": "6307", "name": "Scheduling Theory ", - "description": "Includes topics in sequencing and scheduling with emphasis on deterministic machine scheduling problems with some stochastic results examined. Complexity of various problems will be analyzed. Full Description " + "description": "Includes topics in sequencing and scheduling with emphasis on deterministic machine scheduling problems with some stochastic results examined. Complexity of various problems will be analyzed." }, "ISYE6320": { "subject": "ISYE", "number": "6320", "name": "Public Impact Apps of OR ", - "description": "The focus is on the health and public applications of Operations Research. Students will complete a group project with a non-profit organization and discuss papers. Full Description " + "description": "The focus is on the health and public applications of Operations Research. Students will complete a group project with a non-profit organization and discuss papers." }, "ISYE6331": { "subject": "ISYE", "number": "6331", "name": "Statistics Sup Chn Engrg ", - "description": "Collection, management, and analysis of supply chain data. Full Description " + "description": "Collection, management, and analysis of supply chain data." }, "ISYE6332": { "subject": "ISYE", "number": "6332", "name": "Finance Sup Chn Engrg ", - "description": "Investment and analysis of operating capital. Full Description " + "description": "Investment and analysis of operating capital." }, "ISYE6333": { "subject": "ISYE", "number": "6333", "name": "Opns Res For Sup Chns I ", - "description": "Deterministic models of supply chains including location and material flow. Optimization techniques including linear programming, network flows, integer programming, and heuristics. Full Description " + "description": "Deterministic models of supply chains including location and material flow. Optimization techniques including linear programming, network flows, integer programming, and heuristics." }, "ISYE6334": { "subject": "ISYE", "number": "6334", "name": "Opns Res For Sup Chns II ", - "description": "Probabilistic models of supply chains, including the effects of variability; models of wholesale and retail demand; forecasting and simulation. Full Description " + "description": "Probabilistic models of supply chains, including the effects of variability; models of wholesale and retail demand; forecasting and simulation." }, "ISYE6335": { "subject": "ISYE", "number": "6335", "name": "Supply Chain Engrg I ", - "description": "Production scheduling; inventory systems; warehousing, including stocking strategies, order-picking, sortation, automation; distribution. Full Description " + "description": "Production scheduling; inventory systems; warehousing, including stocking strategies, order-picking, sortation, automation; distribution." }, "ISYE6336": { "subject": "ISYE", "number": "6336", "name": "Supply Chain Engrg II ", - "description": "Transportation: truck-load and less-than-truckload, and package-courier systems; container shipping, including port operations, steamship scheduling; railroad operations, including intermodal; air cargo. The international freight network and patterns of freight flow. Management and recirculation of trailers/containers. Labor issues. Full Description " + "description": "Transportation: truck-load and less-than-truckload, and package-courier systems; container shipping, including port operations, steamship scheduling; railroad operations, including intermodal; air cargo. The international freight network and patterns of freight flow. Management and recirculation of trailers/containers. Labor issues." }, "ISYE6337": { "subject": "ISYE", "number": "6337", "name": "Supply Chain Engrg III ", - "description": "Problems of coordination and collaboration along the supply chain; make-or-buy decisions; pricing and auctions; wholesale and retail channels; supply chain dynamics, including the bullwhip effect. Distinctive supply chain issues in key economies. Full Description " + "description": "Problems of coordination and collaboration along the supply chain; make-or-buy decisions; pricing and auctions; wholesale and retail channels; supply chain dynamics, including the bullwhip effect. Distinctive supply chain issues in key economies." }, "ISYE6338": { "subject": "ISYE", "number": "6338", "name": "Supply Chain Strategy ", - "description": "Case studies of notable supply chains successes and failures. Full Description " + "description": "Case studies of notable supply chains successes and failures." }, "ISYE6339": { "subject": "ISYE", "number": "6339", "name": "Supply Chain Info Sys ", - "description": "Planning and executing systems for inventory, warehousing, transportation, import/export, etc. Services-oriented architecture, cloud computing; systems integration; RFID and other technologies for scanning and monitoring. Full Description " + "description": "Planning and executing systems for inventory, warehousing, transportation, import/export, etc. Services-oriented architecture, cloud computing; systems integration; RFID and other technologies for scanning and monitoring." }, "ISYE6340": { "subject": "ISYE", "number": "6340", "name": "Seminar in Sup Chn Engrg ", - "description": "Through a program of industry speakers and facility tours, student will learn to assess and critique supply chain practice. Full Description " + "description": "Through a program of industry speakers and facility tours, student will learn to assess and critique supply chain practice." }, "ISYE6341": { "subject": "ISYE", "number": "6341", "name": "Capstone Project I ", - "description": "Small groups of students undertake an industry-sponsored project under faculty guidance. Full Description " + "description": "Small groups of students undertake an industry-sponsored project under faculty guidance." }, "ISYE6342": { "subject": "ISYE", "number": "6342", "name": "Capstone Project II ", - "description": "Small groups of students undertake an industry-sponsored project under faculty guidance. Full Description " + "description": "Small groups of students undertake an industry-sponsored project under faculty guidance." }, "ISYE6380": { "subject": "ISYE", "number": "6380", "name": "Prod Plan & Control ", - "description": "Fundamentals of Production Planning and Lean Manufacturing Full Description " + "description": "Fundamentals of Production Planning and Lean Manufacturing" }, "ISYE6381": { "subject": "ISYE", "number": "6381", "name": "Mfg Reliability ", - "description": "Fundamentals of Reliability and Maintainability Engineering. Full Description " + "description": "Fundamentals of Reliability and Maintainability Engineering." }, "ISYE6382": { "subject": "ISYE", "number": "6382", "name": "Quality & Six Sigma ", - "description": "Fundamentals of Quality Control and Six Sigma Methods. Credit will not be awarded for both ISYE 6382 and ISYE 3039. Full Description " + "description": "Fundamentals of Quality Control and Six Sigma Methods. Credit will not be awarded for both ISYE 6382 and ISYE 3039." }, "ISYE6383": { "subject": "ISYE", "number": "6383", "name": "Manu Supply Chain Ops ", - "description": "Fundamentals of Manufacturing Supply Chain Operations. Credit will not be awarded for both ISYE 6383 and ISYE 6202 or ISYE 6383 and ISYE 6203. Full Description " + "description": "Fundamentals of Manufacturing Supply Chain Operations. Credit will not be awarded for both ISYE 6383 and ISYE 6202 or ISYE 6383 and ISYE 6203." }, "ISYE6401": { "subject": "ISYE", "number": "6401", "name": "Stat Models & Dsgn Expts ", - "description": "Fundamental coverage of topics in multiple regression and factorial experiments. Full Description " + "description": "Fundamental coverage of topics in multiple regression and factorial experiments." }, "ISYE6402": { "subject": "ISYE", "number": "6402", "name": "Time Series Analysis ", - "description": "Basic forecasting methods, ARIMA models, transfer functions. Full Description " + "description": "Basic forecasting methods, ARIMA models, transfer functions." }, "ISYE6404": { "subject": "ISYE", "number": "6404", "name": "Nonparametric Data Analy ", - "description": "Nonparametric statistics and basic categorical data analysis. Full Description " + "description": "Nonparametric statistics and basic categorical data analysis." }, "ISYE6405": { "subject": "ISYE", "number": "6405", "name": "Statistical Meth-Mfg Dgn ", - "description": "Fractional factorial designs, response surface methods. Full Description " + "description": "Fractional factorial designs, response surface methods." }, "ISYE6411": { "subject": "ISYE", "number": "6411", "name": "Statistics ", - "description": "Relationships of statistical estimation and linear models with regression, planning and analysis of experiments, and the analysis of correlated data. More mathematical than ISYE 6401. Full Description " + "description": "Relationships of statistical estimation and linear models with regression, planning and analysis of experiments, and the analysis of correlated data. More mathematical than ISYE 6401." }, "ISYE6412": { "subject": "ISYE", "number": "6412", "name": "Theoretical Statistics ", - "description": "Rigorous introduction to theory of statistical inference. Estimation and testing. Construction and assessment of estimators and tests. Fundamentals of decision theory, minimax, and Bayes Paradigms. Full Description " + "description": "Rigorous introduction to theory of statistical inference. Estimation and testing. Construction and assessment of estimators and tests. Fundamentals of decision theory, minimax, and Bayes Paradigms." }, "ISYE6413": { "subject": "ISYE", "number": "6413", "name": "Dsgn & Analy-Experiments ", - "description": "Analysis of variance, full and fractional factoral designs at two and three levels, orthogonal arrays, response surface methodology, robust parameter design for production/process improvement. Full Description " + "description": "Analysis of variance, full and fractional factoral designs at two and three levels, orthogonal arrays, response surface methodology, robust parameter design for production/process improvement." }, "ISYE6414": { "subject": "ISYE", "number": "6414", "name": "Regression Analysis ", - "description": "Simple and multiple linear regression, inferences and diagnostics, stepwise regression and model selection, advanced regression methods, basic design and analysis of experiments, factorial analysis. Full Description " + "description": "Simple and multiple linear regression, inferences and diagnostics, stepwise regression and model selection, advanced regression methods, basic design and analysis of experiments, factorial analysis." }, "ISYE6416": { "subject": "ISYE", "number": "6416", "name": "Computational Statistics ", - "description": "This class describes the available knowledge regarding statistical computing. Topics include random deviates generation, importance sampling, Monte Carlo Markov chain (MCMC), EM algorithms, bootstrapping, model selection criteria, (e.g. C-p, AIC, etc.) splines, wavelets, and Fourier transform. Full Description " + "description": "This class describes the available knowledge regarding statistical computing. Topics include random deviates generation, importance sampling, Monte Carlo Markov chain (MCMC), EM algorithms, bootstrapping, model selection criteria, (e.g. C-p, AIC, etc.) splines, wavelets, and Fourier transform." }, "ISYE6420": { "subject": "ISYE", "number": "6420", "name": "Bayesian Statistics ", - "description": "Rigorous introduction to the theory of Beysian Statistical Inference. Bayesian estimation and testing. Conjugate priors. Noninformative priors. Bayesian computation. Bayesian networks and Bayesian signal processing. Various engineering applications. Full Description " + "description": "Rigorous introduction to the theory of Beysian Statistical Inference. Bayesian estimation and testing. Conjugate priors. Noninformative priors. Bayesian computation. Bayesian networks and Bayesian signal processing. Various engineering applications." }, "ISYE6421": { "subject": "ISYE", "number": "6421", "name": "Biostatistics ", - "description": "An introduction to fundamental ideas and techniques in Biostatistics, with an emphasis on conceptual understanding and on the analysis of real data sets. Full Description " + "description": "An introduction to fundamental ideas and techniques in Biostatistics, with an emphasis on conceptual understanding and on the analysis of real data sets." }, "ISYE6644": { "subject": "ISYE", "number": "6644", "name": "Simulation ", - "description": "Covers modeling of discrete-event dynamic systems and introduces methods for using these models to solve engineering design and analysis problems. Full Description " + "description": "Covers modeling of discrete-event dynamic systems and introduces methods for using these models to solve engineering design and analysis problems." }, "ISYE6645": { "subject": "ISYE", "number": "6645", "name": "Monte Carlo Methods ", - "description": "Covers state-of-the-art Monte Carlo simulation techniques. These techniques will be used to model and solve a variety of real-world problems from several diverse areas in science and engineering, including supply chain analysis and design, pattern recognition, VLSI design, network reliability, financial engineering, and molecular biology. Full Description " + "description": "Covers state-of-the-art Monte Carlo simulation techniques. These techniques will be used to model and solve a variety of real-world problems from several diverse areas in science and engineering, including supply chain analysis and design, pattern recognition, VLSI design, network reliability, financial engineering, and molecular biology." }, "ISYE6650": { "subject": "ISYE", "number": "6650", "name": "Probabilistic Models ", - "description": "An introduction to basic stochastic processes such as Poisson and Markov processes and their applications in areas such as inventory, reliability, and queueing. Full Description " + "description": "An introduction to basic stochastic processes such as Poisson and Markov processes and their applications in areas such as inventory, reliability, and queueing." }, "ISYE6656": { "subject": "ISYE", "number": "6656", "name": "Queueing Theory ", - "description": "Processing networks with queuing. Performance analysis using Markov process description of system behavior. Applications and numerical studies in manufacturing, system maintainability, computer systems, telecommunication networks. Full Description " + "description": "Processing networks with queuing. Performance analysis using Markov process description of system behavior. Applications and numerical studies in manufacturing, system maintainability, computer systems, telecommunication networks." }, "ISYE6661": { "subject": "ISYE", "number": "6661", "name": "Linear Optimization ", - "description": "Theory, algorithms, and applications of linear programming. Topics include the simplex method and resolution of degeneracy, duality and sensitivity analysis, basis factorization, the dual and revised simplex methods, and geometry of polyhedra. Intended for Ph.D. students. Full Description " + "description": "Theory, algorithms, and applications of linear programming. Topics include the simplex method and resolution of degeneracy, duality and sensitivity analysis, basis factorization, the dual and revised simplex methods, and geometry of polyhedra. Intended for Ph.D. students." }, "ISYE6662": { "subject": "ISYE", "number": "6662", "name": "Discrete Optimization ", - "description": "Fundamentals of integer and combinatorial optimization. Topics include polyhedra, cuts, Lagrangean duality, complexity, and others. This course is intended for Ph.D. students. Full Description " + "description": "Fundamentals of integer and combinatorial optimization. Topics include polyhedra, cuts, Lagrangean duality, complexity, and others. This course is intended for Ph.D. students." }, "ISYE6663": { "subject": "ISYE", "number": "6663", "name": "Nonlinear Optimization ", - "description": "Fundamentals of nonlinear optimization. Topics include optimality conditions; convex programming and duality; unconstrained and constrained methods. Polynomial algorithms and interior point methods. Dual methods. This course is for students seriously considering a PhD. Full Description " + "description": "Fundamentals of nonlinear optimization. Topics include optimality conditions; convex programming and duality; unconstrained and constrained methods. Polynomial algorithms and interior point methods. Dual methods. This course is for students seriously considering a PhD." }, "ISYE6664": { "subject": "ISYE", "number": "6664", "name": "Stochastic Optimization ", - "description": "An introduction to sequential decision making under uncertainty. Much of the course is devoted to the theoretical, modeling, and computational aspects of Markov decision processes. Full Description " + "description": "An introduction to sequential decision making under uncertainty. Much of the course is devoted to the theoretical, modeling, and computational aspects of Markov decision processes." }, "ISYE6669": { "subject": "ISYE", "number": "6669", "name": "Deterministic Optimiz ", - "description": "An introduction to deterministic optimization methodologies including approaches from linear, discrete, and nonlinear optimization including algorithms and computations. Applications will be introduced as appropriate. Full Description " + "description": "An introduction to deterministic optimization methodologies including approaches from linear, discrete, and nonlinear optimization including algorithms and computations. Applications will be introduced as appropriate." }, "ISYE6673": { "subject": "ISYE", "number": "6673", "name": "Financial Optimization ", - "description": "An introduction to optimization techniques with special emphasis on applications to finance, including portfolio optimization, immunization, and risk management. Full Description " + "description": "An introduction to optimization techniques with special emphasis on applications to finance, including portfolio optimization, immunization, and risk management." }, "ISYE6679": { "subject": "ISYE", "number": "6679", "name": "Computational Methods ", - "description": "Strategies and techniques for converting optimization theory into effective computational procedures. Emphasis is on applications in linear, integer, and nonlinear programming; networks and graphs. Full Description " + "description": "Strategies and techniques for converting optimization theory into effective computational procedures. Emphasis is on applications in linear, integer, and nonlinear programming; networks and graphs." }, "ISYE6701": { "subject": "ISYE", "number": "6701", "name": "Energy Technol & Policy ", - "description": "Examines energy production, use, and production, use, and policy using quantitative engineering and policy analysis. Addresses resource constraints, physical principles, and policy analysis methods. Full Description " + "description": "Examines energy production, use, and production, use, and policy using quantitative engineering and policy analysis. Addresses resource constraints, physical principles, and policy analysis methods." }, "ISYE6739": { "subject": "ISYE", "number": "6739", "name": "Statistical Methods ", - "description": "Overview of basic tools used in statistical analysis and modeling. Credit not allowed to students seeking a degree in ISYE. Full Description " + "description": "Overview of basic tools used in statistical analysis and modeling. Credit not allowed to students seeking a degree in ISYE." }, "ISYE6740": { "subject": "ISYE", "number": "6740", "name": "Computational Data Analy ", - "description": "Theoretical/computational foundations of analyzing large/complex modern datasets, including the fundamental concepts of machine learning and data mining needed for both resesarch and practice. Crosslisted with CSE 6740. Full Description " + "description": "Theoretical/computational foundations of analyzing large/complex modern datasets, including the fundamental concepts of machine learning and data mining needed for both resesarch and practice. Crosslisted with CSE 6740." }, "ISYE6759": { "subject": "ISYE", "number": "6759", "name": "Stoch Process-Finance ", - "description": "Mathematical modeling of financial markets, derivative securities pricing, and portfolio optimization. Concepts from probability and mathematics are introduced as needed. Crosslisted with MATH 6759. Full Description " + "description": "Mathematical modeling of financial markets, derivative securities pricing, and portfolio optimization. Concepts from probability and mathematics are introduced as needed. Crosslisted with MATH 6759." }, "ISYE6761": { "subject": "ISYE", "number": "6761", "name": "Stochastic Processes I ", - "description": "Discrete time Markov chains, Poisson and renewal processes; transient and limiting behavior; average cost and utility measures of systems. Intended for Ph.D students. Crosslisted with MATH 6761. Full Description " + "description": "Discrete time Markov chains, Poisson and renewal processes; transient and limiting behavior; average cost and utility measures of systems. Intended for Ph.D students. Crosslisted with MATH 6761." }, "ISYE6762": { "subject": "ISYE", "number": "6762", "name": "Stochastic Processes II ", - "description": "Continuous time Markov chains; uniformization, transient and limiting behavior; Brownian motion and martingales; optional sampling and convergence. Intended for Ph.D. students. Crosslisted with MATH 6762. Full Description " + "description": "Continuous time Markov chains; uniformization, transient and limiting behavior; Brownian motion and martingales; optional sampling and convergence. Intended for Ph.D. students. Crosslisted with MATH 6762." }, "ISYE6767": { "subject": "ISYE", "number": "6767", "name": "Sys-Computation Finance ", - "description": "Introduction to large-scale system design to support computational finance for options, stocks, or other financial instruments. Some programming experience and previous exposure to stocks, bonds, and options required. Crosslisted with MATH 6767. Full Description " + "description": "Introduction to large-scale system design to support computational finance for options, stocks, or other financial instruments. Some programming experience and previous exposure to stocks, bonds, and options required. Crosslisted with MATH 6767." }, "ISYE6769": { "subject": "ISYE", "number": "6769", "name": "Fixed Income Securities ", - "description": "Description, institutional features, and mathematical modeling of fixed income securities. Use of both deterministic and stochastic models. Crosslisted with MATH 6769. Full Description " + "description": "Description, institutional features, and mathematical modeling of fixed income securities. Use of both deterministic and stochastic models. Crosslisted with MATH 6769." }, "ISYE6772": { "subject": "ISYE", "number": "6772", "name": "Mgt Resources-Tech Firms ", - "description": "This course explores the competitive advantage manufacturing and service firms derive from the effective management of their technology, workforce, materials, and information resources. Crosslisted with MGT 6772. Full Description " + "description": "This course explores the competitive advantage manufacturing and service firms derive from the effective management of their technology, workforce, materials, and information resources. Crosslisted with MGT 6772." }, "ISYE6773": { "subject": "ISYE", "number": "6773", "name": "High-Tech Ventures ", - "description": "This course provides a forum for the in-depth examination of issues involving the strategic management of high-tech corporate start-ups and small technology-based businesses. Crosslisted with MGT 6773. Full Description " + "description": "This course provides a forum for the in-depth examination of issues involving the strategic management of high-tech corporate start-ups and small technology-based businesses. Crosslisted with MGT 6773." }, "ISYE6774": { "subject": "ISYE", "number": "6774", "name": "MOT Project ", - "description": "This course organizes students into multidisciplinary teams devoted to solving a real problem for a technology-based firm. Crosslisted with MGT 6774. Full Description " + "description": "This course organizes students into multidisciplinary teams devoted to solving a real problem for a technology-based firm. Crosslisted with MGT 6774." }, "ISYE6775": { "subject": "ISYE", "number": "6775", "name": "MOT Seminar ", - "description": "This course introduces the frontiers of key technologies, provides a forum for visiting speakers from the corporate world, and supplements topics from other MOT courses. Crosslisted with MGT 6775. Full Description " + "description": "This course introduces the frontiers of key technologies, provides a forum for visiting speakers from the corporate world, and supplements topics from other MOT courses. Crosslisted with MGT 6775." }, "ISYE6777": { "subject": "ISYE", "number": "6777", "name": "Analysis-Emerging Tech ", - "description": "Methods for technology monitoring, forecasting, and assessment. Crosslisted with PUBP 6777. Full Description " + "description": "Methods for technology monitoring, forecasting, and assessment. Crosslisted with PUBP 6777." }, "ISYE6779": { "subject": "ISYE", "number": "6779", "name": "Dynamic System Modeling ", - "description": "Models of dynamic systems, such as aircraft,ground vehicles, and machinery, and manual control. Numerical simulation techniques and applications. Interactive simulators. Student programming project. Crosslisted with AE 6779. Full Description " + "description": "Models of dynamic systems, such as aircraft,ground vehicles, and machinery, and manual control. Numerical simulation techniques and applications. Interactive simulators. Student programming project. Crosslisted with AE 6779." }, "ISYE6781": { "subject": "ISYE", "number": "6781", "name": "Reliability Theory ", - "description": "Structural properties and reliability of coherent systems. Full Description " + "description": "Structural properties and reliability of coherent systems." }, "ISYE6783": { "subject": "ISYE", "number": "6783", "name": "Financial Data Analysis ", - "description": "Fundamentals of statistical inference for models used in the modern analysis of financial data. Crosslisted with MATH 6783. Full Description " + "description": "Fundamentals of statistical inference for models used in the modern analysis of financial data. Crosslisted with MATH 6783." }, "ISYE6785": { "subject": "ISYE", "number": "6785", "name": "The Practice of QCF ", - "description": "Case studies, visiting lecturers from financial institutions, student group projects of an advanced nature, and student reports, all centered around quantitative and computational finance. Crosslisted with MATH and MGT 6785. Full Description " + "description": "Case studies, visiting lecturers from financial institutions, student group projects of an advanced nature, and student reports, all centered around quantitative and computational finance. Crosslisted with MATH and MGT 6785." }, "ISYE6792": { "subject": "ISYE", "number": "6792", "name": "Manufacturing Seminar ", - "description": "Guest speakers on a broad range of manufacturing-related topics: research, applications, and technology. Required for Certificate in Manufacturing. Crosslisted with ECE and ME 6792. Full Description " + "description": "Guest speakers on a broad range of manufacturing-related topics: research, applications, and technology. Required for Certificate in Manufacturing. Crosslisted with ECE and ME 6792." }, "ISYE6793": { "subject": "ISYE", "number": "6793", "name": "Adv Topics in QCF ", - "description": "Advanced foundational material and analysis techniques in quantitative and computational finance. Crosslisted with MATH 6793. Full Description " + "description": "Advanced foundational material and analysis techniques in quantitative and computational finance. Crosslisted with MATH 6793." }, "ISYE6795": { "subject": "ISYE", "number": "6795", "name": "Intro-Cognitive Science ", - "description": "Multidisciplinary perspectives on cognitive science. Interdisciplinary approaches to issues in cognition, including memory, language, problem solving, learning, perception, and action. Crosslisted with CS and PSYC 6795. Full Description " + "description": "Multidisciplinary perspectives on cognitive science. Interdisciplinary approaches to issues in cognition, including memory, language, problem solving, learning, perception, and action. Crosslisted with CS and PSYC 6795." }, "ISYE6805": { "subject": "ISYE", "number": "6805", "name": "Reliability Engineering ", - "description": "Topics include hazard functions, life distributions, censoring, life tables, nonparametric and parametric estimation and inference, accelerated life testing, structure functions, reliability and maintenance systems, replacement theory. Full Description " + "description": "Topics include hazard functions, life distributions, censoring, life tables, nonparametric and parametric estimation and inference, accelerated life testing, structure functions, reliability and maintenance systems, replacement theory." }, "ISYE6810": { "subject": "ISYE", "number": "6810", "name": "Sys Montr&Prognostics ", - "description": "The course focuses on sensor-based condition monitoring techniques, modeling of degradation processes, fault diagnostics and prognostics of failures in engineering systems using stochastic and statistical methods. Full Description " + "description": "The course focuses on sensor-based condition monitoring techniques, modeling of degradation processes, fault diagnostics and prognostics of failures in engineering systems using stochastic and statistical methods." }, "ISYE6831": { "subject": "ISYE", "number": "6831", "name": "Advanced Simulation ", - "description": "Topics include generalized semi-Markov processes; input and output analysis; random number, variate, and sample path generation, rare event simulation; and optimization via simulation. Full Description " + "description": "Topics include generalized semi-Markov processes; input and output analysis; random number, variate, and sample path generation, rare event simulation; and optimization via simulation." }, "ISYE6832": { "subject": "ISYE", "number": "6832", "name": "Simulation Theory-Meth ", - "description": "Theory, algorithms, and applications of computer simulation. Topics include generalized semi-Markov processes; input-output analysis; random number, variate, and sample path generation; variance reduction techniques; and optimization via simulation. This course is intended for Ph.D. students. Full Description " + "description": "Theory, algorithms, and applications of computer simulation. Topics include generalized semi-Markov processes; input-output analysis; random number, variate, and sample path generation; variance reduction techniques; and optimization via simulation. This course is intended for Ph.D. students." }, "ISYE6XXX": { "subject": "ISYE", "number": "6XXX", "name": "Indust&Sys Engr Elective ", - "description": " Full Description " + "description": "" }, "ISYE7000": { "subject": "ISYE", "number": "7000", "name": "Master's Thesis ", - "description": "Required of degree candidates in the master's thesis option. Full Description " + "description": "Required of degree candidates in the master's thesis option." }, "ISYE7201": { "subject": "ISYE", "number": "7201", "name": "Prod&Service Sys Engg ", - "description": "Advanced models in operations planning, scheduling and control of supply chain, production and service systems. Intended for Ph.D. students. Full Description " + "description": "Advanced models in operations planning, scheduling and control of supply chain, production and service systems. Intended for Ph.D. students." }, "ISYE7203": { "subject": "ISYE", "number": "7203", "name": "Logistics Systems Engg ", - "description": "Advanced modeling and analysis of freight transportation and logistics systems. Intended for Ph.D. students. Full Description " + "description": "Advanced modeling and analysis of freight transportation and logistics systems. Intended for Ph.D. students." }, "ISYE7204": { "subject": "ISYE", "number": "7204", "name": "Info Prod & Ser Sys ", - "description": "A course covers integration of statistics, signal processing and control for variability reduction (modeling, analysis, diagnosis, control) for complex systems in a data rich environment. Full Description " + "description": "A course covers integration of statistics, signal processing and control for variability reduction (modeling, analysis, diagnosis, control) for complex systems in a data rich environment." }, "ISYE7210": { "subject": "ISYE", "number": "7210", "name": "Real-Time Interact Sim ", - "description": "Principles and laboratory experience in design and implementation of interactive simulations of complex dynamic systems. Full Description " + "description": "Principles and laboratory experience in design and implementation of interactive simulations of complex dynamic systems." }, "ISYE7400": { "subject": "ISYE", "number": "7400", "name": "Adv Design-Experiments ", - "description": "Random and mixed models, nested and blocked designs. Intended for Ph.D. students and those seeking the M.S. in Statistics. Full Description " + "description": "Random and mixed models, nested and blocked designs. Intended for Ph.D. students and those seeking the M.S. in Statistics." }, "ISYE7401": { "subject": "ISYE", "number": "7401", "name": "Adv Statistical Modeling ", - "description": "Nonlinear models, logistic regression, loglinear models. Intended for Ph.D. students and those seeking the M.S. in Statistics. Full Description " + "description": "Nonlinear models, logistic regression, loglinear models. Intended for Ph.D. students and those seeking the M.S. in Statistics." }, "ISYE7405": { "subject": "ISYE", "number": "7405", "name": "Multivariate Data Analy ", - "description": "Multivariate ANOVA, principal components, factor analysis etc. Intended for Ph.D. students and those seeking the M.S. in Statistics. Full Description " + "description": "Multivariate ANOVA, principal components, factor analysis etc. Intended for Ph.D. students and those seeking the M.S. in Statistics." }, "ISYE7406": { "subject": "ISYE", "number": "7406", "name": "Data Mining&Stat Learn ", - "description": "Topics include neural networks, support vector machines, classification trees, boosting and discriminant analyses. Intended for Ph.D. students and those seeking the M.S. in Statistics. Full Description " + "description": "Topics include neural networks, support vector machines, classification trees, boosting and discriminant analyses. Intended for Ph.D. students and those seeking the M.S. in Statistics." }, "ISYE7441": { "subject": "ISYE", "number": "7441", "name": "Theory of Linear Models ", - "description": "Intended for Ph.D. students and those seeking the M.S. in Statistics. Full Description " + "description": "Intended for Ph.D. students and those seeking the M.S. in Statistics." }, "ISYE7510": { "subject": "ISYE", "number": "7510", "name": "Graph Algorithms ", - "description": "Algorithms for graph problems such as maximum flow, covering, matching, coloring, planarity, minimum cuts, shortest paths, and connectivity. Crosslisted with MATH 7510 and CS 7510. Full Description " + "description": "Algorithms for graph problems such as maximum flow, covering, matching, coloring, planarity, minimum cuts, shortest paths, and connectivity. Crosslisted with MATH 7510 and CS 7510." }, "ISYE7653": { "subject": "ISYE", "number": "7653", "name": "Case Studies-Logist/Mfg ", - "description": "Advanced topics in logistics and manufacturing through the use of industrial case studies. Difficult modeling issues such as data representation and consistency will be introduced. Full Description " + "description": "Advanced topics in logistics and manufacturing through the use of industrial case studies. Difficult modeling issues such as data representation and consistency will be introduced." }, "ISYE7661": { "subject": "ISYE", "number": "7661", "name": "Linear Inequalities ", - "description": "Theoretical foundations of linear and integer programming. Topics include representation of polyhedra, polarity, simplex and ellipsoid algorithms, diophantine equations, Hilbert bases, total dual integrality, and others. Full Description " + "description": "Theoretical foundations of linear and integer programming. Topics include representation of polyhedra, polarity, simplex and ellipsoid algorithms, diophantine equations, Hilbert bases, total dual integrality, and others." }, "ISYE7682": { "subject": "ISYE", "number": "7682", "name": "Convexity ", - "description": "Convex sets, theory of finite systems of linear inequalities, convex functions, convex programming. Full Description " + "description": "Convex sets, theory of finite systems of linear inequalities, convex functions, convex programming." }, "ISYE7683": { "subject": "ISYE", "number": "7683", "name": "Adv Nonlinear Prog ", - "description": "Convex programming; linear, conic quadratic and semidefinite programming; cheap optimization methods for extremely large-scale convex problems. Full Description " + "description": "Convex programming; linear, conic quadratic and semidefinite programming; cheap optimization methods for extremely large-scale convex problems." }, "ISYE7686": { "subject": "ISYE", "number": "7686", "name": "Adv Combinatorial Opt ", - "description": "Typical coverage includes: Matching theory, network optimization, traversals in graphs, integrality of polyhedra, matroids, covers, cliques, and stable sets. Full Description " + "description": "Typical coverage includes: Matching theory, network optimization, traversals in graphs, integrality of polyhedra, matroids, covers, cliques, and stable sets." }, "ISYE7687": { "subject": "ISYE", "number": "7687", "name": "Adv Integer Programming ", - "description": "General integer modeling concepts; valid inequalities and facets; duality; general algorithms such as branch-and-bound and branch-and-cut; special purpose algorithms; applications. Full Description " + "description": "General integer modeling concepts; valid inequalities and facets; duality; general algorithms such as branch-and-bound and branch-and-cut; special purpose algorithms; applications." }, "ISYE7688": { "subject": "ISYE", "number": "7688", "name": "Comp Math Prog ", - "description": "Study of solution techniques in mathematical optimization, emphasizing computational aspects of both theory and algorithms. Full Description " + "description": "Study of solution techniques in mathematical optimization, emphasizing computational aspects of both theory and algorithms." }, "ISYE7790": { "subject": "ISYE", "number": "7790", "name": "Cognitive Modeling ", - "description": "A hands-on course covering a range of cognitive methodologies. It explores the analysis, development, construction, and evaluation of models of cognitive processing. Crosslisted with CS and PSYC 7790. Full Description " + "description": "A hands-on course covering a range of cognitive methodologies. It explores the analysis, development, construction, and evaluation of models of cognitive processing. Crosslisted with CS and PSYC 7790." }, "ISYE8011": { "subject": "ISYE", "number": "8011", "name": "Graduate Seminar ", - "description": "Audit basis only Full Description " + "description": "Audit basis only" }, "ISYE8012": { "subject": "ISYE", "number": "8012", "name": "Graduate Seminar ", - "description": "Audit basis only Full Description " + "description": "Audit basis only" }, "ISYE8013": { "subject": "ISYE", "number": "8013", "name": "Graduate Seminar ", - "description": "Audit basis only. Full Description " + "description": "Audit basis only." }, "ISYE8014": { "subject": "ISYE", "number": "8014", "name": "Topics in SIAC ", - "description": "A seminar course to introduce important research problems and applications related to the system informatics and control in production and service systems. Full Description " + "description": "A seminar course to introduce important research problems and applications related to the system informatics and control in production and service systems." }, "ISYE8795": { "subject": "ISYE", "number": "8795", "name": "Colloquium-Cognitive Sci ", - "description": "Reading of research papers by leading cognitive scientists, attendance at their colloquia, and meeting with them to discuss research. Crosslisted with CS and PSYC 8795. Full Description " + "description": "Reading of research papers by leading cognitive scientists, attendance at their colloquia, and meeting with them to discuss research. Crosslisted with CS and PSYC 8795." }, "ISYE8802": { "subject": "ISYE", "number": "8802", "name": "Special Topics ", - "description": "Special Topics in Industrial and Systems Engineering Full Description " + "description": "Special Topics in Industrial and Systems Engineering" }, "ISYE8803": { "subject": "ISYE", "number": "8803", "name": "Special Topics ", - "description": "Special topics in Industrial and Systems Engineering. Full Description " + "description": "Special topics in Industrial and Systems Engineering." }, "ISYE8811": { "subject": "ISYE", "number": "8811", "name": "Special Topics ", - "description": "Special topics in Industrial and Systems Engineering. Full Description " + "description": "Special topics in Industrial and Systems Engineering." }, "ISYE8813": { "subject": "ISYE", "number": "8813", "name": "Special Topics in OR ", - "description": "Special Topics in the field of Operations Research. Full Description " + "description": "Special Topics in the field of Operations Research." }, "ISYE8843": { "subject": "ISYE", "number": "8843", "name": "Adv. Topics-Statistics ", - "description": "For Ph.D. students. Full Description " + "description": "For Ph.D. students." }, "ISYE8851": { "subject": "ISYE", "number": "8851", "name": "Topics in Manufacturing ", - "description": "Current topics in manufacturing including: manufacturing automation and controls, advanced planning systems, heuristic scheduling techniques, stochastic models of manufacturing systems, advanced warehousing, and materials handling. Full Description " + "description": "Current topics in manufacturing including: manufacturing automation and controls, advanced planning systems, heuristic scheduling techniques, stochastic models of manufacturing systems, advanced warehousing, and materials handling." }, "ISYE8852": { "subject": "ISYE", "number": "8852", "name": "Topics in Logistics ", - "description": "Current topics in logistics including: inventory control in supply chain design, stochastic vehicle routing, computational methods in logistics systems, location theory, and geographic information systems. Full Description " + "description": "Current topics in logistics including: inventory control in supply chain design, stochastic vehicle routing, computational methods in logistics systems, location theory, and geographic information systems." }, "ISYE8861": { "subject": "ISYE", "number": "8861", "name": "Topics in Stochastics ", - "description": "Coverage of advanced topics of interest that support research interests of students in the field. Full Description " + "description": "Coverage of advanced topics of interest that support research interests of students in the field." }, "ISYE8862": { "subject": "ISYE", "number": "8862", "name": "Topics in Simulation ", - "description": "Coverage of advanced topics of interest that support research interests of students in the field. Full Description " + "description": "Coverage of advanced topics of interest that support research interests of students in the field." }, "ISYE8871": { "subject": "ISYE", "number": "8871", "name": "Topics in Optimization ", - "description": "Topics may vary with each offering and include subjects such as integer programming, combinatorics, graphs and networks, matching, matroids, polyhedral combinatroics, as well as others. Full Description " + "description": "Topics may vary with each offering and include subjects such as integer programming, combinatorics, graphs and networks, matching, matroids, polyhedral combinatroics, as well as others." }, "ISYE8872": { "subject": "ISYE", "number": "8872", "name": "Topics-Nonlinear Optimiz ", - "description": "Similar to ISYE 8871 but deals with subjects in nonlinear programming, interior-point methods, convexity, global optimization, etc. Topics may vary each term. Full Description " + "description": "Similar to ISYE 8871 but deals with subjects in nonlinear programming, interior-point methods, convexity, global optimization, etc. Topics may vary each term." }, "ISYE8893": { "subject": "ISYE", "number": "8893", "name": "Spec Topic-Cognitive Sci ", - "description": " Full Description " + "description": "" }, "ISYE8900": { "subject": "ISYE", "number": "8900", "name": "Special Problems in ISYE ", - "description": " Full Description " + "description": "" }, "ISYE8901": { "subject": "ISYE", "number": "8901", "name": "Special Problems in OR ", - "description": " Full Description " + "description": "" }, "ISYE8997": { "subject": "ISYE", "number": "8997", "name": "Teaching Assistantship ", - "description": "For graduate students holding graduate teaching assistantships. Full Description " + "description": "For graduate students holding graduate teaching assistantships." }, "ISYE8998": { "subject": "ISYE", "number": "8998", "name": "Research Assistantship ", - "description": "For graduate students holding graduate research assistantships. Full Description " + "description": "For graduate students holding graduate research assistantships." }, "ISYE9000": { "subject": "ISYE", "number": "9000", "name": "Doctoral Thesis ", - "description": " Full Description " + "description": "" }, "JAPN1001": { "subject": "JAPN", "number": "1001", "name": "Elementary Japanese I ", - "description": "Essential principles of Japanese grammar and phonetics, acquisition of vocabulary through conversational exercises, video, and tape material. Introduction to the kana writing system. Humanities credit is awrded for JAPN 1001 upon successful completion of JAPN 1002 or JAPN 2001. Full Description " + "description": "Essential principles of Japanese grammar and phonetics, acquisition of vocabulary through conversational exercises, video, and tape material. Introduction to the kana writing system. Humanities credit is awrded for JAPN 1001 upon successful completion of JAPN 1002 or JAPN 2001." }, "JAPN1002": { "subject": "JAPN", "number": "1002", "name": "Elementary Japanese II ", - "description": "Continuation of JAPN 1001. Introduction to kanji symbols. Full Description " + "description": "Continuation of JAPN 1001. Introduction to kanji symbols." }, "JAPN10X1": { "subject": "JAPN", "number": "10X1", "name": "Trans Elementary Japanese I ", - "description": " Full Description " + "description": "" }, "JAPN10X2": { "subject": "JAPN", "number": "10X2", "name": "Trans Elementary Japanese II ", - "description": " Full Description " + "description": "" }, "JAPN1813": { "subject": "JAPN", "number": "1813", "name": "Special Topics ", - "description": "Permits a group of students too pursue areas of the Japanese language and culture not extensively treated in other courses. Full Description " + "description": "Permits a group of students too pursue areas of the Japanese language and culture not extensively treated in other courses." }, "JAPN1814": { "subject": "JAPN", "number": "1814", "name": "Special Topics ", - "description": "Topics of current interest in Japanese. Full Description " + "description": "Topics of current interest in Japanese." }, "JAPN1XXX": { "subject": "JAPN", "number": "1XXX", "name": "Japanese Elective ", - "description": " Full Description " + "description": "" }, "JAPN2001": { "subject": "JAPN", "number": "2001", "name": "Intermediate Japanese I ", - "description": "Further principles of Japanese grammar and vocabulary. Introduction to different styles and levels of speech. More kanji. Full Description " + "description": "Further principles of Japanese grammar and vocabulary. Introduction to different styles and levels of speech. More kanji." }, "JAPN2002": { "subject": "JAPN", "number": "2002", "name": "Intermediate Japanese II ", - "description": "Continuation of JAPN 2001. Full Description " + "description": "Continuation of JAPN 2001." }, "JAPN2698": { "subject": "JAPN", "number": "2698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "JAPN2699": { "subject": "JAPN", "number": "2699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "JAPN2813": { "subject": "JAPN", "number": "2813", "name": "Special Topics ", - "description": "Topics of current interest in Japanese. Full Description " + "description": "Topics of current interest in Japanese." }, "JAPN2XXX": { "subject": "JAPN", "number": "2XXX", "name": "Japanese Elective ", - "description": " Full Description " + "description": "" }, "JAPN3001": { "subject": "JAPN", "number": "3001", "name": "Advanced Japanese I ", - "description": "Learn advanced grammar structures and develop the ability to produce longer conversations involving complex styles and levels of speech. More kanji. Full Description " + "description": "Learn advanced grammar structures and develop the ability to produce longer conversations involving complex styles and levels of speech. More kanji." }, "JAPN3061": { "subject": "JAPN", "number": "3061", "name": "Technical Japanese I ", - "description": "Introduction to technical and scientific Japanese. Specialized vocabulary and concepts of chemistry, electrical engineering, computer science, and biology. Analysis and discussion of scientific issues in society. Full Description " + "description": "Introduction to technical and scientific Japanese. Specialized vocabulary and concepts of chemistry, electrical engineering, computer science, and biology. Analysis and discussion of scientific issues in society." }, "JAPN3691": { "subject": "JAPN", "number": "3691", "name": "Tech & Scientific Japn ", - "description": "Reading of intermediate/advanced technical and scientific Japanese texts. Analysis and discussion of scientific issues in society. Part of the Japanese intensive summer language program. Admission by application only. Full Description " + "description": "Reading of intermediate/advanced technical and scientific Japanese texts. Analysis and discussion of scientific issues in society. Part of the Japanese intensive summer language program. Admission by application only." }, "JAPN3692": { "subject": "JAPN", "number": "3692", "name": "Business Japanese ", - "description": "Acquisition of business terminology, protocols, decorum strategies, and improvement of oral communication skills. Reading and writing of notes, correspondence, and reports. Part of the Japanese intensive summer language program. Admission by application only. Full Description " + "description": "Acquisition of business terminology, protocols, decorum strategies, and improvement of oral communication skills. Reading and writing of notes, correspondence, and reports. Part of the Japanese intensive summer language program. Admission by application only." }, "JAPN3693": { "subject": "JAPN", "number": "3693", "name": "Japan Today ", - "description": "Development of awareness toward cultural differences and potential communication problems through exploration of current socio-economic and corporate-cultural issues in Japan. Part of the Japanese intensive summer language program. Admission by application only. Full Description " + "description": "Development of awareness toward cultural differences and potential communication problems through exploration of current socio-economic and corporate-cultural issues in Japan. Part of the Japanese intensive summer language program. Admission by application only." }, "JAPN3813": { "subject": "JAPN", "number": "3813", "name": "Special Topics ", - "description": "Topics of current interest in Japanese. Full Description " + "description": "Topics of current interest in Japanese." }, "JAPN3823": { "subject": "JAPN", "number": "3823", "name": "Special Topics ", - "description": "Topics of current interest in Japanese. Full Description " + "description": "Topics of current interest in Japanese." }, "JAPN3833": { "subject": "JAPN", "number": "3833", "name": "Special Topics ", - "description": "Topics of current interest in Japanese. Full Description " + "description": "Topics of current interest in Japanese." }, "JAPN3XXX": { "subject": "JAPN", "number": "3XXX", "name": "Japanese Elective ", - "description": " Full Description " + "description": "" }, "JAPN4113": { "subject": "JAPN", "number": "4113", "name": "Adv Reading & Listening ", - "description": "This course introduces advanced grammar and stylistic and idiomatic expressions in Japanese in both written and spoken contexts on a wide range of topics. Full Description " + "description": "This course introduces advanced grammar and stylistic and idiomatic expressions in Japanese in both written and spoken contexts on a wide range of topics." }, "JAPN4123": { "subject": "JAPN", "number": "4123", "name": "Tech&Bus Jpn Translation ", - "description": "This is an applied language course that provides practical experience in translating technical and business documents to and from Japanese. Full Description " + "description": "This is an applied language course that provides practical experience in translating technical and business documents to and from Japanese." }, "JAPN4143": { "subject": "JAPN", "number": "4143", "name": "Ling Culture Relativism ", - "description": "This course examines 'cultural relativism' (Eastern/ Western, Japan/U.S.) as evidenced through linguistic systems communication strategies, and even religious orientation. Taught in Japanese. Full Description " + "description": "This course examines 'cultural relativism' (Eastern/ Western, Japan/U.S.) as evidenced through linguistic systems communication strategies, and even religious orientation. Taught in Japanese." }, "JAPN4163": { "subject": "JAPN", "number": "4163", "name": "Japn Literature Culture ", - "description": "This is an introductory course in Japanese literature and culture where students read and interpret authenitic literary texts and learn and discuss key cultural concepts. Conducted in Japanese. Full Description " + "description": "This is an introductory course in Japanese literature and culture where students read and interpret authenitic literary texts and learn and discuss key cultural concepts. Conducted in Japanese." }, "JAPN4165": { "subject": "JAPN", "number": "4165", "name": "Crit Rdgs Jpn Cult/Arts ", - "description": "This course helps improve reading skills of advanced learners by analyzing various written texts on topics of culture and society. Taught in Japanese. Full Description " + "description": "This course helps improve reading skills of advanced learners by analyzing various written texts on topics of culture and society. Taught in Japanese." }, "JAPN4173": { "subject": "JAPN", "number": "4173", "name": "Anime: Culture&Society ", - "description": "Students will be able to appreciate anime's significance in historical, societal and cultural contexts, as well as the aesthetic quality of its form. Taught in Japanese. Full Description " + "description": "Students will be able to appreciate anime's significance in historical, societal and cultural contexts, as well as the aesthetic quality of its form. Taught in Japanese." }, "JAPN4183": { "subject": "JAPN", "number": "4183", "name": "Japn Cult/Soc Thru Songs ", - "description": "Students will be exposed to songs in different historical, societal and cultural contexts of Japan, and appreciate their aesthetic quality. Taught in Japanese. Full Description " + "description": "Students will be exposed to songs in different historical, societal and cultural contexts of Japan, and appreciate their aesthetic quality. Taught in Japanese." }, "JAPN4231": { "subject": "JAPN", "number": "4231", "name": "Design Websites in Jpn ", - "description": "This course provides instruction in text input in Japanese and explores language and intercultural communication issues when designing Web pages in Japanese. Taught in Japanese. Full Description " + "description": "This course provides instruction in text input in Japanese and explores language and intercultural communication issues when designing Web pages in Japanese. Taught in Japanese." }, "JAPN4233": { "subject": "JAPN", "number": "4233", "name": "Cali Pedagogy for Jpn ", - "description": "This course explores pedagogical issues in designing Computer-Assisted Language Instruction (CALI) programs for teaching Japanese. Taught in Japanese. Prerequisites: JAPN 3002 (JAPN 4231 highly recommended). Full Description " + "description": "This course explores pedagogical issues in designing Computer-Assisted Language Instruction (CALI) programs for teaching Japanese. Taught in Japanese. Prerequisites: JAPN 3002 (JAPN 4231 highly recommended)." }, "JAPN4235": { "subject": "JAPN", "number": "4235", "name": "3D RPG Develop. Japn. ", - "description": "This course explores pedagogical issues in designing Japanese instructional materials based on the 3D, RPG platform of Second Life. Taught primarily in Japanese. Prerequisites: JAPN 3002 (JAPN 4231 and JAPN 4233 are highly recommended). Full Description " + "description": "This course explores pedagogical issues in designing Japanese instructional materials based on the 3D, RPG platform of Second Life. Taught primarily in Japanese. Prerequisites: JAPN 3002 (JAPN 4231 and JAPN 4233 are highly recommended)." }, "JAPN4500": { "subject": "JAPN", "number": "4500", "name": "Intercultural Seminar ", - "description": "Integrates cross-cultural research and reflection into discussion of current issues in Japan. Intended for students who have had some study-abroad experience in Japan. Conducted mostly in Japanese. Full Description " + "description": "Integrates cross-cultural research and reflection into discussion of current issues in Japan. Intended for students who have had some study-abroad experience in Japan. Conducted mostly in Japanese." }, "JAPN4543": { "subject": "JAPN", "number": "4543", "name": "Adv Japanese For NLP Dev ", - "description": "This course will explore advanced linguistic, semantic and pragmatic issues unique to Japanese required for developing a NLP system of text-based Japanese. Full Description " + "description": "This course will explore advanced linguistic, semantic and pragmatic issues unique to Japanese required for developing a NLP system of text-based Japanese." }, "JAPN4695": { "subject": "JAPN", "number": "4695", "name": "Japanese Internship ", - "description": "Professional experience with a business/organization in which students enhance their language skills and cultural knowledge in Japanese in relation to the practical goals/objectives of the entity. Full Description " + "description": "Professional experience with a business/organization in which students enhance their language skills and cultural knowledge in Japanese in relation to the practical goals/objectives of the entity." }, "JAPN4698": { "subject": "JAPN", "number": "4698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "JAPN4699": { "subject": "JAPN", "number": "4699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "JAPN4743": { "subject": "JAPN", "number": "4743", "name": "Japan Society & Politics ", - "description": "Surveys key aspects of Japanese society and politics through the use of Japanese language readings, films, and other instructional materials. Course taught mostly in Japanese. Crosslisted with INTA 4743. Full Description " + "description": "Surveys key aspects of Japanese society and politics through the use of Japanese language readings, films, and other instructional materials. Course taught mostly in Japanese. Crosslisted with INTA 4743." }, "JAPN4750": { "subject": "JAPN", "number": "4750", "name": "Japn Discourse & Grammar ", - "description": "This course is about Japanese spoken and written discourse, designed for acquiring skills for managing interpersonal relationships through advanced discourse. Full Description " + "description": "This course is about Japanese spoken and written discourse, designed for acquiring skills for managing interpersonal relationships through advanced discourse." }, "JAPN4780": { "subject": "JAPN", "number": "4780", "name": "Jpn Applied Linguistics ", - "description": "This course helps develop analytical skills to better understand human languages, particularly English and Japanese. Taught in English. Credit not allowed for both JAPN 4780 and LING 4780. Full Description " + "description": "This course helps develop analytical skills to better understand human languages, particularly English and Japanese. Taught in English. Credit not allowed for both JAPN 4780 and LING 4780." }, "JAPN4813": { "subject": "JAPN", "number": "4813", "name": "Special Topics ", - "description": "Topics of interest not covered in the regular course offerings. Full Description " + "description": "Topics of interest not covered in the regular course offerings." }, "JAPN4823": { "subject": "JAPN", "number": "4823", "name": "Special Topics ", - "description": "Topics of current interest in Japanese. Full Description " + "description": "Topics of current interest in Japanese." }, "JAPN4833": { "subject": "JAPN", "number": "4833", "name": "Special Topics ", - "description": "Topics of current interest in Japanese. Full Description " + "description": "Topics of current interest in Japanese." }, "JAPN4901": { "subject": "JAPN", "number": "4901", "name": "Special Problems ", - "description": "Provides the special instruction required under special programs. Full Description " + "description": "Provides the special instruction required under special programs." }, "JAPN4902": { "subject": "JAPN", "number": "4902", "name": "Special Problems ", - "description": "Special problems course for advanced students. Topics to be arranged with instructor. Full Description " + "description": "Special problems course for advanced students. Topics to be arranged with instructor." }, "JAPN4XXX": { "subject": "JAPN", "number": "4XXX", "name": "Japanese Elective ", - "description": " Full Description " + "description": "" }, "KOR1001": { "subject": "KOR", "number": "1001", "name": "Elementary Korean I ", - "description": "Students will be able to speak, comprehend, read and write basic Korean sentences, and they will learn fundamentals in inter-personal relationships in Korean culture. Humanities credit awarded upon successful completion of KOR 1002 or KOR 2001. Full Description " + "description": "Students will be able to speak, comprehend, read and write basic Korean sentences, and they will learn fundamentals in inter-personal relationships in Korean culture. Humanities credit awarded upon successful completion of KOR 1002 or KOR 2001." }, "KOR1002": { "subject": "KOR", "number": "1002", "name": "Elementary Korean II ", - "description": "A continuation of Korean 1001. Full Description " + "description": "A continuation of Korean 1001." }, "KOR10X1": { "subject": "KOR", "number": "10X1", "name": "Trans Elementary Korean I ", - "description": " Full Description " + "description": "" }, "KOR10X2": { "subject": "KOR", "number": "10X2", "name": "Trans Elementary Korean II ", - "description": " Full Description " + "description": "" }, "KOR1813": { "subject": "KOR", "number": "1813", "name": "Special Topics ", - "description": "Topics of current interest in Korean. Full Description " + "description": "Topics of current interest in Korean." }, "KOR1814": { "subject": "KOR", "number": "1814", "name": "Special Topics ", - "description": "Topics of current interest in Korean. Full Description " + "description": "Topics of current interest in Korean." }, "KOR1XXX": { "subject": "KOR", "number": "1XXX", "name": "Korean Elective ", - "description": " Full Description " + "description": "" }, "KOR2001": { "subject": "KOR", "number": "2001", "name": "Intermediate Korean I ", - "description": "This course continues the introduction to modern colloquial Korean. Full Description " + "description": "This course continues the introduction to modern colloquial Korean." }, "KOR2002": { "subject": "KOR", "number": "2002", "name": "Intermediate Korean II ", - "description": "A continuation of Korean 2001. Full Description " + "description": "A continuation of Korean 2001." }, "KOR2698": { "subject": "KOR", "number": "2698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "KOR2699": { "subject": "KOR", "number": "2699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "KOR2813": { "subject": "KOR", "number": "2813", "name": "Special Topics ", - "description": "Topics of current interest in Korean. Full Description " + "description": "Topics of current interest in Korean." }, "KOR2XXX": { "subject": "KOR", "number": "2XXX", "name": "Korean Elective ", - "description": " Full Description " + "description": "" }, "KOR3001": { "subject": "KOR", "number": "3001", "name": "Advanced Korean I ", - "description": "Development of richer perspectives about Korean culture and enhanced skills in reading, writing, and vocabulary. Conducted in Korean. Full Description " + "description": "Development of richer perspectives about Korean culture and enhanced skills in reading, writing, and vocabulary. Conducted in Korean." }, "KOR3002": { "subject": "KOR", "number": "3002", "name": "Advanced Korean II ", - "description": "Further development of richer perspectives about Korean culture and enhanced skills in reading, writing, and vocabulary. Conducted in Korean. Full Description " + "description": "Further development of richer perspectives about Korean culture and enhanced skills in reading, writing, and vocabulary. Conducted in Korean." }, "KOR3691": { "subject": "KOR", "number": "3691", "name": "Business Korean ", - "description": "This course aims to improve oral/written communication skills in business situations in Korea. Taught in Korean; part of Korean intensive summer language program. Full Description " + "description": "This course aims to improve oral/written communication skills in business situations in Korea. Taught in Korean; part of Korean intensive summer language program." }, "KOR3692": { "subject": "KOR", "number": "3692", "name": "Issues & Tech In Korea ", - "description": "This course introduces key terms and discusses advances in technology and science in Korea today. Taught in Korean; part of Korean intensive summer language program. Full Description " + "description": "This course introduces key terms and discusses advances in technology and science in Korea today. Taught in Korean; part of Korean intensive summer language program." }, "KOR3693": { "subject": "KOR", "number": "3693", "name": "Exploring Modern Korea ", - "description": "This course equips students to understand contemporary Korea through reading and discussion about contemporary topics. Taught in Korean; part of Korean intensive summer language program. Full Description " + "description": "This course equips students to understand contemporary Korea through reading and discussion about contemporary topics. Taught in Korean; part of Korean intensive summer language program." }, "KOR3813": { "subject": "KOR", "number": "3813", "name": "Special Topics ", - "description": "Topics of current interest in Korean. Full Description " + "description": "Topics of current interest in Korean." }, "KOR3823": { "subject": "KOR", "number": "3823", "name": "Special Topics ", - "description": "Topics of current interest in Korean. Full Description " + "description": "Topics of current interest in Korean." }, "KOR3833": { "subject": "KOR", "number": "3833", "name": "Special Topics ", - "description": "Topics of current interest in Korean. Full Description " + "description": "Topics of current interest in Korean." }, "KOR3XXX": { "subject": "KOR", "number": "3XXX", "name": "Korean Elective ", - "description": " Full Description " + "description": "" }, "KOR4001": { "subject": "KOR", "number": "4001", "name": "Contemporary Korean ", - "description": "This course aims to further the students' knowledge by exposing them to accurate and contemporary expressions in text and multimedia materials. Taught in Korean. Full Description " + "description": "This course aims to further the students' knowledge by exposing them to accurate and contemporary expressions in text and multimedia materials. Taught in Korean." }, "KOR4002": { "subject": "KOR", "number": "4002", "name": "Select Rdngs Of Mod Kor ", - "description": "This course aims to enhance students' Korean skills through advanced reading and comprehension, translation, grammar, and writing practice. Taught in Korean. Full Description " + "description": "This course aims to enhance students' Korean skills through advanced reading and comprehension, translation, grammar, and writing practice. Taught in Korean." }, "KOR4698": { "subject": "KOR", "number": "4698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "KOR4699": { "subject": "KOR", "number": "4699", "name": "Undegraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "KOR4813": { "subject": "KOR", "number": "4813", "name": "Special Topics ", - "description": "Topics of current interest in Korean. Full Description " + "description": "Topics of current interest in Korean." }, "KOR4823": { "subject": "KOR", "number": "4823", "name": "Special Topics ", - "description": "Topics of current interest in Korean. Full Description " + "description": "Topics of current interest in Korean." }, "KOR4833": { "subject": "KOR", "number": "4833", "name": "Special Topics ", - "description": "Topics of current interest in Korean. Full Description " + "description": "Topics of current interest in Korean." }, "KOR4901": { "subject": "KOR", "number": "4901", "name": "Special Problems ", - "description": "Special problems course for advanced students. Topics to be arranged with instructor. Full Description " + "description": "Special problems course for advanced students. Topics to be arranged with instructor." }, "KOR4902": { "subject": "KOR", "number": "4902", "name": "Special Problems ", - "description": "Special problems for advanced students. Topics to be arranged with instructor. Full Description " + "description": "Special problems for advanced students. Topics to be arranged with instructor." }, "KOR4XXX": { "subject": "KOR", "number": "4XXX", "name": "Korean Elective ", - "description": " Full Description " + "description": "" }, "LATN2XXX": { "subject": "LATN", "number": "2XXX", "name": "Latin Elective ", - "description": " Full Description " + "description": "" }, "LCC1XXX": { "subject": "LCC", "number": "1XXX", "name": "Lit, Comm&Culture Elective ", - "description": " Full Description " + "description": "" }, "LCC2100": { "subject": "LCC", "number": "2100", "name": "Intro-Sci,Tech & Culture ", - "description": "As the introductory course to the major in Science, Technology and Culture, this course explores the ways in which disciplines construct and represent the knowledge they generate. Full Description " + "description": "As the introductory course to the major in Science, Technology and Culture, this course explores the ways in which disciplines construct and represent the knowledge they generate." }, "LCC2200": { "subject": "LCC", "number": "2200", "name": "Intro to Gender Studies ", - "description": "This course introduces the cultural concept of gender, examining topics such as biology and gender, social constructions of gender, and the psychology of sexual roles. Full Description " + "description": "This course introduces the cultural concept of gender, examining topics such as biology and gender, social constructions of gender, and the psychology of sexual roles." }, "LCC2300": { "subject": "LCC", "number": "2300", "name": "Intro Biomedicine & Cult ", - "description": "This course provides an introduction to central cultural topics in biomedicine, such as health care, medical practice, medical research, and the systems of cultural meaning within which ideas of health and disease circulate. Full Description " + "description": "This course provides an introduction to central cultural topics in biomedicine, such as health care, medical practice, medical research, and the systems of cultural meaning within which ideas of health and disease circulate." }, "LCC2400": { "subject": "LCC", "number": "2400", "name": "Intro to Media Studies ", - "description": "This course offers an introduction to the historical development and cultural impact of various forms of media print, radio, television, film, and interactive electronic applications. Full Description " + "description": "This course offers an introduction to the historical development and cultural impact of various forms of media print, radio, television, film, and interactive electronic applications." }, "LCC2500": { "subject": "LCC", "number": "2500", "name": "Intro to Film ", - "description": "Introduces film techniques and vocabulary in an historical and cultural context. Written texts are supplemented by viewings of specific shots, scenes, and films. Full Description " + "description": "Introduces film techniques and vocabulary in an historical and cultural context. Written texts are supplemented by viewings of specific shots, scenes, and films." }, "LCC2600": { "subject": "LCC", "number": "2600", "name": "Intro to Perform Studies ", - "description": "An examination of the origins of the field of performance studies in literary study of theatre and drama, anthropological investigations of ritual, and sociological analyses of performance in everyday life. Full Description " + "description": "An examination of the origins of the field of performance studies in literary study of theatre and drama, anthropological investigations of ritual, and sociological analyses of performance in everyday life." }, "LCC2661": { "subject": "LCC", "number": "2661", "name": "Theatre Production I ", - "description": "In this \"hands-on\" course, students learn theatrical construction and painting techniques while building scenery for DramaTech productions. Full Description " + "description": "In this \"hands-on\" course, students learn theatrical construction and painting techniques while building scenery for DramaTech productions." }, "LCC2662": { "subject": "LCC", "number": "2662", "name": "Theatre Production II ", - "description": "In this \"hands-on\" course, students create the lighting, property, and costume effects for two DramaTech Theatre productions. Full Description " + "description": "In this \"hands-on\" course, students create the lighting, property, and costume effects for two DramaTech Theatre productions." }, "LCC2698": { "subject": "LCC", "number": "2698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "LCC2699": { "subject": "LCC", "number": "2699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "LCC2700": { "subject": "LCC", "number": "2700", "name": "Intr-Computational Media ", - "description": "Introduction to key concepts, methods, and achievements in computational media, and the convergence of digital technology with cultural traditions of representation. Full Description " + "description": "Introduction to key concepts, methods, and achievements in computational media, and the convergence of digital technology with cultural traditions of representation." }, "LCC2710": { "subject": "LCC", "number": "2710", "name": "Visual Culture & Design ", - "description": "Studio-based course that provides students with the skills needed to create digital visual designs and to analyze designs from an historical and theoretical perspective. Full Description " + "description": "Studio-based course that provides students with the skills needed to create digital visual designs and to analyze designs from an historical and theoretical perspective." }, "LCC2720": { "subject": "LCC", "number": "2720", "name": "Prin of Visual Design ", - "description": "Studio-based course that provides students with basic skills needed to create digital visual images and to analyze designs from historical and theoretical perspectives. Full Description " + "description": "Studio-based course that provides students with basic skills needed to create digital visual images and to analyze designs from historical and theoretical perspectives." }, "LCC2730": { "subject": "LCC", "number": "2730", "name": "Construct-Moving Image ", - "description": "Provides the student with the conceptual, formal, aesthetic, and technical approaches to reconsider film, videos, and animation within the context of emerging digital forms. Full Description " + "description": "Provides the student with the conceptual, formal, aesthetic, and technical approaches to reconsider film, videos, and animation within the context of emerging digital forms." }, "LCC2801": { "subject": "LCC", "number": "2801", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "LCC2803": { "subject": "LCC", "number": "2803", "name": "Special Topics ", - "description": "Topics of interest not covered in the regular course offerings. Full Description " + "description": "Topics of interest not covered in the regular course offerings." }, "LCC2813": { "subject": "LCC", "number": "2813", "name": "Special Topics in STAC ", - "description": "Study of one or more topics of current interest in the area of science, technology, and culture. Full Description " + "description": "Study of one or more topics of current interest in the area of science, technology, and culture." }, "LCC2823": { "subject": "LCC", "number": "2823", "name": "Special Topics-Lit/Cult ", - "description": "Examination of one or more topics of current interest in literary and cultural studies. Full Description " + "description": "Examination of one or more topics of current interest in literary and cultural studies." }, "LCC2XXX": { "subject": "LCC", "number": "2XXX", "name": "Lit Comm&Culture Elective ", - "description": " Full Description " + "description": "" }, "LCC3102": { "subject": "LCC", "number": "3102", "name": "The Classical Tradition ", - "description": "Explores the definition and transmission of science and technology within Greek, Arabic, and medieval Latin contexts. Full Description " + "description": "Explores the definition and transmission of science and technology within Greek, Arabic, and medieval Latin contexts." }, "LCC3104": { "subject": "LCC", "number": "3104", "name": "Age-Scientific Discovery ", - "description": "Examines the relationships among texts representing the literary, artistic, and scientific thought of the fifteenth and sixteenth centuries. Full Description " + "description": "Examines the relationships among texts representing the literary, artistic, and scientific thought of the fifteenth and sixteenth centuries." }, "LCC3106": { "subject": "LCC", "number": "3106", "name": "Age of Sci Revolution ", - "description": "Examines interrelation of technological, literary, artistic, and philosophical thought in the late sixteenth and seventeenth centuries. Full Description " + "description": "Examines interrelation of technological, literary, artistic, and philosophical thought in the late sixteenth and seventeenth centuries." }, "LCC3108": { "subject": "LCC", "number": "3108", "name": "Sci, Tech & Enlightenment ", - "description": "Considers the conceptual reformulation of the internal and external world urged by the sciences, technology, and culture of the Enlightenment. Full Description " + "description": "Considers the conceptual reformulation of the internal and external world urged by the sciences, technology, and culture of the Enlightenment." }, "LCC3110": { "subject": "LCC", "number": "3110", "name": "Sci, Tech & Romanticism ", - "description": "Examines the relationships among romantic ideology, science, and literature, including Romanticism's imaginative responses to Enlightenment science and the Industrial Revolution. Full Description " + "description": "Examines the relationships among romantic ideology, science, and literature, including Romanticism's imaginative responses to Enlightenment science and the Industrial Revolution." }, "LCC3112": { "subject": "LCC", "number": "3112", "name": "Evolution&Industrial Age ", - "description": "Connects later nineteenth century scientific and technological concepts and discoveries, particularly theories of evolution, to the literature and culture of the industrial age. Full Description " + "description": "Connects later nineteenth century scientific and technological concepts and discoveries, particularly theories of evolution, to the literature and culture of the industrial age." }, "LCC3114": { "subject": "LCC", "number": "3114", "name": "Sci, Tech & Modernism ", - "description": "Explores a cross-section of technological, scientific, and cultural production characteristics of the first half of the twentieth century. Full Description " + "description": "Explores a cross-section of technological, scientific, and cultural production characteristics of the first half of the twentieth century." }, "LCC3116": { "subject": "LCC", "number": "3116", "name": "Sci, Tech& Postmodernism ", - "description": "Focuses on the relation among information technology, nonlinear physics, and the art, literature, and culture of postmodernism. Explores postmodern critiques of the Enlightenment and modernity. Full Description " + "description": "Focuses on the relation among information technology, nonlinear physics, and the art, literature, and culture of postmodernism. Explores postmodern critiques of the Enlightenment and modernity." }, "LCC3118": { "subject": "LCC", "number": "3118", "name": "Sci, Tech&American Empire ", - "description": "Considers nineteenth and twentieth century science and technology as they shaped American culture with particular attention to the relationship between science, technology, progress, and empire. Full Description " + "description": "Considers nineteenth and twentieth century science and technology as they shaped American culture with particular attention to the relationship between science, technology, progress, and empire." }, "LCC3202": { "subject": "LCC", "number": "3202", "name": "Studies in Fiction ", - "description": "Examines the elements of fiction and what has made fiction, especially the novel, distinctive, popular, and enduring. Readings may include formal, cultural, and historical theories. Full Description " + "description": "Examines the elements of fiction and what has made fiction, especially the novel, distinctive, popular, and enduring. Readings may include formal, cultural, and historical theories." }, "LCC3204": { "subject": "LCC", "number": "3204", "name": "Poetry and Poetics ", - "description": "A study of traditions of poetic practice and poetic theory in English through intensive line by line readings of poems from different periods in literary history. Full Description " + "description": "A study of traditions of poetic practice and poetic theory in English through intensive line by line readings of poems from different periods in literary history." }, "LCC3206": { "subject": "LCC", "number": "3206", "name": "Communication & Culture ", - "description": "Examines ways in which forms and media of communication create and are created by other cultural constructs. Full Description " + "description": "Examines ways in which forms and media of communication create and are created by other cultural constructs." }, "LCC3208": { "subject": "LCC", "number": "3208", "name": "African-Amer Lit/Cult ", - "description": "Explores the works of African American writers from the Colonial period to the present and examines a variety of cultural constructs that have fundamentally shaped the African American literary tradition. Full Description " + "description": "Explores the works of African American writers from the Colonial period to the present and examines a variety of cultural constructs that have fundamentally shaped the African American literary tradition." }, "LCC3210": { "subject": "LCC", "number": "3210", "name": "Ethnicity-Amer Culture ", - "description": "Explores literary and historical works considering ethnic issues in American culture, including immigration, social assimilation, \"double consciousness,\" the development of ethnic identity/pride, and multiculturalism. Full Description " + "description": "Explores literary and historical works considering ethnic issues in American culture, including immigration, social assimilation, \"double consciousness,\" the development of ethnic identity/pride, and multiculturalism." }, "LCC3212": { "subject": "LCC", "number": "3212", "name": "Women, Lit & Culture ", - "description": "Students in this course will analyze writings by women and examine feminist and other relevant cultural critiques of literature. Full Description " + "description": "Students in this course will analyze writings by women and examine feminist and other relevant cultural critiques of literature." }, "LCC3214": { "subject": "LCC", "number": "3214", "name": "Science Fiction ", - "description": "Examines science fiction texts from the last 200 years to show how they reflect ambiguous reactions to change. Full Description " + "description": "Examines science fiction texts from the last 200 years to show how they reflect ambiguous reactions to change." }, "LCC3216": { "subject": "LCC", "number": "3216", "name": "Theatre I ", - "description": "The dramatic literature, theory, performance practices, and historical and cultural context of the theatre from prehistory through the Medieval period. Full Description " + "description": "The dramatic literature, theory, performance practices, and historical and cultural context of the theatre from prehistory through the Medieval period." }, "LCC3218": { "subject": "LCC", "number": "3218", "name": "Theatre II ", - "description": "The dramatic literature, theory, performance practices, and historical and cultural context of theatre from the Renaissance through Restoration. Full Description " + "description": "The dramatic literature, theory, performance practices, and historical and cultural context of theatre from the Renaissance through Restoration." }, "LCC3219": { "subject": "LCC", "number": "3219", "name": "Literature and Medicine ", - "description": "This course examines works of literature dealing overtly with illness and healing, works about or by phyicians and other caregivers, and works that raise questions about ethical behavior in the face of sickness. Full Description " + "description": "This course examines works of literature dealing overtly with illness and healing, works about or by phyicians and other caregivers, and works that raise questions about ethical behavior in the face of sickness." }, "LCC3220": { "subject": "LCC", "number": "3220", "name": "Theatre III ", - "description": "The dramatic literature, theory, performance practices, and historical and cultural contexts of the theatre from Modernism to our contemporary period. Full Description " + "description": "The dramatic literature, theory, performance practices, and historical and cultural contexts of the theatre from Modernism to our contemporary period." }, "LCC3222": { "subject": "LCC", "number": "3222", "name": "Regionalism-Amer Lit ", - "description": "Explores the literary and cultural representations of a particular American region or locale (the South, the West, California, New York City, etc.) and the role such representations have played in the formation of both regional and national identity. Full Description " + "description": "Explores the literary and cultural representations of a particular American region or locale (the South, the West, California, New York City, etc.) and the role such representations have played in the formation of both regional and national identity." }, "LCC3225": { "subject": "LCC", "number": "3225", "name": "Gender Study-Disciplines ", - "description": "This course explores the concept of gender and its usefulness as a theoretical category in a variety of disciplines. It includes cultural studies of literature, communication media, cultural anthropology, sociology, history, and science. Full Description " + "description": "This course explores the concept of gender and its usefulness as a theoretical category in a variety of disciplines. It includes cultural studies of literature, communication media, cultural anthropology, sociology, history, and science." }, "LCC3226": { "subject": "LCC", "number": "3226", "name": "Major Authors ", - "description": "An examination of the works and career of a major author in historical and cultural context. Full Description " + "description": "An examination of the works and career of a major author in historical and cultural context." }, "LCC3228": { "subject": "LCC", "number": "3228", "name": "Shakespeare ", - "description": "An examination of Shakespeare's works with attention to generic conventions, historical context, and the relationship of text and performance. Major works of Shakespeare's contemporaries are studied as appropriate. Full Description " + "description": "An examination of Shakespeare's works with attention to generic conventions, historical context, and the relationship of text and performance. Major works of Shakespeare's contemporaries are studied as appropriate." }, "LCC3234": { "subject": "LCC", "number": "3234", "name": "Creative Writing ", - "description": "This course explores a range of creative literary genres, and combines study and analysis of existing modes of one or more forms in order to establish a basis for original creative work by class members. Full Description " + "description": "This course explores a range of creative literary genres, and combines study and analysis of existing modes of one or more forms in order to establish a basis for original creative work by class members." }, "LCC3252": { "subject": "LCC", "number": "3252", "name": "Film and Television ", - "description": "Explores in depth a theoretical issue central to film and/or television. Among its concerns are authorship, genre theory, spectatorship, ideology, narrative theory, and the relationship between these media and social history. Full Description " + "description": "Explores in depth a theoretical issue central to film and/or television. Among its concerns are authorship, genre theory, spectatorship, ideology, narrative theory, and the relationship between these media and social history." }, "LCC3254": { "subject": "LCC", "number": "3254", "name": "Film History ", - "description": "Surveys the history of film from its machine origins to its present digital developments. It focuses on various movements, figures, and narrative developments in world cinema. Full Description " + "description": "Surveys the history of film from its machine origins to its present digital developments. It focuses on various movements, figures, and narrative developments in world cinema." }, "LCC3256": { "subject": "LCC", "number": "3256", "name": "Major Filmmakers ", - "description": "Traces in depth an individual artist's career and affords students the opportunity to immerse themselves in the works of an important figure in the world of film. Full Description " + "description": "Traces in depth an individual artist's career and affords students the opportunity to immerse themselves in the works of an important figure in the world of film." }, "LCC3257": { "subject": "LCC", "number": "3257", "name": "Global Cinema ", - "description": "This course examines selected movements, styles, and trends in world cinema, emphasizing how contemporary film's global nature affects cultural representation. Full Description " + "description": "This course examines selected movements, styles, and trends in world cinema, emphasizing how contemporary film's global nature affects cultural representation." }, "LCC3258": { "subject": "LCC", "number": "3258", "name": "Documentary Film ", - "description": "This course examines significant movements, styles, and trends in fact-based cinema, emphasizing its cultural implications and formal strategies. Full Description " + "description": "This course examines significant movements, styles, and trends in fact-based cinema, emphasizing its cultural implications and formal strategies." }, "LCC3259": { "subject": "LCC", "number": "3259", "name": "Experimental Film ", - "description": "This course examines the history and trends in experimental film and video, emphasizing the relationship to avant-garde art movements. Full Description " + "description": "This course examines the history and trends in experimental film and video, emphasizing the relationship to avant-garde art movements." }, "LCC3262": { "subject": "LCC", "number": "3262", "name": "Performance Studies ", - "description": "An examination of cultural theories of performance and their application to the analysis of specific performative events. Full Description " + "description": "An examination of cultural theories of performance and their application to the analysis of specific performative events." }, "LCC3302": { "subject": "LCC", "number": "3302", "name": "Science, Tech & Ideology ", - "description": "Examines specific scientific, philosophical, and literary/cultural texts in order to determine the role ideology plays in the construction of culture, especially scientific and technological culture. Full Description " + "description": "Examines specific scientific, philosophical, and literary/cultural texts in order to determine the role ideology plays in the construction of culture, especially scientific and technological culture." }, "LCC3304": { "subject": "LCC", "number": "3304", "name": "Science, Tech, & Gender ", - "description": "Examines specific philosophical, scientific, and cultural texts to determine the role that gender has played in the scientific and technological knowledge, currently and historically. Full Description " + "description": "Examines specific philosophical, scientific, and cultural texts to determine the role that gender has played in the scientific and technological knowledge, currently and historically." }, "LCC3306": { "subject": "LCC", "number": "3306", "name": "Science,Technology& Race ", - "description": "Examines specific historical and contemporary construction of race, within the prevailing scientific theories and ideologies in order to determine the role played by \"race\" in scientific and technological culture. Full Description " + "description": "Examines specific historical and contemporary construction of race, within the prevailing scientific theories and ideologies in order to determine the role played by \"race\" in scientific and technological culture." }, "LCC3308": { "subject": "LCC", "number": "3308", "name": "Environment Ecocritic ", - "description": "Surveys the emergence of ecocriticism as an analytical framework for interpreting the verbal and visual rhetorics of environmentalism in both western and nonwestern cultures. Full Description " + "description": "Surveys the emergence of ecocriticism as an analytical framework for interpreting the verbal and visual rhetorics of environmentalism in both western and nonwestern cultures." }, "LCC3310": { "subject": "LCC", "number": "3310", "name": "Rhetoric-Sci Inquiry ", - "description": "This course takes as its subject the ways in which argumentative and persuasive discourse is used to create and disseminate scientific knowledge. Full Description " + "description": "This course takes as its subject the ways in which argumentative and persuasive discourse is used to create and disseminate scientific knowledge." }, "LCC3314": { "subject": "LCC", "number": "3314", "name": "Tech of Representation ", - "description": "Explores historical, cultural, and theoretical issues raised by technologies of representation, including written, spoken, and gestural languages; print, painting and illustration; still and moving photography; recorded sound; and computer-mediated communications and interactive digital media. Full Description " + "description": "Explores historical, cultural, and theoretical issues raised by technologies of representation, including written, spoken, and gestural languages; print, painting and illustration; still and moving photography; recorded sound; and computer-mediated communications and interactive digital media." }, "LCC3316": { "subject": "LCC", "number": "3316", "name": "Postcolonialism ", - "description": "Surveys the development of Postcolonial literary theory and historiography in order to analyze the interdependent discourses and practices of post-Enlightenment science/technology and European imperialism. Full Description " + "description": "Surveys the development of Postcolonial literary theory and historiography in order to analyze the interdependent discourses and practices of post-Enlightenment science/technology and European imperialism." }, "LCC3318": { "subject": "LCC", "number": "3318", "name": "Biomedicine & Culture ", - "description": "Discusses the history of biology and medicine; popular representations of health, disease, and the medical establishment; and the cultural implications of medical imaging technologies. Full Description " + "description": "Discusses the history of biology and medicine; popular representations of health, disease, and the medical establishment; and the cultural implications of medical imaging technologies." }, "LCC3352": { "subject": "LCC", "number": "3352", "name": "Film Technology ", - "description": "Examines the development of film technology and the implications of that technology for cinema's treatment of technology. Full Description " + "description": "Examines the development of film technology and the implications of that technology for cinema's treatment of technology." }, "LCC3362": { "subject": "LCC", "number": "3362", "name": "Sci, Tech & Performance ", - "description": "Examines contemporary theories of performance in relation to the production of scientific knowledge and technologies of representation. Full Description " + "description": "Examines contemporary theories of performance in relation to the production of scientific knowledge and technologies of representation." }, "LCC3400": { "subject": "LCC", "number": "3400", "name": "Tech Communication ", - "description": "Exposes students to the concepts and principles that drive technical communication. Students will learn about technical communication by studying principles that influence this genre of document production. Credit not allowed for LCC 3400 and (LCC 3401 or LCC 3403). Full Description " + "description": "Exposes students to the concepts and principles that drive technical communication. Students will learn about technical communication by studying principles that influence this genre of document production. Credit not allowed for LCC 3400 and (LCC 3401 or LCC 3403)." }, "LCC3401": { "subject": "LCC", "number": "3401", "name": "Technical Comm Practices ", - "description": "Designed to introduce students to the types of documents and communication abilities required by their future professions, the course focuses on an understanding of both visual and verbal rhetoric in application to technical documents. Credit not allowed for both LCC 3401 and (LCC 3400 or LCC 3403). Full Description " + "description": "Designed to introduce students to the types of documents and communication abilities required by their future professions, the course focuses on an understanding of both visual and verbal rhetoric in application to technical documents. Credit not allowed for both LCC 3401 and (LCC 3400 or LCC 3403)." }, "LCC3402": { "subject": "LCC", "number": "3402", "name": "Graphic/Visual Design ", - "description": "Introduction to fundamentals of graphic and visual design of print and digital media. Familiarity with use of the World Wide Web, page layout, and computer graphic software recommended. Full Description " + "description": "Introduction to fundamentals of graphic and visual design of print and digital media. Familiarity with use of the World Wide Web, page layout, and computer graphic software recommended." }, "LCC3403": { "subject": "LCC", "number": "3403", "name": "Tech Communication ", - "description": "This course introduces students to workplace document genres to develop visual and verbal skills in critical analysis and document development. Credit not allowed for both LCC 3403 and (LCC 3400 or LCC 3401). Full Description " + "description": "This course introduces students to workplace document genres to develop visual and verbal skills in critical analysis and document development. Credit not allowed for both LCC 3403 and (LCC 3400 or LCC 3401)." }, "LCC3404": { "subject": "LCC", "number": "3404", "name": "Design for the Internet ", - "description": "An introduction to the theory and practice of effective communication on the Internet through the design of documents for the World Wide Web. Full Description " + "description": "An introduction to the theory and practice of effective communication on the Internet through the design of documents for the World Wide Web." }, "LCC3406": { "subject": "LCC", "number": "3406", "name": "Video Production ", - "description": "An introduction to video production including basic skills in storyboarding, scripting, filming, editing, and sound. Full Description " + "description": "An introduction to video production including basic skills in storyboarding, scripting, filming, editing, and sound." }, "LCC3408": { "subject": "LCC", "number": "3408", "name": "Rhetoric-Tech Narratives ", - "description": "Focuses on the rhetorical problems posed by such narrative documents as technical proposals, recommendations reports, grant proposals, and marketing studies. Emphasis on document design, graphics, navigation systems, and editing. Full Description " + "description": "Focuses on the rhetorical problems posed by such narrative documents as technical proposals, recommendations reports, grant proposals, and marketing studies. Emphasis on document design, graphics, navigation systems, and editing." }, "LCC3410": { "subject": "LCC", "number": "3410", "name": "Non-Linear Documents ", - "description": "Focuses on the rhetorical problems posed by hypertext documents. Emphasis in designing for multiple audiences, page and document design, and navigation in a nonlinear environment. Full Description " + "description": "Focuses on the rhetorical problems posed by hypertext documents. Emphasis in designing for multiple audiences, page and document design, and navigation in a nonlinear environment." }, "LCC3412": { "subject": "LCC", "number": "3412", "name": "Communicating Sci/Tech ", - "description": "Examines both the theoretical and practical issues involved in communicating scientific and/or technological material to a variety of lay audiences. Full Description " + "description": "Examines both the theoretical and practical issues involved in communicating scientific and/or technological material to a variety of lay audiences." }, "LCC3414": { "subject": "LCC", "number": "3414", "name": "Intellectual Property ", - "description": "This course introduces students to intellectual property issues, focusing on ways that policy shapes national character and on application of constitutional and statutory law. Credit not allowed for both LCC 3414 and LCC 6319. Full Description " + "description": "This course introduces students to intellectual property issues, focusing on ways that policy shapes national character and on application of constitutional and statutory law. Credit not allowed for both LCC 3414 and LCC 6319." }, "LCC3502": { "subject": "LCC", "number": "3502", "name": "Medieval Lit & Culture ", - "description": "Introduction to Greece, Rome, and Medieval Europe through an examination of one or a few major cultural conflicts expressed in the literary genres and periods. Full Description " + "description": "Introduction to Greece, Rome, and Medieval Europe through an examination of one or a few major cultural conflicts expressed in the literary genres and periods." }, "LCC3504": { "subject": "LCC", "number": "3504", "name": "Renaissance Lit& Culture ", - "description": "An examination of literature and culture from 1450 to 1650 with an emphasis on both major achievements and divergent voices. Full Description " + "description": "An examination of literature and culture from 1450 to 1650 with an emphasis on both major achievements and divergent voices." }, "LCC3506": { "subject": "LCC", "number": "3506", "name": "Enlightenment Lit & Cult ", - "description": "Examines the nature of the age from an initial boldness, optimism, and faith in reason to a recognition of its limits. Full Description " + "description": "Examines the nature of the age from an initial boldness, optimism, and faith in reason to a recognition of its limits." }, "LCC3508": { "subject": "LCC", "number": "3508", "name": "American Culture I ", - "description": "American literature from the Puritan period through the Civil War, including major movements, key authors and texts, study of literary works within broader historical and cultural context. Full Description " + "description": "American literature from the Puritan period through the Civil War, including major movements, key authors and texts, study of literary works within broader historical and cultural context." }, "LCC3510": { "subject": "LCC", "number": "3510", "name": "American Culture II ", - "description": "Examines representations of the United States from its geographical expansion in the late-nineteenth century to the closing of the frontier and emergence as global power. Full Description " + "description": "Examines representations of the United States from its geographical expansion in the late-nineteenth century to the closing of the frontier and emergence as global power." }, "LCC3512": { "subject": "LCC", "number": "3512", "name": "Brit/Cont Romanticism ", - "description": "Examines British and Continental Romanticism as it appeared during the latter part of the eighteenth century and the first half of the nineteenth century. Full Description " + "description": "Examines British and Continental Romanticism as it appeared during the latter part of the eighteenth century and the first half of the nineteenth century." }, "LCC3514": { "subject": "LCC", "number": "3514", "name": "Victorian Lit & Culture ", - "description": "Investigates the period 1830-1901 in English literature and culture, focusing on how that period defined key questions, especially ones about human nature, society, and the relation of religion to science. Full Description " + "description": "Investigates the period 1830-1901 in English literature and culture, focusing on how that period defined key questions, especially ones about human nature, society, and the relation of religion to science." }, "LCC3516": { "subject": "LCC", "number": "3516", "name": "Lit & Cultural Modernism ", - "description": "A partial investigation of the aesthetic ferment that characterizes English-language cultural production from the turn of the century to the end of World War II. Full Description " + "description": "A partial investigation of the aesthetic ferment that characterizes English-language cultural production from the turn of the century to the end of World War II." }, "LCC3518": { "subject": "LCC", "number": "3518", "name": "Lit/Cult Postmodernism ", - "description": "A survey of major themes, representational techniques, and social and cultural concerns of postmodern art and literature. Full Description " + "description": "A survey of major themes, representational techniques, and social and cultural concerns of postmodern art and literature." }, "LCC3661": { "subject": "LCC", "number": "3661", "name": "Theatre Production III ", - "description": "In this \"hands-on\" course, students will create and execute a publicity campaign and operate the box office for DramaTech Theatre productions. Full Description " + "description": "In this \"hands-on\" course, students will create and execute a publicity campaign and operate the box office for DramaTech Theatre productions." }, "LCC3662": { "subject": "LCC", "number": "3662", "name": "Theatre Production IV ", - "description": "This course provides students an opportunity to perform onstage in a production at DramaTech Theatre. Auditions are required. Full Description " + "description": "This course provides students an opportunity to perform onstage in a production at DramaTech Theatre. Auditions are required." }, "LCC3705": { "subject": "LCC", "number": "3705", "name": "Prin-Information Design ", - "description": "Presents principles and practices guiding the development of emerging digital genres. Emphasis on maximizing the affordances of the computer in organizing and communicating complex information. Full Description " + "description": "Presents principles and practices guiding the development of emerging digital genres. Emphasis on maximizing the affordances of the computer in organizing and communicating complex information." }, "LCC3710": { "subject": "LCC", "number": "3710", "name": "Prin-Interaction Design ", - "description": "Examines principles of design for shaping the procedural and participatory affordances of digital environments, emphasizing the role of cultural context and media transitions. Full Description " + "description": "Examines principles of design for shaping the procedural and participatory affordances of digital environments, emphasizing the role of cultural context and media transitions." }, "LCC3823": { "subject": "LCC", "number": "3823", "name": "Special Topics Lit/Cult ", - "description": "Examination of one or more topics of current interest in literary and cultural studies. Full Description " + "description": "Examination of one or more topics of current interest in literary and cultural studies." }, "LCC3833": { "subject": "LCC", "number": "3833", "name": "Special Topics in STAC ", - "description": "Study of one or more current issues in science, technology, and culture. Full Description " + "description": "Study of one or more current issues in science, technology, and culture." }, "LCC3843": { "subject": "LCC", "number": "3843", "name": "Spec Topic-Communication ", - "description": "Examination of one or more topics of current interest in communication studies. Full Description " + "description": "Examination of one or more topics of current interest in communication studies." }, "LCC3853": { "subject": "LCC", "number": "3853", "name": "Special Topics in Film ", - "description": "Examines one or more current topics in film studies. Full Description " + "description": "Examines one or more current topics in film studies." }, "LCC3863": { "subject": "LCC", "number": "3863", "name": "Spec Topics-Performance ", - "description": "Examination of one or more topics of current interest in performance studies. Full Description " + "description": "Examination of one or more topics of current interest in performance studies." }, "LCC3XXX": { "subject": "LCC", "number": "3XXX", "name": "Lit Comm&Culture Elective ", - "description": " Full Description " + "description": "" }, "LCC4100": { "subject": "LCC", "number": "4100", "name": "Seminar in STAC ", - "description": "A capstone seminar to the major, this course will ask students to draw upon their training in order to engage topical issues in the cultural studies of science. Full Description " + "description": "A capstone seminar to the major, this course will ask students to draw upon their training in order to engage topical issues in the cultural studies of science." }, "LCC4102": { "subject": "LCC", "number": "4102", "name": "Senior Thesis ", - "description": "Preparation for and writing of a thesis through faculty-directed independent study. Full Description " + "description": "Preparation for and writing of a thesis through faculty-directed independent study." }, "LCC4200": { "subject": "LCC", "number": "4200", "name": "Seminar in Lit/Cult ", - "description": "Concentration on a single literary or cultural theorist and/or a major school of literary or cultural theory. Schools of theory that will be considered include, among others, Materialist, Feminist, Structuralist, Post-Structuralist, and Cultural Studies. Full Description " + "description": "Concentration on a single literary or cultural theorist and/or a major school of literary or cultural theory. Schools of theory that will be considered include, among others, Materialist, Feminist, Structuralist, Post-Structuralist, and Cultural Studies." }, "LCC4204": { "subject": "LCC", "number": "4204", "name": "Poetry and Poetics II ", - "description": "Advanced study of the traditions of poetic theory and practice in conjunction with a weekly workshop session centered on students' own poetry. Full Description " + "description": "Advanced study of the traditions of poetic theory and practice in conjunction with a weekly workshop session centered on students' own poetry." }, "LCC4300": { "subject": "LCC", "number": "4300", "name": "Sem-Biomedicine&Culture ", - "description": "This course offers an opportunity to investigate in-depth biomedical issues, biomedical concerns in a particular period, or the impact of technological development on biomedicine. Full Description " + "description": "This course offers an opportunity to investigate in-depth biomedical issues, biomedical concerns in a particular period, or the impact of technological development on biomedicine." }, "LCC4400": { "subject": "LCC", "number": "4400", "name": "Seminar in Media Studies ", - "description": "Offers an in-depth investigation of the historical development and cultural impact of different forms of media including: television, film, and interactive electronic applications. Full Description " + "description": "Offers an in-depth investigation of the historical development and cultural impact of different forms of media including: television, film, and interactive electronic applications." }, "LCC4402": { "subject": "LCC", "number": "4402", "name": "Basic Multimedia Design ", - "description": "Introduces students to client and user needs and technology assessments, the interactive design process, and to creation of proof-of-concept applications using Macromedia Director. Full Description " + "description": "Introduces students to client and user needs and technology assessments, the interactive design process, and to creation of proof-of-concept applications using Macromedia Director." }, "LCC4404": { "subject": "LCC", "number": "4404", "name": "Adv Design & Production ", - "description": "Intensive studio course dealing with advanced concepts and techniques of the design and production of interactive multimedia. Full Description " + "description": "Intensive studio course dealing with advanced concepts and techniques of the design and production of interactive multimedia." }, "LCC4406": { "subject": "LCC", "number": "4406", "name": "Profession Communication ", - "description": "Intended primarily for students planning careers in professional communication, this course will alternate among a number of issues including intellectual property law, integrating print and electronic media, and cultural studies of corporate environments. Full Description " + "description": "Intended primarily for students planning careers in professional communication, this course will alternate among a number of issues including intellectual property law, integrating print and electronic media, and cultural studies of corporate environments." }, "LCC4500": { "subject": "LCC", "number": "4500", "name": "Seminar in Film Studies ", - "description": "An in-depth investigation of a major movement, theory, period, or technological development in film studies. Full Description " + "description": "An in-depth investigation of a major movement, theory, period, or technological development in film studies." }, "LCC4600": { "subject": "LCC", "number": "4600", "name": "Seminar in Performance ", - "description": "An in-depth investigation of a specific issue or theme in Performance Studies. Full Description " + "description": "An in-depth investigation of a specific issue or theme in Performance Studies." }, "LCC4602": { "subject": "LCC", "number": "4602", "name": "Performance Practicum ", - "description": "Practical experience and theoretical investigations in theatre and performance making including acting, directing, designing, playwriting, performance art, performance and new media. Full Description " + "description": "Practical experience and theoretical investigations in theatre and performance making including acting, directing, designing, playwriting, performance art, performance and new media." }, "LCC4698": { "subject": "LCC", "number": "4698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "LCC4699": { "subject": "LCC", "number": "4699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "LCC4701": { "subject": "LCC", "number": "4701", "name": "Ug Rsch Proposal Writing ", - "description": "This course is intended to guide undergraduate students from all disciplines through the stages of writing a proposal for their research option project and thesis. Prerequisite: 3 hours total of undergraduate research (xx2698, xx2699 xx4698, or xx4699) either before entry to class or during same term. Credit not allowed for both LCC 4701 and LCC 4700. Full Description " + "description": "This course is intended to guide undergraduate students from all disciplines through the stages of writing a proposal for their research option project and thesis. Prerequisite: 3 hours total of undergraduate research (xx2698, xx2699 xx4698, or xx4699) either before entry to class or during same term. Credit not allowed for both LCC 4701 and LCC 4700." }, "LCC4702": { "subject": "LCC", "number": "4702", "name": "Ug Rsch Thesis Writing ", - "description": "This course is intended to guide undergraduate students from all disciplines through the stages of writing their final thesis for the research option. Prerequisite: 9 total hours of undergraduate research (xx2698, xx2699, xx4698, or xx4699) must have been completed before the course or by completion of course. Credit not allowed for both LCC 4702 and LCC 4700. Full Description " + "description": "This course is intended to guide undergraduate students from all disciplines through the stages of writing their final thesis for the research option. Prerequisite: 9 total hours of undergraduate research (xx2698, xx2699, xx4698, or xx4699) must have been completed before the course or by completion of course. Credit not allowed for both LCC 4702 and LCC 4700." }, "LCC4720": { "subject": "LCC", "number": "4720", "name": "Interactive Narrative ", - "description": "Examines significant examples of this emerging genre, including its roots in experimental uses of older media, and engages students in creating their own interactive narrative. Full Description " + "description": "Examines significant examples of this emerging genre, including its roots in experimental uses of older media, and engages students in creating their own interactive narrative." }, "LCC4725": { "subject": "LCC", "number": "4725", "name": "Games Dsgn-Cultural Prac ", - "description": "Emphasis is on the design elements common to games and the expressive possibilities and cultural concerns specific to digital games. Full Description " + "description": "Emphasis is on the design elements common to games and the expressive possibilities and cultural concerns specific to digital games." }, "LCC4730": { "subject": "LCC", "number": "4730", "name": "Experimental Digital Art ", - "description": "Provides students with key conceptual, formal, aesthetic and technical elements needed in creating artifacts in areas ranging from augmented and mixed reality to scientific visualization. Full Description " + "description": "Provides students with key conceptual, formal, aesthetic and technical elements needed in creating artifacts in areas ranging from augmented and mixed reality to scientific visualization." }, "LCC4731": { "subject": "LCC", "number": "4731", "name": "Game AI ", - "description": "Examines expressive possibilities of artificial intelligence techniques in computer games. Full Description " + "description": "Examines expressive possibilities of artificial intelligence techniques in computer games." }, "LCC4732": { "subject": "LCC", "number": "4732", "name": "Intelligent Story Sys ", - "description": "Examines AI-based approaches to representing, understanding, and generating stories. Full Description " + "description": "Examines AI-based approaches to representing, understanding, and generating stories." }, "LCC4811": { "subject": "LCC", "number": "4811", "name": "Special Topics ", - "description": "Topics of current interest not covered in the regular course offerings. Full Description " + "description": "Topics of current interest not covered in the regular course offerings." }, "LCC4812": { "subject": "LCC", "number": "4812", "name": "Special Topics ", - "description": "Topics of interest not covered in the regular course offerings. Full Description " + "description": "Topics of interest not covered in the regular course offerings." }, "LCC4813": { "subject": "LCC", "number": "4813", "name": "Special Topics ", - "description": "Topics of interest not covered in the regular course offerings. Full Description " + "description": "Topics of interest not covered in the regular course offerings." }, "LCC4814": { "subject": "LCC", "number": "4814", "name": "Special Topics ", - "description": "Topics of interest not covered in the regular course offerings. Full Description " + "description": "Topics of interest not covered in the regular course offerings." }, "LCC4815": { "subject": "LCC", "number": "4815", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "LCC4824": { "subject": "LCC", "number": "4824", "name": "Special Topics ", - "description": "Topics of interest not covered in the regular course offerings. Full Description " + "description": "Topics of interest not covered in the regular course offerings." }, "LCC4904": { "subject": "LCC", "number": "4904", "name": "Internship ", - "description": "Offers students a workplace-based learning experience that stresses application of principles and skills gained in other STC classes. Full Description " + "description": "Offers students a workplace-based learning experience that stresses application of principles and skills gained in other STC classes." }, "LCC4906": { "subject": "LCC", "number": "4906", "name": "Special Problems ", - "description": "Study of specialized aspects of literature or cultural studies selected on the basis of current interest. Full Description " + "description": "Study of specialized aspects of literature or cultural studies selected on the basis of current interest." }, "LCC4XXX": { "subject": "LCC", "number": "4XXX", "name": "Lit Com&Culture Elective ", - "description": " Full Description " + "description": "" }, "LCC6213": { "subject": "LCC", "number": "6213", "name": "Educ Appls-New Media ", - "description": "This seminar introduces students to a variety of perspectives on learning as they apply to work in educational technology. Full Description " + "description": "This seminar introduces students to a variety of perspectives on learning as they apply to work in educational technology." }, "LCC6215": { "subject": "LCC", "number": "6215", "name": "Media Studies ", - "description": "This course focuses on the study of mass media from historical, theoretical, and cultural perspectives. Full Description " + "description": "This course focuses on the study of mass media from historical, theoretical, and cultural perspectives." }, "LCC6310": { "subject": "LCC", "number": "6310", "name": "Comput-Expressive Medium ", - "description": "Explores the development of the representational power of the computer and the interplay between digital technology and culture. Full Description " + "description": "Explores the development of the representational power of the computer and the interplay between digital technology and culture." }, "LCC6311": { "subject": "LCC", "number": "6311", "name": "Visual Culture & Design ", - "description": "Explores visual media through a mutually instructive and integrated interplay between critical analyses and the creation of digital artifacts. Full Description " + "description": "Explores visual media through a mutually instructive and integrated interplay between critical analyses and the creation of digital artifacts." }, "LCC6312": { "subject": "LCC", "number": "6312", "name": "Dsgn,Tech&Representation ", - "description": "Explores historical, cultural, and theoretical issues raised by technologies of representation through critical analyses and the creation of digital artifacts. Full Description " + "description": "Explores historical, cultural, and theoretical issues raised by technologies of representation through critical analyses and the creation of digital artifacts." }, "LCC6313": { "subject": "LCC", "number": "6313", "name": "Prin-Interactive Design ", - "description": "Design principles of exploiting the affordances of the digital medium, including large information spaces and procedural environments. Full Description " + "description": "Design principles of exploiting the affordances of the digital medium, including large information spaces and procedural environments." }, "LCC6314": { "subject": "LCC", "number": "6314", "name": "Design Networked Media ", - "description": "Issues in hypertextual and multimedia design in networked environments, including the World Wide Web, interactive television, and wireless applications. Full Description " + "description": "Issues in hypertextual and multimedia design in networked environments, including the World Wide Web, interactive television, and wireless applications." }, "LCC6315": { "subject": "LCC", "number": "6315", "name": "Project Production ", - "description": "Focuses on defining user and client needs, analysis of competing products, budgeting, scheduling and management of the production process, and the design of the testing process. Full Description " + "description": "Focuses on defining user and client needs, analysis of competing products, budgeting, scheduling and management of the production process, and the design of the testing process." }, "LCC6316": { "subject": "LCC", "number": "6316", "name": "History Digital Media ", - "description": "Examines digital media in the context of earlier media, such as handwriting and printing as well as photography, radio, film, and television. Full Description " + "description": "Examines digital media in the context of earlier media, such as handwriting and printing as well as photography, radio, film, and television." }, "LCC6317": { "subject": "LCC", "number": "6317", "name": "Interactive Fiction ", - "description": "Students create interactive fictions in a variety of formats including intersecting story worlds, interactive characters, simulations, and replay worlds. Full Description " + "description": "Students create interactive fictions in a variety of formats including intersecting story worlds, interactive characters, simulations, and replay worlds." }, "LCC6318": { "subject": "LCC", "number": "6318", "name": "Experimental Media ", - "description": "Students will develop the critical, intellectual, and creative tools necessary to understand, work with, and reimagine design at the developmental stages of emerging technologies. Full Description " + "description": "Students will develop the critical, intellectual, and creative tools necessary to understand, work with, and reimagine design at the developmental stages of emerging technologies." }, "LCC6319": { "subject": "LCC", "number": "6319", "name": "Intellect Prop Plcy&Law ", - "description": "Students examine constitutionally informed policy and pragmatic legal issues in intellectual property law, focusing on the effects of power structures and information digitization. Credit not allowed for both LCC 6319 and LCC 3414. Full Description " + "description": "Students examine constitutionally informed policy and pragmatic legal issues in intellectual property law, focusing on the effects of power structures and information digitization. Credit not allowed for both LCC 6319 and LCC 3414." }, "LCC6320": { "subject": "LCC", "number": "6320", "name": "Globalization& New Media ", - "description": "Historical and theoretical approach to the connections between modes of global integration and modes of representing information. Full Description " + "description": "Historical and theoretical approach to the connections between modes of global integration and modes of representing information." }, "LCC6321": { "subject": "LCC", "number": "6321", "name": "Arch-Responsive Spaces ", - "description": "Students explore the architecture of hybrid computational and physical spaces, and how we can build habitations configured of physical matter and responsive computational media. Full Description " + "description": "Students explore the architecture of hybrid computational and physical spaces, and how we can build habitations configured of physical matter and responsive computational media." }, "LCC6325": { "subject": "LCC", "number": "6325", "name": "Game Design and Analysis ", - "description": "Focused topics in the theory and practice of game design, theory, and analysis, including issues of creation, and reception, such as a single sub-genre, procedural technique, or media tradition. Full Description " + "description": "Focused topics in the theory and practice of game design, theory, and analysis, including issues of creation, and reception, such as a single sub-genre, procedural technique, or media tradition." }, "LCC6330": { "subject": "LCC", "number": "6330", "name": "Expressive Virtual Space ", - "description": "Practical and theoretical investigation of virtual space in real-time 3D environments with a focus on meditation and functionality. Full Description " + "description": "Practical and theoretical investigation of virtual space in real-time 3D environments with a focus on meditation and functionality." }, "LCC6340": { "subject": "LCC", "number": "6340", "name": "Mixed Reality Exp Design ", - "description": "This course introduces students to the design of digital experienced for education and entertainment using Augmented Reality, Tangible Computing, or other forms of Mixed Reality. Full Description " + "description": "This course introduces students to the design of digital experienced for education and entertainment using Augmented Reality, Tangible Computing, or other forms of Mixed Reality." }, "LCC6350": { "subject": "LCC", "number": "6350", "name": "Spatial Const of Meaning ", - "description": "Study of the way in which space is manipulated to construct meaning in design formulation. Emphasis on logical structure, geometry, and experiential correlates. Full Description " + "description": "Study of the way in which space is manipulated to construct meaning in design formulation. Emphasis on logical structure, geometry, and experiential correlates." }, "LCC6399": { "subject": "LCC", "number": "6399", "name": "Discovery & Invention ", - "description": "This course provides students with a survey of applied research methods for digital media design, emphasizing how to develop innovative computational products and services. Full Description " + "description": "This course provides students with a survey of applied research methods for digital media design, emphasizing how to develop innovative computational products and services." }, "LCC6650": { "subject": "LCC", "number": "6650", "name": "Project Studio ", - "description": "This course offers students the opportunity to work on focused research within existing long-term projects of the New Media Center (NMC). Full Description " + "description": "This course offers students the opportunity to work on focused research within existing long-term projects of the New Media Center (NMC)." }, "LCC6743": { "subject": "LCC", "number": "6743", "name": "STS Core Seminar ", - "description": "This survey course covers key works in Science, Technology & Society, and guest lectures introduce students to faculty doing STS-related research across the Ivan Allen College. Credit not allowed for both LCC 6743 and PUBP 6743 or HTS 6743. Full Description " + "description": "This survey course covers key works in Science, Technology & Society, and guest lectures introduce students to faculty doing STS-related research across the Ivan Allen College. Credit not allowed for both LCC 6743 and PUBP 6743 or HTS 6743." }, "LCC6748": { "subject": "LCC", "number": "6748", "name": "Social Justice & Design ", - "description": "Focuses on social justice from a Science, Technology, and Society (STS) point of view that is informed by critical theory and philosophy of design. Cerdit not allowed for both LCC 6748 and PUBP 6748. Full Description " + "description": "Focuses on social justice from a Science, Technology, and Society (STS) point of view that is informed by critical theory and philosophy of design. Cerdit not allowed for both LCC 6748 and PUBP 6748." }, "LCC6749": { "subject": "LCC", "number": "6749", "name": "Feminist Theory STS ", - "description": "This course is an advanced science, technology and society (STS) seminar in feminist theory. Credit not allowed for both LCC 6749 and PUBP 6749. Full Description " + "description": "This course is an advanced science, technology and society (STS) seminar in feminist theory. Credit not allowed for both LCC 6749 and PUBP 6749." }, "LCC6753": { "subject": "LCC", "number": "6753", "name": "HCI Prof Prep & Practice ", - "description": "Preparation for a professional career in HCI. Speakers. Atlanta-area lab visits. Career trajectories. Project presentations. Technical, resume and interviewing skills, Atlanta-area HCI resources. Credit not allowed for both LCC 6753 and CS 6753 or PSYC 6753. Full Description " + "description": "Preparation for a professional career in HCI. Speakers. Atlanta-area lab visits. Career trajectories. Project presentations. Technical, resume and interviewing skills, Atlanta-area HCI resources. Credit not allowed for both LCC 6753 and CS 6753 or PSYC 6753." }, "LCC6770": { "subject": "LCC", "number": "6770", "name": "Mixed reality Design ", - "description": "Introduction to the design of Mixed Reality experiences. Focuses on informal design, integration of media theory, HCI and technology issues. Significant group design projects. Full Description " + "description": "Introduction to the design of Mixed Reality experiences. Focuses on informal design, integration of media theory, HCI and technology issues. Significant group design projects." }, "LCC6800": { "subject": "LCC", "number": "6800", "name": "Master's Project ", - "description": "Final project course in information design and technology. Credit not allowed for both LCC 6800 and LCC 6998. Full Description " + "description": "Final project course in information design and technology. Credit not allowed for both LCC 6800 and LCC 6998." }, "LCC6998": { "subject": "LCC", "number": "6998", "name": "HCI Master's Project ", - "description": "Final project for students completing a Human-Computer Interaction master's degree in the Digital media track. Repeatable for multi-semester projects. Credit not allowed for both LCC 6998 and LCC 6800. Full Description " + "description": "Final project for students completing a Human-Computer Interaction master's degree in the Digital media track. Repeatable for multi-semester projects. Credit not allowed for both LCC 6998 and LCC 6800." }, "LCC6XXX": { "subject": "LCC", "number": "6XXX", "name": "Lit,Com&Culture Elective ", - "description": " Full Description " + "description": "" }, "LCC7000": { "subject": "LCC", "number": "7000", "name": "Master's Thesis ", - "description": "Final thesis course in information design and technology. Full Description " + "description": "Final thesis course in information design and technology." }, "LCC7999": { "subject": "LCC", "number": "7999", "name": "PhD Qualifying Prep ", - "description": " Full Description " + "description": "" }, "LCC8000": { "subject": "LCC", "number": "8000", "name": "Proseminar-Media Theory ", - "description": "Key traditions of media theory that contribute to the study of Digital Media. Full Description " + "description": "Key traditions of media theory that contribute to the study of Digital Media." }, "LCC8001": { "subject": "LCC", "number": "8001", "name": "Digital Media Studies ", - "description": "Advanced work in production and critique of new media forms. Full Description " + "description": "Advanced work in production and critique of new media forms." }, "LCC8801": { "subject": "LCC", "number": "8801", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "LCC8802": { "subject": "LCC", "number": "8802", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "LCC8803": { "subject": "LCC", "number": "8803", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "LCC8804": { "subject": "LCC", "number": "8804", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "LCC8805": { "subject": "LCC", "number": "8805", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "LCC8806": { "subject": "LCC", "number": "8806", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "LCC8813": { "subject": "LCC", "number": "8813", "name": "Adv Issues-Interact Narr ", - "description": "Focused topics in the theory and practice of interactive narrative, both fiction and non-fiction, such as a single sub-genre, procedural technique, or media tradition. Full Description " + "description": "Focused topics in the theory and practice of interactive narrative, both fiction and non-fiction, such as a single sub-genre, procedural technique, or media tradition." }, "LCC8823": { "subject": "LCC", "number": "8823", "name": "Spec Top-Game Dsgn&Analy ", - "description": "Advanced topics in the theory and practice of game design, theory, and analysis, including creation, reception, procedural technique, and tradition. Full Description " + "description": "Advanced topics in the theory and practice of game design, theory, and analysis, including creation, reception, procedural technique, and tradition." }, "LCC8831": { "subject": "LCC", "number": "8831", "name": "Sp Top-Tech of Represent ", - "description": "Topics in the theoretical investigation of the development of representational technology from scroll and codex to digital media. Full Description " + "description": "Topics in the theoretical investigation of the development of representational technology from scroll and codex to digital media." }, "LCC8832": { "subject": "LCC", "number": "8832", "name": "Sp Top-Tech of Represent ", - "description": "Topics in the theoretical investigation of the development of representational technology from scroll and codex to digital media. Full Description " + "description": "Topics in the theoretical investigation of the development of representational technology from scroll and codex to digital media." }, "LCC8833": { "subject": "LCC", "number": "8833", "name": "Sp Top-Tech of Represent ", - "description": "Topics in the theoretical investigation of the development of representational technology from scroll and codex to digital media. Full Description " + "description": "Topics in the theoretical investigation of the development of representational technology from scroll and codex to digital media." }, "LCC8903": { "subject": "LCC", "number": "8903", "name": "Special Problems in HCI ", - "description": "Small-group or individual investigation of advanced topics in human-computer interaction. Guided study and research. Full Description " + "description": "Small-group or individual investigation of advanced topics in human-computer interaction. Guided study and research." }, "LCC8910": { "subject": "LCC", "number": "8910", "name": "Special Problems ", - "description": "An independent study course. Full Description " + "description": "An independent study course." }, "LCC8920": { "subject": "LCC", "number": "8920", "name": "Special Problems ", - "description": "An independent study course. Full Description " + "description": "An independent study course." }, "LCC8930": { "subject": "LCC", "number": "8930", "name": "Special Problems ", - "description": "An independent study course. Full Description " + "description": "An independent study course." }, "LCC8940": { "subject": "LCC", "number": "8940", "name": "Special Problems ", - "description": "An independent study course. Full Description " + "description": "An independent study course." }, "LCC8950": { "subject": "LCC", "number": "8950", "name": "Special Problems ", - "description": "An independent study course. Full Description " + "description": "An independent study course." }, "LCC8997": { "subject": "LCC", "number": "8997", "name": "Teaching Assistantship ", - "description": "For graduate students holding teaching assistantships. Full Description " + "description": "For graduate students holding teaching assistantships." }, "LCC8998": { "subject": "LCC", "number": "8998", "name": "Research Assistantship ", - "description": "For graduate students holding research assistantships. Full Description " + "description": "For graduate students holding research assistantships." }, "LCC8999": { "subject": "LCC", "number": "8999", "name": "PhD Dissertation Prep ", - "description": " Full Description " + "description": "" }, "LCC9000": { "subject": "LCC", "number": "9000", "name": "Doctoral Thesis ", - "description": " Full Description " + "description": "" }, "LING1813": { "subject": "LING", "number": "1813", "name": "Special Topics ", - "description": "Topics of current interest in Linguistics. Full Description " + "description": "Topics of current interest in Linguistics." }, "LING1XXX": { "subject": "LING", "number": "1XXX", "name": "Linguistics Elective ", - "description": " Full Description " + "description": "" }, "LING2100": { "subject": "LING", "number": "2100", "name": "Intro to Linguistics ", - "description": "Introductory course that surveys various fields in linguistics, including first/second language acquisition, phonetics/phonology, morphology/syntax, semantics/pragmatics, language variation, computational linguistics/natural language processing, and writing systems. Credit not allowed for both LING 2100 and LING 2001. Full Description " + "description": "Introductory course that surveys various fields in linguistics, including first/second language acquisition, phonetics/phonology, morphology/syntax, semantics/pragmatics, language variation, computational linguistics/natural language processing, and writing systems. Credit not allowed for both LING 2100 and LING 2001." }, "LING2698": { "subject": "LING", "number": "2698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "LING2699": { "subject": "LING", "number": "2699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "LING2813": { "subject": "LING", "number": "2813", "name": "Special Topics ", - "description": "Topics of current interest in Linguistics. Full Description " + "description": "Topics of current interest in Linguistics." }, "LING2XXX": { "subject": "LING", "number": "2XXX", "name": "Linguistics Elective ", - "description": " Full Description " + "description": "" }, "LING3813": { "subject": "LING", "number": "3813", "name": "Special Topics ", - "description": "Permits students to work in languages not treated in other courses and/or engage in special language research. Full Description " + "description": "Permits students to work in languages not treated in other courses and/or engage in special language research." }, "LING3823": { "subject": "LING", "number": "3823", "name": "Special Topics ", - "description": "Topics of current interest in Linguistics. Full Description " + "description": "Topics of current interest in Linguistics." }, "LING3833": { "subject": "LING", "number": "3833", "name": "Special Topics ", - "description": "Topics of current interest in Linguistics. Full Description " + "description": "Topics of current interest in Linguistics." }, "LING3XXX": { "subject": "LING", "number": "3XXX", "name": "Linguistics Elective ", - "description": " Full Description " + "description": "" }, "LING4698": { "subject": "LING", "number": "4698", "name": "Research Assistnatship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "LING4699": { "subject": "LING", "number": "4699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "LING4780": { "subject": "LING", "number": "4780", "name": "Jpn Applied Linguistics ", - "description": "This course helps to develop analytical skills to better understand human languages, particularly English and Japanese. Taught in English. Credit not allowed for both LING 4780 and JAPN 4780. Full Description " + "description": "This course helps to develop analytical skills to better understand human languages, particularly English and Japanese. Taught in English. Credit not allowed for both LING 4780 and JAPN 4780." }, "LING4813": { "subject": "LING", "number": "4813", "name": "Special Topics ", - "description": "Topics of interest not covered in the regular course offerings. Full Description " + "description": "Topics of interest not covered in the regular course offerings." }, "LING4823": { "subject": "LING", "number": "4823", "name": "Special Topics ", - "description": "Topics of current interest in Linguistics. Full Description " + "description": "Topics of current interest in Linguistics." }, "LING4833": { "subject": "LING", "number": "4833", "name": "Special Topics ", - "description": "Topics of current interest in Linguistics. Full Description " + "description": "Topics of current interest in Linguistics." }, "LING4901": { "subject": "LING", "number": "4901", "name": "Special Prob-Linguistics ", - "description": "Special problems course for advanced students; topics to be arranged with instructor. Full Description " + "description": "Special problems course for advanced students; topics to be arranged with instructor." }, "LING4902": { "subject": "LING", "number": "4902", "name": "Special Prob-Linguistics ", - "description": "Special problems for advanced students; topics to be arranged with instructor. Full Description " + "description": "Special problems for advanced students; topics to be arranged with instructor." }, "LING4XXX": { "subject": "LING", "number": "4XXX", "name": "Linguistics Elective ", - "description": " Full Description " + "description": "" }, "LMC1XXX": { "subject": "LMC", "number": "1XXX", "name": "Lit,Comm&Culture Elective ", - "description": " Full Description " + "description": "" }, "LMC2000": { "subject": "LMC", "number": "2000", "name": "Intro-Lit, Media, & Comm ", - "description": "An the introductory course to LMC, this course introduces students to key texts and modes of analysis associated with the study of literature, film, digital media, and communication. Full Description " + "description": "An the introductory course to LMC, this course introduces students to key texts and modes of analysis associated with the study of literature, film, digital media, and communication." }, "LMC2050": { "subject": "LMC", "number": "2050", "name": "Lit, Media, Comm Seminar ", - "description": "This course introduces second-semester majors to the intellectual movements, interpretive frameworks, and research skills central to the disciplines represented in LMC. Full Description " + "description": "This course introduces second-semester majors to the intellectual movements, interpretive frameworks, and research skills central to the disciplines represented in LMC." }, "LMC2100": { "subject": "LMC", "number": "2100", "name": "Intro to STAC ", - "description": "Relation to other courses, programs and curricula: As the introductory course to the LMC Science, Technology and Culture thread, this course explores the way in which disciplines construct and represent the knowledge they generate. Full Description " + "description": "Relation to other courses, programs and curricula: As the introductory course to the LMC Science, Technology and Culture thread, this course explores the way in which disciplines construct and represent the knowledge they generate." }, "LMC2200": { "subject": "LMC", "number": "2200", "name": "Intro to Gender Studies ", - "description": "This course introduces the cultural concept of gender, examining topics such as biology and gender, social constructions of gender, and the psychology of sexual roles. Full Description " + "description": "This course introduces the cultural concept of gender, examining topics such as biology and gender, social constructions of gender, and the psychology of sexual roles." }, "LMC2300": { "subject": "LMC", "number": "2300", "name": "Intro Biomedicine & Cult ", - "description": "This course provides an introduction to central cultural topics in biomedicine, such as health care, medical practice, medical research, and the systems of cultural meaning within which ideas of health and disease circulate. Full Description " + "description": "This course provides an introduction to central cultural topics in biomedicine, such as health care, medical practice, medical research, and the systems of cultural meaning within which ideas of health and disease circulate." }, "LMC2400": { "subject": "LMC", "number": "2400", "name": "Intro to Media Studies ", - "description": "This course offers an introduction to the historical development and cultural impact of various forms of media print, radio, television, film, and interactive electronic applications. Full Description " + "description": "This course offers an introduction to the historical development and cultural impact of various forms of media print, radio, television, film, and interactive electronic applications." }, "LMC2500": { "subject": "LMC", "number": "2500", "name": "Intro to Film ", - "description": "Introduces film techniques and vocabulary in an historical and cultural context. Written texts are supplemented by viewings of specific shots, scenes, and films. Full Description " + "description": "Introduces film techniques and vocabulary in an historical and cultural context. Written texts are supplemented by viewings of specific shots, scenes, and films." }, "LMC2600": { "subject": "LMC", "number": "2600", "name": "Intro to Perform Studies ", - "description": "An examination of the origins of the field of performance studies in literary study of theatre and drama, anthropological investigations of ritual, and sociological analyses of performance in everyday life. Full Description " + "description": "An examination of the origins of the field of performance studies in literary study of theatre and drama, anthropological investigations of ritual, and sociological analyses of performance in everyday life." }, "LMC2661": { "subject": "LMC", "number": "2661", "name": "Theatre Production I ", - "description": "In this hands-on course, students learn theatrical construction and painting techniques while building scenery for DramaTech productions. Full Description " + "description": "In this hands-on course, students learn theatrical construction and painting techniques while building scenery for DramaTech productions." }, "LMC2662": { "subject": "LMC", "number": "2662", "name": "Theatre Production II ", - "description": "In this hands-on course, students create the lighting, property, and costume effects for two DramaTech Theatre productions. Full Description " + "description": "In this hands-on course, students create the lighting, property, and costume effects for two DramaTech Theatre productions." }, "LMC2698": { "subject": "LMC", "number": "2698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "LMC2699": { "subject": "LMC", "number": "2699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "LMC2700": { "subject": "LMC", "number": "2700", "name": "Intr-Computational Media ", - "description": "Introduction to key concepts, methods, and achievements in computational media, and the convergence of digital technology with cultural traditions of representation. Full Description " + "description": "Introduction to key concepts, methods, and achievements in computational media, and the convergence of digital technology with cultural traditions of representation." }, "LMC2720": { "subject": "LMC", "number": "2720", "name": "Prin of Visual Design ", - "description": "Studio-based course that provides students with basic skills needed to create digital visual images and to analyze designs from historical and theoretical perspectives. Full Description " + "description": "Studio-based course that provides students with basic skills needed to create digital visual images and to analyze designs from historical and theoretical perspectives." }, "LMC2730": { "subject": "LMC", "number": "2730", "name": "Construct-Moving Image ", - "description": "Provides the student with the conceptual, formal, aesthetic, and technical approaches to reconsider film, videos, and animation within the context of emerging digital forms. Full Description " + "description": "Provides the student with the conceptual, formal, aesthetic, and technical approaches to reconsider film, videos, and animation within the context of emerging digital forms." }, "LMC2813": { "subject": "LMC", "number": "2813", "name": "Special Topics in STAC ", - "description": "Study of one or more topics of current interest in the area of science, technology, and culture. Full Description " + "description": "Study of one or more topics of current interest in the area of science, technology, and culture." }, "LMC2823": { "subject": "LMC", "number": "2823", "name": "Special Topics-Lit/Cult ", - "description": "Examination of one or more topics of current interest in literary and cultural studies. Full Description " + "description": "Examination of one or more topics of current interest in literary and cultural studies." }, "LMC2XXX": { "subject": "LMC", "number": "2XXX", "name": "Lit,Comm&Culture Elective ", - "description": " Full Description " + "description": "" }, "LMC3102": { "subject": "LMC", "number": "3102", "name": "The Classical Tradition ", - "description": "Explores the definition and transmission of science and technology within Greek, Arabic, and medieval Latin contexts. Full Description " + "description": "Explores the definition and transmission of science and technology within Greek, Arabic, and medieval Latin contexts." }, "LMC3104": { "subject": "LMC", "number": "3104", "name": "Age Scientific Discovery ", - "description": "Examines the relationships among texts representing the literary, artistic, and scientific thought of the fifteenth and sixteenth centuries. Full Description " + "description": "Examines the relationships among texts representing the literary, artistic, and scientific thought of the fifteenth and sixteenth centuries." }, "LMC3106": { "subject": "LMC", "number": "3106", "name": "Age Sci Revolution ", - "description": "Examines interrelation of technological, literary, artistic, and philosophical thought in the late sixteenth and seventeenth centuries. Full Description " + "description": "Examines interrelation of technological, literary, artistic, and philosophical thought in the late sixteenth and seventeenth centuries." }, "LMC3108": { "subject": "LMC", "number": "3108", "name": "Sci Tech & Enlightenment ", - "description": "Considers the conceptual reformulation of the internal and external world urged by the sciences, technology, and culture of the Enlightenment. Full Description " + "description": "Considers the conceptual reformulation of the internal and external world urged by the sciences, technology, and culture of the Enlightenment." }, "LMC3110": { "subject": "LMC", "number": "3110", "name": "Sci, Tech & Romanticism ", - "description": "Examines the relationships among romantic ideology, science, and literature, including Romanticism's imaginative responses to Enlightenment science and the Industrial Revolution. Full Description " + "description": "Examines the relationships among romantic ideology, science, and literature, including Romanticism's imaginative responses to Enlightenment science and the Industrial Revolution." }, "LMC3112": { "subject": "LMC", "number": "3112", "name": "Evolution&Industrial Age ", - "description": "Connects later nineteenth century scientific and technological concepts and discoveries, particularly theories of evolution, to the literature and culture of the industrial age. Full Description " + "description": "Connects later nineteenth century scientific and technological concepts and discoveries, particularly theories of evolution, to the literature and culture of the industrial age." }, "LMC3114": { "subject": "LMC", "number": "3114", "name": "Sci, Tech & Modernism ", - "description": "Explores a cross-section of technological, scientific, and cultural production characteristics of the first half of the twentieth century. Full Description " + "description": "Explores a cross-section of technological, scientific, and cultural production characteristics of the first half of the twentieth century." }, "LMC3116": { "subject": "LMC", "number": "3116", "name": "Sci Tech & Postmodernisms ", - "description": "Focuses on the relation among information technology, nonlinear physics, and the art, literature, and culture of postmodernism. Explores postmodern critiques of the Enlightenment and modernity. Full Description " + "description": "Focuses on the relation among information technology, nonlinear physics, and the art, literature, and culture of postmodernism. Explores postmodern critiques of the Enlightenment and modernity." }, "LMC3118": { "subject": "LMC", "number": "3118", "name": "Sci Tech&American Empire ", - "description": "Considers nineteenth and twentieth century science and technology as they shaped American culture with particular attention to the relationship between science, technology, progress, and empire. Full Description " + "description": "Considers nineteenth and twentieth century science and technology as they shaped American culture with particular attention to the relationship between science, technology, progress, and empire." }, "LMC3202": { "subject": "LMC", "number": "3202", "name": "Studies in Fiction ", - "description": "Examines the elements of fiction and what has made fiction, especially the novel, distinctive, popular, and enduring. Readings may include formal, cultural, and historical theories. Full Description " + "description": "Examines the elements of fiction and what has made fiction, especially the novel, distinctive, popular, and enduring. Readings may include formal, cultural, and historical theories." }, "LMC3204": { "subject": "LMC", "number": "3204", "name": "Poetry and Poetics ", - "description": "A study of traditions of poetic practice and poetic theory in English through intensive line by line readings of poems from different periods in literary history. Full Description " + "description": "A study of traditions of poetic practice and poetic theory in English through intensive line by line readings of poems from different periods in literary history." }, "LMC3206": { "subject": "LMC", "number": "3206", "name": "Communication & Culture ", - "description": "Examines ways in which forms and media of communication create and are created by other cultural constructs. Full Description " + "description": "Examines ways in which forms and media of communication create and are created by other cultural constructs." }, "LMC3208": { "subject": "LMC", "number": "3208", "name": "African-Amer Lit/Cult ", - "description": "Explores the works of African American writers from the Colonial period to the present and examines a variety of cultural constructs that have fundamentally shaped the African American literary tradition. Full Description " + "description": "Explores the works of African American writers from the Colonial period to the present and examines a variety of cultural constructs that have fundamentally shaped the African American literary tradition." }, "LMC3210": { "subject": "LMC", "number": "3210", "name": "Ethnicity American Cult ", - "description": "Explores literary and historical works considering ethnic issues in American culture, including immigration, social assimilation, \"double consciousness\", the development of ethnic identity/pride, and multiculturalism. Full Description " + "description": "Explores literary and historical works considering ethnic issues in American culture, including immigration, social assimilation, \"double consciousness\", the development of ethnic identity/pride, and multiculturalism." }, "LMC3212": { "subject": "LMC", "number": "3212", "name": "Women, Lit & Culture ", - "description": "Students in this course will analyze writings by women and examine feminist and other relevant cultural critiques of literature. Full Description " + "description": "Students in this course will analyze writings by women and examine feminist and other relevant cultural critiques of literature." }, "LMC3214": { "subject": "LMC", "number": "3214", "name": "Science Fiction ", - "description": "Examines science fiction texts from the last 200 years to show how they reflect ambigous reactions to change. Full Description " + "description": "Examines science fiction texts from the last 200 years to show how they reflect ambigous reactions to change." }, "LMC3215": { "subject": "LMC", "number": "3215", "name": "Science Fiction Film TV ", - "description": "This course investigates science fiction as the genre developed during film history and has become one of the most popular forms of television narrative. Full Description " + "description": "This course investigates science fiction as the genre developed during film history and has become one of the most popular forms of television narrative." }, "LMC3216": { "subject": "LMC", "number": "3216", "name": "Theatre I ", - "description": "The dramatic literature, theory, performance practices, and historical culture context of the theatre from prehistory through the Medieval period. Full Description " + "description": "The dramatic literature, theory, performance practices, and historical culture context of the theatre from prehistory through the Medieval period." }, "LMC3218": { "subject": "LMC", "number": "3218", "name": "Theatre II ", - "description": "The dramatic literature, theory, performance practices, and historical culture context of the theatre in the Renaissance and Restoration periods. Full Description " + "description": "The dramatic literature, theory, performance practices, and historical culture context of the theatre in the Renaissance and Restoration periods." }, "LMC3219": { "subject": "LMC", "number": "3219", "name": "Literature & Medicine ", - "description": "This course examines works of literature dealing overtly with illness and healing, works about or by physicians and other caregivers, and works that raise questions about ethical behavior in the face of sickness. Full Description " + "description": "This course examines works of literature dealing overtly with illness and healing, works about or by physicians and other caregivers, and works that raise questions about ethical behavior in the face of sickness." }, "LMC3220": { "subject": "LMC", "number": "3220", "name": "Theatre III ", - "description": "The dramatic literature, theory, performance practices, and historical culture context of the theatre in the Renaissance and Restoration periods. Full Description " + "description": "The dramatic literature, theory, performance practices, and historical culture context of the theatre in the Renaissance and Restoration periods." }, "LMC3222": { "subject": "LMC", "number": "3222", "name": "Regionalism American Lit ", - "description": "Explores the literary and cultural representations of a particular American region or locale (the South, the West, California, New York City, etc.) and the role such presentations have played in the formation of both regional and national identity. Full Description " + "description": "Explores the literary and cultural representations of a particular American region or locale (the South, the West, California, New York City, etc.) and the role such presentations have played in the formation of both regional and national identity." }, "LMC3225": { "subject": "LMC", "number": "3225", "name": "Gender Study-Disciplines ", - "description": "This course explores the concept of gender and its usefulness as a theoretical category in a variety of disciplines. It includes cultural studies of literature, communication media, cultural anthropology, sociology, history, and science. Full Description " + "description": "This course explores the concept of gender and its usefulness as a theoretical category in a variety of disciplines. It includes cultural studies of literature, communication media, cultural anthropology, sociology, history, and science." }, "LMC3226": { "subject": "LMC", "number": "3226", "name": "Major Authors ", - "description": "An examination of the works and career of a major author in historical and cultural context. Full Description " + "description": "An examination of the works and career of a major author in historical and cultural context." }, "LMC3228": { "subject": "LMC", "number": "3228", "name": "Shakespeare ", - "description": "An examination of Shakespeare's works with attention to generic conventions, historical context, and the relationship of text and performance. Major works of Shakespeare's contemporaries are studied as appropriate. Full Description " + "description": "An examination of Shakespeare's works with attention to generic conventions, historical context, and the relationship of text and performance. Major works of Shakespeare's contemporaries are studied as appropriate." }, "LMC3234": { "subject": "LMC", "number": "3234", "name": "Creative Writing ", - "description": "This course explores a range of creative literary genres, and combines study and analysis of existing modes of one or more forms in order to establish a basis for original creative work by class members. Full Description " + "description": "This course explores a range of creative literary genres, and combines study and analysis of existing modes of one or more forms in order to establish a basis for original creative work by class members." }, "LMC3244": { "subject": "LMC", "number": "3244", "name": "Mod/Contemp Brit Poetry ", - "description": "This course examines British poetry of the last 100 years in relation to modern and postmodern modes of cultural expression, philosophy, and literary critcism. Full Description " + "description": "This course examines British poetry of the last 100 years in relation to modern and postmodern modes of cultural expression, philosophy, and literary critcism." }, "LMC3248": { "subject": "LMC", "number": "3248", "name": "Poetry & Digital Culture ", - "description": "This course examines modernist, postmodern, and contemporary poetry in relation to digital culture, including the computer, World Wide Web, Web 2.0, social media, and apps. Full Description " + "description": "This course examines modernist, postmodern, and contemporary poetry in relation to digital culture, including the computer, World Wide Web, Web 2.0, social media, and apps." }, "LMC3252": { "subject": "LMC", "number": "3252", "name": "Film and Television ", - "description": "Explores in depth a theoretical issue central to film and/or television. Among its concerns are authorship, genre history, spectatorship, ideology, narrative theory, and the relationship between these media and social history. Full Description " + "description": "Explores in depth a theoretical issue central to film and/or television. Among its concerns are authorship, genre history, spectatorship, ideology, narrative theory, and the relationship between these media and social history." }, "LMC3253": { "subject": "LMC", "number": "3253", "name": "Animation ", - "description": "This course examines animation from its earliest days as a \"cinema of attractions' to its current development as a predominantly digital practice. Full Description " + "description": "This course examines animation from its earliest days as a \"cinema of attractions' to its current development as a predominantly digital practice." }, "LMC3254": { "subject": "LMC", "number": "3254", "name": "Film History ", - "description": "Surveys the history of film from its machine origins to its present digital developments. It focuses on various movements, figures, and narrative developments in world cinema. Full Description " + "description": "Surveys the history of film from its machine origins to its present digital developments. It focuses on various movements, figures, and narrative developments in world cinema." }, "LMC3255": { "subject": "LMC", "number": "3255", "name": "Cinema & Digital Culture ", - "description": "This course examines the impact of digital technologies on contemporary cinema as well as the influence of different cinematic traditions on new digital media. Full Description " + "description": "This course examines the impact of digital technologies on contemporary cinema as well as the influence of different cinematic traditions on new digital media." }, "LMC3256": { "subject": "LMC", "number": "3256", "name": "Major Filmmakers ", - "description": "Traces in depth an individual artist's career and affords students the opportunity to immerse themselves in the works of an important figure in the world of film. Full Description " + "description": "Traces in depth an individual artist's career and affords students the opportunity to immerse themselves in the works of an important figure in the world of film." }, "LMC3257": { "subject": "LMC", "number": "3257", "name": "Global Cinema ", - "description": "This course examines selected movements, styles, and trends in world cinema, emphasizing how contemporary film's global nature affects cultural representation. Full Description " + "description": "This course examines selected movements, styles, and trends in world cinema, emphasizing how contemporary film's global nature affects cultural representation." }, "LMC3258": { "subject": "LMC", "number": "3258", "name": "Documentary Film ", - "description": "This course examines significant movements, styles, and trends in fact-based film, emphasizing its cultural implications and formal strategies. Full Description " + "description": "This course examines significant movements, styles, and trends in fact-based film, emphasizing its cultural implications and formal strategies." }, "LMC3259": { "subject": "LMC", "number": "3259", "name": "Experimental Film ", - "description": "This course examines the history and trends in experimental film and video, emphasizing the relationship to avant-garde art movements. Full Description " + "description": "This course examines the history and trends in experimental film and video, emphasizing the relationship to avant-garde art movements." }, "LMC3262": { "subject": "LMC", "number": "3262", "name": "Performance Studies ", - "description": "An examination of cultural theories of performance and their application to the analysis of specific performative events. Full Description " + "description": "An examination of cultural theories of performance and their application to the analysis of specific performative events." }, "LMC3302": { "subject": "LMC", "number": "3302", "name": "Sci, Tech & Ideology ", - "description": "Examines specific scientific, philosophical, and literary/cultural texts in order to determine the role ideology plays in the construction of culture, especially scientific and technological culture. Full Description " + "description": "Examines specific scientific, philosophical, and literary/cultural texts in order to determine the role ideology plays in the construction of culture, especially scientific and technological culture." }, "LMC3304": { "subject": "LMC", "number": "3304", "name": "Science, Tech & Gender ", - "description": "Examines specific philosophical, scientific, and cultural texts to determine the role that gender has played in the scientific and technological knowledge, currently and historically. Full Description " + "description": "Examines specific philosophical, scientific, and cultural texts to determine the role that gender has played in the scientific and technological knowledge, currently and historically." }, "LMC3306": { "subject": "LMC", "number": "3306", "name": "Science, Tech & Race ", - "description": "Examines specific historical and contemporary construction of race, within the prevailing scientific theories and ideologies in order to determine the role played by \"race\" in scientific and technological culture. Full Description " + "description": "Examines specific historical and contemporary construction of race, within the prevailing scientific theories and ideologies in order to determine the role played by \"race\" in scientific and technological culture." }, "LMC3308": { "subject": "LMC", "number": "3308", "name": "Environment Ecocritic ", - "description": "Surveys the emergence of ecocriticism as an analytical framework for interpreting the verbal and visual rhetorics of environmentalism in both western and nonwestern cultures. Full Description " + "description": "Surveys the emergence of ecocriticism as an analytical framework for interpreting the verbal and visual rhetorics of environmentalism in both western and nonwestern cultures." }, "LMC3310": { "subject": "LMC", "number": "3310", "name": "Rhetoric Sci Inquiry ", - "description": "This course takes as its subject the ways in which argumentative and persuasive discourse is used to create and disseminate scientific knowledge. Full Description " + "description": "This course takes as its subject the ways in which argumentative and persuasive discourse is used to create and disseminate scientific knowledge." }, "LMC3314": { "subject": "LMC", "number": "3314", "name": "Tech of Representation ", - "description": "Explores historical, cultural, and theoretical issues related by technologies of representation, including written, spoken, and gestural languages; print, painting and illustration; still and moving photography; recorded sound; and computer mediated communications and interactive digital media. Full Description " + "description": "Explores historical, cultural, and theoretical issues related by technologies of representation, including written, spoken, and gestural languages; print, painting and illustration; still and moving photography; recorded sound; and computer mediated communications and interactive digital media." }, "LMC3316": { "subject": "LMC", "number": "3316", "name": "Postcolonialism ", - "description": "Studies in the development of Postcolonial literary theory and historiography in order to analyze the interdependent discourses and practices of post-Enlightenment science/technology and European imperialism. Full Description " + "description": "Studies in the development of Postcolonial literary theory and historiography in order to analyze the interdependent discourses and practices of post-Enlightenment science/technology and European imperialism." }, "LMC3318": { "subject": "LMC", "number": "3318", "name": "Biomedicine & Culture ", - "description": "Discuss the history of biology and medicine; popular representations of health, disease, and the medical establishment; and the cultural implications of medical imaging technologies. Full Description " + "description": "Discuss the history of biology and medicine; popular representations of health, disease, and the medical establishment; and the cultural implications of medical imaging technologies." }, "LMC3352": { "subject": "LMC", "number": "3352", "name": "Film Technology ", - "description": "Examines the development of film technology and the implications of that technology for cinema's treatment of technology. Full Description " + "description": "Examines the development of film technology and the implications of that technology for cinema's treatment of technology." }, "LMC3362": { "subject": "LMC", "number": "3362", "name": "Sci, Tech & Performance ", - "description": "Examines contemporary theories of performance in relation to the production of scientific knowledge and technologies of representation. Full Description " + "description": "Examines contemporary theories of performance in relation to the production of scientific knowledge and technologies of representation." }, "LMC3402": { "subject": "LMC", "number": "3402", "name": "Graphic & Visual Design ", - "description": "Introduction to fundamentals of graphic and visual design of print and digital media. Familiarity with use of the World Wibe Web, page layout, and computer graphic software recommended. Full Description " + "description": "Introduction to fundamentals of graphic and visual design of print and digital media. Familiarity with use of the World Wibe Web, page layout, and computer graphic software recommended." }, "LMC3403": { "subject": "LMC", "number": "3403", "name": "Tech Communication ", - "description": "This course introduces students to workplace document genres to develop visual and verbal skills in critical analysis and document development. Full Description " + "description": "This course introduces students to workplace document genres to develop visual and verbal skills in critical analysis and document development." }, "LMC3406": { "subject": "LMC", "number": "3406", "name": "Video Production ", - "description": "An introduction to video production including basic skills in storyboarding, scripting, filming, editing, and sound. Full Description " + "description": "An introduction to video production including basic skills in storyboarding, scripting, filming, editing, and sound." }, "LMC3408": { "subject": "LMC", "number": "3408", "name": "Rhetoric-Tech Narratives ", - "description": "Focuses on the rhetorical problems posed by such narrative documents as technical proposals, recommendations reports, grant proposals, and marketing studies. Emphasis on document design, graphics, navigation systems, and editing. Full Description " + "description": "Focuses on the rhetorical problems posed by such narrative documents as technical proposals, recommendations reports, grant proposals, and marketing studies. Emphasis on document design, graphics, navigation systems, and editing." }, "LMC3410": { "subject": "LMC", "number": "3410", "name": "Non-Linear Documents ", - "description": "Focuses on the rhetorical problems posed by hypertext documents. Emphasis in designing for multiple audiences, page and document design, and navigation in a nonlinear environment. Full Description " + "description": "Focuses on the rhetorical problems posed by hypertext documents. Emphasis in designing for multiple audiences, page and document design, and navigation in a nonlinear environment." }, "LMC3412": { "subject": "LMC", "number": "3412", "name": "Communicating Sci/Tech ", - "description": "Examines both the theoretical and practical issues involved in communicating scientific and/or technological material to a variety of lay audiences. Full Description " + "description": "Examines both the theoretical and practical issues involved in communicating scientific and/or technological material to a variety of lay audiences." }, "LMC3414": { "subject": "LMC", "number": "3414", "name": "Intellectual Property ", - "description": "This course introduces students to intellectual property issues, focusing on ways that policy shapes national character and on application of constitutional and statutory law. Full Description " + "description": "This course introduces students to intellectual property issues, focusing on ways that policy shapes national character and on application of constitutional and statutory law." }, "LMC3431": { "subject": "LMC", "number": "3431", "name": "Tech Comm Approaches ", - "description": "Part of a multi-semester sequence that students take in tandem with major-specific classes to develop professional written, visual, oral, and analytic strategies. Full Description " + "description": "Part of a multi-semester sequence that students take in tandem with major-specific classes to develop professional written, visual, oral, and analytic strategies." }, "LMC3432": { "subject": "LMC", "number": "3432", "name": "Tech Comm Strategies ", - "description": "Part of a multi-semester sequence that students take in tandem with major-specific classes to develop professional written, visual, oral, and analytic strategies. Full Description " + "description": "Part of a multi-semester sequence that students take in tandem with major-specific classes to develop professional written, visual, oral, and analytic strategies." }, "LMC3502": { "subject": "LMC", "number": "3502", "name": "Medieval Lit & Culture ", - "description": "Introduction to Greece, Rome, and Medieval Europe through an examination of one or a few major culture conflicts expressed in the literary genres and periods. Full Description " + "description": "Introduction to Greece, Rome, and Medieval Europe through an examination of one or a few major culture conflicts expressed in the literary genres and periods." }, "LMC3504": { "subject": "LMC", "number": "3504", "name": "Renaisance Lit&Culture ", - "description": "An examination of literature and culture from 1450 to 1650 with an emphasis on both major achievements and divergent voices. Full Description " + "description": "An examination of literature and culture from 1450 to 1650 with an emphasis on both major achievements and divergent voices." }, "LMC3506": { "subject": "LMC", "number": "3506", "name": "Enlightenment Lit & Cult ", - "description": "Examines the nature of the age from an intial boldness, optimism, and faith in reason to a recognition of its limits. Full Description " + "description": "Examines the nature of the age from an intial boldness, optimism, and faith in reason to a recognition of its limits." }, "LMC3508": { "subject": "LMC", "number": "3508", "name": "American Culture I ", - "description": "American literature from the Puritan period through the Civil War, including major movements, key authors and texts, study of literary works within broader historical and cultural context. Full Description " + "description": "American literature from the Puritan period through the Civil War, including major movements, key authors and texts, study of literary works within broader historical and cultural context." }, "LMC3510": { "subject": "LMC", "number": "3510", "name": "American Culture II ", - "description": "Examines presentations of the United States from its geographical expansion in the late-nineteenth century to the closing of the frontier and emergence as global power. Full Description " + "description": "Examines presentations of the United States from its geographical expansion in the late-nineteenth century to the closing of the frontier and emergence as global power." }, "LMC3512": { "subject": "LMC", "number": "3512", "name": "Brit/Cont Romanticism ", - "description": "Examines British and Continental Romanticism as it appeared during the latter part of the eighteenth century and the first half of the nineteenth century. Full Description " + "description": "Examines British and Continental Romanticism as it appeared during the latter part of the eighteenth century and the first half of the nineteenth century." }, "LMC3514": { "subject": "LMC", "number": "3514", "name": "Victorian Lit & Culture ", - "description": "Investigates the period 1830 - 1901 in English literature and culture, focusing on how that period defined key questions, especially ones about human nature, society, and the relation of religion to science. Full Description " + "description": "Investigates the period 1830 - 1901 in English literature and culture, focusing on how that period defined key questions, especially ones about human nature, society, and the relation of religion to science." }, "LMC3516": { "subject": "LMC", "number": "3516", "name": "Lit & Cultural Modernism ", - "description": "A partial investigation of the aesthetic ferment that characterizes English-language cultural production from the turn of the century to the end of World War II. Full Description " + "description": "A partial investigation of the aesthetic ferment that characterizes English-language cultural production from the turn of the century to the end of World War II." }, "LMC3518": { "subject": "LMC", "number": "3518", "name": "Lit/Cult Postmodernism ", - "description": "A survey of major themes, representational techniques, and social and cultural concerns of postmodern art and literature. Full Description " + "description": "A survey of major themes, representational techniques, and social and cultural concerns of postmodern art and literature." }, "LMC3661": { "subject": "LMC", "number": "3661", "name": "Theatre Production III ", - "description": "In this \"hands-on\" course, students will create and execute a publicity campaign and operate the box office for DramaTech Theatre productions. Full Description " + "description": "In this \"hands-on\" course, students will create and execute a publicity campaign and operate the box office for DramaTech Theatre productions." }, "LMC3662": { "subject": "LMC", "number": "3662", "name": "Theatre Production IV ", - "description": "This course providess students an opportunity to perform onstage in a production at DramaTech Theatre. Auditions are required. Full Description " + "description": "This course providess students an opportunity to perform onstage in a production at DramaTech Theatre. Auditions are required." }, "LMC3705": { "subject": "LMC", "number": "3705", "name": "Prin Information Design ", - "description": "Presents principles and practices guiding the development of emerging digital genres. Emphasis on maximizing the affordances of the computer in organizing and communicating complex information. Full Description " + "description": "Presents principles and practices guiding the development of emerging digital genres. Emphasis on maximizing the affordances of the computer in organizing and communicating complex information." }, "LMC3710": { "subject": "LMC", "number": "3710", "name": "Prin Interaction Design ", - "description": "Examines principles of design for shaping the procedural and participatory affordances of digital environments, emphasizing the role of cultural context and media transitions. Full Description " + "description": "Examines principles of design for shaping the procedural and participatory affordances of digital environments, emphasizing the role of cultural context and media transitions." }, "LMC3773": { "subject": "LMC", "number": "3773", "name": "Global Issues&Leadership ", - "description": "This project based class uses global issues to explore diverse viewpoints, cultures and cognitive biases to develop leadership and presentation skills in small diverse groups. Full Description " + "description": "This project based class uses global issues to explore diverse viewpoints, cultures and cognitive biases to develop leadership and presentation skills in small diverse groups." }, "LMC3823": { "subject": "LMC", "number": "3823", "name": "Special Topics Lit/Cult ", - "description": "Examination of one or more topics of current interest in literary and cultural studies. Full Description " + "description": "Examination of one or more topics of current interest in literary and cultural studies." }, "LMC3833": { "subject": "LMC", "number": "3833", "name": "Special Topics in STAC ", - "description": "Study of one or more current issues in science, technology, and culture. Full Description " + "description": "Study of one or more current issues in science, technology, and culture." }, "LMC3843": { "subject": "LMC", "number": "3843", "name": "Spec Topic-Communication ", - "description": "Examination of one or more topics of current interest in communication studies. Full Description " + "description": "Examination of one or more topics of current interest in communication studies." }, "LMC3853": { "subject": "LMC", "number": "3853", "name": "Special Topics in Film ", - "description": "Examines one or more current topics in film studies. Full Description " + "description": "Examines one or more current topics in film studies." }, "LMC3863": { "subject": "LMC", "number": "3863", "name": "Spec Topics-Performance ", - "description": "Examination of one or more topics of current interest in performance studies. Full Description " + "description": "Examination of one or more topics of current interest in performance studies." }, "LMC3XXX": { "subject": "LMC", "number": "3XXX", "name": "Lit,Comm&Culture Elective ", - "description": " Full Description " + "description": "" }, "LMC4100": { "subject": "LMC", "number": "4100", "name": "Seminar in STAC ", - "description": "A capstone seminar to the LMC major, this course will ask students to draw upon their training in order to engage topical issues in the cultural studies of science. Full Description " + "description": "A capstone seminar to the LMC major, this course will ask students to draw upon their training in order to engage topical issues in the cultural studies of science." }, "LMC4102": { "subject": "LMC", "number": "4102", "name": "Senior Thesis ", - "description": "Preparation for and writing of a thesis through faculty-directed independent study. Full Description " + "description": "Preparation for and writing of a thesis through faculty-directed independent study." }, "LMC4200": { "subject": "LMC", "number": "4200", "name": "Seminar Lit/Cult Theory ", - "description": "Concentration on a single literary or cultural theorist and/or a major school of literary or cultural theory. Schools of theory that will be considered include, among others, Materialist, Feminist, Structuralist, Post-Structuralist, and Cultural Studies. Full Description " + "description": "Concentration on a single literary or cultural theorist and/or a major school of literary or cultural theory. Schools of theory that will be considered include, among others, Materialist, Feminist, Structuralist, Post-Structuralist, and Cultural Studies." }, "LMC4204": { "subject": "LMC", "number": "4204", "name": "Poetry and Poetics II ", - "description": "Advanced study of the traditions of poetic theory and practice with a special emphasis on processes of poetic conception and revision. Full Description " + "description": "Advanced study of the traditions of poetic theory and practice with a special emphasis on processes of poetic conception and revision." }, "LMC4300": { "subject": "LMC", "number": "4300", "name": "Seminar Biomed & Culture ", - "description": "This course offers an opportunity to investigate in-depth biomedical issues, biomedical concerns in a particular period, or the impact of technological development on biomedicine. Full Description " + "description": "This course offers an opportunity to investigate in-depth biomedical issues, biomedical concerns in a particular period, or the impact of technological development on biomedicine." }, "LMC4400": { "subject": "LMC", "number": "4400", "name": "Seminar in Media Studies ", - "description": "Offers an in-depth investigation of the historical development and cultural impact of different forms of media including: television, film, and interactive electronic applications. Full Description " + "description": "Offers an in-depth investigation of the historical development and cultural impact of different forms of media including: television, film, and interactive electronic applications." }, "LMC4406": { "subject": "LMC", "number": "4406", "name": "Professional Comm ", - "description": "Intended primarily for students planning careers in professional communication, this course will alternate among a number of issues including property law, integrating print and electronic media, and cultural studies of corporate environments. Full Description " + "description": "Intended primarily for students planning careers in professional communication, this course will alternate among a number of issues including property law, integrating print and electronic media, and cultural studies of corporate environments." }, "LMC4500": { "subject": "LMC", "number": "4500", "name": "Seminar in Film Studies ", - "description": "An in-depth investigation of a major movement, theory, period, or technological development in film studies. Full Description " + "description": "An in-depth investigation of a major movement, theory, period, or technological development in film studies." }, "LMC4600": { "subject": "LMC", "number": "4600", "name": "Seminar Perform Studies ", - "description": "An in-depth investigation of a specific issue or theme in Performance Studies. Full Description " + "description": "An in-depth investigation of a specific issue or theme in Performance Studies." }, "LMC4602": { "subject": "LMC", "number": "4602", "name": "Performance Practicum ", - "description": "Practical experience and theoretical investigations in theatre and performance making including acting, directing, designing, playwriting, performance art, performance and new media. Full Description " + "description": "Practical experience and theoretical investigations in theatre and performance making including acting, directing, designing, playwriting, performance art, performance and new media." }, "LMC4698": { "subject": "LMC", "number": "4698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "LMC4699": { "subject": "LMC", "number": "4699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "LMC4701": { "subject": "LMC", "number": "4701", "name": "US Rsch Proposal Writing ", - "description": "This course is intended to guide undergraduate students from all disciplines through the stages of writing a proposal for their research option project and thesis. Full Description " + "description": "This course is intended to guide undergraduate students from all disciplines through the stages of writing a proposal for their research option project and thesis." }, "LMC4702": { "subject": "LMC", "number": "4702", "name": "US Rsch Thesis Writing ", - "description": "This course is intended to guide undergraduate students from all disciplines through the stages of writing their undergraduate thesis. Full Description " + "description": "This course is intended to guide undergraduate students from all disciplines through the stages of writing their undergraduate thesis." }, "LMC4720": { "subject": "LMC", "number": "4720", "name": "Interactive Narrative ", - "description": "Examines significant examples of this emerging genre, including its roots ini experimental uses of older media, and engages students in creating their own interactive narrative. Full Description " + "description": "Examines significant examples of this emerging genre, including its roots ini experimental uses of older media, and engages students in creating their own interactive narrative." }, "LMC4725": { "subject": "LMC", "number": "4725", "name": "Game Design ", - "description": "Emphasis is on the design elements common to games and the expressive possibilities and cultural concerns specific to digital games. Full Description " + "description": "Emphasis is on the design elements common to games and the expressive possibilities and cultural concerns specific to digital games." }, "LMC4730": { "subject": "LMC", "number": "4730", "name": "Experimental Digital Art ", - "description": "Provides students with key conceptual, formal, aesthetic and technical elements needed in creating artifacts in areas ranging from augmented and mixed reality to scientific visualization. Full Description " + "description": "Provides students with key conceptual, formal, aesthetic and technical elements needed in creating artifacts in areas ranging from augmented and mixed reality to scientific visualization." }, "LMC4731": { "subject": "LMC", "number": "4731", "name": "Game AI ", - "description": "Examines expressive possibilities of artificial intelligence techniques in computer games. Full Description " + "description": "Examines expressive possibilities of artificial intelligence techniques in computer games." }, "LMC4811": { "subject": "LMC", "number": "4811", "name": "Special Topics ", - "description": "Topic of current interest not covered in the regular course offerings. Full Description " + "description": "Topic of current interest not covered in the regular course offerings." }, "LMC4812": { "subject": "LMC", "number": "4812", "name": "Special Topics ", - "description": "Topics of current interest not covered in the regular course offerings. Full Description " + "description": "Topics of current interest not covered in the regular course offerings." }, "LMC4813": { "subject": "LMC", "number": "4813", "name": "Special Topics ", - "description": "Topics of interest not covered in the regular course offerings. Full Description " + "description": "Topics of interest not covered in the regular course offerings." }, "LMC4814": { "subject": "LMC", "number": "4814", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "LMC4815": { "subject": "LMC", "number": "4815", "name": "Special Topics ", - "description": "Topics of interest not covered in the regular course offerings. Full Description " + "description": "Topics of interest not covered in the regular course offerings." }, "LMC4904": { "subject": "LMC", "number": "4904", "name": "Internship ", - "description": "Offers students a workplace-based learning experience that stresses application of principles and skills gained in other STAC classes. Full Description " + "description": "Offers students a workplace-based learning experience that stresses application of principles and skills gained in other STAC classes." }, "LMC4XXX": { "subject": "LMC", "number": "4XXX", "name": "Lit,Comm&Culture Elective ", - "description": " Full Description " + "description": "" }, "LMC6213": { "subject": "LMC", "number": "6213", "name": "Edu Applications New ", - "description": "This course introduces students to a variety of perspectives on learning as they apply to work in educational technology. Students cannot receive credit for LMC 6213 and LCC 6213. Full Description " + "description": "This course introduces students to a variety of perspectives on learning as they apply to work in educational technology. Students cannot receive credit for LMC 6213 and LCC 6213." }, "LMC6215": { "subject": "LMC", "number": "6215", "name": "Issues in Media Studies ", - "description": "This course focuses on the study of mass media from historical, theoretical, and cultutral perspectives. Students cannot receive credit for LMC 6215 and LCC 6215. Full Description " + "description": "This course focuses on the study of mass media from historical, theoretical, and cultutral perspectives. Students cannot receive credit for LMC 6215 and LCC 6215." }, "LMC6310": { "subject": "LMC", "number": "6310", "name": "The Computer Expressive ", - "description": "Explores the development of the representational power of the computer and the interplay between digital technology and culture. Students cannot receive credit for LMC 6310 and LCC 6310. Full Description " + "description": "Explores the development of the representational power of the computer and the interplay between digital technology and culture. Students cannot receive credit for LMC 6310 and LCC 6310." }, "LMC6311": { "subject": "LMC", "number": "6311", "name": "Visual Culture and Desi ", - "description": "Explores visual media through a mutually instructive and integrated interplay between critical analyses and the creation of digital artifacts. Students cannot receive credit for LMC 6311 and LCC 6311. Full Description " + "description": "Explores visual media through a mutually instructive and integrated interplay between critical analyses and the creation of digital artifacts. Students cannot receive credit for LMC 6311 and LCC 6311." }, "LMC6312": { "subject": "LMC", "number": "6312", "name": "Dsgn Tech & Representati ", - "description": "Explores historical, cultural, and theoretical issues raised by technologies of representation through critical analyses and the creation of digital artifacts. Students cannot receive credit for LMC 6312 and LCC 6312. Full Description " + "description": "Explores historical, cultural, and theoretical issues raised by technologies of representation through critical analyses and the creation of digital artifacts. Students cannot receive credit for LMC 6312 and LCC 6312." }, "LMC6313": { "subject": "LMC", "number": "6313", "name": "Prin of Interaction Desi ", - "description": "Explores visual media through a mutually instructive and integrated interplay between critical analyses and the creation of digital artifacts. Students cannot receive credit for LMC 6313 and LCC 6313. Full Description " + "description": "Explores visual media through a mutually instructive and integrated interplay between critical analyses and the creation of digital artifacts. Students cannot receive credit for LMC 6313 and LCC 6313." }, "LMC6314": { "subject": "LMC", "number": "6314", "name": "Design of Networked Medi ", - "description": "Issues in hypertextual and multimedia design in networked environments, including the World Wide Web, interactive television, and wireless applications. Students cannot receive credit for LMC 6314 and LCC 6314. Full Description " + "description": "Issues in hypertextual and multimedia design in networked environments, including the World Wide Web, interactive television, and wireless applications. Students cannot receive credit for LMC 6314 and LCC 6314." }, "LMC6315": { "subject": "LMC", "number": "6315", "name": "Produc Production ", - "description": "Focuses on defining user and client needs, analysis of competing products, budgeting, scheduling and management of the production process, and the design of the testing process. Students cannot receive credit for LMC 6315 and LCC 6315. Full Description " + "description": "Focuses on defining user and client needs, analysis of competing products, budgeting, scheduling and management of the production process, and the design of the testing process. Students cannot receive credit for LMC 6315 and LCC 6315." }, "LMC6316": { "subject": "LMC", "number": "6316", "name": "Historical Approahces Di ", - "description": "Examines digital media in the context of earlier media, such as handwriting and printing as well as photography, radio, film, and television. Students cannot receive credit for LMC 6316 and LCC 6316. Full Description " + "description": "Examines digital media in the context of earlier media, such as handwriting and printing as well as photography, radio, film, and television. Students cannot receive credit for LMC 6316 and LCC 6316." }, "LMC6317": { "subject": "LMC", "number": "6317", "name": "Interactive Fiction ", - "description": "Students create interactive fictions in a variety of formats including intersecting story worlds, interactive characters, simulations, and replay worlds. Students cannot receive credit for LMC 6317 and LCC 6317, LMC 6317 and LCC 4720, or LMC 6317 and LMC 4720. Full Description " + "description": "Students create interactive fictions in a variety of formats including intersecting story worlds, interactive characters, simulations, and replay worlds. Students cannot receive credit for LMC 6317 and LCC 6317, LMC 6317 and LCC 4720, or LMC 6317 and LMC 4720." }, "LMC6318": { "subject": "LMC", "number": "6318", "name": "Experimental Media ", - "description": "Students will develop the critical, intellectual, and creative tools necessary to understand, work with, and reimagine design at the developmental stages of emerging technologies. Students cannot receive credit for LMC 6318 and LCC 6318. Full Description " + "description": "Students will develop the critical, intellectual, and creative tools necessary to understand, work with, and reimagine design at the developmental stages of emerging technologies. Students cannot receive credit for LMC 6318 and LCC 6318." }, "LMC6319": { "subject": "LMC", "number": "6319", "name": "Intellectual Property ", - "description": "Students examine constitutionally informed policy and pragmatic legal issues in intellectual property law, focusing on the effects of power structures and information digitization. Students cannot receive credit for LMC 6319 and LCC 6319. Full Description " + "description": "Students examine constitutionally informed policy and pragmatic legal issues in intellectual property law, focusing on the effects of power structures and information digitization. Students cannot receive credit for LMC 6319 and LCC 6319." }, "LMC6320": { "subject": "LMC", "number": "6320", "name": "Globalization and New Me ", - "description": "Historical and theoretical approach to the connections between modes of global integration and modes of representing information. Students cannot receive credit for LMC 6320 and LCC 6320. Full Description " + "description": "Historical and theoretical approach to the connections between modes of global integration and modes of representing information. Students cannot receive credit for LMC 6320 and LCC 6320." }, "LMC6321": { "subject": "LMC", "number": "6321", "name": "Architecture of Responsi ", - "description": "Historical and theoretical approach to the connections between modes of global integration and modes of representing information. Students cannot receive credit for LMC 6321 and LCC 6321. Full Description " + "description": "Historical and theoretical approach to the connections between modes of global integration and modes of representing information. Students cannot receive credit for LMC 6321 and LCC 6321." }, "LMC6325": { "subject": "LMC", "number": "6325", "name": "Game Design and Analysis ", - "description": "Focused topics in the theory and practice of game design, theory, and analysis, including issues of creation, and reception, such as a single sub-genre, procedural technique, or media tradition. Students cannot receive credit for LMC 6325 and LCC 6325, LMC 6325 and LCC 4725, or LMC 6325 and LMC 4725. Full Description " + "description": "Focused topics in the theory and practice of game design, theory, and analysis, including issues of creation, and reception, such as a single sub-genre, procedural technique, or media tradition. Students cannot receive credit for LMC 6325 and LCC 6325, LMC 6325 and LCC 4725, or LMC 6325 and LMC 4725." }, "LMC6330": { "subject": "LMC", "number": "6330", "name": "Expressive Virtual Space ", - "description": "Practical and theoretical investigation of virtual space in real-time 3D environments with a focus on meditation and functionality. Students cannot receive credit for LMC 6330 and LCC 6330. Full Description " + "description": "Practical and theoretical investigation of virtual space in real-time 3D environments with a focus on meditation and functionality. Students cannot receive credit for LMC 6330 and LCC 6330." }, "LMC6340": { "subject": "LMC", "number": "6340", "name": "Reality Experience Desi ", - "description": "This course introduces students to the design of digital experienced for education and entertainment using Augmented Reality, Tangible Computing, or other forms of Mixed Reality. Students cannot receive credit for LMC 6340 and LCC 6340. Full Description " + "description": "This course introduces students to the design of digital experienced for education and entertainment using Augmented Reality, Tangible Computing, or other forms of Mixed Reality. Students cannot receive credit for LMC 6340 and LCC 6340." }, "LMC6350": { "subject": "LMC", "number": "6350", "name": "Spatial Construction ", - "description": "Study of the way in which space is manipulated to construct meaning in design formulation. Emphasis on logical structure, geometry, and experiential correlates. Students cannot receive credit for LMC 6350 and LCC 6350. Full Description " + "description": "Study of the way in which space is manipulated to construct meaning in design formulation. Emphasis on logical structure, geometry, and experiential correlates. Students cannot receive credit for LMC 6350 and LCC 6350." }, "LMC6399": { "subject": "LMC", "number": "6399", "name": "Discovery & Invention ", - "description": "Required course for all DM majors. The purpose of this course is to give students a suite of methods they can use in professional settings to discover opportunities for inventive new computational products and services. It complements the design and production skills developed in 6310 and 6313 with applied research skills. For students in the MS DM and MS HCI programs it will also help them in the development of their MS proposals. Students cannot receive credit for LMC 6399 and LCC 6399. Full Description " + "description": "Required course for all DM majors. The purpose of this course is to give students a suite of methods they can use in professional settings to discover opportunities for inventive new computational products and services. It complements the design and production skills developed in 6310 and 6313 with applied research skills. For students in the MS DM and MS HCI programs it will also help them in the development of their MS proposals. Students cannot receive credit for LMC 6399 and LCC 6399." }, "LMC6650": { "subject": "LMC", "number": "6650", "name": "Project Studio ", - "description": "This course offers students the opportunity to work on focused research within existing long-term projects of the New Media(NM) Center. Full Description " + "description": "This course offers students the opportunity to work on focused research within existing long-term projects of the New Media(NM) Center." }, "LMC6743": { "subject": "LMC", "number": "6743", "name": "STS Core Seminar ", - "description": "This survey course covers key works Science, Technology & Society, and guest lectures introduce students to faculty doing STS-related research across the Ivan Allen College. Students cannot receive credit for LMC 6743 and LCC 6743, LMC 6743 and HTS 6743, or LMC 6743 and PUBP 6743. Full Description " + "description": "This survey course covers key works Science, Technology & Society, and guest lectures introduce students to faculty doing STS-related research across the Ivan Allen College. Students cannot receive credit for LMC 6743 and LCC 6743, LMC 6743 and HTS 6743, or LMC 6743 and PUBP 6743." }, "LMC6748": { "subject": "LMC", "number": "6748", "name": "Social Justice & Design ", - "description": "Focuses on social justice from a Science, Technology, and Society(STS) point of view that is informed by critical theory and philosophy of design. Students cannot receive credit for LMC 6748 and LCC 6748 or LMC 6748 and PUBP 6748. Full Description " + "description": "Focuses on social justice from a Science, Technology, and Society(STS) point of view that is informed by critical theory and philosophy of design. Students cannot receive credit for LMC 6748 and LCC 6748 or LMC 6748 and PUBP 6748." }, "LMC6749": { "subject": "LMC", "number": "6749", "name": "Feminist Theory and STS ", - "description": "This course is an advanced science, technology and society (STS) seminar in feminist theory. Students cannot receive credit for LMC 6749 and LCC 6749 or LMC 6749 and PUBP 6749. Full Description " + "description": "This course is an advanced science, technology and society (STS) seminar in feminist theory. Students cannot receive credit for LMC 6749 and LCC 6749 or LMC 6749 and PUBP 6749." }, "LMC6753": { "subject": "LMC", "number": "6753", "name": "HCI Prof Prep & Practice ", - "description": "Preparation for a professional career in HCI. Speakers. Atlanta-area lab visits. Career trajectories. Project presentations. Technical, resume and interviewing skills, Atlanta-area HCI resources. Students cannot receieve credit for LMC 6753 and CS 6753, LMC 6753 and LCC 6753, LMC 6753 and ID 6753, or LMC 6753 or PSYC 6753. Full Description " + "description": "Preparation for a professional career in HCI. Speakers. Atlanta-area lab visits. Career trajectories. Project presentations. Technical, resume and interviewing skills, Atlanta-area HCI resources. Students cannot receieve credit for LMC 6753 and CS 6753, LMC 6753 and LCC 6753, LMC 6753 and ID 6753, or LMC 6753 or PSYC 6753." }, "LMC6770": { "subject": "LMC", "number": "6770", "name": "Mix Reality Design ", - "description": "This course introduces students to mixed reality design and prototyping with a focus on Augmented Reality. Students cannot receive credit for LMC 6770 and CS 4770. Full Description " + "description": "This course introduces students to mixed reality design and prototyping with a focus on Augmented Reality. Students cannot receive credit for LMC 6770 and CS 4770." }, "LMC6800": { "subject": "LMC", "number": "6800", "name": "DM MS Project Course ", - "description": "Final project course in Digital Media. Full Description " + "description": "Final project course in Digital Media." }, "LMC6998": { "subject": "LMC", "number": "6998", "name": "HCI Master's Project ", - "description": "Final project for students completing a Human-Computer Interaction master's degree in the Digital Media track. Repeatable for multi-semester projects. Full Description " + "description": "Final project for students completing a Human-Computer Interaction master's degree in the Digital Media track. Repeatable for multi-semester projects." }, "LMC7000": { "subject": "LMC", "number": "7000", "name": "Master's Thesis ", - "description": "Final Thesis course in Digital Media. Full Description " + "description": "Final Thesis course in Digital Media." }, "LMC7999": { "subject": "LMC", "number": "7999", "name": "PhD Qualifying Prep ", - "description": "Preparation for Ph.D. Qualifying exam Full Description " + "description": "Preparation for Ph.D. Qualifying exam" }, "LMC8000": { "subject": "LMC", "number": "8000", "name": "Media Theory ", - "description": "Key traditions of media theory that contribute to the study of Digital Media. Students cannot receive credit for LMC 8000 and LCC 8000. Full Description " + "description": "Key traditions of media theory that contribute to the study of Digital Media. Students cannot receive credit for LMC 8000 and LCC 8000." }, "LMC8001": { "subject": "LMC", "number": "8001", "name": "Digital Media Studies ", - "description": "Advanced work in production and critique of new media forms. Students cannot receive credit for LMC 8001 and LCC 8001. Full Description " + "description": "Advanced work in production and critique of new media forms. Students cannot receive credit for LMC 8001 and LCC 8001." }, "LMC8801": { "subject": "LMC", "number": "8801", "name": "Special Topics ", - "description": "Topic of current interest not covered in the regular course offerings. Full Description " + "description": "Topic of current interest not covered in the regular course offerings." }, "LMC8803": { "subject": "LMC", "number": "8803", "name": "Special Topics ", - "description": "Special Topics in Digital Media Full Description " + "description": "Special Topics in Digital Media" }, "LMC8813": { "subject": "LMC", "number": "8813", "name": "Adv Issues Interactive ", - "description": "Advanced Issues in Interactive Narrative Full Description " + "description": "Advanced Issues in Interactive Narrative" }, "LMC8823": { "subject": "LMC", "number": "8823", "name": "Special Topics in Game ", - "description": "Advanced topics in the theory and practice of game design, theory, and analysis, including creation, reception, procedural technique, and tradition. Full Description " + "description": "Advanced topics in the theory and practice of game design, theory, and analysis, including creation, reception, procedural technique, and tradition." }, "LMC8831": { "subject": "LMC", "number": "8831", "name": "Special Topics Tech Rep ", - "description": "Special Topics in Technologies of Representation Full Description " + "description": "Special Topics in Technologies of Representation" }, "LMC8903": { "subject": "LMC", "number": "8903", "name": "Special Problems in HCI ", - "description": "Small-group of individual investigation of advanced topics in human-computer interaction. Guided study and research. Full Description " + "description": "Small-group of individual investigation of advanced topics in human-computer interaction. Guided study and research." }, "LMC8910": { "subject": "LMC", "number": "8910", "name": "Special Problems ", - "description": "An independent study course Full Description " + "description": "An independent study course" }, "LMC8997": { "subject": "LMC", "number": "8997", "name": "Teaching Assistantship ", - "description": "For graduate students holding teaching assistantships Full Description " + "description": "For graduate students holding teaching assistantships" }, "LMC8998": { "subject": "LMC", "number": "8998", "name": "Research Assistantship ", - "description": "For graduate students holding research assistantships. Full Description " + "description": "For graduate students holding research assistantships." }, "LMC8999": { "subject": "LMC", "number": "8999", "name": "PhD Doctoral Prep ", - "description": "Doctoral Thesis Prep in Digital Media Full Description " + "description": "Doctoral Thesis Prep in Digital Media" }, "LMC9000": { "subject": "LMC", "number": "9000", "name": "Doctoral Thesis ", - "description": "Doctoral Dissertation Full Description " + "description": "Doctoral Dissertation" }, "LS0198": { "subject": "LS", "number": "0198", "name": "Reading Skills ", - "description": "Development of reading comprehension and speed, vocabulary, and study skills. Review of grammar and usage. Full Description " + "description": "Development of reading comprehension and speed, vocabulary, and study skills. Review of grammar and usage." }, "LS0298": { "subject": "LS", "number": "0298", "name": "English Skills ", - "description": "Development of basic skills used in writing the sentence, paragraph, and short essay. Development of reading speed. Full Description " + "description": "Development of basic skills used in writing the sentence, paragraph, and short essay. Development of reading speed." }, "LS0398": { "subject": "LS", "number": "0398", "name": "Mathematical Skills ", - "description": "Intense review of arithmetic and algebra skills. Development of mathematics study skills. Full Description " + "description": "Intense review of arithmetic and algebra skills. Development of mathematics study skills." }, "MATH0399": { "subject": "MATH", "number": "0399", "name": "Support for Precalculus ", - "description": "Practicum for Learning Support students enrolled in MATH 1113 (Precalculus). Full Description " + "description": "Practicum for Learning Support students enrolled in MATH 1113 (Precalculus)." }, "MATH1111": { "subject": "MATH", "number": "1111", "name": "Precalculus Without Trig ", - "description": "Analytic geometry, the function concept, polynomials, exponential logarithms, the theory of equations. Full Description " + "description": "Analytic geometry, the function concept, polynomials, exponential logarithms, the theory of equations." }, "MATH1113": { "subject": "MATH", "number": "1113", "name": "Precalculus ", - "description": "Analytic geometry, the function concept, polynomials, exponential, logarithms, trigonometric functions, mathematical induction, and the theory of equations. May only be used for degree credit with departmental approval. Full Description " + "description": "Analytic geometry, the function concept, polynomials, exponential, logarithms, trigonometric functions, mathematical induction, and the theory of equations. May only be used for degree credit with departmental approval." }, "MATH11X3": { "subject": "MATH", "number": "11X3", "name": "Transfer Precalculus ", - "description": " Full Description " + "description": "" }, "MATH1501": { "subject": "MATH", "number": "1501", "name": "Calculus I ", - "description": "Differential calculus and basic integral calculus including the fundamental theorem of calculus. Credit not allowed for both MATH 1501 and 1712. Full Description " + "description": "Differential calculus and basic integral calculus including the fundamental theorem of calculus. Credit not allowed for both MATH 1501 and 1712." }, "MATH1502": { "subject": "MATH", "number": "1502", "name": "Calculus II ", - "description": "This course concludes the treatment of single variable calculus and begins linear algebra, the linear basis of the multivariable theory. Credit not allowed for both MATH 1502 and MATH 1522. Credit not allowed for both MATH 1502 and MATH 15X2. Full Description " + "description": "This course concludes the treatment of single variable calculus and begins linear algebra, the linear basis of the multivariable theory. Credit not allowed for both MATH 1502 and MATH 1522. Credit not allowed for both MATH 1502 and MATH 15X2." }, "MATH1503": { "subject": "MATH", "number": "1503", "name": "Calculus I For Life Sci ", - "description": "Differential and basic calculus: sequences, difference equations, limits, continuity, differentiation, integration, applications. The topics parallel those of MATH 1501 with applications from life sciences. Full Description " + "description": "Differential and basic calculus: sequences, difference equations, limits, continuity, differentiation, integration, applications. The topics parallel those of MATH 1501 with applications from life sciences." }, "MATH1504": { "subject": "MATH", "number": "1504", "name": "Calculus II For Life Sci ", - "description": "Taylor approximations, introduction to differential equations, linear algebra, and introduction to multivariable calculus. Motivating examples drawn from life sciences. Full Description " + "description": "Taylor approximations, introduction to differential equations, linear algebra, and introduction to multivariable calculus. Motivating examples drawn from life sciences." }, "MATH1511": { "subject": "MATH", "number": "1511", "name": "Honors Calculus I ", - "description": "The topics covered parallel those of 1501 with a somewhat more intensive and rigorous treatment. Credit not allowed for both honors calculus and the corresponding regular calculus course. Full Description " + "description": "The topics covered parallel those of 1501 with a somewhat more intensive and rigorous treatment. Credit not allowed for both honors calculus and the corresponding regular calculus course." }, "MATH1512": { "subject": "MATH", "number": "1512", "name": "Honors Calculus II ", - "description": "The topics covered parallel those of 1502 with a somewhat more intensive and rigorous treatment. Credit not allowed for both honors calculus and the corresponding regular calculus course. Credit not allowed for both MATH 1512 and MATH 1522. Credit not allowed for both MATH 1512 and MATH 15X2. Full Description " + "description": "The topics covered parallel those of 1502 with a somewhat more intensive and rigorous treatment. Credit not allowed for both honors calculus and the corresponding regular calculus course. Credit not allowed for both MATH 1512 and MATH 1522. Credit not allowed for both MATH 1512 and MATH 15X2." }, "MATH1522": { "subject": "MATH", "number": "1522", "name": "Linear Algebra for Calc ", - "description": "Basic topics in linear algebra, such as covered in MATH 1502, and needed for MATH 2401. May not be taken for credit by students who have taken MATH 1502 or MATH 1512. Full Description " + "description": "Basic topics in linear algebra, such as covered in MATH 1502, and needed for MATH 2401. May not be taken for credit by students who have taken MATH 1502 or MATH 1512." }, "MATH1550": { "subject": "MATH", "number": "1550", "name": "Intro to Diff Calculus ", - "description": "An introduction to differential calculus including applications and the underlying theory of limits for functions and sequences. Credit not awarded for both MATH 1550 and MATH 1501, MATH 1551, or MATH 1503. Full Description " + "description": "An introduction to differential calculus including applications and the underlying theory of limits for functions and sequences. Credit not awarded for both MATH 1550 and MATH 1501, MATH 1551, or MATH 1503." }, "MATH1551": { "subject": "MATH", "number": "1551", "name": "Differential Calculus ", - "description": "Differential calculus including applications and the underlying theory of limits for functions and sequences. Credit not awarded for both MATH 1551 and MATH 1501, MATH 1503, or MATH 1550. Full Description " + "description": "Differential calculus including applications and the underlying theory of limits for functions and sequences. Credit not awarded for both MATH 1551 and MATH 1501, MATH 1503, or MATH 1550." }, "MATH1552": { "subject": "MATH", "number": "1552", "name": "Integral Calculus ", - "description": "Integral calculus: Definite and indefinite integrals, techniques of integration, improper integrals, infinite series, applications. Credit not awarded for both MATH 1552 and MATH 1502, MATH 1504, MATH 1512 or MATH 1555. Full Description " + "description": "Integral calculus: Definite and indefinite integrals, techniques of integration, improper integrals, infinite series, applications. Credit not awarded for both MATH 1552 and MATH 1502, MATH 1504, MATH 1512 or MATH 1555." }, "MATH1553": { "subject": "MATH", "number": "1553", "name": "Intro to Linear Algebra ", - "description": "An introduction to linear alegbra including eigenvalues and eigenvectors, applications to linear systems, least squares. Credit not awarded for both MATH 1553 and MATH 1522, MATH 1502, MATH 1504, MATH 1512, MATH 1554 or MATH 1564. Full Description " + "description": "An introduction to linear alegbra including eigenvalues and eigenvectors, applications to linear systems, least squares. Credit not awarded for both MATH 1553 and MATH 1522, MATH 1502, MATH 1504, MATH 1512, MATH 1554 or MATH 1564." }, "MATH1554": { "subject": "MATH", "number": "1554", "name": "Linear Algebra ", - "description": "Linear algebra eigenvalues, eigenvectors, applications to linear systems, least squares, diagnolization, quadratic forms. Full Description " + "description": "Linear algebra eigenvalues, eigenvectors, applications to linear systems, least squares, diagnolization, quadratic forms." }, "MATH1555": { "subject": "MATH", "number": "1555", "name": "Calculus Life Sciences ", - "description": "Overview of intergral calculus, multivariable calculus, and differential equations for biological sciences. Credit not awarded for both MATH 1555 and MATH 1552, MATH 1502, MATH 1504 or MATH 1512. Full Description " + "description": "Overview of intergral calculus, multivariable calculus, and differential equations for biological sciences. Credit not awarded for both MATH 1555 and MATH 1552, MATH 1502, MATH 1504 or MATH 1512." }, "MATH1564": { "subject": "MATH", "number": "1564", "name": "LinAlg w Abstract Vec Sp ", - "description": "This is an intensive first course in linear algebra including the theories of linear transformations and abstract vector spaces. Credit not awarded for both MATH 1564 and MATH 1553, MATH 1554, MATH 1522, MATH 1502, MATH 1504 or MATH 1512. Full Description " + "description": "This is an intensive first course in linear algebra including the theories of linear transformations and abstract vector spaces. Credit not awarded for both MATH 1564 and MATH 1553, MATH 1554, MATH 1522, MATH 1502, MATH 1504 or MATH 1512." }, "MATH15X1": { "subject": "MATH", "number": "15X1", "name": "Transfer Calculus I ", - "description": " Full Description " + "description": "" }, "MATH15X2": { "subject": "MATH", "number": "15X2", "name": "Transfer Calculus II ", - "description": "This course includes the treatment of single variable calculus in MATH 1502. This course is not equivalent to MATH 1502. Credit not allowed for both MATH 15X2 and MATH 1502. Credit not allowed for both MATH 15X2 and MATH 1512. Full Description " + "description": "This course includes the treatment of single variable calculus in MATH 1502. This course is not equivalent to MATH 1502. Credit not allowed for both MATH 15X2 and MATH 1502. Credit not allowed for both MATH 15X2 and MATH 1512." }, "MATH1601": { "subject": "MATH", "number": "1601", "name": "Intro to Higher Math ", - "description": "This course is designed to teach problem solving and proof writing. Mathematical subject matter is drawn from elementary number theory and geometry. Full Description " + "description": "This course is designed to teach problem solving and proof writing. Mathematical subject matter is drawn from elementary number theory and geometry." }, "MATH1711": { "subject": "MATH", "number": "1711", "name": "Finite Mathematics ", - "description": "Linear equations, matrices, linear programming, sets and counting, probability and statistics. Full Description " + "description": "Linear equations, matrices, linear programming, sets and counting, probability and statistics." }, "MATH1712": { "subject": "MATH", "number": "1712", "name": "Survey of Calculus ", - "description": "Techniques of differentiation, integration, application of integration to probability and statistics, multidimensional calculus. Credit not allowed for both MATH 1712 and 1501. Full Description " + "description": "Techniques of differentiation, integration, application of integration to probability and statistics, multidimensional calculus. Credit not allowed for both MATH 1712 and 1501." }, "MATH17X1": { "subject": "MATH", "number": "17X1", "name": "Transfer Finite Math ", - "description": " Full Description " + "description": "" }, "MATH17X2": { "subject": "MATH", "number": "17X2", "name": "Transfer Survey-Calc ", - "description": " Full Description " + "description": "" }, "MATH1803": { "subject": "MATH", "number": "1803", "name": "Special Topics ", - "description": "Courses on special topics of current interest in Mathematics. Full Description " + "description": "Courses on special topics of current interest in Mathematics." }, "MATH1X52": { "subject": "MATH", "number": "1X52", "name": "Transfer Integral Calculus ", - "description": " Full Description " + "description": "" }, "MATH1XXX": { "subject": "MATH", "number": "1XXX", "name": "Mathematics Elective ", - "description": " Full Description " + "description": "" }, "MATH2106": { "subject": "MATH", "number": "2106", "name": "Foundations Math Proof ", - "description": "An introduction to proofs in advanced mathematics, intended as a transition to upper division courses including Abstract Algebra I and Analysis I. Full Description " + "description": "An introduction to proofs in advanced mathematics, intended as a transition to upper division courses including Abstract Algebra I and Analysis I." }, "MATH2401": { "subject": "MATH", "number": "2401", "name": "Calculus III ", - "description": "Multivariable calculus: Linear approximation and Taylor's theorems, Lagrange multiples and constrained optimization, multiple integration and vector analysis including the theorems of Green, Gauss, and Stokes. Full Description " + "description": "Multivariable calculus: Linear approximation and Taylor's theorems, Lagrange multiples and constrained optimization, multiple integration and vector analysis including the theorems of Green, Gauss, and Stokes." }, "MATH2403": { "subject": "MATH", "number": "2403", "name": "Differential Equations ", - "description": "Methods for obtaining numerical and analytic solutions of elementary differential equations. Applications are also discussed with an emphasis on modeling. Full Description " + "description": "Methods for obtaining numerical and analytic solutions of elementary differential equations. Applications are also discussed with an emphasis on modeling." }, "MATH2406": { "subject": "MATH", "number": "2406", "name": "Abstract Vector Spaces ", - "description": "A proof-based development of linear algebra and vector spaces, with additional topics such as multilinear algebra and group theory. Full Description " + "description": "A proof-based development of linear algebra and vector spaces, with additional topics such as multilinear algebra and group theory." }, "MATH2411": { "subject": "MATH", "number": "2411", "name": "Honors Calculus III ", - "description": "The topics covered parallel those of MATH 2401 with a somewhat more intensive and rigorous treatment. Credit is not allowed for both honors calculus and the corresponding regular calculus course. Full Description " + "description": "The topics covered parallel those of MATH 2401 with a somewhat more intensive and rigorous treatment. Credit is not allowed for both honors calculus and the corresponding regular calculus course." }, "MATH2413": { "subject": "MATH", "number": "2413", "name": "Honors Diff Equations ", - "description": "The course treats the theory of ordinary differential equations from an advanced perspective, delving into the theory as well as computational aspects. It is designed for mathematics majors, and others who wish to take advanced courses in the area. Full Description " + "description": "The course treats the theory of ordinary differential equations from an advanced perspective, delving into the theory as well as computational aspects. It is designed for mathematics majors, and others who wish to take advanced courses in the area." }, "MATH24X1": { "subject": "MATH", "number": "24X1", "name": "Transfer Calculus III ", - "description": " Full Description " + "description": "" }, "MATH24X3": { "subject": "MATH", "number": "24X3", "name": "Transfer Diff Equations ", - "description": " Full Description " + "description": "" }, "MATH2551": { "subject": "MATH", "number": "2551", "name": "Multivariable Calculus ", - "description": "Multivariable calculus: Linear approximation and Taylor's theorems, Lagrange multiples and constrained optimization, multiple integration and vector analysis including the theorems of Green, Gauss, and Stokes. Credit will not be awarded for both MATH 2551 and MATH 2401 or MATH 2411 or MATH 2561. Full Description " + "description": "Multivariable calculus: Linear approximation and Taylor's theorems, Lagrange multiples and constrained optimization, multiple integration and vector analysis including the theorems of Green, Gauss, and Stokes. Credit will not be awarded for both MATH 2551 and MATH 2401 or MATH 2411 or MATH 2561." }, "MATH2552": { "subject": "MATH", "number": "2552", "name": "Differential Equations ", - "description": "Methods for obtaining numerical and analytic solutions of elementary differential equations. Applications are also discussed with an emphasis on modeling. Credit not awarded for both MATH 2552 and MATH 2403 or MATH 2413 or MATH 2562. Full Description " + "description": "Methods for obtaining numerical and analytic solutions of elementary differential equations. Applications are also discussed with an emphasis on modeling. Credit not awarded for both MATH 2552 and MATH 2403 or MATH 2413 or MATH 2562." }, "MATH2561": { "subject": "MATH", "number": "2561", "name": "Honors Multivar Calculus ", - "description": "The topics covered parallel those of MATH 2551 with a somewhat more intensive and rigorous treatment. Credit not awarded for both MATH 2561 and MATH 2401 or MATH 2411 or MATH 2551. Full Description " + "description": "The topics covered parallel those of MATH 2551 with a somewhat more intensive and rigorous treatment. Credit not awarded for both MATH 2561 and MATH 2401 or MATH 2411 or MATH 2551." }, "MATH2562": { "subject": "MATH", "number": "2562", "name": "Honors Diff Equations ", - "description": "The topics covered parallel those of MATH 2552 with a somewhat more intensive and rigorous treatment. Full Description " + "description": "The topics covered parallel those of MATH 2552 with a somewhat more intensive and rigorous treatment." }, "MATH2602": { "subject": "MATH", "number": "2602", "name": "Linear and Discrete Math ", - "description": "Topics in linear algebra, sequences, differences, finite sums and difference equations, multivariate optimization with an emphasis in discrete and recursive methods. Full Description " + "description": "Topics in linear algebra, sequences, differences, finite sums and difference equations, multivariate optimization with an emphasis in discrete and recursive methods." }, "MATH2603": { "subject": "MATH", "number": "2603", "name": "Intro Discrete Math ", - "description": "Mathematical logic and proof, mathematical induction, counting methods, recurrence relations, algorithms and complexity, graph theory and graph algorithms. Credit not awarded for both MATH 2603 and MATH 2602. Full Description " + "description": "Mathematical logic and proof, mathematical induction, counting methods, recurrence relations, algorithms and complexity, graph theory and graph algorithms. Credit not awarded for both MATH 2603 and MATH 2602." }, "MATH2605": { "subject": "MATH", "number": "2605", "name": "Calc III for Comput Sci ", - "description": "Topics in linear algebra and multivariate calculus and their applications in optimization and numerical methods, including curve fitting, interpolation, and numerical differentiation and integration. Full Description " + "description": "Topics in linear algebra and multivariate calculus and their applications in optimization and numerical methods, including curve fitting, interpolation, and numerical differentiation and integration." }, "MATH2698": { "subject": "MATH", "number": "2698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "MATH2699": { "subject": "MATH", "number": "2699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "MATH26X2": { "subject": "MATH", "number": "26X2", "name": "Transfer Linear & Disc Math ", - "description": " Full Description " + "description": "" }, "MATH26X3": { "subject": "MATH", "number": "26X3", "name": "Transfer Discrete Math ", - "description": " Full Description " + "description": "" }, "MATH2801": { "subject": "MATH", "number": "2801", "name": "Special Topics ", - "description": "Courses on special topics of current interest in mathematics. Full Description " + "description": "Courses on special topics of current interest in mathematics." }, "MATH2802": { "subject": "MATH", "number": "2802", "name": "Special Topics ", - "description": "Courses on special topics of current interest in mathematics. Full Description " + "description": "Courses on special topics of current interest in mathematics." }, "MATH2803": { "subject": "MATH", "number": "2803", "name": "Special Topics ", - "description": "Courses on special topics of current interest in mathematics. Full Description " + "description": "Courses on special topics of current interest in mathematics." }, "MATH2804": { "subject": "MATH", "number": "2804", "name": "Special Topics ", - "description": "Courses on special topics of current interest in mathematics. Full Description " + "description": "Courses on special topics of current interest in mathematics." }, "MATH2805": { "subject": "MATH", "number": "2805", "name": "Special Topics ", - "description": "Courses on special topics of current interest in mathematics. Full Description " + "description": "Courses on special topics of current interest in mathematics." }, "MATH2X51": { "subject": "MATH", "number": "2X51", "name": "Transfer Multivariable Calc ", - "description": " Full Description " + "description": "" }, "MATH2X52": { "subject": "MATH", "number": "2X52", "name": "Transfer Differential Equation ", - "description": " Full Description " + "description": "" }, "MATH2XXX": { "subject": "MATH", "number": "2XXX", "name": "Mathematics Elective ", - "description": " Full Description " + "description": "" }, "MATH3012": { "subject": "MATH", "number": "3012", "name": "Applied Combinatorics ", - "description": "Elementary combinatorial techniques used in discrete problem solving: counting methods, solving linear recurrences, graph and network models, related algorithms, and combinatorial designs. Full Description " + "description": "Elementary combinatorial techniques used in discrete problem solving: counting methods, solving linear recurrences, graph and network models, related algorithms, and combinatorial designs." }, "MATH3022": { "subject": "MATH", "number": "3022", "name": "Honors App Combinatorics ", - "description": "Topics are parallel to those of MATH 3012 with a more rigorous and intensive treatment. Credit is not allowed for both MATH 3012 and 3022. Full Description " + "description": "Topics are parallel to those of MATH 3012 with a more rigorous and intensive treatment. Credit is not allowed for both MATH 3012 and 3022." }, "MATH3215": { "subject": "MATH", "number": "3215", "name": "Probability & Statistics ", - "description": "This course is a problem-oriented introduction to the basic concepts of probability and statistics, providing a foundation for applications and further study. Full Description " + "description": "This course is a problem-oriented introduction to the basic concepts of probability and statistics, providing a foundation for applications and further study." }, "MATH3225": { "subject": "MATH", "number": "3225", "name": "Honors Prob & Statistics ", - "description": "The topics covered parallel those of MATH 3215, with a more rigorous and intensive treatment. Credit is not allowed for both MATH 3215 and 3225. Full Description " + "description": "The topics covered parallel those of MATH 3215, with a more rigorous and intensive treatment. Credit is not allowed for both MATH 3215 and 3225." }, "MATH3670": { "subject": "MATH", "number": "3670", "name": "Statistics and Applns ", - "description": "Introduction to probability, probability distributions, point estimation, confidence intervals, hypothesis testing, linear regression and analysis of variance. Students cannot recieve credit for both MATH 3670 and MATH 3770 or ISYE 3770 or CEE 3770. Full Description " + "description": "Introduction to probability, probability distributions, point estimation, confidence intervals, hypothesis testing, linear regression and analysis of variance. Students cannot recieve credit for both MATH 3670 and MATH 3770 or ISYE 3770 or CEE 3770." }, "MATH3801": { "subject": "MATH", "number": "3801", "name": "Special Topics ", - "description": "Courses on special topics of current interest in mathematics. Full Description " + "description": "Courses on special topics of current interest in mathematics." }, "MATH3802": { "subject": "MATH", "number": "3802", "name": "Special Topics ", - "description": "Courses on special topics of current interest in mathematics. Full Description " + "description": "Courses on special topics of current interest in mathematics." }, "MATH3803": { "subject": "MATH", "number": "3803", "name": "Special Topics ", - "description": "Courses on special topics of current interest in mathematics. Full Description " + "description": "Courses on special topics of current interest in mathematics." }, "MATH3804": { "subject": "MATH", "number": "3804", "name": "Special Topics ", - "description": "Courses on special topics of current interest in mathematics. Full Description " + "description": "Courses on special topics of current interest in mathematics." }, "MATH3805": { "subject": "MATH", "number": "3805", "name": "Special Topics ", - "description": "Courses on special topics of current interest in mathematics. Full Description " + "description": "Courses on special topics of current interest in mathematics." }, "MATH3XXX": { "subject": "MATH", "number": "3XXX", "name": "Mathematics Elective ", - "description": " Full Description " + "description": "" }, "MATH4012": { "subject": "MATH", "number": "4012", "name": "Coding Theory ", - "description": "Introduction to linear error correcting codes with an emphasis on the algebraic tools required, including matrices vector spaces, groups, polynomial rings, and finite fields. Full Description " + "description": "Introduction to linear error correcting codes with an emphasis on the algebraic tools required, including matrices vector spaces, groups, polynomial rings, and finite fields." }, "MATH4022": { "subject": "MATH", "number": "4022", "name": "Intro to Graph Theory ", - "description": "The fundamentals of graph theory: trees, connectivity, Euler torus, Hamilton cycles, matchings, colorings, and Ramsey theory. Full Description " + "description": "The fundamentals of graph theory: trees, connectivity, Euler torus, Hamilton cycles, matchings, colorings, and Ramsey theory." }, "MATH4032": { "subject": "MATH", "number": "4032", "name": "Combinatorial Analysis ", - "description": "Combinatorial problem-solving techniques including the use of generating functions, recurrence relations, Polya theory, combinatorial designs, Ramsey theory, matroids, and asymptotic analysis. Full Description " + "description": "Combinatorial problem-solving techniques including the use of generating functions, recurrence relations, Polya theory, combinatorial designs, Ramsey theory, matroids, and asymptotic analysis." }, "MATH4080": { "subject": "MATH", "number": "4080", "name": "Senior Project I ", - "description": "The first of a two-course sequence of faculty-directed independent research culminating in the writing of a senior thesis and its presentation. Full Description " + "description": "The first of a two-course sequence of faculty-directed independent research culminating in the writing of a senior thesis and its presentation." }, "MATH4090": { "subject": "MATH", "number": "4090", "name": "Senior Project II ", - "description": "The second course of a two-course sequence of faculty-directed independent research culminating in the writing of a senior thesis and its presentation. Full Description " + "description": "The second course of a two-course sequence of faculty-directed independent research culminating in the writing of a senior thesis and its presentation." }, "MATH4107": { "subject": "MATH", "number": "4107", "name": "Abstract Algebra I ", - "description": "This course develops in the theme of \"Arithmetic congruence and abstract algebraic structures\". Strong emphasis on theory and proofs. Full Description " + "description": "This course develops in the theme of \"Arithmetic congruence and abstract algebraic structures\". Strong emphasis on theory and proofs." }, "MATH4108": { "subject": "MATH", "number": "4108", "name": "Abstract Algebra II ", - "description": "Continuation of Abstract Algebra I, with emphasis on Galois theory, modules, polynomial fields, and the theory of linear associative algebra. Full Description " + "description": "Continuation of Abstract Algebra I, with emphasis on Galois theory, modules, polynomial fields, and the theory of linear associative algebra." }, "MATH4150": { "subject": "MATH", "number": "4150", "name": "Intro To Number Theory ", - "description": "Primes and unique factorization, congruences, Chinese remainder theorem, Diophantine equations, Diophantine approximations, quadratic reciprocity. Applications such as fast multiplication, factorization, and encryption. Full Description " + "description": "Primes and unique factorization, congruences, Chinese remainder theorem, Diophantine equations, Diophantine approximations, quadratic reciprocity. Applications such as fast multiplication, factorization, and encryption." }, "MATH4221": { "subject": "MATH", "number": "4221", "name": "Stochastic Processes I ", - "description": "Simple random walk and the theory of discrete time Markov chains. Full Description " + "description": "Simple random walk and the theory of discrete time Markov chains." }, "MATH4222": { "subject": "MATH", "number": "4222", "name": "Stochastic Processes II ", - "description": "Renewal theory, Poisson processes and continuous time Markov processes, including an introduction to Brownian motion and martingales. Full Description " + "description": "Renewal theory, Poisson processes and continuous time Markov processes, including an introduction to Brownian motion and martingales." }, "MATH4255": { "subject": "MATH", "number": "4255", "name": "Monte Carlo Methods ", - "description": "Probability distributions, limit laws, and applications through the computer. Full Description " + "description": "Probability distributions, limit laws, and applications through the computer." }, "MATH4261": { "subject": "MATH", "number": "4261", "name": "Math Statistics I ", - "description": "Sampling distributions, Normal, t, chi-square, and f distributions. Moment-generating function methods, Bayesian estimation, and introduction to hypothesis testing. Full Description " + "description": "Sampling distributions, Normal, t, chi-square, and f distributions. Moment-generating function methods, Bayesian estimation, and introduction to hypothesis testing." }, "MATH4262": { "subject": "MATH", "number": "4262", "name": "Math Statistics II ", - "description": "Hypothesis testing, likelihood ratio tests, nonparametric tests, bivariate and multivariate normal distributions. Full Description " + "description": "Hypothesis testing, likelihood ratio tests, nonparametric tests, bivariate and multivariate normal distributions." }, "MATH4280": { "subject": "MATH", "number": "4280", "name": "Information Theory ", - "description": "The measurement and quantification of information. These ideas are applied to the probabilistic analysis of the transmission of information over a channel along which random distortion of the message occurs. Full Description " + "description": "The measurement and quantification of information. These ideas are applied to the probabilistic analysis of the transmission of information over a channel along which random distortion of the message occurs." }, "MATH4305": { "subject": "MATH", "number": "4305", "name": "Linear Algebra ", - "description": "Finite dimensional vector spaces, inner product spaces, least squares, linear transformations, the spectral theorem for normal transformations. Applications to convex sets, positive matrices, difference equations. Full Description " + "description": "Finite dimensional vector spaces, inner product spaces, least squares, linear transformations, the spectral theorem for normal transformations. Applications to convex sets, positive matrices, difference equations." }, "MATH4317": { "subject": "MATH", "number": "4317", "name": "Analysis I ", - "description": "Real numbers, topology of Euclidean spaces, Cauchy sequences, completeness, continuity and compactness, uniform continuity, series of functions, Fourier series. Full Description " + "description": "Real numbers, topology of Euclidean spaces, Cauchy sequences, completeness, continuity and compactness, uniform continuity, series of functions, Fourier series." }, "MATH4318": { "subject": "MATH", "number": "4318", "name": "Analysis II ", - "description": "Differentiation of functions of one real variable, Riemann-Stieltjes integral, the derivative in Rn, and integration in Rn. Full Description " + "description": "Differentiation of functions of one real variable, Riemann-Stieltjes integral, the derivative in Rn, and integration in Rn." }, "MATH4320": { "subject": "MATH", "number": "4320", "name": "Complex Analysis ", - "description": "Topics from complex function theory, including contour integration and conformal mapping. Full Description " + "description": "Topics from complex function theory, including contour integration and conformal mapping." }, "MATH4347": { "subject": "MATH", "number": "4347", "name": "Partial Diff Eqns I ", - "description": "Method of characteristics for first- and second-order partial differential equations, conservation laws and shocks, classification of second-order systems and applications. Full Description " + "description": "Method of characteristics for first- and second-order partial differential equations, conservation laws and shocks, classification of second-order systems and applications." }, "MATH4348": { "subject": "MATH", "number": "4348", "name": "Partial Diff Eqns II ", - "description": "Green's functions and fundamental solutions. Potential, diffusion, and wave equations. Full Description " + "description": "Green's functions and fundamental solutions. Potential, diffusion, and wave equations." }, "MATH4431": { "subject": "MATH", "number": "4431", "name": "Introduction to Topology ", - "description": "Point set topology, topological spaces and metric spaces, continuity and compactness, homotopy, and covering spaces. Full Description " + "description": "Point set topology, topological spaces and metric spaces, continuity and compactness, homotopy, and covering spaces." }, "MATH4432": { "subject": "MATH", "number": "4432", "name": "Algebraic Topology ", - "description": "Introduction to algebraic methods in topology. Includes homotopy, the fundamental group, covering spaces, simplicial complexes. Applications to fixed point theory and group theory. Full Description " + "description": "Introduction to algebraic methods in topology. Includes homotopy, the fundamental group, covering spaces, simplicial complexes. Applications to fixed point theory and group theory." }, "MATH4441": { "subject": "MATH", "number": "4441", "name": "Differential Geometry ", - "description": "The theory of curves, surfaces, and more generally, manifolds. Curvature, parallel transport, covariant differentiation, Gauss-Bonet theorem. Full Description " + "description": "The theory of curves, surfaces, and more generally, manifolds. Curvature, parallel transport, covariant differentiation, Gauss-Bonet theorem." }, "MATH4541": { "subject": "MATH", "number": "4541", "name": "Dynamics& Bifurcations I ", - "description": "A broad introduction to the local and global behavior of nonlinear dynamical systems arising from maps and ordinary differential equations. Full Description " + "description": "A broad introduction to the local and global behavior of nonlinear dynamical systems arising from maps and ordinary differential equations." }, "MATH4542": { "subject": "MATH", "number": "4542", "name": "Dynamics&Bifurcations II ", - "description": "A continuation of Dynamics and Bifurcations I. Full Description " + "description": "A continuation of Dynamics and Bifurcations I." }, "MATH4580": { "subject": "MATH", "number": "4580", "name": "Linear Programming ", - "description": "A study of linear programming problems, including the simplex method, duality, and sensitivity analysis with applications to matrix games, interger programming, and networks. Full Description " + "description": "A study of linear programming problems, including the simplex method, duality, and sensitivity analysis with applications to matrix games, interger programming, and networks." }, "MATH4581": { "subject": "MATH", "number": "4581", "name": "Math Methods in Engr ", - "description": "The Laplace transform and applications, Fourier series, boundary value problems for partial differential equations. Full Description " + "description": "The Laplace transform and applications, Fourier series, boundary value problems for partial differential equations." }, "MATH4640": { "subject": "MATH", "number": "4640", "name": "Numerical Analysis I ", - "description": "Introduction to numerical algorithms for some basic problems in computational mathematics. Discussion of both implementation issues and error analysis. Full Description " + "description": "Introduction to numerical algorithms for some basic problems in computational mathematics. Discussion of both implementation issues and error analysis." }, "MATH4641": { "subject": "MATH", "number": "4641", "name": "Numerical Analysis II ", - "description": "Introduction to the numerical solution of initial and boundary value problems in differential equations. Full Description " + "description": "Introduction to the numerical solution of initial and boundary value problems in differential equations." }, "MATH4698": { "subject": "MATH", "number": "4698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "MATH4699": { "subject": "MATH", "number": "4699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "MATH4755": { "subject": "MATH", "number": "4755", "name": "Mathematical Biology ", - "description": "Problems from the life sciences and the mathematical methods for solving them are presented. The underlying biological and mathematical principles and the interrelationships are emphasized. Crosslisted with BIOL 4755. Full Description " + "description": "Problems from the life sciences and the mathematical methods for solving them are presented. The underlying biological and mathematical principles and the interrelationships are emphasized. Crosslisted with BIOL 4755." }, "MATH4777": { "subject": "MATH", "number": "4777", "name": "Vector&Parallel Sci Comp ", - "description": "Scientific computational algorithms on vector and parallel computers. Speed-up and algorithm complexity, interprocesses communication, synchronization, modern algorithms for linear systems, programming techniques, code optimization. Crosslisted with CS 4777. Full Description " + "description": "Scientific computational algorithms on vector and parallel computers. Speed-up and algorithm complexity, interprocesses communication, synchronization, modern algorithms for linear systems, programming techniques, code optimization. Crosslisted with CS 4777." }, "MATH4782": { "subject": "MATH", "number": "4782", "name": "Quantum Info&Quant Comp ", - "description": "Introduction to quantum computing and quantum information theory, formalism of quantum mechanics, quantum gates, algorithms, measurements, coding, and information. Physical realizations and experiments. Crosslisted with PHYS 4782. Full Description " + "description": "Introduction to quantum computing and quantum information theory, formalism of quantum mechanics, quantum gates, algorithms, measurements, coding, and information. Physical realizations and experiments. Crosslisted with PHYS 4782." }, "MATH4801": { "subject": "MATH", "number": "4801", "name": "Special Topics ", - "description": "Courses on special topics of current interest in mathematics. Full Description " + "description": "Courses on special topics of current interest in mathematics." }, "MATH4802": { "subject": "MATH", "number": "4802", "name": "Special Topics ", - "description": "Courses on special topics of current interest in mathematics. Full Description " + "description": "Courses on special topics of current interest in mathematics." }, "MATH4803": { "subject": "MATH", "number": "4803", "name": "Special Topics ", - "description": "Courses on special topics of current interest in mathematics. Full Description " + "description": "Courses on special topics of current interest in mathematics." }, "MATH4804": { "subject": "MATH", "number": "4804", "name": "Special Topics ", - "description": "Courses on special topics of current interest in mathematics. Full Description " + "description": "Courses on special topics of current interest in mathematics." }, "MATH4805": { "subject": "MATH", "number": "4805", "name": "Special Topics ", - "description": "Courses on special topics of current interest in mathematics. Full Description " + "description": "Courses on special topics of current interest in mathematics." }, "MATH4999": { "subject": "MATH", "number": "4999", "name": "Special Problems ", - "description": "Reading or research in topics of current interest. Full Description " + "description": "Reading or research in topics of current interest." }, "MATH4XXX": { "subject": "MATH", "number": "4XXX", "name": "Mathematics Elective ", - "description": " Full Description " + "description": "" }, "MATH6014": { "subject": "MATH", "number": "6014", "name": "Graph Theory ", - "description": "Fundamentals, connectivity, matchings, colorings, extremal problems, Ramsey theory, planar graphs, perfect graphs. Applications to operations research and the design of efficient algorithms. Full Description " + "description": "Fundamentals, connectivity, matchings, colorings, extremal problems, Ramsey theory, planar graphs, perfect graphs. Applications to operations research and the design of efficient algorithms." }, "MATH6021": { "subject": "MATH", "number": "6021", "name": "Topology-Euclidean Space ", - "description": "Metric spaces, normed linear spaces, convexity, and separation; polyhedra and simplicial complexes; surfaces; Brouwer fixed point theorem. Full Description " + "description": "Metric spaces, normed linear spaces, convexity, and separation; polyhedra and simplicial complexes; surfaces; Brouwer fixed point theorem." }, "MATH6112": { "subject": "MATH", "number": "6112", "name": "Advanced Linear Algebra ", - "description": "An advanced course in Linear Algebra and applications. Full Description " + "description": "An advanced course in Linear Algebra and applications." }, "MATH6121": { "subject": "MATH", "number": "6121", "name": "Algebra I ", - "description": "Graduate-level linear and abstract algebra including groups, finite fields, classical matrix groups and bilinear forms, multilinear algebra, and matroids. First of two courses. Full Description " + "description": "Graduate-level linear and abstract algebra including groups, finite fields, classical matrix groups and bilinear forms, multilinear algebra, and matroids. First of two courses." }, "MATH6122": { "subject": "MATH", "number": "6122", "name": "Algebra II ", - "description": "Graduate-level linear and abstract algebra including rings, fields, modules, some algebraic number theory and Galois theory. Second of two courses. Full Description " + "description": "Graduate-level linear and abstract algebra including rings, fields, modules, some algebraic number theory and Galois theory. Second of two courses." }, "MATH6221": { "subject": "MATH", "number": "6221", "name": "Classical Probability ", - "description": "Classical introduction to probability theory including expectation, notions of convergence, laws of large numbers, independence, large deviations, conditional expectation, martingales, and Markov chains. Full Description " + "description": "Classical introduction to probability theory including expectation, notions of convergence, laws of large numbers, independence, large deviations, conditional expectation, martingales, and Markov chains." }, "MATH6235": { "subject": "MATH", "number": "6235", "name": "Stoch Process-Finance II ", - "description": "Advanced mathematical modeling of financial markets, derivative securities pricing, and portfolio optimization. Concepts from advanced probability and mathematics are introduced as needed. Full Description " + "description": "Advanced mathematical modeling of financial markets, derivative securities pricing, and portfolio optimization. Concepts from advanced probability and mathematics are introduced as needed." }, "MATH6241": { "subject": "MATH", "number": "6241", "name": "Probability I ", - "description": "Develops the probability basis requisite in modern statistical theories and stochastic processes. Topics of this course include measure and integration foundations of probability, distribution functions, convergence concepts, laws of large numbers, and central limit theory. First of two courses. Full Description " + "description": "Develops the probability basis requisite in modern statistical theories and stochastic processes. Topics of this course include measure and integration foundations of probability, distribution functions, convergence concepts, laws of large numbers, and central limit theory. First of two courses." }, "MATH6242": { "subject": "MATH", "number": "6242", "name": "Probability II ", - "description": "Develops the probability basis requisite in modern statistical theories and stochastic processes. Topics of this course include results for sums of independent random variables, Markov processes, martingales, Poisson processes, Brownian motion, conditional probability and conditional expectation, and topics from ergodic theory. Second of two classes. Full Description " + "description": "Develops the probability basis requisite in modern statistical theories and stochastic processes. Topics of this course include results for sums of independent random variables, Markov processes, martingales, Poisson processes, Brownian motion, conditional probability and conditional expectation, and topics from ergodic theory. Second of two classes." }, "MATH6262": { "subject": "MATH", "number": "6262", "name": "Statistical Estimation ", - "description": "Basic theories of statistical estimation, including optimal estimation in finite samples and asymptotically optimal estimation. A careful mathematical treatment of the primary techniques of estimation utilized by statisticians. Full Description " + "description": "Basic theories of statistical estimation, including optimal estimation in finite samples and asymptotically optimal estimation. A careful mathematical treatment of the primary techniques of estimation utilized by statisticians." }, "MATH6263": { "subject": "MATH", "number": "6263", "name": "Testing Stat Hypotheses ", - "description": "Basic theories of testing statistical hypotheses, including a thorough treatment of testing in exponential class families. A careful mathematical treatment of the primary techniques of hypothesis testing utilized by statisticians. Full Description " + "description": "Basic theories of testing statistical hypotheses, including a thorough treatment of testing in exponential class families. A careful mathematical treatment of the primary techniques of hypothesis testing utilized by statisticians." }, "MATH6266": { "subject": "MATH", "number": "6266", "name": "Linear Statistical Model ", - "description": "Basic unifying theory underlying techniques of regression, analysis of variance and covariance, from a geometric point of view. Modern computational capabilities are exploited fully. Students apply the theory to real data through canned and coded programs. Full Description " + "description": "Basic unifying theory underlying techniques of regression, analysis of variance and covariance, from a geometric point of view. Modern computational capabilities are exploited fully. Students apply the theory to real data through canned and coded programs." }, "MATH6267": { "subject": "MATH", "number": "6267", "name": "Multivariate Stat Analy ", - "description": "Multivariate normal distribution theory, correlation and dependence analysis, regression and prediction, dimension-reduction methods, sampling distributions and related inference problems, selected applications in classification theory, multivariate process control, and pattern recognition. Full Description " + "description": "Multivariate normal distribution theory, correlation and dependence analysis, regression and prediction, dimension-reduction methods, sampling distributions and related inference problems, selected applications in classification theory, multivariate process control, and pattern recognition." }, "MATH6300": { "subject": "MATH", "number": "6300", "name": "Fractal Geometry ", - "description": "Hausdorff dimension, box-counting dimension, iterated function systems, continued fractions, number theory, Julia sets. Full Description " + "description": "Hausdorff dimension, box-counting dimension, iterated function systems, continued fractions, number theory, Julia sets." }, "MATH6307": { "subject": "MATH", "number": "6307", "name": "Ordinary Diff Eqns I ", - "description": "This sequence develops the qualitative theory for systems of ordinary differential equations. Topics include stability, Lyapunov functions, Floquet theory, attractors, invariant manifolds, bifurcation theory, normal forms. First of two courses. Full Description " + "description": "This sequence develops the qualitative theory for systems of ordinary differential equations. Topics include stability, Lyapunov functions, Floquet theory, attractors, invariant manifolds, bifurcation theory, normal forms. First of two courses." }, "MATH6308": { "subject": "MATH", "number": "6308", "name": "Ordinary Diff Eqns II ", - "description": "This sequence develops the qualitative theory for systems of differential equations. Topics include stability, Lyapunov functions, Floquet theory, attractors, invariant manifolds, bifurcation theory, and normal forms. Second of two courses. Full Description " + "description": "This sequence develops the qualitative theory for systems of differential equations. Topics include stability, Lyapunov functions, Floquet theory, attractors, invariant manifolds, bifurcation theory, and normal forms. Second of two courses." }, "MATH6321": { "subject": "MATH", "number": "6321", "name": "Complex Analysis ", - "description": "Complex integration, including Goursat's theorem; classification of singularities, the argument principle, the maximum principle; Riemann Mapping theorem; analytic continuation and Riemann surfaces; range of an analytic function, including Picard's theorem. Full Description " + "description": "Complex integration, including Goursat's theorem; classification of singularities, the argument principle, the maximum principle; Riemann Mapping theorem; analytic continuation and Riemann surfaces; range of an analytic function, including Picard's theorem." }, "MATH6337": { "subject": "MATH", "number": "6337", "name": "Real Analysis I ", - "description": "Measure and integration theory. Topics include measures, measurable functions, integration and differentiation of measures. Full Description " + "description": "Measure and integration theory. Topics include measures, measurable functions, integration and differentiation of measures." }, "MATH6338": { "subject": "MATH", "number": "6338", "name": "Real Analysis II ", - "description": "Topics include Lp spaces, Banach and Hilbert spaces, basic functional analysis. Full Description " + "description": "Topics include Lp spaces, Banach and Hilbert spaces, basic functional analysis." }, "MATH6341": { "subject": "MATH", "number": "6341", "name": "Partial Diff Eqns I ", - "description": "Introduction to the mathematical theory of partial differential equations covering the basic linear models of science and exact solution techniques. Full Description " + "description": "Introduction to the mathematical theory of partial differential equations covering the basic linear models of science and exact solution techniques." }, "MATH6342": { "subject": "MATH", "number": "6342", "name": "Partial Diff Eqns II ", - "description": "This course covers the general mathematical theory of linear stationary and evolution problems plus selected topics chosen from the instructor's interests. Full Description " + "description": "This course covers the general mathematical theory of linear stationary and evolution problems plus selected topics chosen from the instructor's interests." }, "MATH6421": { "subject": "MATH", "number": "6421", "name": "Algebraic Geometry I ", - "description": "The study of zero sets of polynomials: algebraic varieties, regular and rational mappings, the Zariski topology. Full Description " + "description": "The study of zero sets of polynomials: algebraic varieties, regular and rational mappings, the Zariski topology." }, "MATH6422": { "subject": "MATH", "number": "6422", "name": "Algebraic Geometry II ", - "description": "A continuation of Algebraic Geometry I. Full Description " + "description": "A continuation of Algebraic Geometry I." }, "MATH6441": { "subject": "MATH", "number": "6441", "name": "Algebraic Topology I ", - "description": "Simplicial homology. Chain complexes and acyclic carriers. Simplicial approximation. The exact homology sequence. Maps of spheres. Mayer-Vietoris sequence. Full Description " + "description": "Simplicial homology. Chain complexes and acyclic carriers. Simplicial approximation. The exact homology sequence. Maps of spheres. Mayer-Vietoris sequence." }, "MATH6442": { "subject": "MATH", "number": "6442", "name": "Algebraic Topology II ", - "description": "Continuation of MATH 6441. Singular homology. Local homology and manifolds. CW complexes. Cohomology. Duality in manifolds. Full Description " + "description": "Continuation of MATH 6441. Singular homology. Local homology and manifolds. CW complexes. Cohomology. Duality in manifolds." }, "MATH6451": { "subject": "MATH", "number": "6451", "name": "General Topology ", - "description": "Introduction to topological and metric spaces. Continuity, compactness, convergence, completion. Product and quotient spaces. Elementary homotopy. Full Description " + "description": "Introduction to topological and metric spaces. Continuity, compactness, convergence, completion. Product and quotient spaces. Elementary homotopy." }, "MATH6452": { "subject": "MATH", "number": "6452", "name": "Differential Topology ", - "description": "Manifolds. Differentiable structures. Tangent bundles. Embeddings and immersions. Maps on manifolds. Transversality. Morse-Sard Theorem. Vector bundles. Full Description " + "description": "Manifolds. Differentiable structures. Tangent bundles. Embeddings and immersions. Maps on manifolds. Transversality. Morse-Sard Theorem. Vector bundles." }, "MATH6453": { "subject": "MATH", "number": "6453", "name": "Geometric Topology ", - "description": "Characteristic classes, Morse theory, three-manifolds, four-manifolds, symplectic and contact manifolds, knot theory. Full Description " + "description": "Characteristic classes, Morse theory, three-manifolds, four-manifolds, symplectic and contact manifolds, knot theory." }, "MATH6455": { "subject": "MATH", "number": "6455", "name": "Differential Geometry I ", - "description": "Core topics in differential, including: Lie groups, curvature, and relations with topology. Full Description " + "description": "Core topics in differential, including: Lie groups, curvature, and relations with topology." }, "MATH6456": { "subject": "MATH", "number": "6456", "name": "Differential Geometry II ", - "description": "Introduces students to topics of current interest in geometry. Full Description " + "description": "Introduces students to topics of current interest in geometry." }, "MATH6457": { "subject": "MATH", "number": "6457", "name": "Geometry and Topology I ", - "description": "The course is an introduction to the fundamental group, covering spaces and techniques used to describe and study differentiable Manifolds and smooth functions. Full Description " + "description": "The course is an introduction to the fundamental group, covering spaces and techniques used to describe and study differentiable Manifolds and smooth functions." }, "MATH6458": { "subject": "MATH", "number": "6458", "name": "Geometry and Topology II ", - "description": "Introduction to differential geometry and (co) homology. Full Description " + "description": "Introduction to differential geometry and (co) homology." }, "MATH6514": { "subject": "MATH", "number": "6514", "name": "Industrial Math I ", - "description": "Applied mathematics techniques to solve real-world problems. Topics include mathematical modeling, asymptotic analysis, differential equations and scientific computation. Prepares the student for MATH 6515. Full Description " + "description": "Applied mathematics techniques to solve real-world problems. Topics include mathematical modeling, asymptotic analysis, differential equations and scientific computation. Prepares the student for MATH 6515." }, "MATH6515": { "subject": "MATH", "number": "6515", "name": "Industrial Math II ", - "description": "Applications of mathematical techniques from MATH 6514 to solve real-world problems. Group projects to solve industrial problems in topics chosen by the instructor. Full Description " + "description": "Applications of mathematical techniques from MATH 6514 to solve real-world problems. Group projects to solve industrial problems in topics chosen by the instructor." }, "MATH6580": { "subject": "MATH", "number": "6580", "name": "Intro to Hilbert Spaces ", - "description": "Geometry, convergence, and structure of linear operators in infinite dimensional spaces. Applications to science and engineering, including integral equations and ordinary partial differential equations. Full Description " + "description": "Geometry, convergence, and structure of linear operators in infinite dimensional spaces. Applications to science and engineering, including integral equations and ordinary partial differential equations." }, "MATH6583": { "subject": "MATH", "number": "6583", "name": "Integral Eqns&Transforms ", - "description": "Volterra and Fredholm linear integral equations; relation to differential equations; solution methods; Fourier, Laplace, and Mellin transforms; applications to boundary value problems and integral equations. Full Description " + "description": "Volterra and Fredholm linear integral equations; relation to differential equations; solution methods; Fourier, Laplace, and Mellin transforms; applications to boundary value problems and integral equations." }, "MATH6584": { "subject": "MATH", "number": "6584", "name": "Special Functions ", - "description": "Gamma function; exponential function; orthogonal polynomials; Bessel, Legendre, and hypergeometric functions; application to singular ordinary differential equations; and separation of variables for partial differential equations. Full Description " + "description": "Gamma function; exponential function; orthogonal polynomials; Bessel, Legendre, and hypergeometric functions; application to singular ordinary differential equations; and separation of variables for partial differential equations." }, "MATH6635": { "subject": "MATH", "number": "6635", "name": "Numerical Meth-Finance ", - "description": "Basic numerical and simulation techniques used in the pricing of derivative securities and in related problems in finance. Some programming experience required. Full Description " + "description": "Basic numerical and simulation techniques used in the pricing of derivative securities and in related problems in finance. Some programming experience required." }, "MATH6640": { "subject": "MATH", "number": "6640", "name": "Num Meth-Part Diff Eqns ", - "description": "Introduction to the implementation and analysis of numerical algorithms for the numerical solution of the classic partial differential equations of science and engineering. Must have knowledge of a computer programming language, familiarity with partial differential equations and elements of scientific computing. Full Description " + "description": "Introduction to the implementation and analysis of numerical algorithms for the numerical solution of the classic partial differential equations of science and engineering. Must have knowledge of a computer programming language, familiarity with partial differential equations and elements of scientific computing." }, "MATH6641": { "subject": "MATH", "number": "6641", "name": "Adv Num Meth-Pt Diff Eqn ", - "description": "Analysis and implementation of numerical methods for nonlinear partial differential equations including elliptic, hyperbolic, and/or parabolic problems. Must have knowledge of classic linear partial differential equations and exposure to numerical methods for partial differential equations at the level of MATH 6640 or numerical linear algebra at the level of MATH 6643. Full Description " + "description": "Analysis and implementation of numerical methods for nonlinear partial differential equations including elliptic, hyperbolic, and/or parabolic problems. Must have knowledge of classic linear partial differential equations and exposure to numerical methods for partial differential equations at the level of MATH 6640 or numerical linear algebra at the level of MATH 6643." }, "MATH6643": { "subject": "MATH", "number": "6643", "name": "Numerical Linear Algebra ", - "description": "Introduction to the numerical solution of the classic problems of linear algebra including linear systems, least squares, Singular value decomposition, eigenvalue problems. Crosslisted with CSE 6643. Full Description " + "description": "Introduction to the numerical solution of the classic problems of linear algebra including linear systems, least squares, Singular value decomposition, eigenvalue problems. Crosslisted with CSE 6643." }, "MATH6644": { "subject": "MATH", "number": "6644", "name": "Iterative Meth-Sys Eqns ", - "description": "Iterative methods for linear and nonlinear systems of equations including Jacobi, G-S, SOR, CG, multigrid, Newton quasi-Newton, updating, and gradient-based methods. Crosslisted with CSE 6644. Full Description " + "description": "Iterative methods for linear and nonlinear systems of equations including Jacobi, G-S, SOR, CG, multigrid, Newton quasi-Newton, updating, and gradient-based methods. Crosslisted with CSE 6644." }, "MATH6645": { "subject": "MATH", "number": "6645", "name": "Numerical Approx Theory ", - "description": "Theoretical and computational aspects of polynomial, rational, trigonometric, spline, and wavelet approximation. Full Description " + "description": "Theoretical and computational aspects of polynomial, rational, trigonometric, spline, and wavelet approximation." }, "MATH6646": { "subject": "MATH", "number": "6646", "name": "Numer Meth: Ord Diff Eqn ", - "description": "Analysis and implementation of numerical methods for initial and two-point boundary value problems for ordinary differential equations. Full Description " + "description": "Analysis and implementation of numerical methods for initial and two-point boundary value problems for ordinary differential equations." }, "MATH6647": { "subject": "MATH", "number": "6647", "name": "Numeric Meth:Dynamic Sys ", - "description": "Approximation of the dynamical structure of a differential equation and preservation of dynamical structure under discretization. Must be familiar with dynamical systems and numerical methods for initial and boundary value problems in ordinary differential equations. Full Description " + "description": "Approximation of the dynamical structure of a differential equation and preservation of dynamical structure under discretization. Must be familiar with dynamical systems and numerical methods for initial and boundary value problems in ordinary differential equations." }, "MATH6701": { "subject": "MATH", "number": "6701", "name": "Math Meth-Appli Sci I ", - "description": "Review of linear algebra and ordinary differential equations, brief introduction to functions of a complex variable. Full Description " + "description": "Review of linear algebra and ordinary differential equations, brief introduction to functions of a complex variable." }, "MATH6702": { "subject": "MATH", "number": "6702", "name": "Math Meth-Appl Sci II ", - "description": "Review of vector calculus and its applications to partial differential equations. Full Description " + "description": "Review of vector calculus and its applications to partial differential equations." }, "MATH6705": { "subject": "MATH", "number": "6705", "name": "Modeling and Dynamics ", - "description": "Mathematical methods for solving problems in the life sciences. Models-based course on basic facts from the theory of ordinary differential equations and numerical methods of their solution. Introduction to the control theory, diffusion theory, maximization, minimization and curve fitting. Math majors may not use this course toward any degree in the School of Mathematics. Full Description " + "description": "Mathematical methods for solving problems in the life sciences. Models-based course on basic facts from the theory of ordinary differential equations and numerical methods of their solution. Introduction to the control theory, diffusion theory, maximization, minimization and curve fitting. Math majors may not use this course toward any degree in the School of Mathematics." }, "MATH6710": { "subject": "MATH", "number": "6710", "name": "Numerical Methods-CSE II ", - "description": "Introduction to numerical algorithms widely used in computational science and engineering. Numerical linear algebra, linear programming, and applications. Crosslisted with CSE 6710. Full Description " + "description": "Introduction to numerical algorithms widely used in computational science and engineering. Numerical linear algebra, linear programming, and applications. Crosslisted with CSE 6710." }, "MATH6711": { "subject": "MATH", "number": "6711", "name": "Numerical Methods-CSE II ", - "description": "Efficient numerical techniques for solving partial differential equations and large-scale systems of equations arising from discretization of partial differential equations or variational problems in applications in science and engineering. Crosslisted with CSE 6711. Full Description " + "description": "Efficient numerical techniques for solving partial differential equations and large-scale systems of equations arising from discretization of partial differential equations or variational problems in applications in science and engineering. Crosslisted with CSE 6711." }, "MATH6759": { "subject": "MATH", "number": "6759", "name": "Stoch Process-Finance I ", - "description": "Mathematical modeling of financial markets, derivative securities pricing, and portfolio optimization. Concepts from probability and mathematics are introduced as needed. Crosslisted with ISYE 6759. Full Description " + "description": "Mathematical modeling of financial markets, derivative securities pricing, and portfolio optimization. Concepts from probability and mathematics are introduced as needed. Crosslisted with ISYE 6759." }, "MATH6761": { "subject": "MATH", "number": "6761", "name": "Stochastic Processes I ", - "description": "Discrete time Markov chains, Poisson processes, and renewal processes. Transient and limiting behavior. Average cost and utility measures of systems. Algorithms for computing performance measures. Modeling of inventories, and flows in manufacturing and computer networks. Crosslisted with ISYE 6761. Full Description " + "description": "Discrete time Markov chains, Poisson processes, and renewal processes. Transient and limiting behavior. Average cost and utility measures of systems. Algorithms for computing performance measures. Modeling of inventories, and flows in manufacturing and computer networks. Crosslisted with ISYE 6761." }, "MATH6762": { "subject": "MATH", "number": "6762", "name": "Stochastic Processes II ", - "description": "Continuous time Markov chains. Uniformization, transient and limiting behavior. Brownian motion and martingales. Optional sampling and convergence. Modeling of inventories, finance, flows in manufacturing and computer networks. Crosslisted with ISYE 6762 Full Description " + "description": "Continuous time Markov chains. Uniformization, transient and limiting behavior. Brownian motion and martingales. Optional sampling and convergence. Modeling of inventories, finance, flows in manufacturing and computer networks. Crosslisted with ISYE 6762" }, "MATH6767": { "subject": "MATH", "number": "6767", "name": "Sys-Computation Finance ", - "description": "Computational Finance Introduction to large scale system design to support computational finance for options, stocks, or other financial instruments. Some programming experience, and previous exposure to stocks, bonds, and options required. Crosslisted with ISYE 6767 Full Description " + "description": "Computational Finance Introduction to large scale system design to support computational finance for options, stocks, or other financial instruments. Some programming experience, and previous exposure to stocks, bonds, and options required. Crosslisted with ISYE 6767" }, "MATH6769": { "subject": "MATH", "number": "6769", "name": "Fixed Income Securities ", - "description": "Description, institutional features, and mathematical modeling of fixed income securities. Use of both deterministic and stochastic models. Crosslisted with ISYE 6769. Full Description " + "description": "Description, institutional features, and mathematical modeling of fixed income securities. Use of both deterministic and stochastic models. Crosslisted with ISYE 6769." }, "MATH6781": { "subject": "MATH", "number": "6781", "name": "Reliability Theory ", - "description": "Reliability systems and related distributions, failure rate functions and nonparametric classes, accelerated life testing, dependent failure analysis, statistical inference of reliability data. Crosslisted with ISYE 6781. Full Description " + "description": "Reliability systems and related distributions, failure rate functions and nonparametric classes, accelerated life testing, dependent failure analysis, statistical inference of reliability data. Crosslisted with ISYE 6781." }, "MATH6783": { "subject": "MATH", "number": "6783", "name": "Financial Data Analysis ", - "description": "Fundamentals of statistical inference for models used in the modern analysis of financial data. Crosslisted with ISYE 6783. Full Description " + "description": "Fundamentals of statistical inference for models used in the modern analysis of financial data. Crosslisted with ISYE 6783." }, "MATH6785": { "subject": "MATH", "number": "6785", "name": "The Practice of QCF ", - "description": "Case studies, visiting lecturers from financial institutions, student group projects of an advanced nature, and student reports, all centered around quantitative and computational finance. Crosslisted with ISYE and MGT 6785. Full Description " + "description": "Case studies, visiting lecturers from financial institutions, student group projects of an advanced nature, and student reports, all centered around quantitative and computational finance. Crosslisted with ISYE and MGT 6785." }, "MATH6793": { "subject": "MATH", "number": "6793", "name": "Adv Topics in QCF ", - "description": "Advanced foundational material and analysis techniques in quantitative and computational finance. Crosslisted with ISYE 6793. Full Description " + "description": "Advanced foundational material and analysis techniques in quantitative and computational finance. Crosslisted with ISYE 6793." }, "MATH6XXX": { "subject": "MATH", "number": "6XXX", "name": "Mathematics Elective ", - "description": " Full Description " + "description": "" }, "MATH7000": { "subject": "MATH", "number": "7000", "name": "Master's Thesis ", - "description": " Full Description " + "description": "" }, "MATH7012": { "subject": "MATH", "number": "7012", "name": "Enumerative Combinatoric ", - "description": "Fundamental methods of enumeration and asymptotic analysis, including the use of inclusion/exclusion, generating functions, and recurrence relations. Applications to strings over a finite alphabet and graphs. Full Description " + "description": "Fundamental methods of enumeration and asymptotic analysis, including the use of inclusion/exclusion, generating functions, and recurrence relations. Applications to strings over a finite alphabet and graphs." }, "MATH7014": { "subject": "MATH", "number": "7014", "name": "Advanced Graph Theory ", - "description": "Advanced topics in graph theory. Selection of arguments varies every year. Full Description " + "description": "Advanced topics in graph theory. Selection of arguments varies every year." }, "MATH7016": { "subject": "MATH", "number": "7016", "name": "Combinatorics ", - "description": "Fundamental combinatorial structures including hypergraphs, transversal sets, colorings, Sperner families, intersecting families, packings and coverings, perfect graphs, and Ramsey theory. Algebraic and topological methods, applications. Full Description " + "description": "Fundamental combinatorial structures including hypergraphs, transversal sets, colorings, Sperner families, intersecting families, packings and coverings, perfect graphs, and Ramsey theory. Algebraic and topological methods, applications." }, "MATH7018": { "subject": "MATH", "number": "7018", "name": "Probab Combinatorics ", - "description": "Applications of probabilistic techniques in discrete mathematics, including classical ideas using expectation and variance as well as modern tools, such as martingale and correlation inequalities. Full Description " + "description": "Applications of probabilistic techniques in discrete mathematics, including classical ideas using expectation and variance as well as modern tools, such as martingale and correlation inequalities." }, "MATH7244": { "subject": "MATH", "number": "7244", "name": "Stochastic Calculus I ", - "description": "An introduction to the Ito stochastic calculus and stochastic differential equations through a development of continuous-time martingales and Markov processes. First of two courses. Full Description " + "description": "An introduction to the Ito stochastic calculus and stochastic differential equations through a development of continuous-time martingales and Markov processes. First of two courses." }, "MATH7245": { "subject": "MATH", "number": "7245", "name": "Stochastic Calculus II ", - "description": "An introduction to the Ito stochastic calculus and stochastic differential equations through a development of continuous-time martingales and Markov processes. Continuation of MATH 7244. Full Description " + "description": "An introduction to the Ito stochastic calculus and stochastic differential equations through a development of continuous-time martingales and Markov processes. Continuation of MATH 7244." }, "MATH7334": { "subject": "MATH", "number": "7334", "name": "Operator Theory ", - "description": "Theory of linear operators on Hilbert space. Spectral theory of bounded and unbounded operators. Applications. Full Description " + "description": "Theory of linear operators on Hilbert space. Spectral theory of bounded and unbounded operators. Applications." }, "MATH7337": { "subject": "MATH", "number": "7337", "name": "Harmonic Analysis ", - "description": "Fourier analysis in Euclidean space. Basic topics including L1 and L2 theory; advanced topics such as distribution theory, uncertainty, Littlewood-Paley theory. Full Description " + "description": "Fourier analysis in Euclidean space. Basic topics including L1 and L2 theory; advanced topics such as distribution theory, uncertainty, Littlewood-Paley theory." }, "MATH7338": { "subject": "MATH", "number": "7338", "name": "Functional Analysis ", - "description": "Topics include the Hahn-Banach theorems, the Baire Category theorem and its consequences, duality in Banach spaces, locally convex spaces, and additional topics. Full Description " + "description": "Topics include the Hahn-Banach theorems, the Baire Category theorem and its consequences, duality in Banach spaces, locally convex spaces, and additional topics." }, "MATH7510": { "subject": "MATH", "number": "7510", "name": "Graph Algorithms ", - "description": "Algorithms for graph problems such as maximum flow, covering, matching, coloring, planarity, minimum cuts, shortest paths, and connectivity. Crosslisted with ISYE 7510 and CS 7510. Full Description " + "description": "Algorithms for graph problems such as maximum flow, covering, matching, coloring, planarity, minimum cuts, shortest paths, and connectivity. Crosslisted with ISYE 7510 and CS 7510." }, "MATH7581": { "subject": "MATH", "number": "7581", "name": "Calculus Variations ", - "description": "Minimization of functionals, Euler-Lagrange equations, sufficient conditions for a minimum; geodesic, isoperometric, and time of transit problems; variational principles of mechanics; applications to control theory. Full Description " + "description": "Minimization of functionals, Euler-Lagrange equations, sufficient conditions for a minimum; geodesic, isoperometric, and time of transit problems; variational principles of mechanics; applications to control theory." }, "MATH7586": { "subject": "MATH", "number": "7586", "name": "Tensor Analysis ", - "description": "Review of linear algebra, multilinear algebra, algebra of tensors, co- and contravariant tensors, tensors in Riemann spaces, geometrical interpretation of skew tensors. Full Description " + "description": "Review of linear algebra, multilinear algebra, algebra of tensors, co- and contravariant tensors, tensors in Riemann spaces, geometrical interpretation of skew tensors." }, "MATH7999": { "subject": "MATH", "number": "7999", "name": "Prep-PHD Qual Exam ", - "description": " Full Description " + "description": "" }, "MATH8305": { "subject": "MATH", "number": "8305", "name": "Aural-Oral Engl for Math ", - "description": "Enhancement of English listening/speaking skills for SOM international graduate students, post-docs, and new faculty who speak English as their second language (ESL) and who will be teaching undergraduate students. Full Description " + "description": "Enhancement of English listening/speaking skills for SOM international graduate students, post-docs, and new faculty who speak English as their second language (ESL) and who will be teaching undergraduate students." }, "MATH8306": { "subject": "MATH", "number": "8306", "name": "Intermed Academic Commun ", - "description": "Continued enhancement of English listening/speaking skills for current and future SOM graduate international teaching assistants and international lead instructors who speak English as their second language (ESL). Full Description " + "description": "Continued enhancement of English listening/speaking skills for current and future SOM graduate international teaching assistants and international lead instructors who speak English as their second language (ESL)." }, "MATH8307": { "subject": "MATH", "number": "8307", "name": "Advanced Academic Commun ", - "description": "Continued enhancement of English listening/speaking skills for current and future SOM graduate international teaching assistants and international lead instructors who speak English as their second language (ESL). Full Description " + "description": "Continued enhancement of English listening/speaking skills for current and future SOM graduate international teaching assistants and international lead instructors who speak English as their second language (ESL)." }, "MATH8801": { "subject": "MATH", "number": "8801", "name": "Special Topics ", - "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics. Full Description " + "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics." }, "MATH8802": { "subject": "MATH", "number": "8802", "name": "Special Topics ", - "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics. Full Description " + "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics." }, "MATH8803": { "subject": "MATH", "number": "8803", "name": "Special Topics ", - "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics. Full Description " + "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics." }, "MATH8804": { "subject": "MATH", "number": "8804", "name": "Special Topics ", - "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics. Full Description " + "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics." }, "MATH8805": { "subject": "MATH", "number": "8805", "name": "Special Topics ", - "description": "This course enables the school of Mathematics to comply with requests for courses in selected topics. Full Description " + "description": "This course enables the school of Mathematics to comply with requests for courses in selected topics." }, "MATH8811": { "subject": "MATH", "number": "8811", "name": "Special Topics ", - "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics. Full Description " + "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics." }, "MATH8812": { "subject": "MATH", "number": "8812", "name": "Special Topics ", - "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics. Full Description " + "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics." }, "MATH8813": { "subject": "MATH", "number": "8813", "name": "Special Topics ", - "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics. Full Description " + "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics." }, "MATH8814": { "subject": "MATH", "number": "8814", "name": "Special Topics ", - "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics. Full Description " + "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics." }, "MATH8815": { "subject": "MATH", "number": "8815", "name": "Special Topics ", - "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics. Full Description " + "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics." }, "MATH8821": { "subject": "MATH", "number": "8821", "name": "Special Topics ", - "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics. Full Description " + "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics." }, "MATH8822": { "subject": "MATH", "number": "8822", "name": "Special Topics ", - "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics. Full Description " + "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics." }, "MATH8823": { "subject": "MATH", "number": "8823", "name": "Special Topics ", - "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics. Full Description " + "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics." }, "MATH8824": { "subject": "MATH", "number": "8824", "name": "Special Topics ", - "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics. Full Description " + "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics." }, "MATH8825": { "subject": "MATH", "number": "8825", "name": "Special Topics ", - "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics. Full Description " + "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics." }, "MATH8831": { "subject": "MATH", "number": "8831", "name": "Special Topics ", - "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics. Full Description " + "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics." }, "MATH8832": { "subject": "MATH", "number": "8832", "name": "Special Topics ", - "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics. Full Description " + "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics." }, "MATH8833": { "subject": "MATH", "number": "8833", "name": "Special Topics ", - "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics. Full Description " + "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics." }, "MATH8834": { "subject": "MATH", "number": "8834", "name": "Special Topics ", - "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics. Full Description " + "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics." }, "MATH8835": { "subject": "MATH", "number": "8835", "name": "Special Topics ", - "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics. Full Description " + "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics." }, "MATH8841": { "subject": "MATH", "number": "8841", "name": "Special Topics ", - "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics. Full Description " + "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics." }, "MATH8842": { "subject": "MATH", "number": "8842", "name": "Special Topics ", - "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics. Full Description " + "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics." }, "MATH8843": { "subject": "MATH", "number": "8843", "name": "Special Topics ", - "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics. Full Description " + "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics." }, "MATH8844": { "subject": "MATH", "number": "8844", "name": "Special Topics ", - "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics. Full Description " + "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics." }, "MATH8845": { "subject": "MATH", "number": "8845", "name": "Special Topics ", - "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics. Full Description " + "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics." }, "MATH8851": { "subject": "MATH", "number": "8851", "name": "Special Topics ", - "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics. Full Description " + "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics." }, "MATH8852": { "subject": "MATH", "number": "8852", "name": "Special Topics ", - "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics. Full Description " + "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics." }, "MATH8853": { "subject": "MATH", "number": "8853", "name": "Special Topics ", - "description": "This course enables the school of Mathematics to comply with requests for courses in selected topics. Full Description " + "description": "This course enables the school of Mathematics to comply with requests for courses in selected topics." }, "MATH8854": { "subject": "MATH", "number": "8854", "name": "Special Topics ", - "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics. Full Description " + "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics." }, "MATH8855": { "subject": "MATH", "number": "8855", "name": "Special Topics ", - "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics. Full Description " + "description": "This course enables the School of Mathematics to comply with requests for courses in selected topics." }, "MATH8863": { "subject": "MATH", "number": "8863", "name": "Topics in Graph Theory ", - "description": "Selection of topics vary with each offering. Full Description " + "description": "Selection of topics vary with each offering." }, "MATH8900": { "subject": "MATH", "number": "8900", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "MATH8901": { "subject": "MATH", "number": "8901", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "MATH8902": { "subject": "MATH", "number": "8902", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "MATH8903": { "subject": "MATH", "number": "8903", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "MATH8997": { "subject": "MATH", "number": "8997", "name": "Teaching Assistantship ", - "description": "For students holding graduate teaching assistantships. Full Description " + "description": "For students holding graduate teaching assistantships." }, "MATH8998": { "subject": "MATH", "number": "8998", "name": "Research Assistantship ", - "description": "For students holding graduate research assistantships. Full Description " + "description": "For students holding graduate research assistantships." }, "MATH9000": { "subject": "MATH", "number": "9000", "name": "Doctoral Thesis ", - "description": " Full Description " + "description": "" }, "ME1750": { "subject": "ME", "number": "1750", "name": "Intro to Bioengineering ", - "description": "An introduction to the field of bioengineering, including the application of engineering principles and methods to problems in biology and medicine, the integration of engineering with biology, and the emerging industrial opportunities. Crosslisted with AE, BMED, CHE, ECE, and MSE 1750. Full Description " + "description": "An introduction to the field of bioengineering, including the application of engineering principles and methods to problems in biology and medicine, the integration of engineering with biology, and the emerging industrial opportunities. Crosslisted with AE, BMED, CHE, ECE, and MSE 1750." }, "ME1770": { "subject": "ME", "number": "1770", "name": "Intro to Engr Graphics ", - "description": "Introduction to engineering graphics and visualization including sketching, line drawing, and solid modeling. Development and interpretation of drawings and specifications for product realization. Crosslisted with AE and CEE 1770. Full Description " + "description": "Introduction to engineering graphics and visualization including sketching, line drawing, and solid modeling. Development and interpretation of drawings and specifications for product realization. Crosslisted with AE and CEE 1770." }, "ME1XXX": { "subject": "ME", "number": "1XXX", "name": "Mechanical Engr Elective ", - "description": " Full Description " + "description": "" }, "ME2016": { "subject": "ME", "number": "2016", "name": "Computing Techniques ", - "description": "An introduction to the use of computers and MATLAB programming for the solution of mechanical engineering problems. Topics include: sources of error in computing, the use of modular software design, basic numerical methods, and signal processing. Full Description " + "description": "An introduction to the use of computers and MATLAB programming for the solution of mechanical engineering problems. Topics include: sources of error in computing, the use of modular software design, basic numerical methods, and signal processing." }, "ME2110": { "subject": "ME", "number": "2110", "name": "Creative Decisions& Dsgn ", - "description": "To learn fundamental techniques for creating, analyzing, synthesizing, and implementing design solutions to open- ended problems with flexibility, adaptability, and creativity through team and individual efforts. Full Description " + "description": "To learn fundamental techniques for creating, analyzing, synthesizing, and implementing design solutions to open- ended problems with flexibility, adaptability, and creativity through team and individual efforts." }, "ME2202": { "subject": "ME", "number": "2202", "name": "Dynamics of Rigid Bodies ", - "description": "Kinematics and dynamics of particles and rigid bodies in one, two, and three dimensions. Work-energy and impulse-momentum concepts. Full Description " + "description": "Kinematics and dynamics of particles and rigid bodies in one, two, and three dimensions. Work-energy and impulse-momentum concepts." }, "ME2698": { "subject": "ME", "number": "2698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "ME2699": { "subject": "ME", "number": "2699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "ME2803": { "subject": "ME", "number": "2803", "name": "Special Topics ", - "description": "Topics of current interest not offered in the regular course offerings. Full Description " + "description": "Topics of current interest not offered in the regular course offerings." }, "ME2XXX": { "subject": "ME", "number": "2XXX", "name": "Mechanical Engr Elective ", - "description": " Full Description " + "description": "" }, "ME3015": { "subject": "ME", "number": "3015", "name": "Sys Dynamics & Control ", - "description": "Dynamic modeling and response of systems with mechanical, hydraulic, thermal, and/or electrical elements. Linear feedback control systems design and analysis in time and frequency domains. Credit not allowed for both ME 3015 and ME 4452. Full Description " + "description": "Dynamic modeling and response of systems with mechanical, hydraulic, thermal, and/or electrical elements. Linear feedback control systems design and analysis in time and frequency domains. Credit not allowed for both ME 3015 and ME 4452." }, "ME3017": { "subject": "ME", "number": "3017", "name": "System Dynamics ", - "description": "Dynamic modeling and simulation of systems with mechanical, hydraulic, thermal and/or electrical elements. Frequency response analysis, stability, and feedback control design of dynamic systems. Students cannot receive credit for ME 3017 and AE 3530. Full Description " + "description": "Dynamic modeling and simulation of systems with mechanical, hydraulic, thermal and/or electrical elements. Frequency response analysis, stability, and feedback control design of dynamic systems. Students cannot receive credit for ME 3017 and AE 3530." }, "ME3057": { "subject": "ME", "number": "3057", "name": "Experimental Methodology ", - "description": "Introduction to basic instrumentation and experimental methodology used in mechanical engineering, including calibration, use, precision and accuracy. Consideration errors, precision and accuracy in experimental measurements and technical reports. Full Description " + "description": "Introduction to basic instrumentation and experimental methodology used in mechanical engineering, including calibration, use, precision and accuracy. Consideration errors, precision and accuracy in experimental measurements and technical reports." }, "ME3141": { "subject": "ME", "number": "3141", "name": "Cutting-Edge Eng Seminar ", - "description": "Seminar course on advanced engineering technologies directed to a non-technical audience. Distinguished guest speakers. Full Description " + "description": "Seminar course on advanced engineering technologies directed to a non-technical audience. Distinguished guest speakers." }, "ME3180": { "subject": "ME", "number": "3180", "name": "Machine Design ", - "description": "The selection, analysis, and synthesis of springs, joining and fastening methods, bearings, shafts, gears, and other elements. Design of assemblies. Computer-based methods. Full Description " + "description": "The selection, analysis, and synthesis of springs, joining and fastening methods, bearings, shafts, gears, and other elements. Design of assemblies. Computer-based methods." }, "ME3210": { "subject": "ME", "number": "3210", "name": "Design and Manufacture ", - "description": "Major manufacturing processes, capabilities, and costs. Interaction between design, materials and manufacturing process selection. Full Description " + "description": "Major manufacturing processes, capabilities, and costs. Interaction between design, materials and manufacturing process selection." }, "ME3322": { "subject": "ME", "number": "3322", "name": "Thermodynamics ", - "description": "Introduction to thermodynamics. Thermodynamic properties, energy and mass conservation, entropy and the second law. Second-law analysis of thermodynamic systems, gas cycles, vapor cycles. Full Description " + "description": "Introduction to thermodynamics. Thermodynamic properties, energy and mass conservation, entropy and the second law. Second-law analysis of thermodynamic systems, gas cycles, vapor cycles." }, "ME3340": { "subject": "ME", "number": "3340", "name": "Fluid Mechanics ", - "description": "The fundamentals of fluid mechanics. Topics include fluid statics; control-volume analysis; the Navier-Stokes equations; similitude; viscous, inviscid and turbulent flows; boundary layers. Full Description " + "description": "The fundamentals of fluid mechanics. Topics include fluid statics; control-volume analysis; the Navier-Stokes equations; similitude; viscous, inviscid and turbulent flows; boundary layers." }, "ME3345": { "subject": "ME", "number": "3345", "name": "Heat Transfer ", - "description": "Introduction to the study of heat transfer, transport coefficients, steady state conduction, transient conduction, radiative heat transfer, and forced and natural convection. Full Description " + "description": "Introduction to the study of heat transfer, transport coefficients, steady state conduction, transient conduction, radiative heat transfer, and forced and natural convection." }, "ME3700": { "subject": "ME", "number": "3700", "name": "Intro Energy Systems EGR ", - "description": "Renewable, fossil, and nulcear energy and its conversion into various forms. Electrical grid, energy storage, energy conservation, and mitigation of adverse conversion. Full Description " + "description": "Renewable, fossil, and nulcear energy and its conversion into various forms. Electrical grid, energy storage, energy conservation, and mitigation of adverse conversion." }, "ME3720": { "subject": "ME", "number": "3720", "name": "Intro-Fluid&Thermal Engr ", - "description": "Theory and application, but no exhaustive treatment of fluid mechanics, thermodynamics, and heat transfer in analysis and design of fluid and thermal energy systems. Full Description " + "description": "Theory and application, but no exhaustive treatment of fluid mechanics, thermodynamics, and heat transfer in analysis and design of fluid and thermal energy systems." }, "ME3743": { "subject": "ME", "number": "3743", "name": "Emerging Technologies ", - "description": "Analysis of emerging technologies and their impacts for firm practice, market practice, policy, and society. Credit not allowed for both ME 3743 and MGT 3743 or CS 3743. Full Description " + "description": "Analysis of emerging technologies and their impacts for firm practice, market practice, policy, and society. Credit not allowed for both ME 3743 and MGT 3743 or CS 3743." }, "ME3744": { "subject": "ME", "number": "3744", "name": "Mangn Prod Serv Tech Dev ", - "description": "Analysis of the managerial challenges of the product development process. Full Description " + "description": "Analysis of the managerial challenges of the product development process." }, "ME3XXX": { "subject": "ME", "number": "3XXX", "name": "Mechanical Engr Elective ", - "description": " Full Description " + "description": "" }, "ME4011": { "subject": "ME", "number": "4011", "name": "IC Engines ", - "description": "Analysis and design of various types of engines used in transportation systems. Topics include advances in energy efficiency and emissions in automotive applicatons. Full Description " + "description": "Analysis and design of various types of engines used in transportation systems. Topics include advances in energy efficiency and emissions in automotive applicatons." }, "ME4012": { "subject": "ME", "number": "4012", "name": "Motion Systems ", - "description": "Motion systems consisting of mechanical, fluid and electrical components are analyzed, modeled, and controlled. Alternatives are considered for system optimization. Full Description " + "description": "Motion systems consisting of mechanical, fluid and electrical components are analyzed, modeled, and controlled. Alternatives are considered for system optimization." }, "ME4041": { "subject": "ME", "number": "4041", "name": "Computer Graphics & Cad ", - "description": "Principles of geometric modeling, finite-element method, and interactive computer graphics hardware and software. CAD and CAE applications in thermal and mechanical design problems. Design projects. Full Description " + "description": "Principles of geometric modeling, finite-element method, and interactive computer graphics hardware and software. CAD and CAE applications in thermal and mechanical design problems. Design projects." }, "ME4053": { "subject": "ME", "number": "4053", "name": "ME Systems Lab ", - "description": "Measurement and analysis of mechanical, acoustic, manufacturing, thermodynamic, fluid, and heat transfer phenomena. Emphasis on data acquisition, reduction, and analysis and report preparation. Full Description " + "description": "Measurement and analysis of mechanical, acoustic, manufacturing, thermodynamic, fluid, and heat transfer phenomena. Emphasis on data acquisition, reduction, and analysis and report preparation." }, "ME4056": { "subject": "ME", "number": "4056", "name": "ME Systems Laboratory ", - "description": "Measurement and analysis of mechanical, acoustic, manufacturing, thermodynamic, fluid, and heat transfer phenomena. Emphasis on data acquisition, reduction, analysis, and report preparation. Full Description " + "description": "Measurement and analysis of mechanical, acoustic, manufacturing, thermodynamic, fluid, and heat transfer phenomena. Emphasis on data acquisition, reduction, analysis, and report preparation." }, "ME4171": { "subject": "ME", "number": "4171", "name": "Environmental Dsgn & Mfg ", - "description": "Including environmental considerations in engineering design; reducing environmental impact by design; recycling; material selection; de- and remanufacturing; life-cycle considerations, analyses, tradeoffs; ISO 14000. Full Description " + "description": "Including environmental considerations in engineering design; reducing environmental impact by design; recycling; material selection; de- and remanufacturing; life-cycle considerations, analyses, tradeoffs; ISO 14000." }, "ME4172": { "subject": "ME", "number": "4172", "name": "Dsgn Sustainable Eng Sys ", - "description": "Understanding sustainability in context of market forces, availability of resources, technology, society. Methods for identifying, modeling, and selecting sustainable designs. Full Description " + "description": "Understanding sustainability in context of market forces, availability of resources, technology, society. Methods for identifying, modeling, and selecting sustainable designs." }, "ME4182": { "subject": "ME", "number": "4182", "name": "Capstone Design ", - "description": "Teams apply a systematic design process to real multidisciplinary problems. Problems selected from a broad spectrum of interest areas, including biomedical, ecological, environmental, mechanical, and thermal. Full Description " + "description": "Teams apply a systematic design process to real multidisciplinary problems. Problems selected from a broad spectrum of interest areas, including biomedical, ecological, environmental, mechanical, and thermal." }, "ME4189": { "subject": "ME", "number": "4189", "name": "Structural Vibrations ", - "description": "Single and multi-degree-of-freedom systems as well as continuous systems are analyzed for their vibrational response characteristics using both exact and approximate methods. Full Description " + "description": "Single and multi-degree-of-freedom systems as well as continuous systems are analyzed for their vibrational response characteristics using both exact and approximate methods." }, "ME4193": { "subject": "ME", "number": "4193", "name": "Tribological Design ", - "description": "Analysis of tribological aspects of machine components, including friction, lubrication, and wear. Group design project to optimize system tribological performance. Full Description " + "description": "Analysis of tribological aspects of machine components, including friction, lubrication, and wear. Group design project to optimize system tribological performance." }, "ME4214": { "subject": "ME", "number": "4214", "name": "Mech Behavior-Materials ", - "description": "Problems involving resistance of materials to plastic deformation, fracture, fatigue, and creep; mechanical testing; computer-based methods; case studies of failure. Full Description " + "description": "Problems involving resistance of materials to plastic deformation, fracture, fatigue, and creep; mechanical testing; computer-based methods; case studies of failure." }, "ME4215": { "subject": "ME", "number": "4215", "name": "Mfg Process Analysis ", - "description": "First principles based modeling and analysis of manufacturing processes. Process design and optimization. Full Description " + "description": "First principles based modeling and analysis of manufacturing processes. Process design and optimization." }, "ME4315": { "subject": "ME", "number": "4315", "name": "Energy Systems Analy&Dgn ", - "description": "Integrated concepts, laws, and methodologies from thermal sciences are used to analyze, model, and design energy systems and to predict system performance for fixed designs. Full Description " + "description": "Integrated concepts, laws, and methodologies from thermal sciences are used to analyze, model, and design energy systems and to predict system performance for fixed designs." }, "ME4321": { "subject": "ME", "number": "4321", "name": "Refrigeration & Air Cond ", - "description": "Application of thermodynamics principles to analysis and design of refrigeration and air conditioning systems, absorption and heat-driven systems, gas-vapor mixture psychrometrics, load estimates, delivery, and control. Full Description " + "description": "Application of thermodynamics principles to analysis and design of refrigeration and air conditioning systems, absorption and heat-driven systems, gas-vapor mixture psychrometrics, load estimates, delivery, and control." }, "ME4324": { "subject": "ME", "number": "4324", "name": "Power Generation Tech ", - "description": "Technology review and application of engineering sciences and economics to the analysis and design of power generation systems. Fossil, nuclear, and renewable energy systems are considered. Full Description " + "description": "Technology review and application of engineering sciences and economics to the analysis and design of power generation systems. Fossil, nuclear, and renewable energy systems are considered." }, "ME4325": { "subject": "ME", "number": "4325", "name": "Intro Fuel Cell Systems ", - "description": "Fuel cell systems are explained and analyzed, including single cells and stacks, and balance-of-plant fundamentals, with emphasis upon prevalent fuel cell types and their applications. Full Description " + "description": "Fuel cell systems are explained and analyzed, including single cells and stacks, and balance-of-plant fundamentals, with emphasis upon prevalent fuel cell types and their applications." }, "ME4330": { "subject": "ME", "number": "4330", "name": "Heat and Mass Exchangers ", - "description": "Heat transfer, fluid flow, and thermodynamics principles applied to the analysis and design of heat and mass exchangers, periodic regenerators, and cooling towers. Full Description " + "description": "Heat transfer, fluid flow, and thermodynamics principles applied to the analysis and design of heat and mass exchangers, periodic regenerators, and cooling towers." }, "ME4340": { "subject": "ME", "number": "4340", "name": "Applied Fluid Mechanics ", - "description": "Advanced study in three areas of fluid mechanics. Topics may be chosen from turbomachinery, flow measurement, compressible flow, applied aerodynamics, and others. Full Description " + "description": "Advanced study in three areas of fluid mechanics. Topics may be chosen from turbomachinery, flow measurement, compressible flow, applied aerodynamics, and others." }, "ME4342": { "subject": "ME", "number": "4342", "name": "Computational Fluid Dyn ", - "description": "An introduction to computational fluid dynamics (CFD) in mechanical engineering. The theory and numerical techniques of CFD. Modern CFD software including grid generation and flow visualization tools will be used. Projects with complex fluid-flow systems. Full Description " + "description": "An introduction to computational fluid dynamics (CFD) in mechanical engineering. The theory and numerical techniques of CFD. Modern CFD software including grid generation and flow visualization tools will be used. Projects with complex fluid-flow systems." }, "ME4405": { "subject": "ME", "number": "4405", "name": "Fund of Mechatronics ", - "description": "Focuses on fundamentals of microcontrollers, analog and digital electronics, sensors, actuators and their applications to modern mechatronics systems and intelligent manufacturing. Knowledge gained from lectures will be used to complete lab exercises. Credit will not be awarded for both ME 4405 and ME 6405 or ME 4405 and ME 4777. Full Description " + "description": "Focuses on fundamentals of microcontrollers, analog and digital electronics, sensors, actuators and their applications to modern mechatronics systems and intelligent manufacturing. Knowledge gained from lectures will be used to complete lab exercises. Credit will not be awarded for both ME 4405 and ME 6405 or ME 4405 and ME 4777." }, "ME4447": { "subject": "ME", "number": "4447", "name": "Microproces Ctrl Mfg Sys ", - "description": "Lectures address the fundamental aspects of manufacturing elements and microprocessors and their applications. Hands-on application of machine and machine tool control will be stressed. Full Description " + "description": "Lectures address the fundamental aspects of manufacturing elements and microprocessors and their applications. Hands-on application of machine and machine tool control will be stressed." }, "ME4451": { "subject": "ME", "number": "4451", "name": "Robotics ", - "description": "Mathematical modeling, simulation, and control of robotic systems with mechanical and sensory elements. Full Description " + "description": "Mathematical modeling, simulation, and control of robotic systems with mechanical and sensory elements." }, "ME4452": { "subject": "ME", "number": "4452", "name": "Control Dynamic Systems ", - "description": "Modeling and simulation of dynamic systems in frequency and time domains. Feedback control analysis and design methods including root-locus, frequency response, and pole-placement. Introduction to digital control systems. Credit not allowed for both ME 4452 and ME 3015. Credit not allowed for both ME 4452 and AE 3531. Full Description " + "description": "Modeling and simulation of dynamic systems in frequency and time domains. Feedback control analysis and design methods including root-locus, frequency response, and pole-placement. Introduction to digital control systems. Credit not allowed for both ME 4452 and ME 3015. Credit not allowed for both ME 4452 and AE 3531." }, "ME4698": { "subject": "ME", "number": "4698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "ME4699": { "subject": "ME", "number": "4699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "ME4701": { "subject": "ME", "number": "4701", "name": "Wind Engineering ", - "description": "An introductory course on wind energy and its potential; modeling and design of wind turbines; analysis of the economic benefits of wind turbine systems. Credit not allowed for both ME 4701 and AE 4701. Full Description " + "description": "An introductory course on wind energy and its potential; modeling and design of wind turbines; analysis of the economic benefits of wind turbine systems. Credit not allowed for both ME 4701 and AE 4701." }, "ME4740": { "subject": "ME", "number": "4740", "name": "Bio-Inspired Design ", - "description": "We examine evolutionary adaptation as a source for engineering design inspiration, utilizing principles of scaling, adaptability, and robust multifunctionality that characterize biological systems. Credit not allowed for both ME 4740 and (BIOL 4740, or ISYE 4740 or PTFE 4740 or MSE 4740). Full Description " + "description": "We examine evolutionary adaptation as a source for engineering design inspiration, utilizing principles of scaling, adaptability, and robust multifunctionality that characterize biological systems. Credit not allowed for both ME 4740 and (BIOL 4740, or ISYE 4740 or PTFE 4740 or MSE 4740)." }, "ME4741": { "subject": "ME", "number": "4741", "name": "Int Mgt Dev-Proj Prep ", - "description": "Individual and group-based experiential learning activities to develop integrated human system management skills that prepare students for more successful capstone collaboration and learning. Credit not allowed for both ME 4741 and CS 4741 or MGT 4741. Full Description " + "description": "Individual and group-based experiential learning activities to develop integrated human system management skills that prepare students for more successful capstone collaboration and learning. Credit not allowed for both ME 4741 and CS 4741 or MGT 4741." }, "ME4742": { "subject": "ME", "number": "4742", "name": "Tech & Mgt Cap Proj ", - "description": "Project-based course where students in the Technology and Management Program will work in inter-disciplinary teams on projects provided by corporate affiliates. Credit not allowed for both ME 4742 and CS 4742 or MGT 4742. Full Description " + "description": "Project-based course where students in the Technology and Management Program will work in inter-disciplinary teams on projects provided by corporate affiliates. Credit not allowed for both ME 4742 and CS 4742 or MGT 4742." }, "ME4744": { "subject": "ME", "number": "4744", "name": "Global Develop Capstone ", - "description": "Teams develop solutions to multidisciplinary problems selected from globalization, food security, infrastructure, health, water, sanitation, hygiene, ecosystem resilience, services, capacity building, and urbanization. Full Description " + "description": "Teams develop solutions to multidisciplinary problems selected from globalization, food security, infrastructure, health, water, sanitation, hygiene, ecosystem resilience, services, capacity building, and urbanization." }, "ME4753": { "subject": "ME", "number": "4753", "name": "Topics in Engr Practice ", - "description": "Topics of current inportance offered in collaboration with an approved partner of Georgia Tech's Distance Learning Program Full Description " + "description": "Topics of current inportance offered in collaboration with an approved partner of Georgia Tech's Distance Learning Program" }, "ME4754": { "subject": "ME", "number": "4754", "name": "Elec Packaging Assembly ", - "description": "The course provides hands-on instruction in electronics packaging, including assembly, reliability, thermal management, and test of next-generation microsystems. Crosslisted with ECE and MSE 4754. Full Description " + "description": "The course provides hands-on instruction in electronics packaging, including assembly, reliability, thermal management, and test of next-generation microsystems. Crosslisted with ECE and MSE 4754." }, "ME4757": { "subject": "ME", "number": "4757", "name": "Biofluid Mechanics ", - "description": "Introduction to the study of blood flow in the cardiovascular system. Emphasis on modeling and the potential of flow studies for clinical research application. Crosslisted with AE and CHE 4757. Full Description " + "description": "Introduction to the study of blood flow in the cardiovascular system. Emphasis on modeling and the potential of flow studies for clinical research application. Crosslisted with AE and CHE 4757." }, "ME4758": { "subject": "ME", "number": "4758", "name": "Biosolid Mechanics ", - "description": "The mechanics of living tissue, e.g., arteries, skin, heart muscle, ligament, tendon, cartilage, and bone. Constitutive equations and some simple mechanical models. Mechanics of cells. Applications. Crosslisted with AE and CHE 4758. Full Description " + "description": "The mechanics of living tissue, e.g., arteries, skin, heart muscle, ligament, tendon, cartilage, and bone. Constitutive equations and some simple mechanical models. Mechanics of cells. Applications. Crosslisted with AE and CHE 4758." }, "ME4760": { "subject": "ME", "number": "4760", "name": "Acoustics& Noise Control ", - "description": "Study of acoustics related to noise and its control; acoustic terminology, wave propagation, wave equation solutions, instrumentation, data processing, room acoustics, noise control, hearing, noise legislation. Crosslisted with AE 4760. Full Description " + "description": "Study of acoustics related to noise and its control; acoustic terminology, wave propagation, wave equation solutions, instrumentation, data processing, room acoustics, noise control, hearing, noise legislation. Crosslisted with AE 4760." }, "ME4763": { "subject": "ME", "number": "4763", "name": "Pulping & Chem Recovery ", - "description": "Pulping and chemical recovery processes are studied on the reaction, delignification, energy, and liquor reuse. The process optimization, air and water pollution minimization are taught. Crosslisted with CHE 4763. Full Description " + "description": "Pulping and chemical recovery processes are studied on the reaction, delignification, energy, and liquor reuse. The process optimization, air and water pollution minimization are taught. Crosslisted with CHE 4763." }, "ME4764": { "subject": "ME", "number": "4764", "name": "Bleaching and Papermaking ", - "description": "Pulp bleaching and formation of paper/board products are studied along with testing, end uses, chemical and mechanical treatment of pulp, non-wood and recycled fiber utilization. Crosslisted with CHE 4764 Full Description " + "description": "Pulp bleaching and formation of paper/board products are studied along with testing, end uses, chemical and mechanical treatment of pulp, non-wood and recycled fiber utilization. Crosslisted with CHE 4764" }, "ME4766": { "subject": "ME", "number": "4766", "name": "Nanoscale Devices ", - "description": "Fundamental properties at the nanoscale for photonics and sensors. Nanoscale fabrication methods including thin films, ion beam, lithography, electroplating, and example case studies in NEMS/MEMS and photonics. Credit not allowed for both ME 4766 and MSE 4766. Full Description " + "description": "Fundamental properties at the nanoscale for photonics and sensors. Nanoscale fabrication methods including thin films, ion beam, lithography, electroplating, and example case studies in NEMS/MEMS and photonics. Credit not allowed for both ME 4766 and MSE 4766." }, "ME4775": { "subject": "ME", "number": "4775", "name": "Polymer Science & Engr I ", - "description": "An introduction to the chemistry, structure and formation of polymers, physical states and transitions, physical and mechanical properties of polymer fluids and solids. Crosslisted with CHEM, CHE, MSE, and PTFE 4775. Full Description " + "description": "An introduction to the chemistry, structure and formation of polymers, physical states and transitions, physical and mechanical properties of polymer fluids and solids. Crosslisted with CHEM, CHE, MSE, and PTFE 4775." }, "ME4776": { "subject": "ME", "number": "4776", "name": "Polymer Science& Engr II ", - "description": "Polymer fabrication processes and methods of characterization and identification of polymers are presented. Experiments in polymerization, processing, and property evaluation of polymers. Crosslisted with CHE, CHEM, MSE, and TFE 4776. Full Description " + "description": "Polymer fabrication processes and methods of characterization and identification of polymers are presented. Experiments in polymerization, processing, and property evaluation of polymers. Crosslisted with CHE, CHEM, MSE, and TFE 4776." }, "ME4777": { "subject": "ME", "number": "4777", "name": "Intro-Polymer Sci & Engr ", - "description": "An introduction to the structure and formation of polymers, physical states and transitions, physical and mechanical properties of polymer fluids and solids, and processing of polymers. Crosslisted with MSE and PTFE 4777. Full Description " + "description": "An introduction to the structure and formation of polymers, physical states and transitions, physical and mechanical properties of polymer fluids and solids, and processing of polymers. Crosslisted with MSE and PTFE 4777." }, "ME4781": { "subject": "ME", "number": "4781", "name": "Biomed Instrumentation ", - "description": "A study of medical instrumentation from a systems viewpoint. Pertinent physiological and electro-physiological concepts will be covered. Credit not allowed for both ME 4781 and (CHE 4781 or CHBE 4781 or BMED 4781 or ECE 4781). Full Description " + "description": "A study of medical instrumentation from a systems viewpoint. Pertinent physiological and electro-physiological concepts will be covered. Credit not allowed for both ME 4781 and (CHE 4781 or CHBE 4781 or BMED 4781 or ECE 4781)." }, "ME4782": { "subject": "ME", "number": "4782", "name": "Biosystems Analysis ", - "description": "Analytical methods for modeling biological systems, including white-noise protocols for characterizing nonlinear systems. Crosslisted with BMED, CHE and ECE 4782. Full Description " + "description": "Analytical methods for modeling biological systems, including white-noise protocols for characterizing nonlinear systems. Crosslisted with BMED, CHE and ECE 4782." }, "ME4790": { "subject": "ME", "number": "4790", "name": "Materials Select& Design ", - "description": "Principles of selecting materials and processes for engineering applications. Methodologies for designing new materials and conceiving hybrid solutions. Credit not allowed for both ME 4790 and ME 4213 or ME 4790. Full Description " + "description": "Principles of selecting materials and processes for engineering applications. Methodologies for designing new materials and conceiving hybrid solutions. Credit not allowed for both ME 4790 and ME 4213 or ME 4790." }, "ME4791": { "subject": "ME", "number": "4791", "name": "Mech Behavior-Composites ", - "description": "Stress-strain behavior of composites, properties of matrix and reinforcing materials, mechanics of fiber-reinforced composites, lamina and laminate analysis, and mechanical performance. Crosslisted with AE, CEE, CHE, MSE, and PTFE 4791. Full Description " + "description": "Stress-strain behavior of composites, properties of matrix and reinforcing materials, mechanics of fiber-reinforced composites, lamina and laminate analysis, and mechanical performance. Crosslisted with AE, CEE, CHE, MSE, and PTFE 4791." }, "ME4793": { "subject": "ME", "number": "4793", "name": "Composite Mater& Process ", - "description": "Basic principles of selection and design of composite materials and their manufacturing and testing. Cost factors. Laboratory exercises on manufacturing and tests. Crosslisted with AE, CEE, CHE, ME, MSE, and PTFE 4793. Full Description " + "description": "Basic principles of selection and design of composite materials and their manufacturing and testing. Cost factors. Laboratory exercises on manufacturing and tests. Crosslisted with AE, CEE, CHE, ME, MSE, and PTFE 4793." }, "ME4794": { "subject": "ME", "number": "4794", "name": "Composite Materials& Mfg ", - "description": "Basic principles of selection and design of composite materials and their manufacturing and testing. Cost factors. Laboratory exercises on manufacturing and tests. Crosslisted with AE, CEE, CHE, MSE, and PTFE 4794. Full Description " + "description": "Basic principles of selection and design of composite materials and their manufacturing and testing. Cost factors. Laboratory exercises on manufacturing and tests. Crosslisted with AE, CEE, CHE, MSE, and PTFE 4794." }, "ME4801": { "subject": "ME", "number": "4801", "name": "Special Topics-Mech Engr ", - "description": "Special topic offerings of current interest not included in regular courses. Full Description " + "description": "Special topic offerings of current interest not included in regular courses." }, "ME4802": { "subject": "ME", "number": "4802", "name": "Special Topics-Mech Engr ", - "description": "Special topic offerings of current interest not included in regular courses. Full Description " + "description": "Special topic offerings of current interest not included in regular courses." }, "ME4803": { "subject": "ME", "number": "4803", "name": "Special Topics-Mech Engr ", - "description": "Special topic offerings of current interest not included in regular courses. Full Description " + "description": "Special topic offerings of current interest not included in regular courses." }, "ME4804": { "subject": "ME", "number": "4804", "name": "Special Topics-Mech Engr ", - "description": "Special topic offerings of current interest not included in regular courses. Full Description " + "description": "Special topic offerings of current interest not included in regular courses." }, "ME4805": { "subject": "ME", "number": "4805", "name": "Special Topics-Mech Engr ", - "description": "Special topic offerings of current interest not included in regular courses. Full Description " + "description": "Special topic offerings of current interest not included in regular courses." }, "ME4811": { "subject": "ME", "number": "4811", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ME4812": { "subject": "ME", "number": "4812", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ME4813": { "subject": "ME", "number": "4813", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ME4814": { "subject": "ME", "number": "4814", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ME4815": { "subject": "ME", "number": "4815", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ME4821": { "subject": "ME", "number": "4821", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ME4822": { "subject": "ME", "number": "4822", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ME4823": { "subject": "ME", "number": "4823", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ME4824": { "subject": "ME", "number": "4824", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ME4825": { "subject": "ME", "number": "4825", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ME4831": { "subject": "ME", "number": "4831", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ME4832": { "subject": "ME", "number": "4832", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ME4833": { "subject": "ME", "number": "4833", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ME4834": { "subject": "ME", "number": "4834", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ME4835": { "subject": "ME", "number": "4835", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "ME4843": { "subject": "ME", "number": "4843", "name": "Special Topics- ME Lab ", - "description": "ME Special Topics with lab component Full Description " + "description": "ME Special Topics with lab component" }, "ME4901": { "subject": "ME", "number": "4901", "name": "Special Problems ", - "description": "Individual studies in certain specialized areas, and mathematical analyses and/or experimental investigations of problems of current interest in mechanical engineering. Full Description " + "description": "Individual studies in certain specialized areas, and mathematical analyses and/or experimental investigations of problems of current interest in mechanical engineering." }, "ME4902": { "subject": "ME", "number": "4902", "name": "Special Problems ", - "description": "Individual studies in certain specialized areas, and mathematical analyses and/or experimental investigations of problems of current interest in mechanical engineering. Full Description " + "description": "Individual studies in certain specialized areas, and mathematical analyses and/or experimental investigations of problems of current interest in mechanical engineering." }, "ME4903": { "subject": "ME", "number": "4903", "name": "Special Problems ", - "description": "Individual studies in certain specialized areas, and mathematical analyses and/or experimental investigations of problems of current interest in mechanical engineering. Full Description " + "description": "Individual studies in certain specialized areas, and mathematical analyses and/or experimental investigations of problems of current interest in mechanical engineering." }, "ME4XXX": { "subject": "ME", "number": "4XXX", "name": "Mechanical Engr Elective ", - "description": " Full Description " + "description": "" }, "ME6101": { "subject": "ME", "number": "6101", "name": "Engineering Design ", - "description": "Design concepts, processes, and methodologies, including quality and robustness. Group project. Full Description " + "description": "Design concepts, processes, and methodologies, including quality and robustness. Group project." }, "ME6102": { "subject": "ME", "number": "6102", "name": "Designing Open Engr Sys ", - "description": "Decision-based integrated product and process development, meta-design, and decision support problems; mathematical modeling of decisions involving ambiguity and uncertainty; critical thinking and analysis; verification and validation; research issues. Full Description " + "description": "Decision-based integrated product and process development, meta-design, and decision support problems; mathematical modeling of decisions involving ambiguity and uncertainty; critical thinking and analysis; verification and validation; research issues." }, "ME6103": { "subject": "ME", "number": "6103", "name": "Optimization Engr Design ", - "description": "Use of single and multi-objective optimization in modeling and solving mechanical engineering design problems. Formulations, solution algorithms, validation and verification, computer implementation. Project. Full Description " + "description": "Use of single and multi-objective optimization in modeling and solving mechanical engineering design problems. Formulations, solution algorithms, validation and verification, computer implementation. Project." }, "ME6104": { "subject": "ME", "number": "6104", "name": "Computer-Aided Design ", - "description": "Fundamentals of CAD, including geometric and solid modeling, parametric representations, features, and human-machine interactions. Applications to design, analysis, and manufacturing. Full Description " + "description": "Fundamentals of CAD, including geometric and solid modeling, parametric representations, features, and human-machine interactions. Applications to design, analysis, and manufacturing." }, "ME6105": { "subject": "ME", "number": "6105", "name": "Modeling&Simulation-Dsgn ", - "description": "Modeling and simutaltion concepts, algorithms, and methods; modeling of energy-based and discrete-event systems; modeling of design decisions; information modeling and knowledge representation; project. Full Description " + "description": "Modeling and simutaltion concepts, algorithms, and methods; modeling of energy-based and discrete-event systems; modeling of design decisions; information modeling and knowledge representation; project." }, "ME6124": { "subject": "ME", "number": "6124", "name": "Finite-Element Method ", - "description": "Line, plane, solid, plate, and shell elements-theory: practical aspects of modeling; applications in mechanical engineering; final project. Full Description " + "description": "Line, plane, solid, plate, and shell elements-theory: practical aspects of modeling; applications in mechanical engineering; final project." }, "ME6140": { "subject": "ME", "number": "6140", "name": "Physical Prop of Paper ", - "description": "Structure and physical properties of paper and other fibrous composites. Fundamental concepts related to single fibers and web structures. Full Description " + "description": "Structure and physical properties of paper and other fibrous composites. Fundamental concepts related to single fibers and web structures." }, "ME6201": { "subject": "ME", "number": "6201", "name": "Principle-Continuum Mech ", - "description": "Introductory treatment of the fundamental, unifying concepts of the mechanics of continua. Full Description " + "description": "Introductory treatment of the fundamental, unifying concepts of the mechanics of continua." }, "ME6203": { "subject": "ME", "number": "6203", "name": "Inelastic Deform Solids ", - "description": "Phenomenological aspects of nonlinear material behavior and deformation with emphasis on model development. Full Description " + "description": "Phenomenological aspects of nonlinear material behavior and deformation with emphasis on model development." }, "ME6204": { "subject": "ME", "number": "6204", "name": "Micromechanics-Materials ", - "description": "Fundamental concepts of micromechanics of solids with emphasis on application to composite materials. Full Description " + "description": "Fundamental concepts of micromechanics of solids with emphasis on application to composite materials." }, "ME6222": { "subject": "ME", "number": "6222", "name": "Mfg Processes & Systems ", - "description": "Materials processing analysis and selection. Manufacturing systems design. Economic analysis. Full Description " + "description": "Materials processing analysis and selection. Manufacturing systems design. Economic analysis." }, "ME6223": { "subject": "ME", "number": "6223", "name": "Auto Mfg Process Plan ", - "description": "Fundamentals of process planning. Automated process planning approaches and algorithms. Geometric modeling for process planning. Modeling and analysis of flexible fixturing systems. Mechanical assembly planning. Full Description " + "description": "Fundamentals of process planning. Automated process planning approaches and algorithms. Geometric modeling for process planning. Modeling and analysis of flexible fixturing systems. Mechanical assembly planning." }, "ME6224": { "subject": "ME", "number": "6224", "name": "Machine Tool Analysis ", - "description": "Mechanics and dynamics of machining, machine tool components and structures, sensors and control of machine tools, machine process planning and optimization. Full Description " + "description": "Mechanics and dynamics of machining, machine tool components and structures, sensors and control of machine tools, machine process planning and optimization." }, "ME6225": { "subject": "ME", "number": "6225", "name": "Metrology & Measure Sys ", - "description": "Metrology techniques and procedures. Precision manufacturing system design and analysis. Full Description " + "description": "Metrology techniques and procedures. Precision manufacturing system design and analysis." }, "ME6226": { "subject": "ME", "number": "6226", "name": "Semiconduct Mfg&Assembly ", - "description": "Basic mechanical and materials processes in production including silicon boule growth, plastic encapsulation, interconnect metal migration, solder joining, printing, manufacturing process cost analysis. Full Description " + "description": "Basic mechanical and materials processes in production including silicon boule growth, plastic encapsulation, interconnect metal migration, solder joining, printing, manufacturing process cost analysis." }, "ME6229": { "subject": "ME", "number": "6229", "name": "Introduction to MEMS ", - "description": "Principles of microfabrication for sensors and actuators. Lumped parameter analysis and computer-aided design; materials properties; case studies include cantilever beam, pressure sensor, and accelerometer. Full Description " + "description": "Principles of microfabrication for sensors and actuators. Lumped parameter analysis and computer-aided design; materials properties; case studies include cantilever beam, pressure sensor, and accelerometer." }, "ME6242": { "subject": "ME", "number": "6242", "name": "Mechanics of Contact ", - "description": "Mechanics of surface contact, with emphasis on tribological interactions as in rolling element bearings, slider bearings, mechanical seals, and materials processing. Full Description " + "description": "Mechanics of surface contact, with emphasis on tribological interactions as in rolling element bearings, slider bearings, mechanical seals, and materials processing." }, "ME6243": { "subject": "ME", "number": "6243", "name": "Fluid Film Lubrication ", - "description": "Analytical and numerical investigation of full film compressible and incompressible hydrodynamic lubrication problems for steady and unsteady conditions. Full Description " + "description": "Analytical and numerical investigation of full film compressible and incompressible hydrodynamic lubrication problems for steady and unsteady conditions." }, "ME6244": { "subject": "ME", "number": "6244", "name": "Rotordynamics ", - "description": "Analysis and design of shafts for rotating machinery. Torsional vibration, synchronous and nonsynchronous whirl, stability, gyroscopic effects, hydrodynamic bearings, hysteresis, squeeze film dampers, and balancing. Full Description " + "description": "Analysis and design of shafts for rotating machinery. Torsional vibration, synchronous and nonsynchronous whirl, stability, gyroscopic effects, hydrodynamic bearings, hysteresis, squeeze film dampers, and balancing." }, "ME6281": { "subject": "ME", "number": "6281", "name": "Mech-Paper Forming&Coat ", - "description": "Fundamentals of multiphase flow in paper forming and coating processes, and its impact on the physical properties of composite fiber structure and surface characteristics. Full Description " + "description": "Fundamentals of multiphase flow in paper forming and coating processes, and its impact on the physical properties of composite fiber structure and surface characteristics." }, "ME6301": { "subject": "ME", "number": "6301", "name": "Conduction Heat Transfer ", - "description": "Steady and transient one- and multi-dimensional conduction. Emphasis on analytical methods, numerical techniques, and approximate solutions. Full Description " + "description": "Steady and transient one- and multi-dimensional conduction. Emphasis on analytical methods, numerical techniques, and approximate solutions." }, "ME6302": { "subject": "ME", "number": "6302", "name": "Convection Heat Transfer ", - "description": "Convection (forced and free) in laminar and turbulent, internal and external flows. Analogy between momentum and heat transfer. Scaling laws and modeling. Full Description " + "description": "Convection (forced and free) in laminar and turbulent, internal and external flows. Analogy between momentum and heat transfer. Scaling laws and modeling." }, "ME6303": { "subject": "ME", "number": "6303", "name": "Radiation Heat Transfer ", - "description": "Fundamentals of thermal radiation, blackbody radiation, surface characteristics, exchange in enclosures, radiation through continua, and combined mode heat transfer. Full Description " + "description": "Fundamentals of thermal radiation, blackbody radiation, surface characteristics, exchange in enclosures, radiation through continua, and combined mode heat transfer." }, "ME6304": { "subject": "ME", "number": "6304", "name": "Prin of Thermodynamics ", - "description": "Fundamentals of thermodynamics including energy, entropy, and energy analysis, property relations, equilibrium conditions, and evaluation of properties. Full Description " + "description": "Fundamentals of thermodynamics including energy, entropy, and energy analysis, property relations, equilibrium conditions, and evaluation of properties." }, "ME6305": { "subject": "ME", "number": "6305", "name": "Apps of Thermodynamics ", - "description": "Applications of the first and second laws of thermodynamics to analysis and design optimization of power and refrigeration systems incorporating heat exchangers and combustion processes. Full Description " + "description": "Applications of the first and second laws of thermodynamics to analysis and design optimization of power and refrigeration systems incorporating heat exchangers and combustion processes." }, "ME6309": { "subject": "ME", "number": "6309", "name": "Nanoscale Heat Transfer ", - "description": "Microscopic concepts and methodology in thermal science, including equilibrium statistics. Boltzmann transport equation, and nano-microscale heat conduction and radiation, with applications in contemporary technologies. Full Description " + "description": "Microscopic concepts and methodology in thermal science, including equilibrium statistics. Boltzmann transport equation, and nano-microscale heat conduction and radiation, with applications in contemporary technologies." }, "ME6401": { "subject": "ME", "number": "6401", "name": "Linear Control Systems ", - "description": "Theory and applications of linear systems, state space, stability, feedback controls, observers, LQR, LQG, Kalman filters. Credit will not be awarded for both ME 6401 and AE 6530. Full Description " + "description": "Theory and applications of linear systems, state space, stability, feedback controls, observers, LQR, LQG, Kalman filters. Credit will not be awarded for both ME 6401 and AE 6530." }, "ME6402": { "subject": "ME", "number": "6402", "name": "Nonlinear Control System ", - "description": "Analysis of nonlinear systems, geometric control, variable structure control, adaptive control, optimal control, applications. Full Description " + "description": "Analysis of nonlinear systems, geometric control, variable structure control, adaptive control, optimal control, applications." }, "ME6403": { "subject": "ME", "number": "6403", "name": "Digital Control Systems ", - "description": "Comprehensive treatment of the representation, analysis, and design of discrete-time systems. Techniques include Z- and W- transforms, direct method, control design, and digital tracking. Full Description " + "description": "Comprehensive treatment of the representation, analysis, and design of discrete-time systems. Techniques include Z- and W- transforms, direct method, control design, and digital tracking." }, "ME6404": { "subject": "ME", "number": "6404", "name": "Adv Ctrl Dsgn Implement ", - "description": "Analysis, synthesis, and implementation techniques of continuous-time and real-time control systems using classical and state-space methods. Full Description " + "description": "Analysis, synthesis, and implementation techniques of continuous-time and real-time control systems using classical and state-space methods." }, "ME6405": { "subject": "ME", "number": "6405", "name": "Intro to Mechatronics ", - "description": "Modeling and control of actuators and electro-mechanical systems. Performance and application of microprocessors and analog electronics to modern mechatronic systems. Full Description " + "description": "Modeling and control of actuators and electro-mechanical systems. Performance and application of microprocessors and analog electronics to modern mechatronic systems." }, "ME6406": { "subject": "ME", "number": "6406", "name": "Machine Vision ", - "description": "Design of algorithms for vision systems for manufacturing, farming, construction, and the service industries. Image processing, optics, illumination, feature representation. Full Description " + "description": "Design of algorithms for vision systems for manufacturing, farming, construction, and the service industries. Image processing, optics, illumination, feature representation." }, "ME6407": { "subject": "ME", "number": "6407", "name": "Robotics ", - "description": "Analysis and design of robotic systems including arms and vehicles. Kinematics and dynamics. Algorithms for describing, planning, commanding, and controlling motion force. Full Description " + "description": "Analysis and design of robotic systems including arms and vehicles. Kinematics and dynamics. Algorithms for describing, planning, commanding, and controlling motion force." }, "ME6408": { "subject": "ME", "number": "6408", "name": "Advanced Mechatronics ", - "description": "Focusing on team projects, designing and building intelligent machines and products. Lectures - sensors and transducers, actuators, fluid power, power rectifiers, motion control and modeling of mechatronics systems. Full Description " + "description": "Focusing on team projects, designing and building intelligent machines and products. Lectures - sensors and transducers, actuators, fluid power, power rectifiers, motion control and modeling of mechatronics systems." }, "ME6441": { "subject": "ME", "number": "6441", "name": "Dynamics-Mechanical Sys ", - "description": "Motion analysis and dynamics modeling of systems of particles and rigid bodies in three-dimensional motion. Full Description " + "description": "Motion analysis and dynamics modeling of systems of particles and rigid bodies in three-dimensional motion." }, "ME6442": { "subject": "ME", "number": "6442", "name": "Vibration-Mechanical Sys ", - "description": "Introduction to modeling and oscillatory response analysis for discrete continuous mechanical and structural systems. Full Description " + "description": "Introduction to modeling and oscillatory response analysis for discrete continuous mechanical and structural systems." }, "ME6443": { "subject": "ME", "number": "6443", "name": "Variational Methods ", - "description": "Calculus of variations, Hamilton's principle and Lagrange's equations, Sturm-Liouville problems, approximation techniques. Full Description " + "description": "Calculus of variations, Hamilton's principle and Lagrange's equations, Sturm-Liouville problems, approximation techniques." }, "ME6444": { "subject": "ME", "number": "6444", "name": "Nonlinear Systems ", - "description": "Investigation of nonlinear systems using analytical and numerical techniques. Full Description " + "description": "Investigation of nonlinear systems using analytical and numerical techniques." }, "ME6449": { "subject": "ME", "number": "6449", "name": "Transducers & Signals ", - "description": "Acoustic instrumentation and methods of signal analysis. Full Description " + "description": "Acoustic instrumentation and methods of signal analysis." }, "ME6452": { "subject": "ME", "number": "6452", "name": "Wave Propagation-Solids ", - "description": "Wave motion in solids, wave equations, analytical and numerical solutions, ultrasonic NDE. Full Description " + "description": "Wave motion in solids, wave equations, analytical and numerical solutions, ultrasonic NDE." }, "ME6460": { "subject": "ME", "number": "6460", "name": "MEMS Devices ", - "description": "Introduces fundamental concepts and tools needed for the design, simulation and analysis of MEMS devices. These include electrical, mechanical, radiant, thermal, magnetic and chemical domains. Full Description " + "description": "Introduces fundamental concepts and tools needed for the design, simulation and analysis of MEMS devices. These include electrical, mechanical, radiant, thermal, magnetic and chemical domains." }, "ME6601": { "subject": "ME", "number": "6601", "name": "Intro to Fluid Mechanics ", - "description": "The fundamentals of fluid mechanics. Derivation of the governing equations of motion. An introduction to viscous, inviscid, turbulent, and boundary-layer flows. Full Description " + "description": "The fundamentals of fluid mechanics. Derivation of the governing equations of motion. An introduction to viscous, inviscid, turbulent, and boundary-layer flows." }, "ME6602": { "subject": "ME", "number": "6602", "name": "Viscous Flow ", - "description": "The mechanics of Newtonian viscous fluids. The use of modern analytical techniques to obtain solutions for flows with small and large Reynolds numbers. Full Description " + "description": "The mechanics of Newtonian viscous fluids. The use of modern analytical techniques to obtain solutions for flows with small and large Reynolds numbers." }, "ME6622": { "subject": "ME", "number": "6622", "name": "Experimental Methods ", - "description": "Experimental methods in mechanics. Includes measurement techniques, instrumentation, data acquisition, signal processing, and linear and digital electronics. Full Description " + "description": "Experimental methods in mechanics. Includes measurement techniques, instrumentation, data acquisition, signal processing, and linear and digital electronics." }, "ME6701": { "subject": "ME", "number": "6701", "name": "Wind Engineering ", - "description": "An introductory course on wind energy and its potential; modeling and design of wind turbines; analysis of the economic benefits of wind turbine systems. Credit will not be awarded for both ME 6701 and AE 6701. Full Description " + "description": "An introductory course on wind energy and its potential; modeling and design of wind turbines; analysis of the economic benefits of wind turbine systems. Credit will not be awarded for both ME 6701 and AE 6701." }, "ME6720": { "subject": "ME", "number": "6720", "name": "Biotransport ", - "description": "This graduate level course covers the analysis of fluid flow phenomena in the human body, cardiovasculature, respiratory system and other organ systems. Credit will not be awarded for both ME 6720 and BMED 6720. Full Description " + "description": "This graduate level course covers the analysis of fluid flow phenomena in the human body, cardiovasculature, respiratory system and other organ systems. Credit will not be awarded for both ME 6720 and BMED 6720." }, "ME6741": { "subject": "ME", "number": "6741", "name": "Pulp & Paper Mfg I ", - "description": "The fundamentals of pulp and paper technology are presented. Applications to the several unit operations used are explored and augmented by field trips and recent case studies. Crosslisted with CHE 6741, CHBE 6701 and MLDR 6701. Full Description " + "description": "The fundamentals of pulp and paper technology are presented. Applications to the several unit operations used are explored and augmented by field trips and recent case studies. Crosslisted with CHE 6741, CHBE 6701 and MLDR 6701." }, "ME6742": { "subject": "ME", "number": "6742", "name": "Pulp & Paper Mfg Ii ", - "description": "Papermaking technology is covered from a multidisciplinary engineering perspective with fundamental and practical considerations being addressed. Students participate in groups to run a pilot papermaking trial at the Henry Foundation in Savannah. Crosslisted with CHE 6742, CHBE 6701 MLDR 6701. Full Description " + "description": "Papermaking technology is covered from a multidisciplinary engineering perspective with fundamental and practical considerations being addressed. Students participate in groups to run a pilot papermaking trial at the Henry Foundation in Savannah. Crosslisted with CHE 6742, CHBE 6701 MLDR 6701." }, "ME6743": { "subject": "ME", "number": "6743", "name": "Tissue Mechanics ", - "description": "Structure-function relationships and constitutive models for a variety of biological tissues, with an emphasis on understanding the mechanical behaviors of normal and pathological tissues. Credit not give for both ME/BMED 6783 and ME/BMED 6743. Crosslisted with BMED 6743. Full Description " + "description": "Structure-function relationships and constitutive models for a variety of biological tissues, with an emphasis on understanding the mechanical behaviors of normal and pathological tissues. Credit not give for both ME/BMED 6783 and ME/BMED 6743. Crosslisted with BMED 6743." }, "ME6744": { "subject": "ME", "number": "6744", "name": "Topics in Engr Practice ", - "description": "Topics of current importance offered in collaboration with an approved partner of Georiga Tech's Distance Learning Program. Crosslisted with ECE 6744. Full Description " + "description": "Topics of current importance offered in collaboration with an approved partner of Georiga Tech's Distance Learning Program. Crosslisted with ECE 6744." }, "ME6746": { "subject": "ME", "number": "6746", "name": "Rehab Engineering ", - "description": "Students will participate in rehabilitation engineering as practiced in the assistive technology industry. Credit not allowed for both ME 6746 and APPH 6746. Full Description " + "description": "Students will participate in rehabilitation engineering as practiced in the assistive technology industry. Credit not allowed for both ME 6746 and APPH 6746." }, "ME6753": { "subject": "ME", "number": "6753", "name": "Prin-Mgt for Engineers ", - "description": "The course will provide an introduction to selected topics needed to be successful in the technology industries. Cannot count toward major area requirements on M.S. or Ph.D. programs of study. Crosslisted with MGT 6753. Full Description " + "description": "The course will provide an introduction to selected topics needed to be successful in the technology industries. Cannot count toward major area requirements on M.S. or Ph.D. programs of study. Crosslisted with MGT 6753." }, "ME6754": { "subject": "ME", "number": "6754", "name": "Engr Database Mgt System ", - "description": "Modeling and managing engineering information systems, integration of design and manufacturing functions in engineering product development, logical models of engineering product and processes. Crosslisted with CS 6754. Full Description " + "description": "Modeling and managing engineering information systems, integration of design and manufacturing functions in engineering product development, logical models of engineering product and processes. Crosslisted with CS 6754." }, "ME6758": { "subject": "ME", "number": "6758", "name": "Numerical Methods in ME ", - "description": "Numerical methods for solution of engineering problems; initial, eigenvalue, and boundary-value problems; computational stability for ordinary and linear partial differential equations. Crosslisted with NRE and HP 6758. Full Description " + "description": "Numerical methods for solution of engineering problems; initial, eigenvalue, and boundary-value problems; computational stability for ordinary and linear partial differential equations. Crosslisted with NRE and HP 6758." }, "ME6759": { "subject": "ME", "number": "6759", "name": "Mate-Envir Conscious Dgn ", - "description": "Covers the environmental impact of materials choices and quantitative measure of life-cycle assessment and environmental burden. The Natural Step philosophy will be used as a model for the overall approach. Crosslisted with MSE and PTFE 6759. Full Description " + "description": "Covers the environmental impact of materials choices and quantitative measure of life-cycle assessment and environmental burden. The Natural Step philosophy will be used as a model for the overall approach. Crosslisted with MSE and PTFE 6759." }, "ME6760": { "subject": "ME", "number": "6760", "name": "Acoustics I ", - "description": "Fundamental principles governing the generation, propagation, reflection, and transmission of sound waves in fluids. Crosslisted with AE 6760. Full Description " + "description": "Fundamental principles governing the generation, propagation, reflection, and transmission of sound waves in fluids. Crosslisted with AE 6760." }, "ME6761": { "subject": "ME", "number": "6761", "name": "Acoustics II ", - "description": "Radiation and scattering of sound waves in fluids, duct acoustics, dissipation phenomena. Crosslisted with AE 6761. Full Description " + "description": "Radiation and scattering of sound waves in fluids, duct acoustics, dissipation phenomena. Crosslisted with AE 6761." }, "ME6762": { "subject": "ME", "number": "6762", "name": "Applied Acoustics ", - "description": "Mufflers, resonators, acoustic materials, barriers, industrial noise, room acoustics, active noise control. Crosslisted with AE 6762. Full Description " + "description": "Mufflers, resonators, acoustic materials, barriers, industrial noise, room acoustics, active noise control. Crosslisted with AE 6762." }, "ME6765": { "subject": "ME", "number": "6765", "name": "Kinetics & Thermo Gases ", - "description": "Thermodynamics of nonreacting and reacting gas mixtures. Introductory quantum theory, statistical thermodynamics, and gas kinetic theory. Crosslisted with AE 6765. Full Description " + "description": "Thermodynamics of nonreacting and reacting gas mixtures. Introductory quantum theory, statistical thermodynamics, and gas kinetic theory. Crosslisted with AE 6765." }, "ME6766": { "subject": "ME", "number": "6766", "name": "Combustion ", - "description": "Introductory chemical kinetics, deformations and deflagrations, laminar flame propagation in premixed gases, ignition and quenching, laminar diffusion flames, droplet burning, and turbulent reacting flows. Crosslisted with AE 6766. Full Description " + "description": "Introductory chemical kinetics, deformations and deflagrations, laminar flame propagation in premixed gases, ignition and quenching, laminar diffusion flames, droplet burning, and turbulent reacting flows. Crosslisted with AE 6766." }, "ME6767": { "subject": "ME", "number": "6767", "name": "Adv Topics in Combustion ", - "description": "Turbulent combustion, combustion instability and control, solid propellants and explosives, chemical kinetics, pollutant formation and destruction, computational methods for reacting flow. Crosslisted with AE 6767. Full Description " + "description": "Turbulent combustion, combustion instability and control, solid propellants and explosives, chemical kinetics, pollutant formation and destruction, computational methods for reacting flow. Crosslisted with AE 6767." }, "ME6768": { "subject": "ME", "number": "6768", "name": "Polymer Structure& Props ", - "description": "Formulations and analysis of molecular and phenomenological models of elastic and viscoelastic behavior, development and description of structure, and fundamental aspects of structure-property relations. Crosslisted with CHE, MSE, and PTFE 6768. Full Description " + "description": "Formulations and analysis of molecular and phenomenological models of elastic and viscoelastic behavior, development and description of structure, and fundamental aspects of structure-property relations. Crosslisted with CHE, MSE, and PTFE 6768." }, "ME6769": { "subject": "ME", "number": "6769", "name": "Linear Elasticity ", - "description": "Governing equations of linear elasticity, plane elasticity, boundary-value problems, airy stress function and complex variable methods, simple three-dimensional solutions. Crosslisted with AE 6769. Full Description " + "description": "Governing equations of linear elasticity, plane elasticity, boundary-value problems, airy stress function and complex variable methods, simple three-dimensional solutions. Crosslisted with AE 6769." }, "ME6770": { "subject": "ME", "number": "6770", "name": "Energy Meth-Elast&Plast ", - "description": "Applications in energy and variational methods in engineering mechanics to elastic, plastic, and dynamical behavior of deformable media. Crosslisted with AE 6770. Full Description " + "description": "Applications in energy and variational methods in engineering mechanics to elastic, plastic, and dynamical behavior of deformable media. Crosslisted with AE 6770." }, "ME6774": { "subject": "ME", "number": "6774", "name": "Biomaterial:Struct&Funct ", - "description": "Structure-function relationships of biomaterials and biomaterial characterization will be covered. Materials for medical implants, tissue engineering, biosensing, imaging, and drug delivery will be covered. Crosslisted with BMED, CHE, and MSE 6774. Full Description " + "description": "Structure-function relationships of biomaterials and biomaterial characterization will be covered. Materials for medical implants, tissue engineering, biosensing, imaging, and drug delivery will be covered. Crosslisted with BMED, CHE, and MSE 6774." }, "ME6776": { "subject": "ME", "number": "6776", "name": "Microelec Sys Packaging ", - "description": "Broad overview of system-level, cross-disciplinary microelectronics packaging technologies, including design, test, thermal, reliability, optoelectronics, and RF integration. Comparison of system-on-chip and system-on-package. Crosslisted with ECE and MSE 6776. Full Description " + "description": "Broad overview of system-level, cross-disciplinary microelectronics packaging technologies, including design, test, thermal, reliability, optoelectronics, and RF integration. Comparison of system-on-chip and system-on-package. Crosslisted with ECE and MSE 6776." }, "ME6777": { "subject": "ME", "number": "6777", "name": "Advanced Biomaterials ", - "description": "Advanced topics of biomaterials performance and engineering, including biointerfaces, host reactions to materials, and bio-inspired/smart-materials strategies. Crosslisted with BMED, CHE, and MSE 6777. Full Description " + "description": "Advanced topics of biomaterials performance and engineering, including biointerfaces, host reactions to materials, and bio-inspired/smart-materials strategies. Crosslisted with BMED, CHE, and MSE 6777." }, "ME6779": { "subject": "ME", "number": "6779", "name": "Therm Pkg-Micro/Nano Sys ", - "description": "Passive, active, and hybrid thermal management techniques, and computational modeling of micro systems. Air cooling, single phase and phase change liquid cooling, heat pipes, and thermoelectrics. Crosslisted with ECE 6779. Full Description " + "description": "Passive, active, and hybrid thermal management techniques, and computational modeling of micro systems. Air cooling, single phase and phase change liquid cooling, heat pipes, and thermoelectrics. Crosslisted with ECE 6779." }, "ME6782": { "subject": "ME", "number": "6782", "name": "Cellular Engineering ", - "description": "Engineering analysis of cellular systems. Crosslisted with BMED and CHE 6782. Full Description " + "description": "Engineering analysis of cellular systems. Crosslisted with BMED and CHE 6782." }, "ME6789": { "subject": "ME", "number": "6789", "name": "Technology Ventures ", - "description": "Team discussion and case studies of issues in biomedical engineering technology transfer including licensing, financial capital, safety and efficacy studies, clinical trials, and strategic planning. Crosslisted with BMED, ECE, CHE, and MGT 6789. Full Description " + "description": "Team discussion and case studies of issues in biomedical engineering technology transfer including licensing, financial capital, safety and efficacy studies, clinical trials, and strategic planning. Crosslisted with BMED, ECE, CHE, and MGT 6789." }, "ME6792": { "subject": "ME", "number": "6792", "name": "Manufacturing Seminar ", - "description": "Guest speakers on a broad range of manufacturing-related topics: research, applications, and technology. Required for Certificate in Manufacturing. Crosslisted with ECE and ISYE 6792. Full Description " + "description": "Guest speakers on a broad range of manufacturing-related topics: research, applications, and technology. Required for Certificate in Manufacturing. Crosslisted with ECE and ISYE 6792." }, "ME6793": { "subject": "ME", "number": "6793", "name": "Systems Pathophysiology ", - "description": "Overview of human pathophysiology from a quantitative perspective. Emphasis on systems of interest to bioengineering faculty. Introduction to quantitative models for biological systems. Crosslisted with BMED, CHE, and ECE 6793. Full Description " + "description": "Overview of human pathophysiology from a quantitative perspective. Emphasis on systems of interest to bioengineering faculty. Introduction to quantitative models for biological systems. Crosslisted with BMED, CHE, and ECE 6793." }, "ME6794": { "subject": "ME", "number": "6794", "name": "Tissue Engineering ", - "description": "Biological, engineering, and medical issues in developing tissue-engineered constructs. Emphasis in the integration of these disciplines at a basic molecular and cell biology level. Crosslisted with BMED and CHE 6794. Full Description " + "description": "Biological, engineering, and medical issues in developing tissue-engineered constructs. Emphasis in the integration of these disciplines at a basic molecular and cell biology level. Crosslisted with BMED and CHE 6794." }, "ME6795": { "subject": "ME", "number": "6795", "name": "Math,Stat&Comp Tech-Mate ", - "description": "Emphasizes the fundamental physical, analytical, and mathematical techniques commonly encountered in materials engineering including stress and strain, crystallographic and orientation transformations, X-ray, TEM, and solid-state concepts. Crosslisted with MSE and PTFE 6795. Full Description " + "description": "Emphasizes the fundamental physical, analytical, and mathematical techniques commonly encountered in materials engineering including stress and strain, crystallographic and orientation transformations, X-ray, TEM, and solid-state concepts. Crosslisted with MSE and PTFE 6795." }, "ME6796": { "subject": "ME", "number": "6796", "name": "Struct-Property Relation ", - "description": "Introduction to the multi-scale structure effects on material properties. For MSE students, this course will prepare students for future in-depth courses. For non-MSE students, the course will provide a background in materials and may serve as part of the program of study for a minor in materials. Crosslisted with MSE and PTFE 6796. Full Description " + "description": "Introduction to the multi-scale structure effects on material properties. For MSE students, this course will prepare students for future in-depth courses. For non-MSE students, the course will provide a background in materials and may serve as part of the program of study for a minor in materials. Crosslisted with MSE and PTFE 6796." }, "ME6797": { "subject": "ME", "number": "6797", "name": "Therm&Kinetic Microstruc ", - "description": "The reduction of chemical-free energy, strain energy, and interfacial energy controls the kinetics of diffusional transformations. These factors are explored from the point of view of processing and stability of the microstructure during service. Crosslisted with MSE and PTFE 6797. Full Description " + "description": "The reduction of chemical-free energy, strain energy, and interfacial energy controls the kinetics of diffusional transformations. These factors are explored from the point of view of processing and stability of the microstructure during service. Crosslisted with MSE and PTFE 6797." }, "ME6799": { "subject": "ME", "number": "6799", "name": "Legal Issues-Tech Transf ", - "description": "Study and analysis of U.S. law as it applies to the patenting and licensing processes. Crosslisted with CHE, MGT, and BMED 6799. Full Description " + "description": "Study and analysis of U.S. law as it applies to the patenting and licensing processes. Crosslisted with CHE, MGT, and BMED 6799." }, "ME6XXX": { "subject": "ME", "number": "6XXX", "name": "Mech Engr Elective ", - "description": " Full Description " + "description": "" }, "ME7000": { "subject": "ME", "number": "7000", "name": "Master's Thesis ", - "description": " Full Description " + "description": "" }, "ME7056": { "subject": "ME", "number": "7056", "name": "GT-STUTTGART ", - "description": "Placeholder for GT-STUTTGART students. Full Description " + "description": "Placeholder for GT-STUTTGART students." }, "ME7101": { "subject": "ME", "number": "7101", "name": "Seminar in Engr Design ", - "description": "Reading from the literature, presentations, and discussions on current theories and methods in engineering design. Full Description " + "description": "Reading from the literature, presentations, and discussions on current theories and methods in engineering design." }, "ME7201": { "subject": "ME", "number": "7201", "name": "Comp Mechanics-Materials ", - "description": "Computational treatments of material and geometric nonlinearity, with emphasis on rate-dependent elasto-plasticity and fracture. Full Description " + "description": "Computational treatments of material and geometric nonlinearity, with emphasis on rate-dependent elasto-plasticity and fracture." }, "ME7203": { "subject": "ME", "number": "7203", "name": "Constit Relations-Solids ", - "description": "Advanced treatment of constitutive laws for nonlinear behavior of solids. Coupled thermomechanical laws and underlying physical and thermodynamical bases. Behavior of media with underlying substructure. Full Description " + "description": "Advanced treatment of constitutive laws for nonlinear behavior of solids. Coupled thermomechanical laws and underlying physical and thermodynamical bases. Behavior of media with underlying substructure." }, "ME7205": { "subject": "ME", "number": "7205", "name": "Nanomechanics & Devices ", - "description": "Introduction to mechanics and transport processes of discrete atomistic and molecular systems, fabrication of nanodevices/structures and applications to nanoelectronics, tribology, actuation and sensors. Full Description " + "description": "Introduction to mechanics and transport processes of discrete atomistic and molecular systems, fabrication of nanodevices/structures and applications to nanoelectronics, tribology, actuation and sensors." }, "ME7226": { "subject": "ME", "number": "7226", "name": "Interface&Surface Prop ", - "description": "Physical phenomena associated with surfaces and interfaces. Gas-solid, liquid-solid, and solid-solid interactions associated with physics, chemistry, and engineering. Full Description " + "description": "Physical phenomena associated with surfaces and interfaces. Gas-solid, liquid-solid, and solid-solid interactions associated with physics, chemistry, and engineering." }, "ME7227": { "subject": "ME", "number": "7227", "name": "Rapid Prototype-Engr ", - "description": "Rapid prototyping technologies in engineering design. Physical principles, materials, materials processing. Laboratory demonstrations and project. Full Description " + "description": "Rapid prototyping technologies in engineering design. Physical principles, materials, materials processing. Laboratory demonstrations and project." }, "ME7228": { "subject": "ME", "number": "7228", "name": "Thermo-Mech Reliability ", - "description": "Modeling and validation of thermomechanical behavior of printed wiring board and PWB assembly; microelectronic packaging, packaging materials, manufacturing process modeling, reliability, failure modes. Full Description " + "description": "Modeling and validation of thermomechanical behavior of printed wiring board and PWB assembly; microelectronic packaging, packaging materials, manufacturing process modeling, reliability, failure modes." }, "ME7301": { "subject": "ME", "number": "7301", "name": "Trans Ph Multiphase Flow ", - "description": "Gas-liquid, two-phase flow patterns, basic and empirical models; conservation equations and closure relations; pool and convective boiling; aerosol transport; condensation. Full Description " + "description": "Gas-liquid, two-phase flow patterns, basic and empirical models; conservation equations and closure relations; pool and convective boiling; aerosol transport; condensation." }, "ME7442": { "subject": "ME", "number": "7442", "name": "Vibration-Continuous Sys ", - "description": "Equations of motion and oscillatory response of dynamic systems modeled as continuous media. Full Description " + "description": "Equations of motion and oscillatory response of dynamic systems modeled as continuous media." }, "ME7602": { "subject": "ME", "number": "7602", "name": "Hydrodynamic Stability ", - "description": "Hydrodynamic stability of fluid flows using linear, energy, and nonlinear stability theories. Taylor-Couette, buoyancy- driven, surface-tension-driven, shear, and thin-film flows. Full Description " + "description": "Hydrodynamic stability of fluid flows using linear, energy, and nonlinear stability theories. Taylor-Couette, buoyancy- driven, surface-tension-driven, shear, and thin-film flows." }, "ME7751": { "subject": "ME", "number": "7751", "name": "Computational Fluid Mech ", - "description": "Numerical methods for solving the time-dependent Navier-Stokes equations in complex geometrics, including theory, implementation, and applications. Crosslisted with CEE 7751. Full Description " + "description": "Numerical methods for solving the time-dependent Navier-Stokes equations in complex geometrics, including theory, implementation, and applications. Crosslisted with CEE 7751." }, "ME7757": { "subject": "ME", "number": "7757", "name": "Teaching Practicum ", - "description": "Supervised teaching for doctoral students. Teaching techniques, course and curriculum design, student evaluation methods and criteria. Students may, in some instances, prepare and present lectures. Crosslisted with NRE, HP, and CHBE 7757. Full Description " + "description": "Supervised teaching for doctoral students. Teaching techniques, course and curriculum design, student evaluation methods and criteria. Students may, in some instances, prepare and present lectures. Crosslisted with NRE, HP, and CHBE 7757." }, "ME7764": { "subject": "ME", "number": "7764", "name": "Acoustic Propagation ", - "description": "Propagation of sound in inhomogeneous fluids; ray acoustics, ocean and atmospheric acoustics, nonlinear acoustics. Crosslisted with AE 7764. Full Description " + "description": "Propagation of sound in inhomogeneous fluids; ray acoustics, ocean and atmospheric acoustics, nonlinear acoustics. Crosslisted with AE 7764." }, "ME7771": { "subject": "ME", "number": "7771", "name": "Mech-Polymer Solid&Fluid ", - "description": "Continuum mechanics of solids and fluids; mechanics of deformation of anisotropic polymers; yield, breaking, and fatigue; non-Newtonian viscous and viscoelastic behavior of polymer fluids. Crosslisted with CHE, MSE, and PTFE 7771. Full Description " + "description": "Continuum mechanics of solids and fluids; mechanics of deformation of anisotropic polymers; yield, breaking, and fatigue; non-Newtonian viscous and viscoelastic behavior of polymer fluids. Crosslisted with CHE, MSE, and PTFE 7771." }, "ME7772": { "subject": "ME", "number": "7772", "name": "Fund-Fracture Mechanics ", - "description": "Advanced study of failure of structural materials under load, mechanics of fracture, and microscopic and macroscopic aspects of the fracture of engineering materials. Crosslisted with AE, CEE, CHE, and MSE 7772. Full Description " + "description": "Advanced study of failure of structural materials under load, mechanics of fracture, and microscopic and macroscopic aspects of the fracture of engineering materials. Crosslisted with AE, CEE, CHE, and MSE 7772." }, "ME7773": { "subject": "ME", "number": "7773", "name": "Adv Fracture Mechanics ", - "description": "Nonlinear fracture mechanics including elastic-plastic and time-dependent fracture, advanced test methods, J-integral theory, and extensions. Crosslisted with AE, CEE, CHE, and MSE 7773. Full Description " + "description": "Nonlinear fracture mechanics including elastic-plastic and time-dependent fracture, advanced test methods, J-integral theory, and extensions. Crosslisted with AE, CEE, CHE, and MSE 7773." }, "ME7774": { "subject": "ME", "number": "7774", "name": "Fatigue-Materials&Struct ", - "description": "Mechanical and microstructural aspects of nucleation and growth of cracks under cyclic loading conditions, notch effects, cumulative damage, multiaxial loading, and fatigue crack propagation. Crosslisted with AE, CEE, CHE, and MSE 7774. Full Description " + "description": "Mechanical and microstructural aspects of nucleation and growth of cracks under cyclic loading conditions, notch effects, cumulative damage, multiaxial loading, and fatigue crack propagation. Crosslisted with AE, CEE, CHE, and MSE 7774." }, "ME7775": { "subject": "ME", "number": "7775", "name": "Fract&Fatigue-Structures ", - "description": "Brittle and ductile failure criteria. Failure prediction in composite structures. Free-edge and internal delamination. Anisotropic cracks. Fatigue behavior of composites and comparison with metal fatigue. Crosslisted with AE, CHE, and MSE 7775. Full Description " + "description": "Brittle and ductile failure criteria. Failure prediction in composite structures. Free-edge and internal delamination. Anisotropic cracks. Fatigue behavior of composites and comparison with metal fatigue. Crosslisted with AE, CHE, and MSE 7775." }, "ME7785": { "subject": "ME", "number": "7785", "name": "Intro Robotics Research ", - "description": "Familiarizes students with the core areas of robotics; mechanics, control, perception, AI, and autonomy. Provides an introduction to the mathematical tools required in robotics research. Full Description " + "description": "Familiarizes students with the core areas of robotics; mechanics, control, perception, AI, and autonomy. Provides an introduction to the mathematical tools required in robotics research." }, "ME7791": { "subject": "ME", "number": "7791", "name": "Damage & Fail-Composites ", - "description": "Analysis and failure of fiber-reinforced composite material systems. Mechanisms of toughening, multiple cracking mechanisms. Failure in woven fabric, braided, and special geometry composites. Crosslisted with AE, CHE, CEE, MSE, and PTFE 7791. Full Description " + "description": "Analysis and failure of fiber-reinforced composite material systems. Mechanisms of toughening, multiple cracking mechanisms. Failure in woven fabric, braided, and special geometry composites. Crosslisted with AE, CHE, CEE, MSE, and PTFE 7791." }, "ME7792": { "subject": "ME", "number": "7792", "name": "Mechanics of Composites ", - "description": "Anisotropic elasticity, hygrothermal behavior, stress analysis of laminated composites including 3D effects, stress concentrations, free-edge effects, thick laminates, adhesive and mechanical connections, fracture of composites. Crosslisted with AE, CHE, CEE, MSE, and PTFE 7792. Full Description " + "description": "Anisotropic elasticity, hygrothermal behavior, stress analysis of laminated composites including 3D effects, stress concentrations, free-edge effects, thick laminates, adhesive and mechanical connections, fracture of composites. Crosslisted with AE, CHE, CEE, MSE, and PTFE 7792." }, "ME7793": { "subject": "ME", "number": "7793", "name": "Manufacture-Composites ", - "description": "Major manufacturing techniques of metal-ceramic and polymer-matrix composites. Modeling of processes with emphasis on fundamental mechanisms and effects. Crosslisted with AE, CEE, CHE, MSE, and PTFE 7793. Full Description " + "description": "Major manufacturing techniques of metal-ceramic and polymer-matrix composites. Modeling of processes with emphasis on fundamental mechanisms and effects. Crosslisted with AE, CEE, CHE, MSE, and PTFE 7793." }, "ME8001": { "subject": "ME", "number": "8001", "name": "Master Seminar I ", - "description": "Seminars for MSME students. Credit not allowed for both ME 8001 and ECE 8001. Full Description " + "description": "Seminars for MSME students. Credit not allowed for both ME 8001 and ECE 8001." }, "ME8002": { "subject": "ME", "number": "8002", "name": "Master Seminar II ", - "description": "Seminars for MSME students. Credit not allowed for both ME 8002 and ECE 8001. Full Description " + "description": "Seminars for MSME students. Credit not allowed for both ME 8002 and ECE 8001." }, "ME8010": { "subject": "ME", "number": "8010", "name": "Seminar-Mechanical Engr ", - "description": "Seminars involving current research projects presented by graduate students, faculty, and invited speakers. Full Description " + "description": "Seminars involving current research projects presented by graduate students, faculty, and invited speakers." }, "ME8011": { "subject": "ME", "number": "8011", "name": "Seminar-Mechanical Engr ", - "description": "Seminars involving current research projects presented by graduate students, faculty, and invited speakers. Full Description " + "description": "Seminars involving current research projects presented by graduate students, faculty, and invited speakers." }, "ME8012": { "subject": "ME", "number": "8012", "name": "Seminar-Mechanical Engr ", - "description": "Seminars involving current research projects presented by graduate students, faculty, and invited speakers. Full Description " + "description": "Seminars involving current research projects presented by graduate students, faculty, and invited speakers." }, "ME8750": { "subject": "ME", "number": "8750", "name": "Robotics Research Fnd I ", - "description": "Multidisciplinary research course supervised by two robotics faculty from different schools participating in the robotics Ph.D. program. Full Description " + "description": "Multidisciplinary research course supervised by two robotics faculty from different schools participating in the robotics Ph.D. program." }, "ME8751": { "subject": "ME", "number": "8751", "name": "Robotics Research Fnd II ", - "description": "Continuation of ME 8751 (Robotics Research Foundation I). Full Description " + "description": "Continuation of ME 8751 (Robotics Research Foundation I)." }, "ME8801": { "subject": "ME", "number": "8801", "name": "Spec Topic-Manufacturing ", - "description": "Special topic offerings of current interest in manufacturing not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in manufacturing not included in regular courses." }, "ME8802": { "subject": "ME", "number": "8802", "name": "Spec Topic-Manufacturing ", - "description": "Special topic offerings of current interest in manufacturing not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in manufacturing not included in regular courses." }, "ME8803": { "subject": "ME", "number": "8803", "name": "Spec Topic-Manufacturing ", - "description": "Special topic offerings of current interest in manufacturing not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in manufacturing not included in regular courses." }, "ME8804": { "subject": "ME", "number": "8804", "name": "Spec Topic-Manufacturing ", - "description": "Special topic offerings of current interest in manufacturing not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in manufacturing not included in regular courses." }, "ME8805": { "subject": "ME", "number": "8805", "name": "Spec Topic-Manufacturing ", - "description": "Special topic offerings of current interest in manufacturing not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in manufacturing not included in regular courses." }, "ME8806": { "subject": "ME", "number": "8806", "name": "Spec Topic-Manufacturing ", - "description": "Special topic offerings of current interest in manufacturing not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in manufacturing not included in regular courses." }, "ME8811": { "subject": "ME", "number": "8811", "name": "Spec Topic-CAE & Design ", - "description": "Special topic offerings of current interest in computer-aided engineering not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in computer-aided engineering not included in regular courses." }, "ME8812": { "subject": "ME", "number": "8812", "name": "Spec Topic-CAE & Design ", - "description": "Special topic offerings of current interest in computer-aided engineering not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in computer-aided engineering not included in regular courses." }, "ME8813": { "subject": "ME", "number": "8813", "name": "Spec Topic-CAE & Design ", - "description": "Special topic offerings of current interest in computer-aided engineering not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in computer-aided engineering not included in regular courses." }, "ME8814": { "subject": "ME", "number": "8814", "name": "Spec Topic-CAE & Design ", - "description": "Special topics offerings of current interest in computer-aided engineering not included in regular courses. Full Description " + "description": "Special topics offerings of current interest in computer-aided engineering not included in regular courses." }, "ME8815": { "subject": "ME", "number": "8815", "name": "Spec Topic-CAE & Design ", - "description": "Special topics offerings of current interest in computer-aided engineering not included in regular courses. Full Description " + "description": "Special topics offerings of current interest in computer-aided engineering not included in regular courses." }, "ME8816": { "subject": "ME", "number": "8816", "name": "Spec Topic-CAE & Design ", - "description": "Special topics offerings of current interest in computer-aided engineering not included in regular courses. Full Description " + "description": "Special topics offerings of current interest in computer-aided engineering not included in regular courses." }, "ME8821": { "subject": "ME", "number": "8821", "name": "Spec Topics-Tribology ", - "description": "Special topic offerings of current interest in tribology not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in tribology not included in regular courses." }, "ME8822": { "subject": "ME", "number": "8822", "name": "Spec Topics-Tribology ", - "description": "Special topic offerings of current interest in tribology not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in tribology not included in regular courses." }, "ME8823": { "subject": "ME", "number": "8823", "name": "Spec Topics-Tribology ", - "description": "Special topics offerings of current interest in tribology not included in regular courses. Full Description " + "description": "Special topics offerings of current interest in tribology not included in regular courses." }, "ME8824": { "subject": "ME", "number": "8824", "name": "Spec Topics-Tribology ", - "description": "Special topics offerings of current interest in tribology not included in regular courses. Full Description " + "description": "Special topics offerings of current interest in tribology not included in regular courses." }, "ME8825": { "subject": "ME", "number": "8825", "name": "Spec Topics-Tribology ", - "description": "Special topic offerings of current interest in tribology not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in tribology not included in regular courses." }, "ME8826": { "subject": "ME", "number": "8826", "name": "Spec Topics-Tribology ", - "description": "Special topic offerings of current interest in tribology not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in tribology not included in regular courses." }, "ME8831": { "subject": "ME", "number": "8831", "name": "Spec Top-Thermal Science ", - "description": "Special topics offerings of current interest in thermal sciences not included in regular courses. Full Description " + "description": "Special topics offerings of current interest in thermal sciences not included in regular courses." }, "ME8832": { "subject": "ME", "number": "8832", "name": "Spec Top-Thermal Science ", - "description": "Special topics offerings of current interest in thermal sciences not included in regular courses. Full Description " + "description": "Special topics offerings of current interest in thermal sciences not included in regular courses." }, "ME8833": { "subject": "ME", "number": "8833", "name": "Spec Top-Thermal Science ", - "description": "Special topic offerings of current interest in thermal sciences not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in thermal sciences not included in regular courses." }, "ME8834": { "subject": "ME", "number": "8834", "name": "Spec Top-Thermal Science ", - "description": "Special topic offerings of current interest in thermal sciences not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in thermal sciences not included in regular courses." }, "ME8835": { "subject": "ME", "number": "8835", "name": "Spce Top-Thermal Science ", - "description": "Special topic offerings of current interest in thermal sciences not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in thermal sciences not included in regular courses." }, "ME8836": { "subject": "ME", "number": "8836", "name": "Spec Top-Thermal Science ", - "description": "Special topics offerings of current interest in thermal sciences not included in regular courses, Full Description " + "description": "Special topics offerings of current interest in thermal sciences not included in regular courses," }, "ME8841": { "subject": "ME", "number": "8841", "name": "Spec Topic-Automation ", - "description": "Special topic offerings of current interest in automation and mechatronics not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in automation and mechatronics not included in regular courses." }, "ME8842": { "subject": "ME", "number": "8842", "name": "Spec Topic-Automation ", - "description": "Special topic offerings of current interest in automation and mechatronics not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in automation and mechatronics not included in regular courses." }, "ME8843": { "subject": "ME", "number": "8843", "name": "Spec Topic-Automation ", - "description": "Special topic offerings of current interest in automation and mechatronics not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in automation and mechatronics not included in regular courses." }, "ME8844": { "subject": "ME", "number": "8844", "name": "Spec Topic-Automation ", - "description": "Special topic offerings of current interest in automation and mechatronics not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in automation and mechatronics not included in regular courses." }, "ME8845": { "subject": "ME", "number": "8845", "name": "Spec Topics-Automation ", - "description": "Special topic offerings of current interest in automation and mechatronics not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in automation and mechatronics not included in regular courses." }, "ME8846": { "subject": "ME", "number": "8846", "name": "Spec Topic-Automation ", - "description": "Special topic offerings of current interest in automation and mechatronics not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in automation and mechatronics not included in regular courses." }, "ME8851": { "subject": "ME", "number": "8851", "name": "Spec Top-Acoustics&Dynam ", - "description": "Special topic offerings of current interest in acoustics and dynamics not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in acoustics and dynamics not included in regular courses." }, "ME8852": { "subject": "ME", "number": "8852", "name": "Spec Top-Acoustics&Dynam ", - "description": "Special topic offerings of current interest in acoustics and dynamics not included in regular courses Full Description " + "description": "Special topic offerings of current interest in acoustics and dynamics not included in regular courses" }, "ME8853": { "subject": "ME", "number": "8853", "name": "Spec Top-Acoustics&Dynam ", - "description": "Special topic offerings of current interest in acoustics and dynamics not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in acoustics and dynamics not included in regular courses." }, "ME8854": { "subject": "ME", "number": "8854", "name": "Spec Top-Acoustics&Dynam ", - "description": "Special topic offerings of current interest in acoustics and dynamics not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in acoustics and dynamics not included in regular courses." }, "ME8855": { "subject": "ME", "number": "8855", "name": "Spec Top-Acoustics&Dynam ", - "description": "Special topic offerings of current interest in acoustics and dynamics not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in acoustics and dynamics not included in regular courses." }, "ME8856": { "subject": "ME", "number": "8856", "name": "Spec Top-Acpustics&Dynam ", - "description": "Special topic offerings of current interest in acoustics and dynamics not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in acoustics and dynamics not included in regular courses." }, "ME8861": { "subject": "ME", "number": "8861", "name": "Spec Top-Fluid Mechanics ", - "description": "Special topic offerings of current interest in fluid mechanics not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in fluid mechanics not included in regular courses." }, "ME8862": { "subject": "ME", "number": "8862", "name": "Spec Top-Fluid Mechanics ", - "description": "Special topic offerings of current interest in fluid mechanics not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in fluid mechanics not included in regular courses." }, "ME8863": { "subject": "ME", "number": "8863", "name": "Spec Top-Fluid Mechanics ", - "description": "Special topic offerings of current interest in fluid mechanics not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in fluid mechanics not included in regular courses." }, "ME8864": { "subject": "ME", "number": "8864", "name": "Spec Top-Fluid Mechanics ", - "description": "Special topic offerings of current interest in fluid mechanics not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in fluid mechanics not included in regular courses." }, "ME8865": { "subject": "ME", "number": "8865", "name": "Spec Top-Fluid Mechanics ", - "description": "Special topic offerings of current interest in fluid mechanics not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in fluid mechanics not included in regular courses." }, "ME8866": { "subject": "ME", "number": "8866", "name": "Spec Top-Fluid Mechanics ", - "description": "Special topic offerings of current interest in fluid mechanics not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in fluid mechanics not included in regular courses." }, "ME8871": { "subject": "ME", "number": "8871", "name": "Spec Top-Bioengineering ", - "description": "Special topic offerings of current interest in bioengineering not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in bioengineering not included in regular courses." }, "ME8872": { "subject": "ME", "number": "8872", "name": "Spec Top-Bioengineering ", - "description": "Special topic offerings of current interest in bioengineering not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in bioengineering not included in regular courses." }, "ME8873": { "subject": "ME", "number": "8873", "name": "Spec Top-Bioengineering ", - "description": "Special topic offerings of current interest in bioengineering not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in bioengineering not included in regular courses." }, "ME8874": { "subject": "ME", "number": "8874", "name": "Spec Top-Bioengineering ", - "description": "Special topic offerings of current interest in bioengineering not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in bioengineering not included in regular courses." }, "ME8875": { "subject": "ME", "number": "8875", "name": "Spec Top-Bioengineering ", - "description": "Special topic offerings of current interest in bioengineering not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in bioengineering not included in regular courses." }, "ME8876": { "subject": "ME", "number": "8876", "name": "Spec Top-Bioengineering ", - "description": "Special topic offerings of current interest in bioengineering not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in bioengineering not included in regular courses." }, "ME8881": { "subject": "ME", "number": "8881", "name": "Sp Top-Mech of Materials ", - "description": "Special topic offerings of current interest in mechanics of materials not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in mechanics of materials not included in regular courses." }, "ME8882": { "subject": "ME", "number": "8882", "name": "Sp Top-Mech of Materials ", - "description": "Special topic offerings of current interest in mechanics of materials not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in mechanics of materials not included in regular courses." }, "ME8883": { "subject": "ME", "number": "8883", "name": "Sp Top-Mech of Materials ", - "description": "Special topic offerings of current interest in mechanics of materials not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in mechanics of materials not included in regular courses." }, "ME8884": { "subject": "ME", "number": "8884", "name": "Sp Top-Mech of Materials ", - "description": "Special topic offerings of current interest in mechanics of materials not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in mechanics of materials not included in regular courses." }, "ME8885": { "subject": "ME", "number": "8885", "name": "SP Top-Mech of Materials ", - "description": "Special topic offerings of current interest in mechanics of materials not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in mechanics of materials not included in regular courses." }, "ME8886": { "subject": "ME", "number": "8886", "name": "Sp Top-Mech of Materials ", - "description": "Special topic offerings of current interest in mechanics of materials not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in mechanics of materials not included in regular courses." }, "ME8901": { "subject": "ME", "number": "8901", "name": "Spec Prob-Manufacturing ", - "description": "Individual studies and/or experimental investigation of problems of current interest in manufacturing. Full Description " + "description": "Individual studies and/or experimental investigation of problems of current interest in manufacturing." }, "ME8902": { "subject": "ME", "number": "8902", "name": "Spec Prob-Manufacturing ", - "description": "Individual studies and/or experimental investigation of problems of current interest in manufacturing. Full Description " + "description": "Individual studies and/or experimental investigation of problems of current interest in manufacturing." }, "ME8903": { "subject": "ME", "number": "8903", "name": "Spec Prob-Manufacturing ", - "description": "Individual studies and/or experimental investigation of problems of current interest in manufacturing. Full Description " + "description": "Individual studies and/or experimental investigation of problems of current interest in manufacturing." }, "ME8904": { "subject": "ME", "number": "8904", "name": "Spec Prob-Manufacturing ", - "description": "Individual studies and/or experimental investigation of problems of current interest in manufacturing. Full Description " + "description": "Individual studies and/or experimental investigation of problems of current interest in manufacturing." }, "ME8905": { "subject": "ME", "number": "8905", "name": "Spec Prob-Manufacturing ", - "description": "Individual studies and/or experimental investigation of problems of current interest in manufacturing. Full Description " + "description": "Individual studies and/or experimental investigation of problems of current interest in manufacturing." }, "ME8906": { "subject": "ME", "number": "8906", "name": "Spec Prob-Manufacturing ", - "description": "Individual studies and/or experimental investigation of problems of current interest in manufacturing. Full Description " + "description": "Individual studies and/or experimental investigation of problems of current interest in manufacturing." }, "ME8911": { "subject": "ME", "number": "8911", "name": "Spec Prob-CAE & Design ", - "description": "Individual studies and/or experimental investigation of problems of current interest in computer-aided engineering and design. Full Description " + "description": "Individual studies and/or experimental investigation of problems of current interest in computer-aided engineering and design." }, "ME8912": { "subject": "ME", "number": "8912", "name": "Spec Prob-CAE & Design ", - "description": "Individual studies and/or experimental investigations of problems of current interest in computer-aided engineering and design. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in computer-aided engineering and design." }, "ME8913": { "subject": "ME", "number": "8913", "name": "Spec Prob-CAE & Design ", - "description": "Individual studies and/or experimental investigations of problems of current interest in computer-aided engineering and design. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in computer-aided engineering and design." }, "ME8914": { "subject": "ME", "number": "8914", "name": "Spec Prob-CAE & Design ", - "description": "Individual studies and/or experimental investigation of problems of current interest in computer-aided engineering and design. Full Description " + "description": "Individual studies and/or experimental investigation of problems of current interest in computer-aided engineering and design." }, "ME8915": { "subject": "ME", "number": "8915", "name": "Spec Prob-CAE & Desgin ", - "description": "Individual studies and/or experimental investigation of problems of current interest in computer-aided engineering and design. Full Description " + "description": "Individual studies and/or experimental investigation of problems of current interest in computer-aided engineering and design." }, "ME8916": { "subject": "ME", "number": "8916", "name": "Spec Prob-CAE & Design ", - "description": "Individual studies and/or experimental investigations of problems of current interest in computer-aided engineering and design. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in computer-aided engineering and design." }, "ME8921": { "subject": "ME", "number": "8921", "name": "Spec Problems-Tribology ", - "description": "Individual studies and/or experimental investigations of problems of current interest in tribology. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in tribology." }, "ME8922": { "subject": "ME", "number": "8922", "name": "Spec Problems-Tribology ", - "description": "Individual studies and/or experimental investigation of problems of current interest in tribology. Full Description " + "description": "Individual studies and/or experimental investigation of problems of current interest in tribology." }, "ME8923": { "subject": "ME", "number": "8923", "name": "Spec Problems-Tribology ", - "description": "Individual studies and/or experimental investigation of problems of current interest in tribology. Full Description " + "description": "Individual studies and/or experimental investigation of problems of current interest in tribology." }, "ME8924": { "subject": "ME", "number": "8924", "name": "Spec Problem-Tribology ", - "description": "Individual studies and/or experimental investigations of problems of current interest in tribology. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in tribology." }, "ME8925": { "subject": "ME", "number": "8925", "name": "Spec Problems-Tribology ", - "description": "Individual studies and/or experimental investigations of problems of current interest in tribology. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in tribology." }, "ME8926": { "subject": "ME", "number": "8926", "name": "Spec Problems-Tribology ", - "description": "Individual studies and/or experimental investigations of problems of current interest in tribology. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in tribology." }, "ME8931": { "subject": "ME", "number": "8931", "name": "Spec Prob-Therm Sciences ", - "description": "Individual studies and/or experimental investigations of problems of current interest in thermal sciences. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in thermal sciences." }, "ME8932": { "subject": "ME", "number": "8932", "name": "Spec Prob-Therm Sciences ", - "description": "Individual studies and/or experimental investigations of problems of current interest in thermal sciences. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in thermal sciences." }, "ME8933": { "subject": "ME", "number": "8933", "name": "Spec Prob-Therm Sciences ", - "description": "Individual studies and/or experimental investigation of problems of current interest in thermal sciences. Full Description " + "description": "Individual studies and/or experimental investigation of problems of current interest in thermal sciences." }, "ME8934": { "subject": "ME", "number": "8934", "name": "Spec PRob-Therm Sciences ", - "description": "Individual studies and/or experimental investigations of problems of current interest in thermal sciences. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in thermal sciences." }, "ME8935": { "subject": "ME", "number": "8935", "name": "Spec Prob-Therm Sciences ", - "description": "Individual studies and/or experimental investigations of problems of current interest in thermal sciences. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in thermal sciences." }, "ME8936": { "subject": "ME", "number": "8936", "name": "Spec Prob-Therm Sciences ", - "description": "Individual studies and/or experimental investigations of problems of current interest in thermal sciences. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in thermal sciences." }, "ME8941": { "subject": "ME", "number": "8941", "name": "Special Prob-Automation ", - "description": "Individual studies and/or experimental investigations of problems of current interest in automation and mechatronics. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in automation and mechatronics." }, "ME8942": { "subject": "ME", "number": "8942", "name": "Special Prob-Automation ", - "description": "Individual studies and/or experimental investigations of problems of current interest in automation and mechatronics. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in automation and mechatronics." }, "ME8943": { "subject": "ME", "number": "8943", "name": "Special Prob-Automation ", - "description": "Individual studies and/or experimental investigations of problems of current interest in automation and mechatronics. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in automation and mechatronics." }, "ME8944": { "subject": "ME", "number": "8944", "name": "Special Prob-Automation ", - "description": "Individual studies and/or experimental investigations of problems of current interest in automation and mechatronics. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in automation and mechatronics." }, "ME8945": { "subject": "ME", "number": "8945", "name": "Special Prob-Automation ", - "description": "Individual studies and/or experimental investigations of problems of current interest in automation and mechatronics. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in automation and mechatronics." }, "ME8946": { "subject": "ME", "number": "8946", "name": "Special Prob-Automation ", - "description": "Individual studies and/or experimental investigations of problems of current interest in automation and mechatronics. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in automation and mechatronics." }, "ME8951": { "subject": "ME", "number": "8951", "name": "Sp Prob-Acoustic/Dynamic ", - "description": "Individual studies and/or experimental investigations of problems of current interest in acoustics and dynamics. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in acoustics and dynamics." }, "ME8952": { "subject": "ME", "number": "8952", "name": "Sp Prob-Acoustic/Dymanic ", - "description": "Individual studies and/or experimental investigations of problems of current interest in acoustics and dynamics. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in acoustics and dynamics." }, "ME8953": { "subject": "ME", "number": "8953", "name": "Sp Prob-Acoustic/Dynamic ", - "description": "Individual studies and/or experimental investigations of problems of current interest in acoustics and dynamics. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in acoustics and dynamics." }, "ME8954": { "subject": "ME", "number": "8954", "name": "Sp Prob-Acoustic/Dynamic ", - "description": "Individual studies and/or experimental investigations of problems of current interest in acoustics and dynamics. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in acoustics and dynamics." }, "ME8955": { "subject": "ME", "number": "8955", "name": "Sp Prob-Acoustic/Dynamic ", - "description": "Individual studies and/or experimental investigations of problems of current interest in acoustics and dynamics. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in acoustics and dynamics." }, "ME8956": { "subject": "ME", "number": "8956", "name": "Sp Prob-Acoustic/Dynamic ", - "description": "Individual studies and/or experimental investigations of problems of current interest in acoustics and dynamics. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in acoustics and dynamics." }, "ME8961": { "subject": "ME", "number": "8961", "name": "Spec Prob-Fluid Mechanic ", - "description": "Individual studies and/or experimental investigations of problems of current interest in fluid mechanics. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in fluid mechanics." }, "ME8962": { "subject": "ME", "number": "8962", "name": "Spec PRob-Fluid MEchanic ", - "description": "Individual studies and/or experimental investigations of problems of current interest in fluid mechanics. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in fluid mechanics." }, "ME8963": { "subject": "ME", "number": "8963", "name": "Spec Prob-Fluid Mechanic ", - "description": "Individual studies and/or experimental investigations of problems of current interest in fluid mechanics. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in fluid mechanics." }, "ME8964": { "subject": "ME", "number": "8964", "name": "Spec Prob-Fluid Mechanic ", - "description": "Individual studies and/or experimental investigations of problems of current interest in fluid mechanics. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in fluid mechanics." }, "ME8965": { "subject": "ME", "number": "8965", "name": "Spec Prob-Fluid Mechanic ", - "description": "Individual studies and/or experimental investigations of problems of current interest in fluid mechanics. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in fluid mechanics." }, "ME8966": { "subject": "ME", "number": "8966", "name": "Spec Prob-Fluid Mechanic ", - "description": "Individual studies and/or experimental investigations of problems of current interest in fluid mechanics. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in fluid mechanics." }, "ME8971": { "subject": "ME", "number": "8971", "name": "Spec Prob-Bioengineering ", - "description": "Individual studies and/or experimental investigations of problems of current interest in bioengineering. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in bioengineering." }, "ME8972": { "subject": "ME", "number": "8972", "name": "Spec Prob-Bioengineering ", - "description": "Individual studies and/or experimental investigations of problems of current interest in bioengineering. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in bioengineering." }, "ME8973": { "subject": "ME", "number": "8973", "name": "Spec Prob-Bioengineering ", - "description": "Individual studies and/or experimental investigations of problems of current interest in bioengineering. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in bioengineering." }, "ME8974": { "subject": "ME", "number": "8974", "name": "Spec Prob-Bioengineering ", - "description": "Individual studies and/or experimental investigations of problems of current interest in bioengineering. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in bioengineering." }, "ME8975": { "subject": "ME", "number": "8975", "name": "Spec Prob-Bioengineering ", - "description": "Individual studies and/or experimental investigations of problems of current interest in bioengineering. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in bioengineering." }, "ME8976": { "subject": "ME", "number": "8976", "name": "Spec PRob-Bioengineering ", - "description": "Individual studies and/or experimental investigations of problems of current interest in bioengineering. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in bioengineering." }, "ME8981": { "subject": "ME", "number": "8981", "name": "Sp Prob-Mech of Material ", - "description": "Individual studies and/or experimental investigations of problems of current interest in the mechanics of materials. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in the mechanics of materials." }, "ME8982": { "subject": "ME", "number": "8982", "name": "SP Prob-Mech of Material ", - "description": "Individual studies and/or experimental investigations of problems of current interest in mechanics of materials. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in mechanics of materials." }, "ME8983": { "subject": "ME", "number": "8983", "name": "Sp Prob-Mech of Material ", - "description": "Individual studies and/or experimental investigations of problems of current interest in mechanics of materials. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in mechanics of materials." }, "ME8984": { "subject": "ME", "number": "8984", "name": "Sp Prob-Mech of Material ", - "description": "Individual studies and/or experimental investigations of problems of current interest in the mechanics of materials. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in the mechanics of materials." }, "ME8985": { "subject": "ME", "number": "8985", "name": "Sp Prob-Mech of Material ", - "description": "Individual studies and/or experimental investigations of problems of current interest in the mechanics of materials. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in the mechanics of materials." }, "ME8986": { "subject": "ME", "number": "8986", "name": "SP Prob-Mech of Material ", - "description": "Individual studies and/or experimental investigations of problems of current interest in the mechanics of materials. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in the mechanics of materials." }, "ME8997": { "subject": "ME", "number": "8997", "name": "Teaching Assistantship ", - "description": "For graduate students holding graduate teaching assistantships. Full Description " + "description": "For graduate students holding graduate teaching assistantships." }, "ME8998": { "subject": "ME", "number": "8998", "name": "Research Assistantship ", - "description": "For graduate students holding graduate research assistantships. Full Description " + "description": "For graduate students holding graduate research assistantships." }, "ME9000": { "subject": "ME", "number": "9000", "name": "Doctoral Thesis ", - "description": " Full Description " + "description": "" }, "MGT1XXX": { "subject": "MGT", "number": "1XXX", "name": "Management Elective ", - "description": " Full Description " + "description": "" }, "MGT2106": { "subject": "MGT", "number": "2106", "name": "Legal Aspects-Business ", - "description": "Development and function of the law, court organization, procedure, and substantive law in contracts, business organizations, and agencies. Also exposes social responsibility and ethics in business. Full Description " + "description": "Development and function of the law, court organization, procedure, and substantive law in contracts, business organizations, and agencies. Also exposes social responsibility and ethics in business." }, "MGT2200": { "subject": "MGT", "number": "2200", "name": "Information Technology ", - "description": "An introduction to management computing with a focus on the support of management functions through information technology. Students are introduced to database and spreadsheet applications. Full Description " + "description": "An introduction to management computing with a focus on the support of management functions through information technology. Students are introduced to database and spreadsheet applications." }, "MGT2250": { "subject": "MGT", "number": "2250", "name": "Management Statistics ", - "description": "This is the introduction to basic statistics for management students. Full Description " + "description": "This is the introduction to basic statistics for management students." }, "MGT2251": { "subject": "MGT", "number": "2251", "name": "Management Science ", - "description": "This course focuses on the problem-solving and decision- making processes that use quantitative management science concepts and techniques. Full Description " + "description": "This course focuses on the problem-solving and decision- making processes that use quantitative management science concepts and techniques." }, "MGT2598": { "subject": "MGT", "number": "2598", "name": "Management Internship ", - "description": "Recognition for a paid, full or part time, employment experience that is relevant to a student's management education. Full Description " + "description": "Recognition for a paid, full or part time, employment experience that is relevant to a student's management education." }, "MGT2599": { "subject": "MGT", "number": "2599", "name": "Internship&Independent Study ", - "description": "Independent study conducted for one student under the guidance of a faculty member in association with an unpaid internship Full Description " + "description": "Independent study conducted for one student under the guidance of a faculty member in association with an unpaid internship" }, "MGT2698": { "subject": "MGT", "number": "2698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "MGT2699": { "subject": "MGT", "number": "2699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "MGT2910": { "subject": "MGT", "number": "2910", "name": "Special Problems ", - "description": "Independent study conducted for one student under the guidance of a faculty member. Full Description " + "description": "Independent study conducted for one student under the guidance of a faculty member." }, "MGT2911": { "subject": "MGT", "number": "2911", "name": "Special Problems ", - "description": "Independent study conducted for one student under the guidance of a faculty member. Full Description " + "description": "Independent study conducted for one student under the guidance of a faculty member." }, "MGT2912": { "subject": "MGT", "number": "2912", "name": "Special Problems ", - "description": "Independent study conducted for one student under the guidance of a faculty member. Full Description " + "description": "Independent study conducted for one student under the guidance of a faculty member." }, "MGT2XXX": { "subject": "MGT", "number": "2XXX", "name": "Management Elective ", - "description": " Full Description " + "description": "" }, "MGT3000": { "subject": "MGT", "number": "3000", "name": "Financ & Managerial Acct ", - "description": "A foundation course in measuring and reporting the financial performance and status of the firm as well as basic concepts in cost and managerial accounting. No credit allowed for MGT majors. No credit allowed for MGT 3000 and ACCT 2101. Credit not allowed for MGT 3000 and ACCT 2102. Full Description " + "description": "A foundation course in measuring and reporting the financial performance and status of the firm as well as basic concepts in cost and managerial accounting. No credit allowed for MGT majors. No credit allowed for MGT 3000 and ACCT 2101. Credit not allowed for MGT 3000 and ACCT 2102." }, "MGT3062": { "subject": "MGT", "number": "3062", "name": "Financial Management ", - "description": "An introduction to finance. Topics include: time value of money, capital budgeting, risk and return, capital structure, dividend policy, and working capital management. No credit allowed for MGT 3062 and MGT 3078. Full Description " + "description": "An introduction to finance. Topics include: time value of money, capital budgeting, risk and return, capital structure, dividend policy, and working capital management. No credit allowed for MGT 3062 and MGT 3078." }, "MGT3075": { "subject": "MGT", "number": "3075", "name": "Security Valuation ", - "description": "The valuation of securities using fundamental and technical analysis. Topics include: DCF valuation, price multiples, free cash flow, and the construction of quantitative trading models. Full Description " + "description": "The valuation of securities using fundamental and technical analysis. Topics include: DCF valuation, price multiples, free cash flow, and the construction of quantitative trading models." }, "MGT3076": { "subject": "MGT", "number": "3076", "name": "Investments ", - "description": "Introduction to the securities markets and a study of the theory and practice of security analysis and portfolio management as applied to stocks and bonds. Credit not allowed for MGT 3076 and MGT 3078. Full Description " + "description": "Introduction to the securities markets and a study of the theory and practice of security analysis and portfolio management as applied to stocks and bonds. Credit not allowed for MGT 3076 and MGT 3078." }, "MGT3078": { "subject": "MGT", "number": "3078", "name": "Finance & Investments ", - "description": "An introduction to finance and to the securities markets. Topics include: time value of money, risk and return, capital budgeting, security analysis and portfolio management of stocks, bonds, and derivatives. No credit allowed for MGT majors. Credit not allowed for MGT 3078 and MGT 3062. Credit not allowed for MGT 3078 and MGT 3076. Full Description " + "description": "An introduction to finance and to the securities markets. Topics include: time value of money, risk and return, capital budgeting, security analysis and portfolio management of stocks, bonds, and derivatives. No credit allowed for MGT majors. Credit not allowed for MGT 3078 and MGT 3062. Credit not allowed for MGT 3078 and MGT 3076." }, "MGT3079": { "subject": "MGT", "number": "3079", "name": "Mgt of Fin Institutions ", - "description": "Introduction to the various risks faced by financial institutions and a detailed analysis of the tools used to manage these risks. Full Description " + "description": "Introduction to the various risks faced by financial institutions and a detailed analysis of the tools used to manage these risks." }, "MGT3082": { "subject": "MGT", "number": "3082", "name": "Fundmnt Real Estate Dev. ", - "description": "An overview of the real estate development process from concept through design, feasibility, financing, construction, marketing, management and ultimate sale or long term financing. Full Description " + "description": "An overview of the real estate development process from concept through design, feasibility, financing, construction, marketing, management and ultimate sale or long term financing." }, "MGT3084": { "subject": "MGT", "number": "3084", "name": "Derivative Securities ", - "description": "An introduction to options, futures, and swaps is provided. Concepts of arbitrage, index trading, and portfolio insurance are discussed. Full Description " + "description": "An introduction to options, futures, and swaps is provided. Concepts of arbitrage, index trading, and portfolio insurance are discussed." }, "MGT3101": { "subject": "MGT", "number": "3101", "name": "Organizational Behavior ", - "description": "Introduction to how the behavior of individuals, groups, and organizations affects organizational effectiveness. Credit not allowed for both MGT 3101 and 3150. Full Description " + "description": "Introduction to how the behavior of individuals, groups, and organizations affects organizational effectiveness. Credit not allowed for both MGT 3101 and 3150." }, "MGT3102": { "subject": "MGT", "number": "3102", "name": "Mgt Hum Res-Reg Environ ", - "description": "Analysis of various frameworks for understanding the social regulatory environments of human resources management and how they influence management decision making. Full Description " + "description": "Analysis of various frameworks for understanding the social regulatory environments of human resources management and how they influence management decision making." }, "MGT3103": { "subject": "MGT", "number": "3103", "name": "Leadersip-Changing Env ", - "description": "The course focuses on the leadership challenges posed by recent changes in the business environment, and on the skills needed to adapt to those changes. Full Description " + "description": "The course focuses on the leadership challenges posed by recent changes in the business environment, and on the skills needed to adapt to those changes." }, "MGT3150": { "subject": "MGT", "number": "3150", "name": "Prin of Management ", - "description": "Course explores functions of management; planning, organizing, staffing, leading, and controlling. Lectures, case studies, and business exercises are used to reinforce principles that are taught. Credit not allowed for both MGT 3150 and MGT 3101. Full Description " + "description": "Course explores functions of management; planning, organizing, staffing, leading, and controlling. Lectures, case studies, and business exercises are used to reinforce principles that are taught. Credit not allowed for both MGT 3150 and MGT 3101." }, "MGT3300": { "subject": "MGT", "number": "3300", "name": "Marketing Management I ", - "description": "The course presents and develops the primary marketing variables that are used in designing an overall marketing program. A systems approach is taken with the variables managed to optimize overall results. Full Description " + "description": "The course presents and develops the primary marketing variables that are used in designing an overall marketing program. A systems approach is taken with the variables managed to optimize overall results." }, "MGT3310": { "subject": "MGT", "number": "3310", "name": "Marketing Research ", - "description": "This course covers the fundamentals of the qualitative aspects of marketing research. The course has an applied orientation with application to contemporary issues in marketing. Full Description " + "description": "This course covers the fundamentals of the qualitative aspects of marketing research. The course has an applied orientation with application to contemporary issues in marketing." }, "MGT3325": { "subject": "MGT", "number": "3325", "name": "Product Planning ", - "description": "Overviews issues inherent in product development and product management. These include product strategy, idea generation, market development, product positioning, test marketing, launch, and brand management. Full Description " + "description": "Overviews issues inherent in product development and product management. These include product strategy, idea generation, market development, product positioning, test marketing, launch, and brand management." }, "MGT3501": { "subject": "MGT", "number": "3501", "name": "Operations Management ", - "description": "This course focuses on the issues and techniques relevant to the management of the operations function within an organization, emphasizing its strategic significance. Full Description " + "description": "This course focuses on the issues and techniques relevant to the management of the operations function within an organization, emphasizing its strategic significance." }, "MGT3510": { "subject": "MGT", "number": "3510", "name": "Management of Technology ", - "description": "Focus on managing the design, assessment, and implementation-change strategy of a firm's manufacturing and information-based technological capabilities to improve competitive performance. Full Description " + "description": "Focus on managing the design, assessment, and implementation-change strategy of a firm's manufacturing and information-based technological capabilities to improve competitive performance." }, "MGT3599": { "subject": "MGT", "number": "3599", "name": "Career Develmnt Workshop ", - "description": "This workshop style class focuses on skills and strategies for identifying a career path and conducting a successful job search in the field of management. Full Description " + "description": "This workshop style class focuses on skills and strategies for identifying a career path and conducting a successful job search in the field of management." }, "MGT3605": { "subject": "MGT", "number": "3605", "name": "Prins of Commercial Law ", - "description": "Course offers an in-depth examination of contracts, negotiable instruments and creditor/debtor issues, all essential for making informed decisions in commercial and financial business environments. Full Description " + "description": "Course offers an in-depth examination of contracts, negotiable instruments and creditor/debtor issues, all essential for making informed decisions in commercial and financial business environments." }, "MGT3606": { "subject": "MGT", "number": "3606", "name": "Intl Business Law ", - "description": "International Business Law focuses on the legal environment of international trade and private commercial transactions. Full Description " + "description": "International Business Law focuses on the legal environment of international trade and private commercial transactions." }, "MGT3607": { "subject": "MGT", "number": "3607", "name": "Business Ethics ", - "description": "This courses introduces students to ethical aspects of the business decision-making process, including: theoretical underpinnings of ethics, stakeholders, and decision-making strategies. Full Description " + "description": "This courses introduces students to ethical aspects of the business decision-making process, including: theoretical underpinnings of ethics, stakeholders, and decision-making strategies." }, "MGT3608": { "subject": "MGT", "number": "3608", "name": "Tech Law And Ethics ", - "description": "This class will examine some of the ethical, legal, and social issues associated with computers, information systems, and public and private networks including the Internet. Full Description " + "description": "This class will examine some of the ethical, legal, and social issues associated with computers, information systems, and public and private networks including the Internet." }, "MGT3609": { "subject": "MGT", "number": "3609", "name": "Legal Aspects Real Est ", - "description": "Legal Aspects of Real Estate introduces students to legal considerations in real estate, including ownership, sale transactions, leasing, title insurance, financing, zoning and environmental laws. Full Description " + "description": "Legal Aspects of Real Estate introduces students to legal considerations in real estate, including ownership, sale transactions, leasing, title insurance, financing, zoning and environmental laws." }, "MGT3614": { "subject": "MGT", "number": "3614", "name": "Law for Entrepreneurs ", - "description": "This course will focus on legal issues which entrepreneurs face while growing a start-up business from infancy to a publicly held company. Full Description " + "description": "This course will focus on legal issues which entrepreneurs face while growing a start-up business from infancy to a publicly held company." }, "MGT3660": { "subject": "MGT", "number": "3660", "name": "International Business ", - "description": "Examines the position of the U.S. in world markets, various types of international business transactions, and the relationship of business to global economic, political-legal and cultural forces. Full Description " + "description": "Examines the position of the U.S. in world markets, various types of international business transactions, and the relationship of business to global economic, political-legal and cultural forces." }, "MGT3661": { "subject": "MGT", "number": "3661", "name": "Adv Concepts-Int'l Bus ", - "description": "Covers significant aspects of international business with a particular focus on the challenges associated with transnational corporations. Full Description " + "description": "Covers significant aspects of international business with a particular focus on the challenges associated with transnational corporations." }, "MGT3662": { "subject": "MGT", "number": "3662", "name": "Mgt in Healthcare Sector ", - "description": "An exploration of the healthcare sector in its most comprehensive sense, analyzing the healthcare \"system\" and resulting management issues. Full Description " + "description": "An exploration of the healthcare sector in its most comprehensive sense, analyzing the healthcare \"system\" and resulting management issues." }, "MGT3663": { "subject": "MGT", "number": "3663", "name": "Technology Strategy ", - "description": "Provides understanding of economic and strategic factors that guide firms' strategic decisions regarding the generation, commercialization, protection, and adoption of the technological innovations. Full Description " + "description": "Provides understanding of economic and strategic factors that guide firms' strategic decisions regarding the generation, commercialization, protection, and adoption of the technological innovations." }, "MGT3743": { "subject": "MGT", "number": "3743", "name": "Emerging Technologies ", - "description": "Analysis of emerging technologies and their impacts for firm practice, market practice, policy, and society. Credit not allowed for both MGT 3743 and ME 3743 or CS 3743. Full Description " + "description": "Analysis of emerging technologies and their impacts for firm practice, market practice, policy, and society. Credit not allowed for both MGT 3743 and ME 3743 or CS 3743." }, "MGT3744": { "subject": "MGT", "number": "3744", "name": "Mangn Prod Serv Tech Dev ", - "description": "Analysis of the managerial challenges of the product development process. Full Description " + "description": "Analysis of the managerial challenges of the product development process." }, "MGT3745": { "subject": "MGT", "number": "3745", "name": "Business Programming ", - "description": "An introduction to the basic concepts and skills of software programming and their applications to solving business problems. Full Description " + "description": "An introduction to the basic concepts and skills of software programming and their applications to solving business problems." }, "MGT3XXX": { "subject": "MGT", "number": "3XXX", "name": "Management Elective ", - "description": " Full Description " + "description": "" }, "MGT4010": { "subject": "MGT", "number": "4010", "name": "Business Taxation ", - "description": "Comprehensive survey of federal taxation of business. A focus on tax planning and decision making will extend to the study of the tax code and regulations. Full Description " + "description": "Comprehensive survey of federal taxation of business. A focus on tax planning and decision making will extend to the study of the tax code and regulations." }, "MGT4015": { "subject": "MGT", "number": "4015", "name": "Adv Managerial Acct ", - "description": "The course will examine current issues in managerial accounting. Full Description " + "description": "The course will examine current issues in managerial accounting." }, "MGT4026": { "subject": "MGT", "number": "4026", "name": "Fin Report & Analysis I ", - "description": "Intermediate-level treatment of revenue recognition, inventories, contracts, interest capitalization, property and equipment, intangibles, long-term liabilities, and shareholder's equity. Significant emphasis on financial analysis. Full Description " + "description": "Intermediate-level treatment of revenue recognition, inventories, contracts, interest capitalization, property and equipment, intangibles, long-term liabilities, and shareholder's equity. Significant emphasis on financial analysis." }, "MGT4027": { "subject": "MGT", "number": "4027", "name": "Fin Report & Analysis II ", - "description": "Advanced topics including tax reporting, leases, pensions, foreign currency transactions, hedging, statement translation, and business combinations and consolidations. Significant emphasis in financial analysis. Full Description " + "description": "Advanced topics including tax reporting, leases, pensions, foreign currency transactions, hedging, statement translation, and business combinations and consolidations. Significant emphasis in financial analysis." }, "MGT4028": { "subject": "MGT", "number": "4028", "name": "Fin Analy&Rpt-Tech Firms ", - "description": "An in-depth look at reporting standards for and the financial characteristics of technology firms, with an emphasis on the financial analysis of such firms. Full Description " + "description": "An in-depth look at reporting standards for and the financial characteristics of technology firms, with an emphasis on the financial analysis of such firms." }, "MGT4030": { "subject": "MGT", "number": "4030", "name": "International Accounting ", - "description": "An overview of accounting issues arising from the increased internationalization of business. Topics include comparative financial reporting among countries and accounting treatments of international transactions. Full Description " + "description": "An overview of accounting issues arising from the increased internationalization of business. Topics include comparative financial reporting among countries and accounting treatments of international transactions." }, "MGT4041": { "subject": "MGT", "number": "4041", "name": "Audit&Fin Control Sys ", - "description": "This course covers professional issues surrounding auditing and financial control systems. Topics include management fraud, legal liability, audit evidence, etc. Full Description " + "description": "This course covers professional issues surrounding auditing and financial control systems. Topics include management fraud, legal liability, audit evidence, etc." }, "MGT4043": { "subject": "MGT", "number": "4043", "name": "Advanced Fin Reporting ", - "description": "Financial reporting and accounting for: mergers and acquisitions; consolidated financial statements; international transactions and hedges of exchange-rate fluctuations; partnerships; and governmental and not-for-profit organizations. Credit not allowed for both MGT 4043 and MGT 6043. Full Description " + "description": "Financial reporting and accounting for: mergers and acquisitions; consolidated financial statements; international transactions and hedges of exchange-rate fluctuations; partnerships; and governmental and not-for-profit organizations. Credit not allowed for both MGT 4043 and MGT 6043." }, "MGT4045": { "subject": "MGT", "number": "4045", "name": "Sem-Advanced Accounting ", - "description": "An intensive treatment of a selection of contemporary accounting topics. Topical coverage may span subject matter ranging across the fields of auditing, systems, managerial and tax accounting. Full Description " + "description": "An intensive treatment of a selection of contemporary accounting topics. Topical coverage may span subject matter ranging across the fields of auditing, systems, managerial and tax accounting." }, "MGT4047": { "subject": "MGT", "number": "4047", "name": "Ethics & Accounting ", - "description": "The course is designed to expose students to issues surrounding accountants' professional ethics. Credit not allowed for both MGT 4047 and MGT 6047. Full Description " + "description": "The course is designed to expose students to issues surrounding accountants' professional ethics. Credit not allowed for both MGT 4047 and MGT 6047." }, "MGT4050": { "subject": "MGT", "number": "4050", "name": "Business Analytics ", - "description": "This course teaches the process of transforming data into business insights. It covers the methodologies, algorithms, issues, and challenges related to analyzing business data. Full Description " + "description": "This course teaches the process of transforming data into business insights. It covers the methodologies, algorithms, issues, and challenges related to analyzing business data." }, "MGT4051": { "subject": "MGT", "number": "4051", "name": "Decision Supp&Expert Sys ", - "description": "This course discusses the basic features of decision support systems and expert systems. It covers the development tools and business applications. Full Description " + "description": "This course discusses the basic features of decision support systems and expert systems. It covers the development tools and business applications." }, "MGT4052": { "subject": "MGT", "number": "4052", "name": "Systems Analysis& Design ", - "description": "An introductory course on the development life cycle of business information systems. It covers analysis and design tools and methodology. Credit not allowed for both MGT 4052 and CS 4052. Full Description " + "description": "An introductory course on the development life cycle of business information systems. It covers analysis and design tools and methodology. Credit not allowed for both MGT 4052 and CS 4052." }, "MGT4053": { "subject": "MGT", "number": "4053", "name": "Bus Data Communications ", - "description": "Introductory data communication concepts. Data communication applications in organizations. Overview of data communication products and services available from a technology consumer perspective. Full Description " + "description": "Introductory data communication concepts. Data communication applications in organizations. Overview of data communication products and services available from a technology consumer perspective." }, "MGT4055": { "subject": "MGT", "number": "4055", "name": "International IT Issues ", - "description": "An overview of international issues in the Information Technology Management (ITM) area. Topics include: offshore software development, transborder data flow restrictions, and global connectivity issues. Full Description " + "description": "An overview of international issues in the Information Technology Management (ITM) area. Topics include: offshore software development, transborder data flow restrictions, and global connectivity issues." }, "MGT4056": { "subject": "MGT", "number": "4056", "name": "Electronic Commerce ", - "description": "This course examines the business and technical issues related to electronic commerce applications, such as the Internet, WWW, EDI, and electronic linkages between trading partners. Full Description " + "description": "This course examines the business and technical issues related to electronic commerce applications, such as the Internet, WWW, EDI, and electronic linkages between trading partners." }, "MGT4057": { "subject": "MGT", "number": "4057", "name": "Bus Process Analy&Design ", - "description": "Business processes are the mechanisms by which work is organized and performed. This course covers the analysis of business processes and efficient redesign through technology. Credit will not be awarded for both CS 4057 and MGT 4057. Full Description " + "description": "Business processes are the mechanisms by which work is organized and performed. This course covers the analysis of business processes and efficient redesign through technology. Credit will not be awarded for both CS 4057 and MGT 4057." }, "MGT4058": { "subject": "MGT", "number": "4058", "name": "Database Management ", - "description": "An introductory course on databases providing hands-on experience with a DBMS. Topics include data modeling, relational database design, and SQL. Full Description " + "description": "An introductory course on databases providing hands-on experience with a DBMS. Topics include data modeling, relational database design, and SQL." }, "MGT4066": { "subject": "MGT", "number": "4066", "name": "Corporate Restructuring ", - "description": "This course examines the finance, economics, law, and business strategies that underlie major corporate restructuring transactions. Topics include valuation, acquisitions, divestitures, and high-leveraged transactions. Full Description " + "description": "This course examines the finance, economics, law, and business strategies that underlie major corporate restructuring transactions. Topics include valuation, acquisitions, divestitures, and high-leveraged transactions." }, "MGT4067": { "subject": "MGT", "number": "4067", "name": "Fncl Mkts Trading&Struct ", - "description": "The course focuses on liquidity, market structure and trading. Attention is given to the efficiency of trading systems and the role of intermediaries on market structure issues. Full Description " + "description": "The course focuses on liquidity, market structure and trading. Attention is given to the efficiency of trading systems and the role of intermediaries on market structure issues." }, "MGT4068": { "subject": "MGT", "number": "4068", "name": "Fixed Income ", - "description": "This course covers the important securites that trade in the fixed income market and the valuation models that are used to price them. Full Description " + "description": "This course covers the important securites that trade in the fixed income market and the valuation models that are used to price them." }, "MGT4070": { "subject": "MGT", "number": "4070", "name": "International Finance ", - "description": "Financial management in an international setting. Topics include: foreign exchange markets, exchange risk management, international portfolio investment, and foreign direct investment. Full Description " + "description": "Financial management in an international setting. Topics include: foreign exchange markets, exchange risk management, international portfolio investment, and foreign direct investment." }, "MGT4071": { "subject": "MGT", "number": "4071", "name": "Multinational Fin Mgt ", - "description": "This course emphasizes decision making for the multimedia firm amidst exchange rate fluctuations, differing tax structures across countries, and political risk via lectures, case-discussion and analysis, and project-based learning. Full Description " + "description": "This course emphasizes decision making for the multimedia firm amidst exchange rate fluctuations, differing tax structures across countries, and political risk via lectures, case-discussion and analysis, and project-based learning." }, "MGT4072": { "subject": "MGT", "number": "4072", "name": "Entrepreneurial Finance ", - "description": "This course has been developed to expand the student's understanding and knowledge of the financial aspects of starting, funding, operating, and/or exiting an entrepreneurial venture. Credit not allowed for both MGT 4072 and MGT 6086. Full Description " + "description": "This course has been developed to expand the student's understanding and knowledge of the financial aspects of starting, funding, operating, and/or exiting an entrepreneurial venture. Credit not allowed for both MGT 4072 and MGT 6086." }, "MGT4102": { "subject": "MGT", "number": "4102", "name": "Management Consulting ", - "description": "This course explores being a Management Consultant, and will introduce students to consulting frameworks and methods; simulate consulting activities and situations using cases. Full Description " + "description": "This course explores being a Management Consultant, and will introduce students to consulting frameworks and methods; simulate consulting activities and situations using cases." }, "MGT4106": { "subject": "MGT", "number": "4106", "name": "Teams in Organizations ", - "description": "This course introduces students to the critical concepts and frameworks required to implement and diagnose effective team processes. Full Description " + "description": "This course introduces students to the critical concepts and frameworks required to implement and diagnose effective team processes." }, "MGT4116": { "subject": "MGT", "number": "4116", "name": "Gend, Race, Ethn Org Behav ", - "description": "This course will examine how managers and employees become more effective leaders by understanding the role gender, race and ethnicity plays in the life of the organization. Credit not allowed for both MGT 4116 and MGT 6116. Full Description " + "description": "This course will examine how managers and employees become more effective leaders by understanding the role gender, race and ethnicity plays in the life of the organization. Credit not allowed for both MGT 4116 and MGT 6116." }, "MGT4117": { "subject": "MGT", "number": "4117", "name": "Global Workforce Mgt ", - "description": "This course examines how an organization deploys and manages a global workforce while considering cultural and economic differences across the world. Full Description " + "description": "This course examines how an organization deploys and manages a global workforce while considering cultural and economic differences across the world." }, "MGT4181": { "subject": "MGT", "number": "4181", "name": "Business Forecasting ", - "description": "The course covers statistical tools to forecast using the past behavior of data. Topics include moving average and autoregressive models, trends, cycles and volatility. Full Description " + "description": "The course covers statistical tools to forecast using the past behavior of data. Topics include moving average and autoregressive models, trends, cycles and volatility." }, "MGT4190": { "subject": "MGT", "number": "4190", "name": "Strategic Quality Mgt ", - "description": "This course examines the philosophy and techniques of strategic quality management (e.g. cycle time mgt., learning organizations, quality control) as means to promote individual productivity and improve organizational competitiveness. Full Description " + "description": "This course examines the philosophy and techniques of strategic quality management (e.g. cycle time mgt., learning organizations, quality control) as means to promote individual productivity and improve organizational competitiveness." }, "MGT4191": { "subject": "MGT", "number": "4191", "name": "Entrepreneurship Forum ", - "description": "This course provides an understanding of the entrepreneurial process, explores the role of the entrepreneur, and identifies the critical issues in starting ventures and working in entrepreneurial organizations. Full Description " + "description": "This course provides an understanding of the entrepreneurial process, explores the role of the entrepreneur, and identifies the critical issues in starting ventures and working in entrepreneurial organizations." }, "MGT4192": { "subject": "MGT", "number": "4192", "name": "IMPACT Forum ", - "description": "With the a speaker series as an integral component, the class explores the competencies and aspects of making an impact. Through speakers, articles and case studies it presents examples for review and insights. Full Description " + "description": "With the a speaker series as an integral component, the class explores the competencies and aspects of making an impact. Through speakers, articles and case studies it presents examples for review and insights." }, "MGT4193": { "subject": "MGT", "number": "4193", "name": "Serv Lead Values Systems ", - "description": "An exploration of the nature and integration of inidividual and organizational values, systemic thinking, and the concept of servant leadership. Learning occurs through case studies, simulations, readings, personal reflection and team activities. Full Description " + "description": "An exploration of the nature and integration of inidividual and organizational values, systemic thinking, and the concept of servant leadership. Learning occurs through case studies, simulations, readings, personal reflection and team activities." }, "MGT4194": { "subject": "MGT", "number": "4194", "name": "Social Entrepreneurship ", - "description": "Social Entrepreneurship applies innovative solutions to the world's pressing social problems by having students utilize leadership and managerial skills to address major challenges. Full Description " + "description": "Social Entrepreneurship applies innovative solutions to the world's pressing social problems by having students utilize leadership and managerial skills to address major challenges." }, "MGT4195": { "subject": "MGT", "number": "4195", "name": "Strategic Management ", - "description": "The use of cases, guest lecturers, and gaming to integrate analysis and measurement tools, functional areas, and public policy issues. The objective is to develop skills in broad areas of rational decision-making in the administrative context of uncertainty. Full Description " + "description": "The use of cases, guest lecturers, and gaming to integrate analysis and measurement tools, functional areas, and public policy issues. The objective is to develop skills in broad areas of rational decision-making in the administrative context of uncertainty." }, "MGT4303": { "subject": "MGT", "number": "4303", "name": "Personal Sell& Sales Mgt ", - "description": "Students will obtain an understanding of the management of the sales function. The importance of the marketing-sales interface will be stressed. Full Description " + "description": "Students will obtain an understanding of the management of the sales function. The importance of the marketing-sales interface will be stressed." }, "MGT4304": { "subject": "MGT", "number": "4304", "name": "Strategic Brand Mgt ", - "description": "This course teaches undergraduate students about the importance of brands, and makes them knowledgeable about, and able to apply instruments to create, monitor, and manage brands. Full Description " + "description": "This course teaches undergraduate students about the importance of brands, and makes them knowledgeable about, and able to apply instruments to create, monitor, and manage brands." }, "MGT4305": { "subject": "MGT", "number": "4305", "name": "Business to Business Mkt ", - "description": "This course studies the marketing of products and services for resale, for use in producing other goods and services, and for the operations of an enterprise. Full Description " + "description": "This course studies the marketing of products and services for resale, for use in producing other goods and services, and for the operations of an enterprise." }, "MGT4307": { "subject": "MGT", "number": "4307", "name": "Strategic Marketing ", - "description": "Students will obtain an understanding of strategic marketing development and alternatives. Analysis and implementation through functional marketing strategies will be stressed. Full Description " + "description": "Students will obtain an understanding of strategic marketing development and alternatives. Analysis and implementation through functional marketing strategies will be stressed." }, "MGT4308": { "subject": "MGT", "number": "4308", "name": "Adv&Prom: Integ Mktg Comm ", - "description": "This course is designed to focus on the primary marketing of communication through advertising and promotion implemented with an integrated approach. Strategic and tactical dimensions are covered for both traditional media such as broadcast, print, out-of-home and direct, as well as new media including the internet, mobile, and other trends in the industry. Full Description " + "description": "This course is designed to focus on the primary marketing of communication through advertising and promotion implemented with an integrated approach. Strategic and tactical dimensions are covered for both traditional media such as broadcast, print, out-of-home and direct, as well as new media including the internet, mobile, and other trends in the industry." }, "MGT4309": { "subject": "MGT", "number": "4309", "name": "Services Marketing ", - "description": "Explores how many of the traditional marketing models can be adapted to the marketing of services, as well as introducing entirely new concepts and frameworks specifically applicable to services and services marketing. Full Description " + "description": "Explores how many of the traditional marketing models can be adapted to the marketing of services, as well as introducing entirely new concepts and frameworks specifically applicable to services and services marketing." }, "MGT4311": { "subject": "MGT", "number": "4311", "name": "Digital Marketing ", - "description": "This course explores the various components of the digital channel including social, mobile, and search engine marketing to understand how to implement an effective digital marketing strategy. Full Description " + "description": "This course explores the various components of the digital channel including social, mobile, and search engine marketing to understand how to implement an effective digital marketing strategy." }, "MGT4331": { "subject": "MGT", "number": "4331", "name": "Consumer Behavior ", - "description": "An applied course that provides a basic understanding of the behavioral science concepts to explain the behavior of consumers in the marketplace. Full Description " + "description": "An applied course that provides a basic understanding of the behavioral science concepts to explain the behavior of consumers in the marketplace." }, "MGT4332": { "subject": "MGT", "number": "4332", "name": "Database & CRM Strategy ", - "description": "Provides an understanding of analytic techniques and computer models in analyzing customer-centric data and developing customer relationship (CRM) strategy. Full Description " + "description": "Provides an understanding of analytic techniques and computer models in analyzing customer-centric data and developing customer relationship (CRM) strategy." }, "MGT4335": { "subject": "MGT", "number": "4335", "name": "International Marketing ", - "description": "Students will obtain an understanding of marketing across national borders and cultures. The differences and similarities throughout the marketing functions are explored. Full Description " + "description": "Students will obtain an understanding of marketing across national borders and cultures. The differences and similarities throughout the marketing functions are explored." }, "MGT4341": { "subject": "MGT", "number": "4341", "name": "Mgt Healthcare Operations ", - "description": "Explore the roles of operations management practices and health information technologies in addressing the challenges in the healthcare enterprise and harnessing opportunities for transforming it. Full Description " + "description": "Explore the roles of operations management practices and health information technologies in addressing the challenges in the healthcare enterprise and harnessing opportunities for transforming it." }, "MGT4352": { "subject": "MGT", "number": "4352", "name": "Operations Resource Plan ", - "description": "The management of material flows within an enterprise will be covered by tracking the evolution of operational planning and execution systems through the enterprise resource planning (ERP) framework. Full Description " + "description": "The management of material flows within an enterprise will be covered by tracking the evolution of operational planning and execution systems through the enterprise resource planning (ERP) framework." }, "MGT4353": { "subject": "MGT", "number": "4353", "name": "Operations Strategy ", - "description": "This course provides knowledge about developing, implementing and evaluating operations strategy. It stresses the relationships between the operations and other functions of the organization. Full Description " + "description": "This course provides knowledge about developing, implementing and evaluating operations strategy. It stresses the relationships between the operations and other functions of the organization." }, "MGT4360": { "subject": "MGT", "number": "4360", "name": "Global Operations ", - "description": "This course is designed to present issues critical to the globalization of operations, and addresses strategic and tactical issues pertaining to an organization's global operations and supply chain activities. Full Description " + "description": "This course is designed to present issues critical to the globalization of operations, and addresses strategic and tactical issues pertaining to an organization's global operations and supply chain activities." }, "MGT4365": { "subject": "MGT", "number": "4365", "name": "Quality Control ", - "description": "This course focuses on statistical process control, acceptance sampling, robust design, and other general methodologies for quality improvement. Full Description " + "description": "This course focuses on statistical process control, acceptance sampling, robust design, and other general methodologies for quality improvement." }, "MGT4366": { "subject": "MGT", "number": "4366", "name": "Service Operations Mgt ", - "description": "This course analyzes operational performance for the service and for service-support functions of manufacturers. Industries include information services, health care, parking, transportation, distribution, and retail. Full Description " + "description": "This course analyzes operational performance for the service and for service-support functions of manufacturers. Industries include information services, health care, parking, transportation, distribution, and retail." }, "MGT4367": { "subject": "MGT", "number": "4367", "name": "Revenue Analytics ", - "description": "This course examines how an organization deploys and manages model and data driven pricing techniques to maximize revenues. Full Description " + "description": "This course examines how an organization deploys and manages model and data driven pricing techniques to maximize revenues." }, "MGT4401": { "subject": "MGT", "number": "4401", "name": "Supply Chain Modeling ", - "description": "The objective of this course is to provide students with tools and models for matching supply and demand in the most cost effective way. Full Description " + "description": "The objective of this course is to provide students with tools and models for matching supply and demand in the most cost effective way." }, "MGT4450": { "subject": "MGT", "number": "4450", "name": "Project Management ", - "description": "Concepts, techniques, and tools from the project management body of knowledge covering initiating, planning, controlling, executing, and closing projects. Includes agile techniques and certification preparation. Credit will not be awarded for both MGT 4450 and MGT 6450. Full Description " + "description": "Concepts, techniques, and tools from the project management body of knowledge covering initiating, planning, controlling, executing, and closing projects. Includes agile techniques and certification preparation. Credit will not be awarded for both MGT 4450 and MGT 6450." }, "MGT4598": { "subject": "MGT", "number": "4598", "name": "Management Internship ", - "description": "Recognition for a paid, full or part time, employment experience that is relevant to a student's management education. Full Description " + "description": "Recognition for a paid, full or part time, employment experience that is relevant to a student's management education." }, "MGT4599": { "subject": "MGT", "number": "4599", "name": "Internship&Independent Study ", - "description": "Independent study conducted for one student under the guidance of a faculty member in association with an unpaid internship. Full Description " + "description": "Independent study conducted for one student under the guidance of a faculty member in association with an unpaid internship." }, "MGT4610": { "subject": "MGT", "number": "4610", "name": "Law, Mgt, & Economics ", - "description": "Interrelationships among law, economics, and management. Focuses on the legal and economic aspects of management decisions. Full Description " + "description": "Interrelationships among law, economics, and management. Focuses on the legal and economic aspects of management decisions." }, "MGT4611": { "subject": "MGT", "number": "4611", "name": "Integrative Mgt Analysis ", - "description": "Integrates the functional areas of management, economics, and the external environment in which businesses operate. The course is designed to broaden the student's perspective on management. Full Description " + "description": "Integrates the functional areas of management, economics, and the external environment in which businesses operate. The course is designed to broaden the student's perspective on management." }, "MGT4670": { "subject": "MGT", "number": "4670", "name": "Entrepreneurship ", - "description": "Provides students with an understanding of the process of establishing a technology-based venture. Students learn how to evaluate market opportunities, conduct feasibility studies, create venture teams, and write business plans. Full Description " + "description": "Provides students with an understanding of the process of establishing a technology-based venture. Students learn how to evaluate market opportunities, conduct feasibility studies, create venture teams, and write business plans." }, "MGT4698": { "subject": "MGT", "number": "4698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "MGT4699": { "subject": "MGT", "number": "4699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "MGT4725": { "subject": "MGT", "number": "4725", "name": "Info Security Policy ", - "description": "Information security vulnerabilities and risks; legal, cost, privacy, and technology constraints; derivation of strategies; technical and procedural means of achieving desired ends. Credit will not be awarded for both MGT 4725 and MGT 6725 or CS 6725 or CS 4725. Full Description " + "description": "Information security vulnerabilities and risks; legal, cost, privacy, and technology constraints; derivation of strategies; technical and procedural means of achieving desired ends. Credit will not be awarded for both MGT 4725 and MGT 6725 or CS 6725 or CS 4725." }, "MGT4726": { "subject": "MGT", "number": "4726", "name": "Privacy Tech Policy Law ", - "description": "This course takes a multi-disciplinary approach to privacy, a topic of great interest in the technology, policy, ethics, law, and business realms. Credit will not be awarded for both MGT 4726 and CS 4726 or CS 6726 or MGT 6726. Full Description " + "description": "This course takes a multi-disciplinary approach to privacy, a topic of great interest in the technology, policy, ethics, law, and business realms. Credit will not be awarded for both MGT 4726 and CS 4726 or CS 6726 or MGT 6726." }, "MGT4741": { "subject": "MGT", "number": "4741", "name": "Int Mgt Dev-Proj Prep ", - "description": "Individual and group-based experiential learning activities to develop integrated human system management skills that prepare students for more successful capstone collaboration and learning. Credit not allowed for both MGT 4741 and CS 4741 or ME 4741. Full Description " + "description": "Individual and group-based experiential learning activities to develop integrated human system management skills that prepare students for more successful capstone collaboration and learning. Credit not allowed for both MGT 4741 and CS 4741 or ME 4741." }, "MGT4742": { "subject": "MGT", "number": "4742", "name": "Tech & Mgt Cap Proj ", - "description": "Project-based course where students in the Technology and Management Program will work in inter-disciplinary teams on projects provided by corporate affiliates. Credit not allowed for both MGT 4742 and CS 4742 or ME 4742. Full Description " + "description": "Project-based course where students in the Technology and Management Program will work in inter-disciplinary teams on projects provided by corporate affiliates. Credit not allowed for both MGT 4742 and CS 4742 or ME 4742." }, "MGT4803": { "subject": "MGT", "number": "4803", "name": "Special Topics ", - "description": "Permits a group of students and a professor to pursue areas of management not extensively treated in any other course. Full Description " + "description": "Permits a group of students and a professor to pursue areas of management not extensively treated in any other course." }, "MGT4811": { "subject": "MGT", "number": "4811", "name": "Special Topics ", - "description": "Permits a group of students and a professor to pursue areas of management not extensively treated in other courses. Full Description " + "description": "Permits a group of students and a professor to pursue areas of management not extensively treated in other courses." }, "MGT4812": { "subject": "MGT", "number": "4812", "name": "Special Topics ", - "description": "Permits a group of students and a professor to pursue areas of management not extensively treated in other courses. Full Description " + "description": "Permits a group of students and a professor to pursue areas of management not extensively treated in other courses." }, "MGT4813": { "subject": "MGT", "number": "4813", "name": "Special Topics ", - "description": "Permits a group of students and a professor to pursue areas of management not extensively treated in other courses. Full Description " + "description": "Permits a group of students and a professor to pursue areas of management not extensively treated in other courses." }, "MGT4814": { "subject": "MGT", "number": "4814", "name": "Special Topics ", - "description": "Permits a group of students and a professor to pursue areas of management not extensively treated in other courses. Full Description " + "description": "Permits a group of students and a professor to pursue areas of management not extensively treated in other courses." }, "MGT4815": { "subject": "MGT", "number": "4815", "name": "Special Topics ", - "description": "Permits a group of students and a professor to pursue areas of management not extensively treated in other courses. Full Description " + "description": "Permits a group of students and a professor to pursue areas of management not extensively treated in other courses." }, "MGT4823": { "subject": "MGT", "number": "4823", "name": "Special Topics ", - "description": "Permits a group of students and a professor to pursue areas of management not extensively treated in any other courses. Full Description " + "description": "Permits a group of students and a professor to pursue areas of management not extensively treated in any other courses." }, "MGT4910": { "subject": "MGT", "number": "4910", "name": "Special Problems ", - "description": "Independent study conducted for one student under the guidance of a faculty member. Full Description " + "description": "Independent study conducted for one student under the guidance of a faculty member." }, "MGT4911": { "subject": "MGT", "number": "4911", "name": "Special Problems ", - "description": "Independent study conducted for one student under the guidance of a faculty member. Full Description " + "description": "Independent study conducted for one student under the guidance of a faculty member." }, "MGT4912": { "subject": "MGT", "number": "4912", "name": "Special Problems ", - "description": "Independent study conducted for one student under the guidance of a faculty member. Full Description " + "description": "Independent study conducted for one student under the guidance of a faculty member." }, "MGT4XXX": { "subject": "MGT", "number": "4XXX", "name": "Management Elective ", - "description": " Full Description " + "description": "" }, "MGT6000": { "subject": "MGT", "number": "6000", "name": "Financial & Mgrl Acct I ", - "description": "A foundation course in measuring and reporting the financial performance and status of the firm, as well as basic concepts in cost and managerial accounting. Full Description " + "description": "A foundation course in measuring and reporting the financial performance and status of the firm, as well as basic concepts in cost and managerial accounting." }, "MGT6010": { "subject": "MGT", "number": "6010", "name": "Business Taxation ", - "description": "Comprehensive survey of federal taxation of business. A focus on tax planning and decision making will extend the study of the tax code regulations. Full Description " + "description": "Comprehensive survey of federal taxation of business. A focus on tax planning and decision making will extend the study of the tax code regulations." }, "MGT6015": { "subject": "MGT", "number": "6015", "name": "Managerial Accounting II ", - "description": "The course covers cost estimation, standard costs, variable costing, relevant costs, transfer pricing, performance evaluation, cost of quality, and activity-based costing for service. Full Description " + "description": "The course covers cost estimation, standard costs, variable costing, relevant costs, transfer pricing, performance evaluation, cost of quality, and activity-based costing for service." }, "MGT6020": { "subject": "MGT", "number": "6020", "name": "Fin Reporting & Analy I ", - "description": "Intermediate-level treatment of revenue recognition, inventories, contacts, interest capitalization, property and equipment, intangibles, long-term liabilities, and shareholders' equity. Significant emphasis on financial analysis. Full Description " + "description": "Intermediate-level treatment of revenue recognition, inventories, contacts, interest capitalization, property and equipment, intangibles, long-term liabilities, and shareholders' equity. Significant emphasis on financial analysis." }, "MGT6022": { "subject": "MGT", "number": "6022", "name": "Fin Reporting & Analy II ", - "description": "Advanced topics including tax reporting, leases, and pensions. Full Description " + "description": "Advanced topics including tax reporting, leases, and pensions." }, "MGT6028": { "subject": "MGT", "number": "6028", "name": "Fin Analy&Rpt-Tech Firms ", - "description": "An in-depth look at reporting standards for, and the financial characteristics of technology firms, with an emphasis on the financial analysis of such firms. Full Description " + "description": "An in-depth look at reporting standards for, and the financial characteristics of technology firms, with an emphasis on the financial analysis of such firms." }, "MGT6030": { "subject": "MGT", "number": "6030", "name": "International Accounting ", - "description": "An overview of accounting issues arising from the increased internationalization of business. Topics include comparative financial reporting among countries and accounting treatments of international transactions. Full Description " + "description": "An overview of accounting issues arising from the increased internationalization of business. Topics include comparative financial reporting among countries and accounting treatments of international transactions." }, "MGT6042": { "subject": "MGT", "number": "6042", "name": "Audit & Fin Control Sys ", - "description": "This course covers professional issues surrounding auditing and financial control systems. Topics include management fraud, legal liability, audit evidence, etc. Full Description " + "description": "This course covers professional issues surrounding auditing and financial control systems. Topics include management fraud, legal liability, audit evidence, etc." }, "MGT6043": { "subject": "MGT", "number": "6043", "name": "Advanced Fin Reporting ", - "description": "Financial reporting for mergers and acquisitions; consolidated financial statements; international transactions and hedges of exchange-rate fluctuations; partnerships; and governmental and not-for-profit financial reporting. Credit not allowed for both MGT 4043 and MGT 6043. Full Description " + "description": "Financial reporting for mergers and acquisitions; consolidated financial statements; international transactions and hedges of exchange-rate fluctuations; partnerships; and governmental and not-for-profit financial reporting. Credit not allowed for both MGT 4043 and MGT 6043." }, "MGT6045": { "subject": "MGT", "number": "6045", "name": "Seminar-Adv Accounting ", - "description": "An intensive treatment of a selection of contemporary accounting topics. Topical coverage may span subject matter ranging across the fields of auditing, systems, managerial, and tax accounting. Full Description " + "description": "An intensive treatment of a selection of contemporary accounting topics. Topical coverage may span subject matter ranging across the fields of auditing, systems, managerial, and tax accounting." }, "MGT6047": { "subject": "MGT", "number": "6047", "name": "Ethics & Accounting ", - "description": "The course is designed to expose students to issues surrounding accountants' professional ethics. Credit not allowed for both MGT 6047 and MGT 4047. Full Description " + "description": "The course is designed to expose students to issues surrounding accountants' professional ethics. Credit not allowed for both MGT 6047 and MGT 4047." }, "MGT6051": { "subject": "MGT", "number": "6051", "name": "Database Devel & Appl ", - "description": "The role of databases in the modern enterprise. Design and development of database systems. Applications in accounting marketing, operations, and human resource systems. Full Description " + "description": "The role of databases in the modern enterprise. Design and development of database systems. Applications in accounting marketing, operations, and human resource systems." }, "MGT6053": { "subject": "MGT", "number": "6053", "name": "Bus Data Communications ", - "description": "Introductory data communication concepts. Data communication applications in organizations. Overview of data communications products and services available from a technology consumer perspective. Full Description " + "description": "Introductory data communication concepts. Data communication applications in organizations. Overview of data communications products and services available from a technology consumer perspective." }, "MGT6056": { "subject": "MGT", "number": "6056", "name": "Electronic Commerce ", - "description": "This course examines the business and technical issues related to electronic commerce applications, such as the Internet, WWW, EDI, and electronic linkages between trading partners. Full Description " + "description": "This course examines the business and technical issues related to electronic commerce applications, such as the Internet, WWW, EDI, and electronic linkages between trading partners." }, "MGT6057": { "subject": "MGT", "number": "6057", "name": "Bus Process Analy&Design ", - "description": "Business processes are the mechanisms by which work is organized and performed. This course covers the analysis of business processes and efficient redesign through technology. Full Description " + "description": "Business processes are the mechanisms by which work is organized and performed. This course covers the analysis of business processes and efficient redesign through technology." }, "MGT6058": { "subject": "MGT", "number": "6058", "name": "Info Tech Practicum ", - "description": "Student teams will work on information technology management projects at participating organizations. They will identify key IT management issues and develop solutions. Full Description " + "description": "Student teams will work on information technology management projects at participating organizations. They will identify key IT management issues and develop solutions." }, "MGT6059": { "subject": "MGT", "number": "6059", "name": "Emerging Technologies ", - "description": " Full Description " + "description": "" }, "MGT6060": { "subject": "MGT", "number": "6060", "name": "Financial Management ", - "description": "An introduction to finance. Topics include time value of money, capital budgeting, risk and return, capital structure dividend policy, and working capital management. Full Description " + "description": "An introduction to finance. Topics include time value of money, capital budgeting, risk and return, capital structure dividend policy, and working capital management." }, "MGT6066": { "subject": "MGT", "number": "6066", "name": "Corporate Restructuring ", - "description": "This course seeks to give students an understanding of issues in corporate restructuring. Topics include valuation, mergers, acquisitions, spin-offs, financial distress, corporate governance, and high leveraged transactions. Full Description " + "description": "This course seeks to give students an understanding of issues in corporate restructuring. Topics include valuation, mergers, acquisitions, spin-offs, financial distress, corporate governance, and high leveraged transactions." }, "MGT6067": { "subject": "MGT", "number": "6067", "name": "Fin Commerical Real Est ", - "description": "The course will examine commercial real estate assets from two perspectives: the unique nature of the financing and ownership structures and their role as an asset class in investment portfolios. Full Description " + "description": "The course will examine commercial real estate assets from two perspectives: the unique nature of the financing and ownership structures and their role as an asset class in investment portfolios." }, "MGT6070": { "subject": "MGT", "number": "6070", "name": "International Finance ", - "description": "Financial management in an international setting. Topics include: foreign exchange markets, exchange risk management, international portfolio investment, and foreign direct investments. Full Description " + "description": "Financial management in an international setting. Topics include: foreign exchange markets, exchange risk management, international portfolio investment, and foreign direct investments." }, "MGT6071": { "subject": "MGT", "number": "6071", "name": "Multinational Fin Mgt ", - "description": "This course emphasizes decision making for the multinational firm amidst exchange rate fluctuations, differing tax structures across countries, and political risk via case discussion and analysis. Full Description " + "description": "This course emphasizes decision making for the multinational firm amidst exchange rate fluctuations, differing tax structures across countries, and political risk via case discussion and analysis." }, "MGT6078": { "subject": "MGT", "number": "6078", "name": "Finance & Investments ", - "description": "An introduction to finance, including the fundamental concepts of financial accounting, corporate finance and portfolio optimization. This course emphasizes basic concepts related to both equities and fixed income securities. Credit not allowed for MGT 6078 and MGT 6080. Full Description " + "description": "An introduction to finance, including the fundamental concepts of financial accounting, corporate finance and portfolio optimization. This course emphasizes basic concepts related to both equities and fixed income securities. Credit not allowed for MGT 6078 and MGT 6080." }, "MGT6080": { "subject": "MGT", "number": "6080", "name": "Investments ", - "description": "Introduction to securities markets and study of theory and practice of security analysis and portfolio management concepts as applied to equities and fixed-income securities. Credit not allowed for MGT 6078 and MGT 6080. Full Description " + "description": "Introduction to securities markets and study of theory and practice of security analysis and portfolio management concepts as applied to equities and fixed-income securities. Credit not allowed for MGT 6078 and MGT 6080." }, "MGT6081": { "subject": "MGT", "number": "6081", "name": "Derivative Securities ", - "description": "An introduction to options, futures, and swaps is provided. Concepts of arbitrage, index trading, and portfolio insurance are discussed. Full Description " + "description": "An introduction to options, futures, and swaps is provided. Concepts of arbitrage, index trading, and portfolio insurance are discussed." }, "MGT6082": { "subject": "MGT", "number": "6082", "name": "Fundmnt Real Estate Dev. ", - "description": "An overview of the real estate development process from concept through design, feasibility, financing, construction, marketing, management and ultimate sale or long term financing. Full Description " + "description": "An overview of the real estate development process from concept through design, feasibility, financing, construction, marketing, management and ultimate sale or long term financing." }, "MGT6083": { "subject": "MGT", "number": "6083", "name": "Real Estate Practicum ", - "description": "Designed for graduate students with an interest in real estate. It consists of a one semester case study for a specific company or competitive program. Full Description " + "description": "Designed for graduate students with an interest in real estate. It consists of a one semester case study for a specific company or competitive program." }, "MGT6086": { "subject": "MGT", "number": "6086", "name": "Entrep Financ&Pvt Equity ", - "description": "This course teaches future managers and entrepreneurs the financial perspective of value creation. Issues related to venture capital and private equity industry are emphasized. Credit not allowed for both MGT 6086 and MGT 4072. Full Description " + "description": "This course teaches future managers and entrepreneurs the financial perspective of value creation. Issues related to venture capital and private equity industry are emphasized. Credit not allowed for both MGT 6086 and MGT 4072." }, "MGT6090": { "subject": "MGT", "number": "6090", "name": "Mgt of Fin Institutions ", - "description": "Introduction to the various risks faced by financial institutions and a detailed analysis of the tools used to manage these risks. Full Description " + "description": "Introduction to the various risks faced by financial institutions and a detailed analysis of the tools used to manage these risks." }, "MGT6100": { "subject": "MGT", "number": "6100", "name": "Organizational Behavior ", - "description": "The focus of this course is on behavioral issues in the management of individual, team, and organizations' performance. Full Description " + "description": "The focus of this course is on behavioral issues in the management of individual, team, and organizations' performance." }, "MGT6101": { "subject": "MGT", "number": "6101", "name": "Mging Human Resources ", - "description": "An examination of the tools and procedures used by organizations to attract, select, and retain employees within the context of the legal and regulatory environment. Full Description " + "description": "An examination of the tools and procedures used by organizations to attract, select, and retain employees within the context of the legal and regulatory environment." }, "MGT6106": { "subject": "MGT", "number": "6106", "name": "Teamwork-Organizations ", - "description": "The focus of the course is on understanding the use, management, and performance of teams and teamwork in organizational settings. Full Description " + "description": "The focus of the course is on understanding the use, management, and performance of teams and teamwork in organizational settings." }, "MGT6107": { "subject": "MGT", "number": "6107", "name": "Leadership & Org Change ", - "description": "An examination of theories and practices for designing and implementing major organizational change and the role played by leadership, power, and influence in change process. Full Description " + "description": "An examination of theories and practices for designing and implementing major organizational change and the role played by leadership, power, and influence in change process." }, "MGT6110": { "subject": "MGT", "number": "6110", "name": "Negotiation and Conflict ", - "description": "This course covers the theory and process of negotiation and conflict resolution as it is practiced in different settings. Full Description " + "description": "This course covers the theory and process of negotiation and conflict resolution as it is practiced in different settings." }, "MGT6111": { "subject": "MGT", "number": "6111", "name": "Innov&Entrepreneur Behav ", - "description": "An examination of organizational policies, practices, and cultures that foster innovative and entrepreneurial behavior even in the context of large organizations. Full Description " + "description": "An examination of organizational policies, practices, and cultures that foster innovative and entrepreneurial behavior even in the context of large organizations." }, "MGT6113": { "subject": "MGT", "number": "6113", "name": "NonProfit Team Cons Proj ", - "description": "Teams work on a project developed in consultation with a not for profit organization, and present results to organizations and boards. Full Description " + "description": "Teams work on a project developed in consultation with a not for profit organization, and present results to organizations and boards." }, "MGT6114": { "subject": "MGT", "number": "6114", "name": "Leadership Development ", - "description": "Preparation for becoming leaders of organizations, to exercise leadership, and to embark on paths of personal leadership development through readings, lectures, speakers, and leadership groups. Full Description " + "description": "Preparation for becoming leaders of organizations, to exercise leadership, and to embark on paths of personal leadership development through readings, lectures, speakers, and leadership groups." }, "MGT6116": { "subject": "MGT", "number": "6116", "name": "Gend, Race, Ethn Org Behav ", - "description": "This course will examine how managers and employees become more effective leaders by understanding the role gender, race and ethnicity plays in the life of the organization. Full Description " + "description": "This course will examine how managers and employees become more effective leaders by understanding the role gender, race and ethnicity plays in the life of the organization." }, "MGT6123": { "subject": "MGT", "number": "6123", "name": "Information Tech Mgt ", - "description": "A study in understanding and managing information technology, strategic uses of IT, and electronic commerce. Full Description " + "description": "A study in understanding and managing information technology, strategic uses of IT, and electronic commerce." }, "MGT6124": { "subject": "MGT", "number": "6124", "name": "Legal Environment of Bus ", - "description": "This course involves an examination of laws, rules, and standards of regulation and conduct, guidelines, and systems of conflict resolution relating to business operations and administration. Full Description " + "description": "This course involves an examination of laws, rules, and standards of regulation and conduct, guidelines, and systems of conflict resolution relating to business operations and administration." }, "MGT6125": { "subject": "MGT", "number": "6125", "name": "Strategic Management ", - "description": "Designed to provide a view of business organizations, with the focus on the total enterprise - the industry and competitive environment in which the organization operates. Full Description " + "description": "Designed to provide a view of business organizations, with the focus on the total enterprise - the industry and competitive environment in which the organization operates." }, "MGT6126": { "subject": "MGT", "number": "6126", "name": "Integrative Mgt Exper ", - "description": "IME is a team-based and project-based course that requires students to draw on all core skills areas for successful completion. Full Description " + "description": "IME is a team-based and project-based course that requires students to draw on all core skills areas for successful completion." }, "MGT6127": { "subject": "MGT", "number": "6127", "name": "Business Communications ", - "description": "Designed to improve verbal and written communication skills and the use of effective visuals for presentation through the understanding and application of a wide range of techniques. Full Description " + "description": "Designed to improve verbal and written communication skills and the use of effective visuals for presentation through the understanding and application of a wide range of techniques." }, "MGT6128": { "subject": "MGT", "number": "6128", "name": "Business Ethics ", - "description": "A participative class consisting of lectures by the instructor, case analysis, discussion of contemporary ethical business issues and presentations by speakers. Full Description " + "description": "A participative class consisting of lectures by the instructor, case analysis, discussion of contemporary ethical business issues and presentations by speakers." }, "MGT6130": { "subject": "MGT", "number": "6130", "name": "Managerial Economics ", - "description": "This course is designed to provide students with an understanding of basic economic concepts and an ability to apply these concepts to business decision-making and public policy analysis. Full Description " + "description": "This course is designed to provide students with an understanding of basic economic concepts and an ability to apply these concepts to business decision-making and public policy analysis." }, "MGT6134": { "subject": "MGT", "number": "6134", "name": "Managerial Economics II ", - "description": "A continuation of MGT 6130. Microeconomics to include game theory, information economics, oligopoly and auction and bargaining models. Full Description " + "description": "A continuation of MGT 6130. Microeconomics to include game theory, information economics, oligopoly and auction and bargaining models." }, "MGT6135": { "subject": "MGT", "number": "6135", "name": "Macroeconomics for Mgrs ", - "description": "This course is designed to provide future managers with an understanding of macroeconomics as well as how macroeconomic shocks can effect business operations. Full Description " + "description": "This course is designed to provide future managers with an understanding of macroeconomics as well as how macroeconomic shocks can effect business operations." }, "MGT6165": { "subject": "MGT", "number": "6165", "name": "Venture Creation ", - "description": "Focuses on creating a new business venture. Requires completing a business plan, which describes and analyzes a proposed venture. Full Description " + "description": "Focuses on creating a new business venture. Requires completing a business plan, which describes and analyzes a proposed venture." }, "MGT6176": { "subject": "MGT", "number": "6176", "name": "Managing Growth ", - "description": "This course examines the challenges associated with the successful management of growth. Models and theories of firm growth will be reviewed. Full Description " + "description": "This course examines the challenges associated with the successful management of growth. Models and theories of firm growth will be reviewed." }, "MGT6185": { "subject": "MGT", "number": "6185", "name": "Intl Business Environ ", - "description": "This graduate course explores international environmental factors impacting firms' globalizing operations. Factors covered range from economic, political, and legal, to socio-cultural and technology forces. Full Description " + "description": "This graduate course explores international environmental factors impacting firms' globalizing operations. Factors covered range from economic, political, and legal, to socio-cultural and technology forces." }, "MGT6190": { "subject": "MGT", "number": "6190", "name": "Cur Thinking in Strategy ", - "description": "This course builds on the core strategic management course (MGT6125) and strives to provide an in-depth and reflective coverage of current and emerging topics in strategic management. Full Description " + "description": "This course builds on the core strategic management course (MGT6125) and strives to provide an in-depth and reflective coverage of current and emerging topics in strategic management." }, "MGT6197": { "subject": "MGT", "number": "6197", "name": "Global Strategic Mgt ", - "description": "This course provides a forum for the in-depth examination of the managerial and organizational demands associated with effectively competing in global industries. Full Description " + "description": "This course provides a forum for the in-depth examination of the managerial and organizational demands associated with effectively competing in global industries." }, "MGT6198": { "subject": "MGT", "number": "6198", "name": "Corp Entrepreneurship ", - "description": "This course examines how strategic pioneering actions and innovation are used by organizations to renew themselves, their markets, and their industries. Full Description " + "description": "This course examines how strategic pioneering actions and innovation are used by organizations to renew themselves, their markets, and their industries." }, "MGT6300": { "subject": "MGT", "number": "6300", "name": "Marketing Management I ", - "description": "This course focuses on the activities of managers who make the everyday decisions that guide the marketing of goods and services. Students take the principles that they learn and apply them directly to solving relevant case problems. Full Description " + "description": "This course focuses on the activities of managers who make the everyday decisions that guide the marketing of goods and services. Students take the principles that they learn and apply them directly to solving relevant case problems." }, "MGT6302": { "subject": "MGT", "number": "6302", "name": "Consumer Behavior ", - "description": "This course exposes students to behavior science concepts and approaches in understanding, and predicting the behavior of consumers. Full Description " + "description": "This course exposes students to behavior science concepts and approaches in understanding, and predicting the behavior of consumers." }, "MGT6303": { "subject": "MGT", "number": "6303", "name": "Sales Management ", - "description": "Students will obtain an understanding of the management of the sales function. The importance of the marketing-sales interface will be stressed. Full Description " + "description": "Students will obtain an understanding of the management of the sales function. The importance of the marketing-sales interface will be stressed." }, "MGT6304": { "subject": "MGT", "number": "6304", "name": "Customer Relationshp Mgt ", - "description": "Provides an understanding of analytic techniques and computer models in analyzing customer-centric data and developing customer relationship management (CRM) strategy. Full Description " + "description": "Provides an understanding of analytic techniques and computer models in analyzing customer-centric data and developing customer relationship management (CRM) strategy." }, "MGT6306": { "subject": "MGT", "number": "6306", "name": "Business to Business Mkt ", - "description": "This course studies the marketing of products or services for resale, for use in producing other goods and service operations of an enterprise. Full Description " + "description": "This course studies the marketing of products or services for resale, for use in producing other goods and service operations of an enterprise." }, "MGT6308": { "subject": "MGT", "number": "6308", "name": "Strategic Brand Mgt ", - "description": "This course teaches students about the importance of brands, and makes them knowledgeable about and able to apply instruments to create, monitor and manage brands. Full Description " + "description": "This course teaches students about the importance of brands, and makes them knowledgeable about and able to apply instruments to create, monitor and manage brands." }, "MGT6310": { "subject": "MGT", "number": "6310", "name": "Marketing Research ", - "description": "A state-of-the-art course focusing on the qualitative aspects of marketing research. The course has a strong managerial orientation emphasizing applications in several areas including international marketing research. Full Description " + "description": "A state-of-the-art course focusing on the qualitative aspects of marketing research. The course has a strong managerial orientation emphasizing applications in several areas including international marketing research." }, "MGT6315": { "subject": "MGT", "number": "6315", "name": "Marketing Analysis ", - "description": "This course seeks to impart an understanding of the various applied multivariate techniques available for analyzing and interpreting marketing data. Full Description " + "description": "This course seeks to impart an understanding of the various applied multivariate techniques available for analyzing and interpreting marketing data." }, "MGT6320": { "subject": "MGT", "number": "6320", "name": "Market Response Models ", - "description": "Knowing that a company can take actions that affect its own sales market response models can be used to aid in planning and forecasting. The models are estimated by regression techniques. Full Description " + "description": "Knowing that a company can take actions that affect its own sales market response models can be used to aid in planning and forecasting. The models are estimated by regression techniques." }, "MGT6325": { "subject": "MGT", "number": "6325", "name": "Product Planning ", - "description": "Examines issues inherent in product development and product management. These include product strategy, idea generation market development, product positioning, and test marketing, and launched brand management. Full Description " + "description": "Examines issues inherent in product development and product management. These include product strategy, idea generation market development, product positioning, and test marketing, and launched brand management." }, "MGT6326": { "subject": "MGT", "number": "6326", "name": "Collaborative Prod Dev ", - "description": "Examines issues inherent in product development and product management. These include product strategy, idea generation, market development, product positioning, test marketing, and launched brand management. Full Description " + "description": "Examines issues inherent in product development and product management. These include product strategy, idea generation, market development, product positioning, test marketing, and launched brand management." }, "MGT6335": { "subject": "MGT", "number": "6335", "name": "International Marketing ", - "description": "Students will obtain an understanding of marketing across national borders and cultures. The differences and similarities throughout marketing functions are explored. Full Description " + "description": "Students will obtain an understanding of marketing across national borders and cultures. The differences and similarities throughout marketing functions are explored." }, "MGT6350": { "subject": "MGT", "number": "6350", "name": "Operations Management ", - "description": "This course focuses on the issues and techniques relevant to the management of the organization within and recognizing its strategic significance. Full Description " + "description": "This course focuses on the issues and techniques relevant to the management of the organization within and recognizing its strategic significance." }, "MGT6351": { "subject": "MGT", "number": "6351", "name": "Operations Resource Plan ", - "description": "The management of material flows within an enterprise will be covered by tracking the evolution of operational planning and execution systems through the enterprise resource planning (ERP) framework. Full Description " + "description": "The management of material flows within an enterprise will be covered by tracking the evolution of operational planning and execution systems through the enterprise resource planning (ERP) framework." }, "MGT6352": { "subject": "MGT", "number": "6352", "name": "International Practicum ", - "description": "A semester long project-based course that includes travel to a foreign country during the semester break. Full Description " + "description": "A semester long project-based course that includes travel to a foreign country during the semester break." }, "MGT6353": { "subject": "MGT", "number": "6353", "name": "Operations Strategy ", - "description": "This course provides knowledge about developing, implementing, and evaluating operations strategy. It stresses the relationships between the operations and other functions of the organization. Full Description " + "description": "This course provides knowledge about developing, implementing, and evaluating operations strategy. It stresses the relationships between the operations and other functions of the organization." }, "MGT6357": { "subject": "MGT", "number": "6357", "name": "Service Operations Mgt ", - "description": "This course analyzes operational performance for the service sector and service support functions of manufacturers. Industries include information services, health care, banking, transportation, distribution, and retail. Full Description " + "description": "This course analyzes operational performance for the service sector and service support functions of manufacturers. Industries include information services, health care, banking, transportation, distribution, and retail." }, "MGT6359": { "subject": "MGT", "number": "6359", "name": "Bus Str Sustainability ", - "description": "Introduces business strategies such as eco-efficiency, product stewardship, green marketing and sustainable development. Cases, speakers reflect current issues such as electronics waste and global warming. Full Description " + "description": "Introduces business strategies such as eco-efficiency, product stewardship, green marketing and sustainable development. Cases, speakers reflect current issues such as electronics waste and global warming." }, "MGT6360": { "subject": "MGT", "number": "6360", "name": "Global Operations ", - "description": "This course is designed to present issues critical to the globalization of operations, and addresses strategic and tactical issues pertaining to an organization's global operations and supply chain activities. Full Description " + "description": "This course is designed to present issues critical to the globalization of operations, and addresses strategic and tactical issues pertaining to an organization's global operations and supply chain activities." }, "MGT6400": { "subject": "MGT", "number": "6400", "name": "Pricing Analytics & Rev ", - "description": "Focus in on increasing profit by measuring price responses and controlling capacity. Topics include forecasting, price optimization, and revenue management. Credit not allowed for both MGT 6400 and MGT 6362. Full Description " + "description": "Focus in on increasing profit by measuring price responses and controlling capacity. Topics include forecasting, price optimization, and revenue management. Credit not allowed for both MGT 6400 and MGT 6362." }, "MGT6401": { "subject": "MGT", "number": "6401", "name": "Supply Chain Modeling ", - "description": "Focus on development and implementation of successful Supply Chain Strategies. Topics include: supply chain design, supply chain coordination, capacity management, retailing, and supplier management. Credit not allowed for both MGT 6401 and MGT 6362. Full Description " + "description": "Focus on development and implementation of successful Supply Chain Strategies. Topics include: supply chain design, supply chain coordination, capacity management, retailing, and supplier management. Credit not allowed for both MGT 6401 and MGT 6362." }, "MGT6450": { "subject": "MGT", "number": "6450", "name": "Project Management ", - "description": "Provides exposure to the concepts, frameworks and techniques for managing projects, with real world examples from Information Technology and other types of projects. Full Description " + "description": "Provides exposure to the concepts, frameworks and techniques for managing projects, with real world examples from Information Technology and other types of projects." }, "MGT6451": { "subject": "MGT", "number": "6451", "name": "Bus Intell & Analytics ", - "description": "Provides exposure to the concepts, frameworks and techniques for business intelligence and analytics, with real world examples from the business intelligence & analytics industry. Full Description " + "description": "Provides exposure to the concepts, frameworks and techniques for business intelligence and analytics, with real world examples from the business intelligence & analytics industry." }, "MGT6500": { "subject": "MGT", "number": "6500", "name": "Analytic Tools/Decisions ", - "description": "Introduction to the most commonly use statistical and optimization-based analytical tools for decision support based on the data available. Full Description " + "description": "Introduction to the most commonly use statistical and optimization-based analytical tools for decision support based on the data available." }, "MGT6501": { "subject": "MGT", "number": "6501", "name": "Operations Management ", - "description": "This course focuses on the strategic design and management of operations processes and policies to match supply with demand in an economically sustainable manner. Credit will not be awarded for both MGT 6501 and MGT 6350. Full Description " + "description": "This course focuses on the strategic design and management of operations processes and policies to match supply with demand in an economically sustainable manner. Credit will not be awarded for both MGT 6501 and MGT 6350." }, "MGT6502": { "subject": "MGT", "number": "6502", "name": "Leading People & Org ", - "description": "This course focuses on how to lead individuals and teams within organizations. This course will develop a systematic understanding of behavior within formal organizational settings. Credit will not be awarded for both MGT 6502 and MGT 6100. Full Description " + "description": "This course focuses on how to lead individuals and teams within organizations. This course will develop a systematic understanding of behavior within formal organizational settings. Credit will not be awarded for both MGT 6502 and MGT 6100." }, "MGT6503": { "subject": "MGT", "number": "6503", "name": "Managing Info Resources ", - "description": "Focuses on the information technology infrastructure in an organization, the information technology industry, and the tools to manage the information resources in an organization. Credit will not be awarded for both MGT 6503 and MGT 6123. Full Description " + "description": "Focuses on the information technology infrastructure in an organization, the information technology industry, and the tools to manage the information resources in an organization. Credit will not be awarded for both MGT 6503 and MGT 6123." }, "MGT6504": { "subject": "MGT", "number": "6504", "name": "Principles of Finance ", - "description": "Basic principles of finance including time value of money, risk and return relationship, capital budgeting. Credit will not be awarded for both MGT 6504 and MGT 6060. Full Description " + "description": "Basic principles of finance including time value of money, risk and return relationship, capital budgeting. Credit will not be awarded for both MGT 6504 and MGT 6060." }, "MGT6505": { "subject": "MGT", "number": "6505", "name": "Marketing Management ", - "description": "This course discusses the core elements of the marketing and the major types of marketing decisions faced by organizations. Develop the relevant skills for critically analyzing marketing actions. Credit will not be awarded for both MGT 6505 and MGT 6300. Full Description " + "description": "This course discusses the core elements of the marketing and the major types of marketing decisions faced by organizations. Develop the relevant skills for critically analyzing marketing actions. Credit will not be awarded for both MGT 6505 and MGT 6300." }, "MGT6506": { "subject": "MGT", "number": "6506", "name": "Managerial Economics ", - "description": "Microeconomics is about scarcity and how individuals make choices in the face of scarcity. Topics include suppy/demand, markets and price system, risk/uncertainty, market limitations. Credit will not be awarded for both MGT 6506 and MGT 6130. Full Description " + "description": "Microeconomics is about scarcity and how individuals make choices in the face of scarcity. Topics include suppy/demand, markets and price system, risk/uncertainty, market limitations. Credit will not be awarded for both MGT 6506 and MGT 6130." }, "MGT6507": { "subject": "MGT", "number": "6507", "name": "Business Communications ", - "description": "The purpose of this course is to provide future leaders and managers with the communication skills that enable them to sell themselves and their ideas. Credit will not be awarded for both MGT 6507 and MGT 6127. Full Description " + "description": "The purpose of this course is to provide future leaders and managers with the communication skills that enable them to sell themselves and their ideas. Credit will not be awarded for both MGT 6507 and MGT 6127." }, "MGT6508": { "subject": "MGT", "number": "6508", "name": "Strategic Management ", - "description": "Strategic management builds on and integrates other functional core courses to understand how firms gain and sustain a competitive advantage. Credit will not be awarded for both MGT 6508 and MGT 6125 or MGT 6508 and MGT 6126. Full Description " + "description": "Strategic management builds on and integrates other functional core courses to understand how firms gain and sustain a competitive advantage. Credit will not be awarded for both MGT 6508 and MGT 6125 or MGT 6508 and MGT 6126." }, "MGT6509": { "subject": "MGT", "number": "6509", "name": "Legal & Ethical Business ", - "description": "Constitutional law; dispute resolution; torts; contracts; theories of ethical analysis; and the role of stakeholders. Credit will not be awarded for both MGT 6509 and MGT 6124 or MGT 6509 and MGT 6126. Full Description " + "description": "Constitutional law; dispute resolution; torts; contracts; theories of ethical analysis; and the role of stakeholders. Credit will not be awarded for both MGT 6509 and MGT 6124 or MGT 6509 and MGT 6126." }, "MGT6510": { "subject": "MGT", "number": "6510", "name": "Leader Develop Workshop ", - "description": "This course focuses on how to lead individuals and teams within organizations and will develop a systematic understanding of behavior within formal organizational settings. Full Description " + "description": "This course focuses on how to lead individuals and teams within organizations and will develop a systematic understanding of behavior within formal organizational settings." }, "MGT6510P": { "subject": "MGT", "number": "6510P", "name": "Leader Development Prep ", - "description": "This course focuses on how to lead individuals and teams within organizations and will develop a systematic understanding of behavior within formal organizational settings. Full Description " + "description": "This course focuses on how to lead individuals and teams within organizations and will develop a systematic understanding of behavior within formal organizational settings." }, "MGT6600": { "subject": "MGT", "number": "6600", "name": "Analytical Tools ", - "description": "Exposes students to the most commonly used statistical and optimization-based analytical tools for decision support. The knowledge of these tools enables the decision maker to make informed decisions based on the data available. Full Description " + "description": "Exposes students to the most commonly used statistical and optimization-based analytical tools for decision support. The knowledge of these tools enables the decision maker to make informed decisions based on the data available." }, "MGT6663": { "subject": "MGT", "number": "6663", "name": "Technology Strategy ", - "description": "Provides understanding of economic and strategic factors that guide firms' strategic decisions regarding the generation, commercialization, protection, and adoption of technological innovations. Full Description " + "description": "Provides understanding of economic and strategic factors that guide firms' strategic decisions regarding the generation, commercialization, protection, and adoption of technological innovations." }, "MGT6664": { "subject": "MGT", "number": "6664", "name": "Managing Innovation ", - "description": "This course focuses on how firms (both new and old) can create and capture value from product, process, and service innovations. Full Description " + "description": "This course focuses on how firms (both new and old) can create and capture value from product, process, and service innovations." }, "MGT6725": { "subject": "MGT", "number": "6725", "name": "Info Security Policies ", - "description": "Information security vulnerabilities and risks; legal, cost, privacy, and technology constraints; derivation of strategies; technical and procedural means of achieving desired ends. Credit will not be awarded for both MGT 6725 and MGT 4725 or CS 4725 or CS 6725. Full Description " + "description": "Information security vulnerabilities and risks; legal, cost, privacy, and technology constraints; derivation of strategies; technical and procedural means of achieving desired ends. Credit will not be awarded for both MGT 6725 and MGT 4725 or CS 4725 or CS 6725." }, "MGT6726": { "subject": "MGT", "number": "6726", "name": "Privacy Tech Policy Law ", - "description": "This course takes a multi-disciplinary approach to privacy, a topic of great interest in the technology, policy, ethics, law, and business realms. Credit will not be awareded for both MGT 6726 and CS 4726 or CS 6726 or MGT 4726. Full Description " + "description": "This course takes a multi-disciplinary approach to privacy, a topic of great interest in the technology, policy, ethics, law, and business realms. Credit will not be awareded for both MGT 6726 and CS 4726 or CS 6726 or MGT 4726." }, "MGT6753": { "subject": "MGT", "number": "6753", "name": "Prin-Mgt for Engineers ", - "description": "The course will provide an introduction to selected topics needed to be successful in the technology industries. Crosslisted with ME 6753. Full Description " + "description": "The course will provide an introduction to selected topics needed to be successful in the technology industries. Crosslisted with ME 6753." }, "MGT6769": { "subject": "MGT", "number": "6769", "name": "Fixed Income Securities ", - "description": "Description, institutional features, and mathematical modeling of fixed-income securities. Use of both deterministic and stochastic models. Crosslisted with ISYE 6769 and MATH 6769. Full Description " + "description": "Description, institutional features, and mathematical modeling of fixed-income securities. Use of both deterministic and stochastic models. Crosslisted with ISYE 6769 and MATH 6769." }, "MGT6772": { "subject": "MGT", "number": "6772", "name": "Mgt Resources-Tech Firms ", - "description": "This course explores the competitive advantage manufacturing and service firms derive from effective management of their technology, workforce, materials, and information resources. Crosslisted with ISYE 6772. Full Description " + "description": "This course explores the competitive advantage manufacturing and service firms derive from effective management of their technology, workforce, materials, and information resources. Crosslisted with ISYE 6772." }, "MGT6780": { "subject": "MGT", "number": "6780", "name": "Knowledge Management ", - "description": "The purpose of this course is to enable students to think conceptually about the modern organization as a knowledge- based, information-processing organization. Crosslisted with PUBP 6780. Full Description " + "description": "The purpose of this course is to enable students to think conceptually about the modern organization as a knowledge- based, information-processing organization. Crosslisted with PUBP 6780." }, "MGT6785": { "subject": "MGT", "number": "6785", "name": "The Practice of QCF ", - "description": "Case studies, visiting lecturers from financial institutions, student group projects of an advanced nature, and student reports, all centered around quantitative and computational finance. Crosslisted with ISYE and MATH 6785. Full Description " + "description": "Case studies, visiting lecturers from financial institutions, student group projects of an advanced nature, and student reports, all centered around quantitative and computational finance. Crosslisted with ISYE and MATH 6785." }, "MGT6789": { "subject": "MGT", "number": "6789", "name": "Technology Ventures ", - "description": "Team discussion and case studies in biomedical engineering technology transfer, including licensing, financial capital, safety and efficacy studies, clinical trials and strategic planning. Crosslisted with BMED, ECE, CHE, and ME 6789. Full Description " + "description": "Team discussion and case studies in biomedical engineering technology transfer, including licensing, financial capital, safety and efficacy studies, clinical trials and strategic planning. Crosslisted with BMED, ECE, CHE, and ME 6789." }, "MGT6793": { "subject": "MGT", "number": "6793", "name": "Adv Topics in QCF ", - "description": "Advanced foundational material and analysis techniques in quantitative and computational finance. Full Description " + "description": "Advanced foundational material and analysis techniques in quantitative and computational finance." }, "MGT6799": { "subject": "MGT", "number": "6799", "name": "Legal Issues-Tech Transf ", - "description": "Study and analysis of U.S. law as it applies to the patenting and licensing processes. Crosslisted with BMED, CHE, ECE, and ME 6799. Full Description " + "description": "Study and analysis of U.S. law as it applies to the patenting and licensing processes. Crosslisted with BMED, CHE, ECE, and ME 6799." }, "MGT6813": { "subject": "MGT", "number": "6813", "name": "Economic Analysis ", - "description": "Economic reasoning and principles useful in understanding and solving managerial and public policy questions. Practice in analyzing major domestic and international economic events is included. Full Description " + "description": "Economic reasoning and principles useful in understanding and solving managerial and public policy questions. Practice in analyzing major domestic and international economic events is included." }, "MGT6830": { "subject": "MGT", "number": "6830", "name": "Fund of Innovation I ", - "description": "First of a two-course sequence on various approaches needed to understand the innovation process, including patterns of technological change and intellectual property protection. Full Description " + "description": "First of a two-course sequence on various approaches needed to understand the innovation process, including patterns of technological change and intellectual property protection." }, "MGT6831": { "subject": "MGT", "number": "6831", "name": "Fund of Innovation II ", - "description": "Second of two-course sequence on various approaches needed to understand the innovation process, including competitive market analysis and valuing new technology. Full Description " + "description": "Second of two-course sequence on various approaches needed to understand the innovation process, including competitive market analysis and valuing new technology." }, "MGT6832": { "subject": "MGT", "number": "6832", "name": "Tech Commercialization ", - "description": "Follow-up to year-long course on Fundamentals of Innovation, emphasizing business planning and understanding the business, technology, and legal aspects of Venture Lab technologies. Full Description " + "description": "Follow-up to year-long course on Fundamentals of Innovation, emphasizing business planning and understanding the business, technology, and legal aspects of Venture Lab technologies." }, "MGT6901": { "subject": "MGT", "number": "6901", "name": "Consulting ", - "description": "Students work in teams for client firms in a consulting capacity. The client firms are preselected, but the problem definition is derived from client-team negotiations. Full Description " + "description": "Students work in teams for client firms in a consulting capacity. The client firms are preselected, but the problem definition is derived from client-team negotiations." }, "MGT6XXX": { "subject": "MGT", "number": "6XXX", "name": "Management Elective ", - "description": " Full Description " + "description": "" }, "MGT7000": { "subject": "MGT", "number": "7000", "name": "Master's Thesis ", - "description": " Full Description " + "description": "" }, "MGT7060": { "subject": "MGT", "number": "7060", "name": "Theory of Finance ", - "description": "This Ph.D. course is an introduction to theoretical financial economics. This course focuses on individuals' consumption and investment decisions under uncertainty and their implications on the valuation of securities. Full Description " + "description": "This Ph.D. course is an introduction to theoretical financial economics. This course focuses on individuals' consumption and investment decisions under uncertainty and their implications on the valuation of securities." }, "MGT7061": { "subject": "MGT", "number": "7061", "name": "Empirical Finance ", - "description": "This Ph.D. course is a survey of selected current empirical research topics in finance and related econometric issues. Full Description " + "description": "This Ph.D. course is a survey of selected current empirical research topics in finance and related econometric issues." }, "MGT7062": { "subject": "MGT", "number": "7062", "name": "Corporate Restructuring ", - "description": "This PhD course is an analysis of empirical research in corporate finance with a focus on issues related to corporate restructuring. Full Description " + "description": "This PhD course is an analysis of empirical research in corporate finance with a focus on issues related to corporate restructuring." }, "MGT7063": { "subject": "MGT", "number": "7063", "name": "International Finance ", - "description": "This Ph.D. course is an introduction to the foundations of of modern international finance. Topics include: international portfolio diversification, design of country funds, tests of asset pricing, and international corporate finance. Full Description " + "description": "This Ph.D. course is an introduction to the foundations of of modern international finance. Topics include: international portfolio diversification, design of country funds, tests of asset pricing, and international corporate finance." }, "MGT7064": { "subject": "MGT", "number": "7064", "name": "Microecon Theory for MGT ", - "description": "This course focuses on behavior of individual economic agents and how they interact to form markets. Topics include organizations, efficiency, and equilibria with incomplete information. Full Description " + "description": "This course focuses on behavior of individual economic agents and how they interact to form markets. Topics include organizations, efficiency, and equilibria with incomplete information." }, "MGT7101": { "subject": "MGT", "number": "7101", "name": "Human Resource Mgt ", - "description": "A Ph.D. course that covers an analysis of advanced practice, research, and theory in human resource management. Topics will vary by instructor and student interest. Full Description " + "description": "A Ph.D. course that covers an analysis of advanced practice, research, and theory in human resource management. Topics will vary by instructor and student interest." }, "MGT7102": { "subject": "MGT", "number": "7102", "name": "Org Behav Research Meth ", - "description": "This Ph.D. course is an overview and analysis of research methodologies used in conducting scientific research of organizational behavior. Full Description " + "description": "This Ph.D. course is an overview and analysis of research methodologies used in conducting scientific research of organizational behavior." }, "MGT7105": { "subject": "MGT", "number": "7105", "name": "Individual Behav In Orgs ", - "description": "This Ph.D. course is designed to investigate organizational behavior research topics at the individual level of analysis. Full Description " + "description": "This Ph.D. course is designed to investigate organizational behavior research topics at the individual level of analysis." }, "MGT7106": { "subject": "MGT", "number": "7106", "name": "Group Dynamics ", - "description": "This Ph.D. course provides a fundamental understanding of group processes in organizations by analyzing and critiquing classic and contemporary theories and research on groups. Full Description " + "description": "This Ph.D. course provides a fundamental understanding of group processes in organizations by analyzing and critiquing classic and contemporary theories and research on groups." }, "MGT7107": { "subject": "MGT", "number": "7107", "name": "Organizational Theory ", - "description": "This Ph.D. course provides a review of contemporary organizational theories, and empirical studies of them to provide a framework to understand organizational structures, environments, and goals. Full Description " + "description": "This Ph.D. course provides a review of contemporary organizational theories, and empirical studies of them to provide a framework to understand organizational structures, environments, and goals." }, "MGT7305": { "subject": "MGT", "number": "7305", "name": "Marketing Mgt & Strategy ", - "description": "This Ph.D. course provides a survey of research and theory in the marketing management and strategy literature. Full Description " + "description": "This Ph.D. course provides a survey of research and theory in the marketing management and strategy literature." }, "MGT7306": { "subject": "MGT", "number": "7306", "name": "Buyer Behavior ", - "description": "Doctoral course in consumer behavior. Provides an introduction to the major theories in consumer behavior and discusses current research and methodology on theory development. Full Description " + "description": "Doctoral course in consumer behavior. Provides an introduction to the major theories in consumer behavior and discusses current research and methodology on theory development." }, "MGT7308": { "subject": "MGT", "number": "7308", "name": "Theory Construction ", - "description": "Provides an understanding of key elements of a theory, and how influential theories are developed; a small part surveys topics in philosophy of science. Credit not allowed for both MGT 7308 and MGT 7307. Full Description " + "description": "Provides an understanding of key elements of a theory, and how influential theories are developed; a small part surveys topics in philosophy of science. Credit not allowed for both MGT 7308 and MGT 7307." }, "MGT7320": { "subject": "MGT", "number": "7320", "name": "Marketing Science ", - "description": "This doctoral course addresses the literature on the state-of-the-art research on quantitative approaches to marketing problems. Full Description " + "description": "This doctoral course addresses the literature on the state-of-the-art research on quantitative approaches to marketing problems." }, "MGT7350": { "subject": "MGT", "number": "7350", "name": "Operations Strategy I ", - "description": "This Ph.D. seminar will discuss research papers dealing with strategic issues in operations management. Full Description " + "description": "This Ph.D. seminar will discuss research papers dealing with strategic issues in operations management." }, "MGT7352": { "subject": "MGT", "number": "7352", "name": "Operation Plan & Ctrl I ", - "description": "This doctoral seminar will discuss research papers dealing with tactical and operational (planning and control) issues in operations management. Full Description " + "description": "This doctoral seminar will discuss research papers dealing with tactical and operational (planning and control) issues in operations management." }, "MGT7353": { "subject": "MGT", "number": "7353", "name": "Operation Plan & Ctrl II ", - "description": "This doctoral seminar is a continuation of MGT 7352 and will discuss advanced papers dealing with tactical and operational (planning and control) issues in operations management. Full Description " + "description": "This doctoral seminar is a continuation of MGT 7352 and will discuss advanced papers dealing with tactical and operational (planning and control) issues in operations management." }, "MGT7354": { "subject": "MGT", "number": "7354", "name": "Research Meth-Oper Mgt ", - "description": "This doctoral seminar will discuss papers dealing with research methods in operations management. Full Description " + "description": "This doctoral seminar will discuss papers dealing with research methods in operations management." }, "MGT7400": { "subject": "MGT", "number": "7400", "name": "PhD Strat Mgt Research I ", - "description": "Ph.D.-level research seminar in strategic management. Full Description " + "description": "Ph.D.-level research seminar in strategic management." }, "MGT7501": { "subject": "MGT", "number": "7501", "name": "Mgm Econometric Models ", - "description": "The linear regression model in managerial research: topics include ordinary and generalized least squares, panel data, instrumental variables, discrete choice and censored data. Full Description " + "description": "The linear regression model in managerial research: topics include ordinary and generalized least squares, panel data, instrumental variables, discrete choice and censored data." }, "MGT8803": { "subject": "MGT", "number": "8803", "name": "Special Topics in Mgt ", - "description": "Topics of current interest in the field of management. Full Description " + "description": "Topics of current interest in the field of management." }, "MGT8811": { "subject": "MGT", "number": "8811", "name": "Special Topics ", - "description": "Topics of current interest. Full Description " + "description": "Topics of current interest." }, "MGT8812": { "subject": "MGT", "number": "8812", "name": "Special Topics ", - "description": "Topics of current interest. Full Description " + "description": "Topics of current interest." }, "MGT8813": { "subject": "MGT", "number": "8813", "name": "Special Topcis ", - "description": "Topics of current interest. Full Description " + "description": "Topics of current interest." }, "MGT8853": { "subject": "MGT", "number": "8853", "name": "Research Topic-Marketing ", - "description": "Coverage of special research topics of current interest in marketing. Full Description " + "description": "Coverage of special research topics of current interest in marketing." }, "MGT8873": { "subject": "MGT", "number": "8873", "name": "Special Topics-Org Behav ", - "description": "Special research topics of interest in organizational behavior. Full Description " + "description": "Special research topics of interest in organizational behavior." }, "MGT8903": { "subject": "MGT", "number": "8903", "name": "Special Prob-Management ", - "description": "Provides project work experience in the field of management. Full Description " + "description": "Provides project work experience in the field of management." }, "MGT8997": { "subject": "MGT", "number": "8997", "name": "Teaching Assistantship ", - "description": "For graduate students holding graduate teaching assistantships. Full Description " + "description": "For graduate students holding graduate teaching assistantships." }, "MGT8998": { "subject": "MGT", "number": "8998", "name": "Research Assistantship ", - "description": "For graduate students holding graduate research assistantships. Full Description " + "description": "For graduate students holding graduate research assistantships." }, "MGT9000": { "subject": "MGT", "number": "9000", "name": "Doctoral Thesis ", - "description": " Full Description " + "description": "" }, "ML1803": { "subject": "ML", "number": "1803", "name": "Special Topics ", - "description": "Topics of current interest in Modern Languages, including Korean and Arabic. Full Description " + "description": "Topics of current interest in Modern Languages, including Korean and Arabic." }, "ML1804": { "subject": "ML", "number": "1804", "name": "Special Topics ", - "description": "Topics of current interest in Modern Languages, including Korean and Arabic. Full Description " + "description": "Topics of current interest in Modern Languages, including Korean and Arabic." }, "ML1813": { "subject": "ML", "number": "1813", "name": "Special Topics ", - "description": "Topics of current interest in modern languages. Full Description " + "description": "Topics of current interest in modern languages." }, "ML1814": { "subject": "ML", "number": "1814", "name": "Special Topics ", - "description": "Topics of current interest in modern languages. Full Description " + "description": "Topics of current interest in modern languages." }, "ML1815": { "subject": "ML", "number": "1815", "name": "Special Topics ", - "description": "Topics of current interest in modern languages. Full Description " + "description": "Topics of current interest in modern languages." }, "ML1823": { "subject": "ML", "number": "1823", "name": "Special Topics ", - "description": "Topics of current interest in modern languages. Full Description " + "description": "Topics of current interest in modern languages." }, "ML1824": { "subject": "ML", "number": "1824", "name": "Special Topics ", - "description": "Topics of current interest in modern languages. Full Description " + "description": "Topics of current interest in modern languages." }, "ML1833": { "subject": "ML", "number": "1833", "name": "Special Topics ", - "description": "Topics of current interest in modern languages. Full Description " + "description": "Topics of current interest in modern languages." }, "ML1834": { "subject": "ML", "number": "1834", "name": "Special Topics ", - "description": "Topics of current interest in modern languages. Full Description " + "description": "Topics of current interest in modern languages." }, "ML2813": { "subject": "ML", "number": "2813", "name": "Special Topics ", - "description": "Topics of current interest in Modern Languages. Full Description " + "description": "Topics of current interest in Modern Languages." }, "ML4813": { "subject": "ML", "number": "4813", "name": "Special Topics ", - "description": "Topics of current interest in Modern Languages. Full Description " + "description": "Topics of current interest in Modern Languages." }, "MLDR6701": { "subject": "MLDR", "number": "6701", "name": "Found Forest Bioproducts ", - "description": "The course provides comprehensive foundational knowledge of the industry enabling the student to understand the role of diverse manufacturing operations and to strategically plan improvements. Cross-listed with CHBE 6701, CHBE 6741, ME 6741, CHEM 6741, MSE 6741, CHBE 6742, ME 6742, CHEM 6742, and MSE 6742. Full Description " + "description": "The course provides comprehensive foundational knowledge of the industry enabling the student to understand the role of diverse manufacturing operations and to strategically plan improvements. Cross-listed with CHBE 6701, CHBE 6741, ME 6741, CHEM 6741, MSE 6741, CHBE 6742, ME 6742, CHEM 6742, and MSE 6742." }, "MLDR6800": { "subject": "MLDR", "number": "6800", "name": "Manuf Leadership Capstone ", - "description": "Teams work to complete a capstone project provided at the beginning of the semester. Successful completion requires integration of the business, leadership and manufacturing courses. Full Description " + "description": "Teams work to complete a capstone project provided at the beginning of the semester. Successful completion requires integration of the business, leadership and manufacturing courses." }, "MOT6102": { "subject": "MOT", "number": "6102", "name": "Econ Analy For Managers ", - "description": "Studies the economic concepts that describe and explain the environment within which firms operate. Full Description " + "description": "Studies the economic concepts that describe and explain the environment within which firms operate." }, "MOT6103": { "subject": "MOT", "number": "6103", "name": "Fin & Managerial Account ", - "description": "Covers the basic concepts that underlie the use of accounting information. Includes balance sheet, income statement, alternative costing systems. Full Description " + "description": "Covers the basic concepts that underlie the use of accounting information. Includes balance sheet, income statement, alternative costing systems." }, "MOT6104": { "subject": "MOT", "number": "6104", "name": "Financial Management ", - "description": "Change. Course focuses on financial concepts and how they are used to maximize the value of the firm and choose among alternative courses of action. Full Description " + "description": "Change. Course focuses on financial concepts and how they are used to maximize the value of the firm and choose among alternative courses of action." }, "MOT6105": { "subject": "MOT", "number": "6105", "name": "Analytical Tools ", - "description": "This course focuses on statistics and mathematical modeling of use to decision makers in technology environments with significant uncertainty. Full Description " + "description": "This course focuses on statistics and mathematical modeling of use to decision makers in technology environments with significant uncertainty." }, "MOT6106": { "subject": "MOT", "number": "6106", "name": "Technological Innovation ", - "description": "This course addresses the processes involved in technological innovation, focusing on models, sources, flows, and the protection of innovation. Full Description " + "description": "This course addresses the processes involved in technological innovation, focusing on models, sources, flows, and the protection of innovation." }, "MOT6107": { "subject": "MOT", "number": "6107", "name": "Tech Strategies-Info Sys ", - "description": "This course examines information systems and their impact in manufacturing and service operations. Full Description " + "description": "This course examines information systems and their impact in manufacturing and service operations." }, "MOT6109": { "subject": "MOT", "number": "6109", "name": "Managing People ", - "description": "This course focuses on the management and leadership of people and human resource systems in modern organizations. Full Description " + "description": "This course focuses on the management and leadership of people and human resource systems in modern organizations." }, "MOT6110": { "subject": "MOT", "number": "6110", "name": "Tech & Transformation ", - "description": "This course focuses on how work processes within organizations can be designed and managed to optimize output effectiveness. Full Description " + "description": "This course focuses on how work processes within organizations can be designed and managed to optimize output effectiveness." }, "MOT6111": { "subject": "MOT", "number": "6111", "name": "Org Transformation Meth ", - "description": "This course introduces methods to adapt, evolve, or create change in the way organizations structure themselves to increase effectiveness in responding to competitive demands. Full Description " + "description": "This course introduces methods to adapt, evolve, or create change in the way organizations structure themselves to increase effectiveness in responding to competitive demands." }, "MOT6112": { "subject": "MOT", "number": "6112", "name": "Marketing-Tech Environ ", - "description": "This course focuses on the marketing function, its relationship to other functions within the firm, and its strategic significance to high-tech organizations. Full Description " + "description": "This course focuses on the marketing function, its relationship to other functions within the firm, and its strategic significance to high-tech organizations." }, "MOT6114": { "subject": "MOT", "number": "6114", "name": "Seminar in MOT ", - "description": "This seminar features senior executives from organizations that develop or use technology discussing current practices, policies, and issues. Full Description " + "description": "This seminar features senior executives from organizations that develop or use technology discussing current practices, policies, and issues." }, "MOT6115": { "subject": "MOT", "number": "6115", "name": "Technology Forecasting ", - "description": "This course examines key emerging technologies, their development patterns, and the associated impact on industries, industrial competitiveness, and society. Full Description " + "description": "This course examines key emerging technologies, their development patterns, and the associated impact on industries, industrial competitiveness, and society." }, "MOT6116": { "subject": "MOT", "number": "6116", "name": "Strategy In Mot ", - "description": "This course examines and discusses how technology-based firms develop and implement business, functional, and technology strategies. Full Description " + "description": "This course examines and discusses how technology-based firms develop and implement business, functional, and technology strategies." }, "MOT6122": { "subject": "MOT", "number": "6122", "name": "Mot Project III ", - "description": "Participants complete their MOT project research, submit a written report, and present their results to their organization. Full Description " + "description": "Participants complete their MOT project research, submit a written report, and present their results to their organization." }, "MOT6124": { "subject": "MOT", "number": "6124", "name": "Bus & Leadership Skills ", - "description": "Participant's technological, business, and leadership skills (communications, teamwork, conflict resolution, diversity) are enhanced. Full Description " + "description": "Participant's technological, business, and leadership skills (communications, teamwork, conflict resolution, diversity) are enhanced." }, "MOT6125": { "subject": "MOT", "number": "6125", "name": "Creating Tech Ventures ", - "description": "This course covers the issues associated with the earliest stages of new technology venture formation. Full Description " + "description": "This course covers the issues associated with the earliest stages of new technology venture formation." }, "MOT6126": { "subject": "MOT", "number": "6126", "name": "Int'l Issues in MOT ", - "description": "Global business issues and strategies are explored through an international study tour. Full Description " + "description": "Global business issues and strategies are explored through an international study tour." }, "MOT6127": { "subject": "MOT", "number": "6127", "name": "Building Tech Ventures ", - "description": "The foucs of this course is on learning how to manage rapid growth in a technology venture. Full Description " + "description": "The foucs of this course is on learning how to manage rapid growth in a technology venture." }, "MOT6128": { "subject": "MOT", "number": "6128", "name": "Venture Financing ", - "description": "In this course students learn various methods for raising capital to fund new ventures. Full Description " + "description": "In this course students learn various methods for raising capital to fund new ventures." }, "MOT6129": { "subject": "MOT", "number": "6129", "name": "Int'l Business & Finance ", - "description": "The purpose of this course is to develop students' understanding of global business and finance. Full Description " + "description": "The purpose of this course is to develop students' understanding of global business and finance." }, "MOT6130": { "subject": "MOT", "number": "6130", "name": "MOT Project I ", - "description": "Participant's develop and present a proposal for a technology-based team venture project. Full Description " + "description": "Participant's develop and present a proposal for a technology-based team venture project." }, "MOT6131": { "subject": "MOT", "number": "6131", "name": "MOT Project II ", - "description": "Participant's execute their MOT venture project, including marketing and financial analyses. Full Description " + "description": "Participant's execute their MOT venture project, including marketing and financial analyses." }, "MOT6132": { "subject": "MOT", "number": "6132", "name": "MOT Project I ", - "description": "First in a sequence of three courses where students execute their new venture project. During this segment, they focus on concept definition and team formation. Full Description " + "description": "First in a sequence of three courses where students execute their new venture project. During this segment, they focus on concept definition and team formation." }, "MOT6133": { "subject": "MOT", "number": "6133", "name": "Ethical Decision Making ", - "description": "This course focuses on understanding and applying ethical decision making practices in business. Full Description " + "description": "This course focuses on understanding and applying ethical decision making practices in business." }, "MOT6134": { "subject": "MOT", "number": "6134", "name": "MOT Project II ", - "description": "Second in a sequence of three courses where students execute their new venture project. During this segment, they focus on marketing and financial analyses of their new technology venture. Full Description " + "description": "Second in a sequence of three courses where students execute their new venture project. During this segment, they focus on marketing and financial analyses of their new technology venture." }, "MP4750": { "subject": "MP", "number": "4750", "name": "Diagnostic Imaging Phys ", - "description": "Physics and image formation methods for conventional X-ray CT, nuclear medicine, and magnetic resonance and ultrasound imaging. Full Description " + "description": "Physics and image formation methods for conventional X-ray CT, nuclear medicine, and magnetic resonance and ultrasound imaging." }, "MP4XXX": { "subject": "MP", "number": "4XXX", "name": "Medical Physics Elective ", - "description": " Full Description " + "description": "" }, "MP6011": { "subject": "MP", "number": "6011", "name": "Seminar in Medical Physics I ", - "description": "Weekly 1-hour seminar on topics related to medical physics. Full Description " + "description": "Weekly 1-hour seminar on topics related to medical physics." }, "MP6012": { "subject": "MP", "number": "6012", "name": "Seminar in Medical Physics II ", - "description": "Weekly 1-hour seminar on topics related to medical physics. Full Description " + "description": "Weekly 1-hour seminar on topics related to medical physics." }, "MP6101": { "subject": "MP", "number": "6101", "name": "Nuclear Medicine Physics ", - "description": "Radioisotope production, radiopharmacy, planar gamma cameras, SPECT systems, PET systems, medical internal radiation dose (MIRD) method, nuclear medicine facilities and regulations. Full Description " + "description": "Radioisotope production, radiopharmacy, planar gamma cameras, SPECT systems, PET systems, medical internal radiation dose (MIRD) method, nuclear medicine facilities and regulations." }, "MP6201": { "subject": "MP", "number": "6201", "name": "Radiation Therapy Phys ", - "description": "Clinical radiation oncology, phantom systems, radiation machines, photon beams, electron beams, brachythearpy, dose modeling and treatment planning. Full Description " + "description": "Clinical radiation oncology, phantom systems, radiation machines, photon beams, electron beams, brachythearpy, dose modeling and treatment planning." }, "MP6203": { "subject": "MP", "number": "6203", "name": "Rad Thrpy Treat Plan Lab ", - "description": "Radiation therapy treatment planning course covering conventional radiation therapy treatment planning, monitor unit calculations, and advanced radiation treatment planning techniques. Full Description " + "description": "Radiation therapy treatment planning course covering conventional radiation therapy treatment planning, monitor unit calculations, and advanced radiation treatment planning techniques." }, "MP6204": { "subject": "MP", "number": "6204", "name": "Radiation Therapy Phys ", - "description": "Measurement and calculation of absorbed dose, dose distributions, treatment planning, photon teletherapy, electron teletherapy, brachytherapy, clinical linear accelerators, quality assurance. Full Description " + "description": "Measurement and calculation of absorbed dose, dose distributions, treatment planning, photon teletherapy, electron teletherapy, brachytherapy, clinical linear accelerators, quality assurance." }, "MP6300": { "subject": "MP", "number": "6300", "name": "Radiological Anatomy ", - "description": "A survey of the most clinically relevant anatomy as visualized by modern diagnostic imaging; plan radiographs, CT, MRI, and PET are emphasized. Full Description " + "description": "A survey of the most clinically relevant anatomy as visualized by modern diagnostic imaging; plan radiographs, CT, MRI, and PET are emphasized." }, "MP6401": { "subject": "MP", "number": "6401", "name": "Medical Health Physics ", - "description": "Basics of medical health physics, Title 10, U.S. Code of Federal Regulations, Parts 19, 20 and 35, shielding for hospital radiation facilities. Full Description " + "description": "Basics of medical health physics, Title 10, U.S. Code of Federal Regulations, Parts 19, 20 and 35, shielding for hospital radiation facilities." }, "MP6402": { "subject": "MP", "number": "6402", "name": "Radiation Dosimetry ", - "description": "Dosimetry of ionizing radiation: photons, neutrons, and charged particles; cavity theory; concept of exposure and absorbed dose; ion chambers and other types of integration dosimeters. Full Description " + "description": "Dosimetry of ionizing radiation: photons, neutrons, and charged particles; cavity theory; concept of exposure and absorbed dose; ion chambers and other types of integration dosimeters." }, "MP6403": { "subject": "MP", "number": "6403", "name": "Monte Carlo in Med Phys ", - "description": "Basic principles of the Monte Carlo method, Monte Carlo transport of photon and electron, various applications of the Monte Carlo method in medical physics. Full Description " + "description": "Basic principles of the Monte Carlo method, Monte Carlo transport of photon and electron, various applications of the Monte Carlo method in medical physics." }, "MP6405": { "subject": "MP", "number": "6405", "name": "Rad Protection&Dosimetry ", - "description": "Radiation dosimetry quantities, calculational and experimental methods for assessing the absorbed dose, effective dose assessment, committed effective dose assessment, radiation shielding methods. Full Description " + "description": "Radiation dosimetry quantities, calculational and experimental methods for assessing the absorbed dose, effective dose assessment, committed effective dose assessment, radiation shielding methods." }, "MP6407": { "subject": "MP", "number": "6407", "name": "Radiation Biol& Oncology ", - "description": "Radiation lesions and repair, mechanisms of cell death, cell cycle effect, radiation sensitizers and protectors, tumor radiobiology, relative sensitivities of human tissues, and radiation carcinogenesis. Full Description " + "description": "Radiation lesions and repair, mechanisms of cell death, cell cycle effect, radiation sensitizers and protectors, tumor radiobiology, relative sensitivities of human tissues, and radiation carcinogenesis." }, "MP6756": { "subject": "MP", "number": "6756", "name": "Radiation Physics ", - "description": "Characteristics of atomic and nuclear radiation, transition probabilities, radioactivity abd isotopes, cross sections, electromagnetic radiation, neutrons, and charges particle interaction with matter. Crosslisted with NRE 6756 and HP 6756. Full Description " + "description": "Characteristics of atomic and nuclear radiation, transition probabilities, radioactivity abd isotopes, cross sections, electromagnetic radiation, neutrons, and charges particle interaction with matter. Crosslisted with NRE 6756 and HP 6756." }, "MP6757": { "subject": "MP", "number": "6757", "name": "Radiation Detection ", - "description": "Introduction to the theory and application of radiation detectors, measurement methods, signal processing, and data analysis. Crosslisted with HP 6757 and NRE 6757. Full Description " + "description": "Introduction to the theory and application of radiation detectors, measurement methods, signal processing, and data analysis. Crosslisted with HP 6757 and NRE 6757." }, "MP6759": { "subject": "MP", "number": "6759", "name": "Radiation Shielding ", - "description": "Principles of Radiation Shielding; Design of Shields; Computational Methods for Analysis of Shielding; Emphasis on Monte Carlo Simulation as a Shielding Tool. Full Description " + "description": "Principles of Radiation Shielding; Design of Shields; Computational Methods for Analysis of Shielding; Emphasis on Monte Carlo Simulation as a Shielding Tool." }, "MP6XXX": { "subject": "MP", "number": "6XXX", "name": "Medical Physics Elective ", - "description": " Full Description " + "description": "" }, "MP7000": { "subject": "MP", "number": "7000", "name": "Master's Thesis ", - "description": " Full Description " + "description": "" }, "MP8011": { "subject": "MP", "number": "8011", "name": "Sem-Medical Physics I ", - "description": "Weekly one hour seminars on topics related to medical physics. Full Description " + "description": "Weekly one hour seminars on topics related to medical physics." }, "MP8012": { "subject": "MP", "number": "8012", "name": "Sem-Medical Physics II ", - "description": "Weekly one hour seminar on topics related to medical physics. Full Description " + "description": "Weekly one hour seminar on topics related to medical physics." }, "MP8101": { "subject": "MP", "number": "8101", "name": "Clinical Intern-Nucl Med ", - "description": "One hundred supervised contact hours of clinical internship in the Nuclear Medicine Department of Emory University. Full Description " + "description": "One hundred supervised contact hours of clinical internship in the Nuclear Medicine Department of Emory University." }, "MP8102": { "subject": "MP", "number": "8102", "name": "Clinic Intern-Diag Imag ", - "description": "One hundred supervised contact hours of clinical internship in the Radiology Department of Emory University (or equivalent). Full Description " + "description": "One hundred supervised contact hours of clinical internship in the Radiology Department of Emory University (or equivalent)." }, "MP8103": { "subject": "MP", "number": "8103", "name": "Clinic Intern-Rad Therpy ", - "description": "Two hundred supervised contact hours of clinical internship in the Radiation Oncology Department of Emory University (or equivalent). Full Description " + "description": "Two hundred supervised contact hours of clinical internship in the Radiation Oncology Department of Emory University (or equivalent)." }, "MP8104": { "subject": "MP", "number": "8104", "name": "Clinic Rotation-Med Phys ", - "description": "Four hundred supervised contact hours of clinical internship in diagnostic imaging, nuclear medicine, and radiation oncology at the affiliated clinical facilities. Full Description " + "description": "Four hundred supervised contact hours of clinical internship in diagnostic imaging, nuclear medicine, and radiation oncology at the affiliated clinical facilities." }, "MP8801": { "subject": "MP", "number": "8801", "name": "Special Topics ", - "description": "Special topics offerings of current interest in medical physics not included in regular courses. Full Description " + "description": "Special topics offerings of current interest in medical physics not included in regular courses." }, "MP8802": { "subject": "MP", "number": "8802", "name": "Special Topics ", - "description": "Special topics offerings of current interest in medial physics not included in regular offerings. Full Description " + "description": "Special topics offerings of current interest in medial physics not included in regular offerings." }, "MP8803": { "subject": "MP", "number": "8803", "name": "Special Topics ", - "description": "Special topics of current interest in medical physics not included in regular offerings. Full Description " + "description": "Special topics of current interest in medical physics not included in regular offerings." }, "MP8804": { "subject": "MP", "number": "8804", "name": "Special Topics ", - "description": "Special topics offerings of current interest in medical physics mot included in regular courses. Full Description " + "description": "Special topics offerings of current interest in medical physics mot included in regular courses." }, "MP8805": { "subject": "MP", "number": "8805", "name": "Special Topics ", - "description": "Special topics offerings of current interest in medical physics not included in regular courses. Full Description " + "description": "Special topics offerings of current interest in medical physics not included in regular courses." }, "MP8806": { "subject": "MP", "number": "8806", "name": "Special Topics ", - "description": "Special topics offerings of current interest in medical physics not included in regular courses. Full Description " + "description": "Special topics offerings of current interest in medical physics not included in regular courses." }, "MP8901": { "subject": "MP", "number": "8901", "name": "Special Problems ", - "description": "Individual studies and/or experimental investigations of problems of current interest in medical physics. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in medical physics." }, "MP8902": { "subject": "MP", "number": "8902", "name": "Special Problems ", - "description": "Individual studies and/or experimental investigations of problems of current interest in medical physics. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in medical physics." }, "MP8903": { "subject": "MP", "number": "8903", "name": "Special Problems ", - "description": "Individual studies and/or experimental investigations of problems of current interest in medical physics. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in medical physics." }, "MP8904": { "subject": "MP", "number": "8904", "name": "Special Problems ", - "description": "Individual studies and/or experimental investigations of problems of current interest in medical physics. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in medical physics." }, "MP8905": { "subject": "MP", "number": "8905", "name": "Special Problems ", - "description": "Individual studies and/or experimental investigations of problems of current interest in medical physics. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in medical physics." }, "MP8906": { "subject": "MP", "number": "8906", "name": "Special Problems ", - "description": "Individual studies and/or experimental investigation of problems of current interest in medical physics. Full Description " + "description": "Individual studies and/or experimental investigation of problems of current interest in medical physics." }, "MP9000": { "subject": "MP", "number": "9000", "name": "Doctoral Thesis ", - "description": " Full Description " + "description": "" }, "MSE1001": { "subject": "MSE", "number": "1001", "name": "Intro to Engineering ", - "description": "A general introduction to engineering. Topics include social, professional, and ethical issues; Georgia Tech's engineering curricula; contemporary issues; engineering design; teamwork; and a description of engineering skills. Full Description " + "description": "A general introduction to engineering. Topics include social, professional, and ethical issues; Georgia Tech's engineering curricula; contemporary issues; engineering design; teamwork; and a description of engineering skills." }, "MSE1111": { "subject": "MSE", "number": "1111", "name": "Introduction to MSE ", - "description": "A general introduction to the field of Materials Science and Engineering and the MSE curriculum at Georgia Tech. Full Description " + "description": "A general introduction to the field of Materials Science and Engineering and the MSE curriculum at Georgia Tech." }, "MSE1750": { "subject": "MSE", "number": "1750", "name": "Intro to Bioengineering ", - "description": "An introduction to the field of bioengineering, including the application of engineering principles and methods to problems in biology and medicine, the integration of engineering with biology, and the emerging industrial opportunities. Crosslisted with AE, BMED, CHE, ECE, and ME 1750. Full Description " + "description": "An introduction to the field of bioengineering, including the application of engineering principles and methods to problems in biology and medicine, the integration of engineering with biology, and the emerging industrial opportunities. Crosslisted with AE, BMED, CHE, ECE, and ME 1750." }, "MSE1801": { "subject": "MSE", "number": "1801", "name": "Special Topics ", - "description": "Topics of current interest not covered in other courses. Full Description " + "description": "Topics of current interest not covered in other courses." }, "MSE1802": { "subject": "MSE", "number": "1802", "name": "Special Topics ", - "description": "Topics of current interest not covered in other courses. Full Description " + "description": "Topics of current interest not covered in other courses." }, "MSE1803": { "subject": "MSE", "number": "1803", "name": "Special Topics ", - "description": "Topics of current interest not covered in other courses. Full Description " + "description": "Topics of current interest not covered in other courses." }, "MSE1XXX": { "subject": "MSE", "number": "1XXX", "name": "Mate Sci Engr Elective ", - "description": " Full Description " + "description": "" }, "MSE2001": { "subject": "MSE", "number": "2001", "name": "Prin&Appl-Engr Materials ", - "description": "The structure-property-processing-performance relationships of engineering materials are described. Materials selection is treated as a part of engineering design. Full Description " + "description": "The structure-property-processing-performance relationships of engineering materials are described. Materials selection is treated as a part of engineering design." }, "MSE2020": { "subject": "MSE", "number": "2020", "name": "Characterization-Matls ", - "description": "Understanding of microstructural development in materials and structure quantification by optical and scanning electron microscopy, and crystallography and X-ray diffraction is provided. Full Description " + "description": "Understanding of microstructural development in materials and structure quantification by optical and scanning electron microscopy, and crystallography and X-ray diffraction is provided." }, "MSE2021": { "subject": "MSE", "number": "2021", "name": "Matls Characterization ", - "description": "The fundamentals of basic microstructural and compositional materials characterization techniques are presented with an emphasis on tools using electromagnetic radiation and electrons as stimuli. Full Description " + "description": "The fundamentals of basic microstructural and compositional materials characterization techniques are presented with an emphasis on tools using electromagnetic radiation and electrons as stimuli." }, "MSE2698": { "subject": "MSE", "number": "2698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "MSE2699": { "subject": "MSE", "number": "2699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "MSE2801": { "subject": "MSE", "number": "2801", "name": "Special Topics ", - "description": "Topics of current interest not covered in other courses. Full Description " + "description": "Topics of current interest not covered in other courses." }, "MSE2802": { "subject": "MSE", "number": "2802", "name": "Special Topics ", - "description": "Topics of current interest not covered in other courses. Full Description " + "description": "Topics of current interest not covered in other courses." }, "MSE2803": { "subject": "MSE", "number": "2803", "name": "Special Topics ", - "description": "Topics of current interest not covered in other courses. Full Description " + "description": "Topics of current interest not covered in other courses." }, "MSE2XXX": { "subject": "MSE", "number": "2XXX", "name": "Mate Sci Engr Elective ", - "description": " Full Description " + "description": "" }, "MSE3000": { "subject": "MSE", "number": "3000", "name": "Chem Thermodyn-Materials ", - "description": "Principles and applications of thermodynamics to materials science and engineering. Phase equilibria and the concepts necessary to interpret phase diagrams. Full Description " + "description": "Principles and applications of thermodynamics to materials science and engineering. Phase equilibria and the concepts necessary to interpret phase diagrams." }, "MSE3001": { "subject": "MSE", "number": "3001", "name": "Chemical Thermo-Material ", - "description": "Principles and applications of thermodynamics to materials science and engineering. Phase equilibria and the concepts necessary to interpret phase diagrams. Full Description " + "description": "Principles and applications of thermodynamics to materials science and engineering. Phase equilibria and the concepts necessary to interpret phase diagrams." }, "MSE3002": { "subject": "MSE", "number": "3002", "name": "Strct Trans-Met,Cer&Poly ", - "description": "Principles that govern the important structural transformations that occur in engineering materials. Full Description " + "description": "Principles that govern the important structural transformations that occur in engineering materials." }, "MSE3003": { "subject": "MSE", "number": "3003", "name": "Mech Behavior-Materials ", - "description": "Introduces the mechanical behavior of major classes of materials including metals, ceramics, polymers, and compsites. Full Description " + "description": "Introduces the mechanical behavior of major classes of materials including metals, ceramics, polymers, and compsites." }, "MSE3005": { "subject": "MSE", "number": "3005", "name": "Mech Behavior-Materials ", - "description": "The correlation of mechanical properties with atomic bonding, microstructure, and micromechanics, for applications relevant to materials selection and design, mechanical forming, and failure of materials. Full Description " + "description": "The correlation of mechanical properties with atomic bonding, microstructure, and micromechanics, for applications relevant to materials selection and design, mechanical forming, and failure of materials." }, "MSE3012": { "subject": "MSE", "number": "3012", "name": "Thermal&Transport Props ", - "description": "The thermophysical and transport properties of solids and fluids, i.e. heat capacity, expansion, viscosity, conduction, convection, and radiation are discussed, along with thermal analysis instrumentation. Full Description " + "description": "The thermophysical and transport properties of solids and fluids, i.e. heat capacity, expansion, viscosity, conduction, convection, and radiation are discussed, along with thermal analysis instrumentation." }, "MSE3015": { "subject": "MSE", "number": "3015", "name": "Elec,Optical&Magnet Prop ", - "description": "Introduction to quantum mechanics and the band theory of solids to describe semiconducting, superconducting, dielectric, optical, and magnetic properties of nano- and micro-structured materials. Full Description " + "description": "Introduction to quantum mechanics and the band theory of solids to describe semiconducting, superconducting, dielectric, optical, and magnetic properties of nano- and micro-structured materials." }, "MSE3020": { "subject": "MSE", "number": "3020", "name": "Materials Laboratory ", - "description": "Fundamental principles of materials demonstrated in hands-on and demonstration experiments. Instruction on basic laboratory skills, safety, and proper technical report writing. Full Description " + "description": "Fundamental principles of materials demonstrated in hands-on and demonstration experiments. Instruction on basic laboratory skills, safety, and proper technical report writing." }, "MSE3021": { "subject": "MSE", "number": "3021", "name": "Materials Laboratory I ", - "description": "Characterization of engineering properties of materials through hands-on experiments. Instruction on basic laboratory skills, safety, statistical analysis of data, use of laboratory notebooks and technical report writing. Full Description " + "description": "Characterization of engineering properties of materials through hands-on experiments. Instruction on basic laboratory skills, safety, statistical analysis of data, use of laboratory notebooks and technical report writing." }, "MSE3025": { "subject": "MSE", "number": "3025", "name": "Stats&Numerical Methods ", - "description": "Concepts of computational modeling and statistics, with examples based on materials science and engineering applications. Full Description " + "description": "Concepts of computational modeling and statistics, with examples based on materials science and engineering applications." }, "MSE3210": { "subject": "MSE", "number": "3210", "name": "Transport Phenomena ", - "description": "An introduction to transport emphasizing applications to materials. Credit not allowed for both MSE 3210 and PTFE 3210. Full Description " + "description": "An introduction to transport emphasizing applications to materials. Credit not allowed for both MSE 3210 and PTFE 3210." }, "MSE3220": { "subject": "MSE", "number": "3220", "name": "Operations & Mgt Methods ", - "description": "Principles and applications of production and operations management to the manufacturing enterprise, including process flow analysis, production planning and scheduling, optimization, quality management and facilities planning. Restricted to MSE majors. Credit not allowed for both MSE 3220 and PTFE 3220. Full Description " + "description": "Principles and applications of production and operations management to the manufacturing enterprise, including process flow analysis, production planning and scheduling, optimization, quality management and facilities planning. Restricted to MSE majors. Credit not allowed for both MSE 3220 and PTFE 3220." }, "MSE3225": { "subject": "MSE", "number": "3225", "name": "Rheology ", - "description": "Introduction to non-Newtonian fluid mechanics and rheology. Full Description " + "description": "Introduction to non-Newtonian fluid mechanics and rheology." }, "MSE3230": { "subject": "MSE", "number": "3230", "name": "Polymer & Fiber Process ", - "description": "Discussion of the principles of fiber formation from polymers including rheology, mechanics, energetics, phase transition, and polymer structure. High-performing fiber processing, and plastics processing. Credit not allowed for both MSE 3230 and PTFE 3230. Full Description " + "description": "Discussion of the principles of fiber formation from polymers including rheology, mechanics, energetics, phase transition, and polymer structure. High-performing fiber processing, and plastics processing. Credit not allowed for both MSE 3230 and PTFE 3230." }, "MSE3720": { "subject": "MSE", "number": "3720", "name": "Intro Poly/Fib Enterpris ", - "description": "Approaches the manufacture of engineered fibrous structures from a manager's viewpoint and gives a working knowledge and understanding of various processes used in producing polymers/fibers/fiber products. Restricted to non-MSE majors. Credit not allowed for both MSE 3720 and PTFE 3720. Full Description " + "description": "Approaches the manufacture of engineered fibrous structures from a manager's viewpoint and gives a working knowledge and understanding of various processes used in producing polymers/fibers/fiber products. Restricted to non-MSE majors. Credit not allowed for both MSE 3720 and PTFE 3720." }, "MSE3801": { "subject": "MSE", "number": "3801", "name": "Special Topics ", - "description": "Topics of current interest not covered in other courses. Full Description " + "description": "Topics of current interest not covered in other courses." }, "MSE3802": { "subject": "MSE", "number": "3802", "name": "Special Topics ", - "description": "Topics of current interest not covered in other courses. Full Description " + "description": "Topics of current interest not covered in other courses." }, "MSE3803": { "subject": "MSE", "number": "3803", "name": "Special Topics ", - "description": "Topics of current interest not covered in other courses. Full Description " + "description": "Topics of current interest not covered in other courses." }, "MSE3XXX": { "subject": "MSE", "number": "3XXX", "name": "Mate Sci Engr Elective ", - "description": " Full Description " + "description": "" }, "MSE4002": { "subject": "MSE", "number": "4002", "name": "Cer Mate-Prop,Proces&App ", - "description": "Properties, processing, and applications of the industrially and technically important ceramic materials. Traditional and oxide ceramics in addition to glass and nonoxide ceramics. Full Description " + "description": "Properties, processing, and applications of the industrially and technically important ceramic materials. Traditional and oxide ceramics in addition to glass and nonoxide ceramics." }, "MSE4004": { "subject": "MSE", "number": "4004", "name": "Materials-Electronic App ", - "description": "Basics of photolithography, screen printing, and tape casting. Requirements for fuel cells, magnetic nanocomposites, flat-panel displays, gas sensors, piezoelectric acutators, photonic crystals, etc. Full Description " + "description": "Basics of photolithography, screen printing, and tape casting. Requirements for fuel cells, magnetic nanocomposites, flat-panel displays, gas sensors, piezoelectric acutators, photonic crystals, etc." }, "MSE4006": { "subject": "MSE", "number": "4006", "name": "Process&Apps-Engr Alloys ", - "description": "Solidification, deformation, and powder processing of metals and alloy;, microstructural design at nano- and meso-length scales; and structure-property correlations. Full Description " + "description": "Solidification, deformation, and powder processing of metals and alloy;, microstructural design at nano- and meso-length scales; and structure-property correlations." }, "MSE4010": { "subject": "MSE", "number": "4010", "name": "Environ Degradation ", - "description": "Theory of environmental degradation of metals, ceramics, polymers, and biomaterials. Emphasis on the scientific principles of corrosion and physical degradation. Full Description " + "description": "Theory of environmental degradation of metals, ceramics, polymers, and biomaterials. Emphasis on the scientific principles of corrosion and physical degradation." }, "MSE4020": { "subject": "MSE", "number": "4020", "name": "Design With Materials I ", - "description": "Introduction to principles of engineering design with emphasis on materials. Topics covered also include professional ethics and contemporary socio-political issues. Full Description " + "description": "Introduction to principles of engineering design with emphasis on materials. Topics covered also include professional ethics and contemporary socio-political issues." }, "MSE4021": { "subject": "MSE", "number": "4021", "name": "Design With Materials II ", - "description": "A team-oriented, interdisciplinary course that emphasizes creativity in solving industrial-based problems. The design solutions developed must be demonstrated by feasibility testing, which highlights this capstone design experience. Full Description " + "description": "A team-oriented, interdisciplinary course that emphasizes creativity in solving industrial-based problems. The design solutions developed must be demonstrated by feasibility testing, which highlights this capstone design experience." }, "MSE4022": { "subject": "MSE", "number": "4022", "name": "Materials Laboratory II ", - "description": "Processing, structure, properties relationships are explored through a series of hands-on experiments. Instruction on basic laboratory skills, safety, statistical analysis of data, use of laboratory notebooks and technical report writing. Full Description " + "description": "Processing, structure, properties relationships are explored through a series of hands-on experiments. Instruction on basic laboratory skills, safety, statistical analysis of data, use of laboratory notebooks and technical report writing." }, "MSE4025": { "subject": "MSE", "number": "4025", "name": "Fiber Product Mfg ", - "description": "The manufacture of fiber products and their process- structure-property relationships are detailed, covering fibers, yarns, fabrics, nonwovens, carpets, composites, and related materials. Full Description " + "description": "The manufacture of fiber products and their process- structure-property relationships are detailed, covering fibers, yarns, fabrics, nonwovens, carpets, composites, and related materials." }, "MSE4026": { "subject": "MSE", "number": "4026", "name": "Product Test Evaluation ", - "description": "Properties influencing the end use performance of fiber and polymer products including that of plastic materials will be tested using standard ASTM, AATC and federal test methods. Standard statistical tools will be used to analyze and interpret the test data. Full Description " + "description": "Properties influencing the end use performance of fiber and polymer products including that of plastic materials will be tested using standard ASTM, AATC and federal test methods. Standard statistical tools will be used to analyze and interpret the test data." }, "MSE4100": { "subject": "MSE", "number": "4100", "name": "Chem Appl Fiber Material ", - "description": "The chemical, thermal, and mechanical processes used in the preparation, coloration, printing and finishing of polymeric fiber materials are explored. Credit not allowed for both MSE 4100 and PTFE 4100. Full Description " + "description": "The chemical, thermal, and mechanical processes used in the preparation, coloration, printing and finishing of polymeric fiber materials are explored. Credit not allowed for both MSE 4100 and PTFE 4100." }, "MSE4122": { "subject": "MSE", "number": "4122", "name": "Fiber Chemistry Lab ", - "description": "Laboratory course in preparation, coloration and finishing of fiber materials. Credit not allowed for both MSE 4122 and PTFE 4122. Full Description " + "description": "Laboratory course in preparation, coloration and finishing of fiber materials. Credit not allowed for both MSE 4122 and PTFE 4122." }, "MSE4140": { "subject": "MSE", "number": "4140", "name": "Polymer Physics ", - "description": "Physical chemistry of polymer solutions, polymer miscibility, adsorptions, sorptions, plasticization, molecular weights, molecular weight distributions. Study of polymer surfaces. Credit not allowed for both MSE 4140 and PTFE 4140. Full Description " + "description": "Physical chemistry of polymer solutions, polymer miscibility, adsorptions, sorptions, plasticization, molecular weights, molecular weight distributions. Study of polymer surfaces. Credit not allowed for both MSE 4140 and PTFE 4140." }, "MSE4315": { "subject": "MSE", "number": "4315", "name": "Nondestructive Eval ", - "description": "Principles and theory of industrial nondestructive evaluation methods are covered. Emphasis is on testing the soundness and reliability of primary and secondary engineering structures. Full Description " + "description": "Principles and theory of industrial nondestructive evaluation methods are covered. Emphasis is on testing the soundness and reliability of primary and secondary engineering structures." }, "MSE4320": { "subject": "MSE", "number": "4320", "name": "Electronic Pkg & Design ", - "description": "Electronic packaging design, covering properties of materials, fabrication and assembly processes, thermal-mechanical considerations, practical concerns regarding interconnection and processing issues, and reliability assessment. Full Description " + "description": "Electronic packaging design, covering properties of materials, fabrication and assembly processes, thermal-mechanical considerations, practical concerns regarding interconnection and processing issues, and reliability assessment." }, "MSE4325": { "subject": "MSE", "number": "4325", "name": "Thin Film Materials Sci ", - "description": "Introduction to principal vapor deposition processes and vacuum technology. The fundamentals of the formation, characterization, and properties of inorganic nano- to micro-scale thin films. Full Description " + "description": "Introduction to principal vapor deposition processes and vacuum technology. The fundamentals of the formation, characterization, and properties of inorganic nano- to micro-scale thin films." }, "MSE4330": { "subject": "MSE", "number": "4330", "name": "Fund Nanomats&Nanostrucs ", - "description": "Introduction to nanotechnology. Description of various nanomaterials, their applications and synthesis methods. Full Description " + "description": "Introduction to nanotechnology. Description of various nanomaterials, their applications and synthesis methods." }, "MSE4335": { "subject": "MSE", "number": "4335", "name": "Soft Nano Bio Materials ", - "description": "Introduction soft nanomaterials and nanostructures that have been discovered and synthesized for prospective applications in nanotechnology. Full Description " + "description": "Introduction soft nanomaterials and nanostructures that have been discovered and synthesized for prospective applications in nanotechnology." }, "MSE4410": { "subject": "MSE", "number": "4410", "name": "Capstone Engr Design I ", - "description": "A capstone engineering design course covering the principles of concurrent product/process design and development. Team-based projects will explore product/process design and development. Credit not allowed for both MSE 4410 and PTFE 4110. Full Description " + "description": "A capstone engineering design course covering the principles of concurrent product/process design and development. Team-based projects will explore product/process design and development. Credit not allowed for both MSE 4410 and PTFE 4110." }, "MSE4420": { "subject": "MSE", "number": "4420", "name": "Capstone Engr Design II ", - "description": "A team problem-solving approach is used to work on a project developed in cooperation with industry. Weekly communications, both oral and written, are required. Credit not allowed for both MSE 4420 and PTFE 4210. Full Description " + "description": "A team problem-solving approach is used to work on a project developed in cooperation with industry. Weekly communications, both oral and written, are required. Credit not allowed for both MSE 4420 and PTFE 4210." }, "MSE4698": { "subject": "MSE", "number": "4698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "MSE4699": { "subject": "MSE", "number": "4699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "MSE4740": { "subject": "MSE", "number": "4740", "name": "Bio-Inspired Design ", - "description": "We examine evolutionary adaptation as a source for engineering design inspiration, utilizing principles of scaling, adaptability, and robust multifunctionality that characterize biological systems. Credit not allowed for both MSE 4740 and (BIOL 4740 or PTFE 4740 or ISYE 4740 or ME 4740). Full Description " + "description": "We examine evolutionary adaptation as a source for engineering design inspiration, utilizing principles of scaling, adaptability, and robust multifunctionality that characterize biological systems. Credit not allowed for both MSE 4740 and (BIOL 4740 or PTFE 4740 or ISYE 4740 or ME 4740)." }, "MSE4751": { "subject": "MSE", "number": "4751", "name": "Intro to Biomaterials ", - "description": "Introduction to different classes of biomaterials (polymers, metals, ceramics) and physiological responses to biomaterial implantation. Topics include material properties, host response, and biomaterial characterization techniques. Crosslisted with BMED 4751. Full Description " + "description": "Introduction to different classes of biomaterials (polymers, metals, ceramics) and physiological responses to biomaterial implantation. Topics include material properties, host response, and biomaterial characterization techniques. Crosslisted with BMED 4751." }, "MSE4754": { "subject": "MSE", "number": "4754", "name": "Elec Packaging Assembly ", - "description": "The course provides hands-on instruction in electronics packaging, including assembly, reliability, thermal management, and test of next-generation microsystems. Crosslisted with ECE and ME 4754. Full Description " + "description": "The course provides hands-on instruction in electronics packaging, including assembly, reliability, thermal management, and test of next-generation microsystems. Crosslisted with ECE and ME 4754." }, "MSE4755": { "subject": "MSE", "number": "4755", "name": "Packaging Substrate Fab ", - "description": "This course provides students with hands-on instruction in basic SOP concepts and techniques, including interconnect design, substrate material selection and properties, photodielectric deposition, via formation and photolithography, copper metallization, and finally, substrate testing. Laboratory instructions are augmented by an interactive multimedia educational presentation that makes the course work material remotely accessible via the internet. Full Description " + "description": "This course provides students with hands-on instruction in basic SOP concepts and techniques, including interconnect design, substrate material selection and properties, photodielectric deposition, via formation and photolithography, copper metallization, and finally, substrate testing. Laboratory instructions are augmented by an interactive multimedia educational presentation that makes the course work material remotely accessible via the internet." }, "MSE4761": { "subject": "MSE", "number": "4761", "name": "Industrial Ctrls & Mfg ", - "description": "Students are introduced to industrial controls and the fundamentals of manufacturing with hands-on experience based on lab projects using industry software and hardware for communications and control. Credit not allowed for both MSE 4761 and PTFE 4761. Full Description " + "description": "Students are introduced to industrial controls and the fundamentals of manufacturing with hands-on experience based on lab projects using industry software and hardware for communications and control. Credit not allowed for both MSE 4761 and PTFE 4761." }, "MSE4766": { "subject": "MSE", "number": "4766", "name": "Nanoscale Devices ", - "description": "Fundamental properties at the nanoscale for photonics and sensors. Nanoscale fabrication methods including thin films, ion beam, lithography, electroplating, and example case studies in NEMS/MEMS and photonics. Credit not allowed for both MSE 4766 and ME 4766. Full Description " + "description": "Fundamental properties at the nanoscale for photonics and sensors. Nanoscale fabrication methods including thin films, ion beam, lithography, electroplating, and example case studies in NEMS/MEMS and photonics. Credit not allowed for both MSE 4766 and ME 4766." }, "MSE4775": { "subject": "MSE", "number": "4775", "name": "Polymer Science & Engr I ", - "description": "An introduction to the chemistry, structure, and formation of polymers, physical states and transitions, physical and mechanical properties of polymer fluids and solids. Crosslisted with CHE, CHEM, ME, and PTFE 4775. Full Description " + "description": "An introduction to the chemistry, structure, and formation of polymers, physical states and transitions, physical and mechanical properties of polymer fluids and solids. Crosslisted with CHE, CHEM, ME, and PTFE 4775." }, "MSE4776": { "subject": "MSE", "number": "4776", "name": "Polymer Science& Engr II ", - "description": "Polymer fabrication processes and methods of characterization and identification of polymers are presented. Experiments in polymerization, processing, and property evaluation of polymers. Crosslisted with CHE, CHEM, ME, and TFE 4776. Full Description " + "description": "Polymer fabrication processes and methods of characterization and identification of polymers are presented. Experiments in polymerization, processing, and property evaluation of polymers. Crosslisted with CHE, CHEM, ME, and TFE 4776." }, "MSE4777": { "subject": "MSE", "number": "4777", "name": "Intro-Polymer Sci & Engr ", - "description": "An introduction to the structure and formation of polymers, physical states and transitions, physical and mechanical properties of polymer fluids and solids, and processing of polymers. Crosslisted with ME and PTFE 4777. Full Description " + "description": "An introduction to the structure and formation of polymers, physical states and transitions, physical and mechanical properties of polymer fluids and solids, and processing of polymers. Crosslisted with ME and PTFE 4777." }, "MSE4790": { "subject": "MSE", "number": "4790", "name": "Materials Select& Design ", - "description": "Principles of selecting materials and processes for engineering applications. Methodologies for designing new materials and conceiving hybrid solutions. Credit not allowed for both MSE 4790 and ME 4213 (or ME 4790). Full Description " + "description": "Principles of selecting materials and processes for engineering applications. Methodologies for designing new materials and conceiving hybrid solutions. Credit not allowed for both MSE 4790 and ME 4213 (or ME 4790)." }, "MSE4791": { "subject": "MSE", "number": "4791", "name": "Mech Behavior-Composites ", - "description": "Introduction to properties and structures of common matrix and reinforcing materials, mechanics of fiber-reinforced composites, lamina and laminate analysis, and mechanical performance. Crosslisted with AE, CEE, CHE, ME, and PTFE 4791. Full Description " + "description": "Introduction to properties and structures of common matrix and reinforcing materials, mechanics of fiber-reinforced composites, lamina and laminate analysis, and mechanical performance. Crosslisted with AE, CEE, CHE, ME, and PTFE 4791." }, "MSE4793": { "subject": "MSE", "number": "4793", "name": "Composite Mater& Process ", - "description": "Basic principles of selecting component materials and manufacturing composites are presented. Polymeric, metallic, and ceramic systems are considered. Crosslisted with AE, CEE, CHE, ME, and PTFE 4793. Full Description " + "description": "Basic principles of selecting component materials and manufacturing composites are presented. Polymeric, metallic, and ceramic systems are considered. Crosslisted with AE, CEE, CHE, ME, and PTFE 4793." }, "MSE4794": { "subject": "MSE", "number": "4794", "name": "Composite Materials& Mfg ", - "description": "Basic principles of selection and design of composite materials and their manufacturing and testing. Cost factors. Laboratory exercises on manufacturing and tests. Crosslisted with AE, CEE, CHE, ME, and PTFE 4794. Full Description " + "description": "Basic principles of selection and design of composite materials and their manufacturing and testing. Cost factors. Laboratory exercises on manufacturing and tests. Crosslisted with AE, CEE, CHE, ME, and PTFE 4794." }, "MSE4801": { "subject": "MSE", "number": "4801", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "MSE4802": { "subject": "MSE", "number": "4802", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "MSE4803": { "subject": "MSE", "number": "4803", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "MSE4901": { "subject": "MSE", "number": "4901", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "MSE4902": { "subject": "MSE", "number": "4902", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "MSE4XXX": { "subject": "MSE", "number": "4XXX", "name": "Mate Sci Engr Elective ", - "description": " Full Description " + "description": "" }, "MSE6001": { "subject": "MSE", "number": "6001", "name": "Written & Visual Comm ", - "description": "Writing and editing engineering documents; designing and explaining visuals; creating electronic presentations. May not be used for duplicate credit with MSE 6754. Full Description " + "description": "Writing and editing engineering documents; designing and explaining visuals; creating electronic presentations. May not be used for duplicate credit with MSE 6754." }, "MSE6010": { "subject": "MSE", "number": "6010", "name": "Functional Materials ", - "description": "This course focuses on the effects of defects on physical properties; charge/mass transport; semiconductors, heterojunctions, electrical and magnetic polarization, interaction processes between various physical properties; electrical characterization techniques. Full Description " + "description": "This course focuses on the effects of defects on physical properties; charge/mass transport; semiconductors, heterojunctions, electrical and magnetic polarization, interaction processes between various physical properties; electrical characterization techniques." }, "MSE6105": { "subject": "MSE", "number": "6105", "name": "Diffraction Studies ", - "description": "Principles and theory of crystallography and diffraction analysis of materials are covered, emphasizing X-ray diffraction, including electron diffraction and diffraction-based imaging. Reciprocal lattice concepts are emphasized. Full Description " + "description": "Principles and theory of crystallography and diffraction analysis of materials are covered, emphasizing X-ray diffraction, including electron diffraction and diffraction-based imaging. Reciprocal lattice concepts are emphasized." }, "MSE6110": { "subject": "MSE", "number": "6110", "name": "Trans Electron Microscop ", - "description": "Introduction to the kinematical electron scattering theory, optics in TEM, diffraction contrast imaging of defects, dynamical electron diffraction effects; and chemical microanalysis using EDS. Full Description " + "description": "Introduction to the kinematical electron scattering theory, optics in TEM, diffraction contrast imaging of defects, dynamical electron diffraction effects; and chemical microanalysis using EDS." }, "MSE6120": { "subject": "MSE", "number": "6120", "name": "Quant Charact-Microstruc ", - "description": "Application of statistically unbiased methods for estimating geometrical attributes of microstructures and nonplanar fracture surfaces from plane sections and projections, digital image analysis, and computer simulations of microstructures. Full Description " + "description": "Application of statistically unbiased methods for estimating geometrical attributes of microstructures and nonplanar fracture surfaces from plane sections and projections, digital image analysis, and computer simulations of microstructures." }, "MSE6130": { "subject": "MSE", "number": "6130", "name": "Surface Analysis ", - "description": "Introduction to vacuum science and technology; structure of solid surfaces; electron and ion energy analyzers, electron spectroscopies (e.g., AES and XPS); ion-based techniques (e.g., SIMS and RBS); depth profiling; ion channeling. Full Description " + "description": "Introduction to vacuum science and technology; structure of solid surfaces; electron and ion energy analyzers, electron spectroscopies (e.g., AES and XPS); ion-based techniques (e.g., SIMS and RBS); depth profiling; ion channeling." }, "MSE6210": { "subject": "MSE", "number": "6210", "name": "Defects ", - "description": "Emphasis on the origin and character of point, line, and surface defects in crystalline materials and their influence on mechanical, chemical, magnetic, optical, and electronic properties. Full Description " + "description": "Emphasis on the origin and character of point, line, and surface defects in crystalline materials and their influence on mechanical, chemical, magnetic, optical, and electronic properties." }, "MSE6310": { "subject": "MSE", "number": "6310", "name": "Thermo&Kinetic-Transform ", - "description": "Classical thermodynamics and phase equlibria with applications to chemical reactions, control of phase transformations via reduction of chemical-free energy, strain energy, and interfacial energy. Full Description " + "description": "Classical thermodynamics and phase equlibria with applications to chemical reactions, control of phase transformations via reduction of chemical-free energy, strain energy, and interfacial energy." }, "MSE6401": { "subject": "MSE", "number": "6401", "name": "Thermodynamics of Matls ", - "description": "To examine the principles of thermodynamics as applied to equilibria associated with solutions, mixtures, chemical reactions, and interfaces in materials. Full Description " + "description": "To examine the principles of thermodynamics as applied to equilibria associated with solutions, mixtures, chemical reactions, and interfaces in materials." }, "MSE6402": { "subject": "MSE", "number": "6402", "name": "Crys Struct and Defects ", - "description": "Provides students with a fundamental understanding of crystal structures, symmetry, origin, character, defects in crystalline materials, and the influence of these defects on different properties. Full Description " + "description": "Provides students with a fundamental understanding of crystal structures, symmetry, origin, character, defects in crystalline materials, and the influence of these defects on different properties." }, "MSE6403": { "subject": "MSE", "number": "6403", "name": "Kinetics of Phase Trans ", - "description": "To introduce the fundamentals of thermodynamics and mathematics to the kinetics of diffusional and non-diffusional phase transformation in engineering materials. Full Description " + "description": "To introduce the fundamentals of thermodynamics and mathematics to the kinetics of diffusional and non-diffusional phase transformation in engineering materials." }, "MSE6404": { "subject": "MSE", "number": "6404", "name": "Scattering Theory ", - "description": "A general introduction to the scattering/diffraction of electromagnetic radiation from solids. The kinematical formalism is developed emphasizing x-ray scattering as a characterization tool. Full Description " + "description": "A general introduction to the scattering/diffraction of electromagnetic radiation from solids. The kinematical formalism is developed emphasizing x-ray scattering as a characterization tool." }, "MSE6405": { "subject": "MSE", "number": "6405", "name": "Advanced Nanomaterials ", - "description": "Topics include the synthesis and growth processes controlling quantum dot formation, nanowires, and three- dimensional self-assembled nanostructures. Additional characterization techniques and emerging applications are presented. Full Description " + "description": "Topics include the synthesis and growth processes controlling quantum dot formation, nanowires, and three- dimensional self-assembled nanostructures. Additional characterization techniques and emerging applications are presented." }, "MSE6406": { "subject": "MSE", "number": "6406", "name": "Corrosion of Materials ", - "description": "To introduce students to the basic kinetic mechanisms associated with the interactions of materials with liquids and gases. Full Description " + "description": "To introduce students to the basic kinetic mechanisms associated with the interactions of materials with liquids and gases." }, "MSE6407": { "subject": "MSE", "number": "6407", "name": "Biological Properties ", - "description": "Addresses structure-property relationship of cellular components. Full Description " + "description": "Addresses structure-property relationship of cellular components." }, "MSE6500": { "subject": "MSE", "number": "6500", "name": "Thermo of Materials ", - "description": "To examine the principles of thermodynamics as applied to equilibria associated with solutions, mixtures, chemical reactions, and interfaces in materials. Full Description " + "description": "To examine the principles of thermodynamics as applied to equilibria associated with solutions, mixtures, chemical reactions, and interfaces in materials." }, "MSE6501": { "subject": "MSE", "number": "6501", "name": "Phase Equilibria ", - "description": "The object of this course is to review the concepts of phase equilibria in ceramic and metallic systems and develop the methodology to calculate phase diagrams in these systems. Full Description " + "description": "The object of this course is to review the concepts of phase equilibria in ceramic and metallic systems and develop the methodology to calculate phase diagrams in these systems." }, "MSE6502": { "subject": "MSE", "number": "6502", "name": "Thermo Analysis ", - "description": "To examine the principles of thermodynamics as applied to equilibria associated with mixtures and solutions. Full Description " + "description": "To examine the principles of thermodynamics as applied to equilibria associated with mixtures and solutions." }, "MSE6510": { "subject": "MSE", "number": "6510", "name": "Polymer-Elec&Photo App I ", - "description": "Review of fundamentals and principles of polymers used in electronics and photonics; relationships between the advances of semiconductor technology and the importance of polymers and their applications. Full Description " + "description": "Review of fundamentals and principles of polymers used in electronics and photonics; relationships between the advances of semiconductor technology and the importance of polymers and their applications." }, "MSE6600": { "subject": "MSE", "number": "6600", "name": "Adv Polymer Processing ", - "description": "Common polymer processing techniques and recent advancement; Modeling of polymer processing focusing on how to build a sound model; Computer aided engineering for polymer processing. Full Description " + "description": "Common polymer processing techniques and recent advancement; Modeling of polymer processing focusing on how to build a sound model; Computer aided engineering for polymer processing." }, "MSE6601": { "subject": "MSE", "number": "6601", "name": "Nanocomposites ", - "description": "Synthesis, characterization, and properties of carbon nanotubes and graphene. Carbon nanotube and graphene dispersion in various media. Carbon nanotube and graphene nano-composites processing and applications. Full Description " + "description": "Synthesis, characterization, and properties of carbon nanotubes and graphene. Carbon nanotube and graphene dispersion in various media. Carbon nanotube and graphene nano-composites processing and applications." }, "MSE6602": { "subject": "MSE", "number": "6602", "name": "Tensor Anal & Math Tech ", - "description": "Introduction to tensor analysis and mathematical techniques for solving problems enountered in materials physics, processing and characterization, particularily involving polymeric fluids and solids. Full Description " + "description": "Introduction to tensor analysis and mathematical techniques for solving problems enountered in materials physics, processing and characterization, particularily involving polymeric fluids and solids." }, "MSE6603": { "subject": "MSE", "number": "6603", "name": "Natural Polymers ", - "description": "The structures and properties of natural products are presented. Production of cellulose and proteins in discussed. Credit not allowed for both MSE 6603 and PTFE 6301. Full Description " + "description": "The structures and properties of natural products are presented. Production of cellulose and proteins in discussed. Credit not allowed for both MSE 6603 and PTFE 6301." }, "MSE6610": { "subject": "MSE", "number": "6610", "name": "Biomaterials ", - "description": "The course will emphasize the interaction between the human body environment and synthetic materials. Materials for both medical implants and dental restoration and appliances will be covered. Full Description " + "description": "The course will emphasize the interaction between the human body environment and synthetic materials. Materials for both medical implants and dental restoration and appliances will be covered." }, "MSE6620": { "subject": "MSE", "number": "6620", "name": "Advanced Corrosion ", - "description": "The emphasis will be on electrochemical corrosion and dry oxidation of metals and alloys. In the laboratory, the student will be introduced to the methodology of corrosion testing. Full Description " + "description": "The emphasis will be on electrochemical corrosion and dry oxidation of metals and alloys. In the laboratory, the student will be introduced to the methodology of corrosion testing." }, "MSE6730": { "subject": "MSE", "number": "6730", "name": "Mat Sci Cell Components ", - "description": "Addresses structure-property relationship of cellular components. Credit not allowed for both MSE 6730 and BMED 6730. Full Description " + "description": "Addresses structure-property relationship of cellular components. Credit not allowed for both MSE 6730 and BMED 6730." }, "MSE6750": { "subject": "MSE", "number": "6750", "name": "Prep& Reactions-Polymers ", - "description": "A detailed treatment of the reactions involved in the synthesis of both human-made and natural polymers, including preparation and degradative reactions of polymer systems. Full Description " + "description": "A detailed treatment of the reactions involved in the synthesis of both human-made and natural polymers, including preparation and degradative reactions of polymer systems." }, "MSE6751": { "subject": "MSE", "number": "6751", "name": "Phys Chem-Poly Solutions ", - "description": "Study of polymer solutions, polymer miscibility, adsorption, sorptions, plasticization, molecular weights, molecular weight distribution, and interfacial phenomena using thermodynamics and statistical mechanics. Crosslisted with CHEM, CHE, and PTFE 6751. Full Description " + "description": "Study of polymer solutions, polymer miscibility, adsorption, sorptions, plasticization, molecular weights, molecular weight distribution, and interfacial phenomena using thermodynamics and statistical mechanics. Crosslisted with CHEM, CHE, and PTFE 6751." }, "MSE6752": { "subject": "MSE", "number": "6752", "name": "Polymer Characterization ", - "description": "This course introduces the student to surface, near-surface and structural methods of polymer characterization. Specialized techniques critical to physical structure are emphasized. Crosslisted with CHEM, CHE, and PTFE 6752. Full Description " + "description": "This course introduces the student to surface, near-surface and structural methods of polymer characterization. Specialized techniques critical to physical structure are emphasized. Crosslisted with CHEM, CHE, and PTFE 6752." }, "MSE6754": { "subject": "MSE", "number": "6754", "name": "Engr Communication ", - "description": "Writing and editing engineering documents; designing and explaining visuals; creating and delivering electronic presentations. Crosslisted with CEE 6754. Full Description " + "description": "Writing and editing engineering documents; designing and explaining visuals; creating and delivering electronic presentations. Crosslisted with CEE 6754." }, "MSE6755": { "subject": "MSE", "number": "6755", "name": "Theoretical Chem-Polymer ", - "description": "Thermodynamics and microscopic dynamics of polymers. Fundamental concepts, including scaling concepts, governing anisotropy of polarizability, phase transitions, morphology, time-dependent correlations, etc. are discussed. Crosslisted with CHEM and PTFE 6755. Full Description " + "description": "Thermodynamics and microscopic dynamics of polymers. Fundamental concepts, including scaling concepts, governing anisotropy of polarizability, phase transitions, morphology, time-dependent correlations, etc. are discussed. Crosslisted with CHEM and PTFE 6755." }, "MSE6759": { "subject": "MSE", "number": "6759", "name": "Mate-Envir Conscious Dgn ", - "description": "Covers the environmental impact of materials choices and quantitative measure of life-cycle assessment and environmental burden. The Natural Step philosophy will be used as a model for the overall approach. Crosslisted with ME and PTFE 6759. Full Description " + "description": "Covers the environmental impact of materials choices and quantitative measure of life-cycle assessment and environmental burden. The Natural Step philosophy will be used as a model for the overall approach. Crosslisted with ME and PTFE 6759." }, "MSE6768": { "subject": "MSE", "number": "6768", "name": "Polymer Structure& Props ", - "description": "Formulations and analysis of molecular and phenomenological models of elastic and viscoelastic behavior, development and description of structure, and fundamental aspects of structure-property relations. Crosslisted with TFE, CHE, and ME 6768. Full Description " + "description": "Formulations and analysis of molecular and phenomenological models of elastic and viscoelastic behavior, development and description of structure, and fundamental aspects of structure-property relations. Crosslisted with TFE, CHE, and ME 6768." }, "MSE6774": { "subject": "MSE", "number": "6774", "name": "Biomaterial:Struct&Funct ", - "description": "Structure-function relationships of biomaterials and biomaterial characterization will be covered. Materials for medical implants, tissue engineering, biosensing, imaging, and drug delivery will be covered. Crosslisted with BMED, CHE, and ME 6774. Full Description " + "description": "Structure-function relationships of biomaterials and biomaterial characterization will be covered. Materials for medical implants, tissue engineering, biosensing, imaging, and drug delivery will be covered. Crosslisted with BMED, CHE, and ME 6774." }, "MSE6776": { "subject": "MSE", "number": "6776", "name": "Microelec Sys Packaging ", - "description": "Broad overview of system-level, cross-disciplinary microelectronics packaging technologies, including design, test, thermal, reliability, optoelectronics, and RF integration. Comparison of system-to-chip and system-to-package. Crosslisted with ECE and ME 6776. Full Description " + "description": "Broad overview of system-level, cross-disciplinary microelectronics packaging technologies, including design, test, thermal, reliability, optoelectronics, and RF integration. Comparison of system-to-chip and system-to-package. Crosslisted with ECE and ME 6776." }, "MSE6777": { "subject": "MSE", "number": "6777", "name": "Advanced Biomaterials ", - "description": "Advanced topics of biomaterials performance and engineering, including biointerfaces, host reactions to materials, and bio-inspired/smart-materials strategies. Crosslisted with BMED, CHE, and ME 6777. Full Description " + "description": "Advanced topics of biomaterials performance and engineering, including biointerfaces, host reactions to materials, and bio-inspired/smart-materials strategies. Crosslisted with BMED, CHE, and ME 6777." }, "MSE6795": { "subject": "MSE", "number": "6795", "name": "Math,Stat&Comp Tech-Mate ", - "description": "Fundamental physical, analytical, and mathematical techniques encountered in materials engineering including stress and strain, crystallographic and orientation transformations, X-ray, TEM, and solid-state concepts are emphasized. Crosslisted with ME and PTFE 6795. Full Description " + "description": "Fundamental physical, analytical, and mathematical techniques encountered in materials engineering including stress and strain, crystallographic and orientation transformations, X-ray, TEM, and solid-state concepts are emphasized. Crosslisted with ME and PTFE 6795." }, "MSE6796": { "subject": "MSE", "number": "6796", "name": "Struct-Property Relation ", - "description": "Introduction to the multi-scale structure effects on material properties. Course will prepare students for future in-depth courses. Crosslisted with PTFE and ME 6796. Full Description " + "description": "Introduction to the multi-scale structure effects on material properties. Course will prepare students for future in-depth courses. Crosslisted with PTFE and ME 6796." }, "MSE6797": { "subject": "MSE", "number": "6797", "name": "Therm&Kinetic Microstruc ", - "description": "The reduction of chemical-free, strain, and interfacial energies control of the kinetics of diffusional transformations. These factors are explored from the viewpoint of processing and stability of microstructure during service. Crosslisted with PTFE and ME 6797. Full Description " + "description": "The reduction of chemical-free, strain, and interfacial energies control of the kinetics of diffusional transformations. These factors are explored from the viewpoint of processing and stability of microstructure during service. Crosslisted with PTFE and ME 6797." }, "MSE6XXX": { "subject": "MSE", "number": "6XXX", "name": "Mate Sci Engr Elective ", - "description": " Full Description " + "description": "" }, "MSE7000": { "subject": "MSE", "number": "7000", "name": "Master's Thesis ", - "description": " Full Description " + "description": "" }, "MSE7010": { "subject": "MSE", "number": "7010", "name": "Electroceramics ", - "description": "Defects chemistry; electrochemical and electrophysical behavior of metallic/semiconducting ceramics, dielectrics, and ferrites; device applications of various electronic ceramics. Full Description " + "description": "Defects chemistry; electrochemical and electrophysical behavior of metallic/semiconducting ceramics, dielectrics, and ferrites; device applications of various electronic ceramics." }, "MSE7110": { "subject": "MSE", "number": "7110", "name": "Tran Electron Micorscopy ", - "description": "Introduction to theory, techniques, and applications of high-resolution transmission electron microscopy (HRTEM) in materials research. Full Description " + "description": "Introduction to theory, techniques, and applications of high-resolution transmission electron microscopy (HRTEM) in materials research." }, "MSE7140": { "subject": "MSE", "number": "7140", "name": "Impedance&Dielec Spectro ", - "description": "The basic theory of how current, voltage, and phase angle measurements over a wide frequency range (typically mHz-MHz) can provide information about microstructural features at all length scales. Full Description " + "description": "The basic theory of how current, voltage, and phase angle measurements over a wide frequency range (typically mHz-MHz) can provide information about microstructural features at all length scales." }, "MSE7210": { "subject": "MSE", "number": "7210", "name": "Dislocat&Deform Mechanic ", - "description": "Emphasis on interactions of dislocations with other defects, dislocation dynamics, and their correlation with mechanical properties under different rates of loading. Full Description " + "description": "Emphasis on interactions of dislocations with other defects, dislocation dynamics, and their correlation with mechanical properties under different rates of loading." }, "MSE7420": { "subject": "MSE", "number": "7420", "name": "Solidification Process ", - "description": "Fundamentals of thermodynamics, kinetics, mass transport, and physical materials are applied to the development of microstructure during solidification. Full Description " + "description": "Fundamentals of thermodynamics, kinetics, mass transport, and physical materials are applied to the development of microstructure during solidification." }, "MSE7510": { "subject": "MSE", "number": "7510", "name": "Polym-Elec&Photo App II ", - "description": "Review of fundamentals and principles of polymers used in electronics and photonics. The relationship between the recent advances of semiconductor technology and the importance of polymers will be discussed. Full Description " + "description": "Review of fundamentals and principles of polymers used in electronics and photonics. The relationship between the recent advances of semiconductor technology and the importance of polymers will be discussed." }, "MSE7771": { "subject": "MSE", "number": "7771", "name": "Mech-Polymer Solid&Fluid ", - "description": "Continuum mechanics of solids and fluids; mechanics of deformation of anisotropic polymers; yield, breaking and fatigue; non-Newtonian vioscous and viscoelastic behavior of polymer fluids. Crosslisted with CHE, ME and PTFE 7771. Full Description " + "description": "Continuum mechanics of solids and fluids; mechanics of deformation of anisotropic polymers; yield, breaking and fatigue; non-Newtonian vioscous and viscoelastic behavior of polymer fluids. Crosslisted with CHE, ME and PTFE 7771." }, "MSE7772": { "subject": "MSE", "number": "7772", "name": "Fund-Fracture Mechanics ", - "description": "Advanced study of failure of structural materials under load, mechanics of fracture, and microscopic and macroscopic aspects of the fracture of engineering materials. Crosslisted with AE, CEE, CHE, and ME 7772. Full Description " + "description": "Advanced study of failure of structural materials under load, mechanics of fracture, and microscopic and macroscopic aspects of the fracture of engineering materials. Crosslisted with AE, CEE, CHE, and ME 7772." }, "MSE7773": { "subject": "MSE", "number": "7773", "name": "Adv Fracture Mechanics ", - "description": "Nonlinear fracture mechanics including elastic-plastic and time-dependent fracture, advanced test methods, J-integral theory, and extensions. Crosslisted with AE, CEE, CHE, and ME 7773. Full Description " + "description": "Nonlinear fracture mechanics including elastic-plastic and time-dependent fracture, advanced test methods, J-integral theory, and extensions. Crosslisted with AE, CEE, CHE, and ME 7773." }, "MSE7774": { "subject": "MSE", "number": "7774", "name": "Fatigue-Materials&Struct ", - "description": "Mechanical and microstructural aspects of nucleation and growth of cracks under cyclic loading conditions, notch effects, cumulative damage, multiaxial loading, and fatigue crack propagation. Crosslisted with AE, CEE, CHE, and ME 7774. Full Description " + "description": "Mechanical and microstructural aspects of nucleation and growth of cracks under cyclic loading conditions, notch effects, cumulative damage, multiaxial loading, and fatigue crack propagation. Crosslisted with AE, CEE, CHE, and ME 7774." }, "MSE7775": { "subject": "MSE", "number": "7775", "name": "Fract&Fatigue-Structures ", - "description": "Brittle and ductile failure criteria. Failure prediction in composite structures. Free-edge and internal delamination. Anisotropic cracks. Fatigue behavior of composites and comparison with metal fatigue. Crosslisted with AE, CHE, and ME 7775. Full Description " + "description": "Brittle and ductile failure criteria. Failure prediction in composite structures. Free-edge and internal delamination. Anisotropic cracks. Fatigue behavior of composites and comparison with metal fatigue. Crosslisted with AE, CHE, and ME 7775." }, "MSE7791": { "subject": "MSE", "number": "7791", "name": "Damage & Fail-Composites ", - "description": "Analysis and failure of fiber-reinforced composite material systems. Mechanisms of toughening, multiple cracking mechanisms. Failure in woven fabric, braided, and special geometry composites. Crosslisted with AE, CHE, CEE, ME, and PTFE 7791. Full Description " + "description": "Analysis and failure of fiber-reinforced composite material systems. Mechanisms of toughening, multiple cracking mechanisms. Failure in woven fabric, braided, and special geometry composites. Crosslisted with AE, CHE, CEE, ME, and PTFE 7791." }, "MSE7792": { "subject": "MSE", "number": "7792", "name": "Mechanics of Composites ", - "description": "Anisotropic elasticity, hygrothermal behavior, stress analysis of laminated composites including 3-D effects, stress concentrations, free-edge effects, thick laminates, adhesive and mechanical connections, fracture of composites. Crosslisted with AE, CHE, CEE, ME, and PTFE 7792. Full Description " + "description": "Anisotropic elasticity, hygrothermal behavior, stress analysis of laminated composites including 3-D effects, stress concentrations, free-edge effects, thick laminates, adhesive and mechanical connections, fracture of composites. Crosslisted with AE, CHE, CEE, ME, and PTFE 7792." }, "MSE7793": { "subject": "MSE", "number": "7793", "name": "Manufacture-Composites ", - "description": "Major manufacturing techniques for metal, ceramic, and polymer composites. Modeling of processes with emphasis on fundamental mechanisms and effects. Crosslisted with AE, CHE, CEE, ME, and PTFE 7793. Full Description " + "description": "Major manufacturing techniques for metal, ceramic, and polymer composites. Modeling of processes with emphasis on fundamental mechanisms and effects. Crosslisted with AE, CHE, CEE, ME, and PTFE 7793." }, "MSE8001": { "subject": "MSE", "number": "8001", "name": "Seminar ", - "description": "The latest advances in research and development will be presented by the enrolled students from articles in recent issues of recognized periodicals. Full Description " + "description": "The latest advances in research and development will be presented by the enrolled students from articles in recent issues of recognized periodicals." }, "MSE8801": { "subject": "MSE", "number": "8801", "name": "Special Topics ", - "description": "Special topic offerings of current interest not included in regular courses. Full Description " + "description": "Special topic offerings of current interest not included in regular courses." }, "MSE8802": { "subject": "MSE", "number": "8802", "name": "Special Topics ", - "description": "Special topic offering of current interest not included in regular courses. Full Description " + "description": "Special topic offering of current interest not included in regular courses." }, "MSE8803": { "subject": "MSE", "number": "8803", "name": "Special Topics ", - "description": "Special topic offering of current interest not included in regular courses. Full Description " + "description": "Special topic offering of current interest not included in regular courses." }, "MSE8901": { "subject": "MSE", "number": "8901", "name": "Special Problems ", - "description": "Lectures, laboratory, and library work on special topics of current interest in materials suitable for a master's degree candidate. Full Description " + "description": "Lectures, laboratory, and library work on special topics of current interest in materials suitable for a master's degree candidate." }, "MSE8902": { "subject": "MSE", "number": "8902", "name": "Special Problems ", - "description": "Lectures, laboratory, and library work on special topics of current interest in materials suitable for a master's degree candidate. Full Description " + "description": "Lectures, laboratory, and library work on special topics of current interest in materials suitable for a master's degree candidate." }, "MSE8903": { "subject": "MSE", "number": "8903", "name": "Special Problems ", - "description": "Lectures, laboratory, and library work on special topics of current interest in materials suitable for a master's degree candidate. Full Description " + "description": "Lectures, laboratory, and library work on special topics of current interest in materials suitable for a master's degree candidate." }, "MSE8997": { "subject": "MSE", "number": "8997", "name": "Teaching Assistantship ", - "description": "For graduate students holding teaching assistantships. Full Description " + "description": "For graduate students holding teaching assistantships." }, "MSE8998": { "subject": "MSE", "number": "8998", "name": "Research Assistantship ", - "description": "For graduate students holding a research assistantship. Full Description " + "description": "For graduate students holding a research assistantship." }, "MSE9000": { "subject": "MSE", "number": "9000", "name": "Doctoral Thesis ", - "description": " Full Description " + "description": "" }, "MSE9999": { "subject": "MSE", "number": "9999", "name": "GT-PKU ", - "description": "For GT-PKU students during terms when they are not taking other GT courses. Placeholder course. Full Description " + "description": "For GT-PKU students during terms when they are not taking other GT courses. Placeholder course." }, "MSL1001": { "subject": "MSL", "number": "1001", "name": "Leadership&Personal Dev ", - "description": "Introduces cadets to the personal challenges and compentencies that are critical for effective leadership. Cadets learn how the personal development of life skills such as critical thinking, goal setting, time management, physical fitness, and stress management relate to leadership, officership, and the Army profession. The focus is on developing basic knowledge and comprehension of Army leadership dimensions while gaining a big picture understanding of the ROTC program, its purpose in the Army, and its advantages for the student. Full Description " + "description": "Introduces cadets to the personal challenges and compentencies that are critical for effective leadership. Cadets learn how the personal development of life skills such as critical thinking, goal setting, time management, physical fitness, and stress management relate to leadership, officership, and the Army profession. The focus is on developing basic knowledge and comprehension of Army leadership dimensions while gaining a big picture understanding of the ROTC program, its purpose in the Army, and its advantages for the student." }, "MSL1002": { "subject": "MSL", "number": "1002", "name": "Intr Tactical Leadership ", - "description": "Overviews leadership fundamentals such as setting direction, problem-solving, listening, presenting briefs, providing feed-back, and using elective writing skills. Cadets explore dimensions of leadership values, attributes, skills and actions in the context of practical, hands-on, and interactive exercises. Continued emphasis is placed on recruitment and retention of cadets. Cadre role models and the building of stronger relationships among the cadets through common exercise and practical interaction are critical aspects of this course. Full Description " + "description": "Overviews leadership fundamentals such as setting direction, problem-solving, listening, presenting briefs, providing feed-back, and using elective writing skills. Cadets explore dimensions of leadership values, attributes, skills and actions in the context of practical, hands-on, and interactive exercises. Continued emphasis is placed on recruitment and retention of cadets. Cadre role models and the building of stronger relationships among the cadets through common exercise and practical interaction are critical aspects of this course." }, "MSL1XXX": { "subject": "MSL", "number": "1XXX", "name": "Military Sci Elective ", - "description": " Full Description " + "description": "" }, "MSL2001": { "subject": "MSL", "number": "2001", "name": "Innovative Team Leadrshp ", - "description": "Explores the dimensions of creative and innovative tactical leadership strategies and styles by examining team dynamics and two historical leadership theories that form the basis of the Army leadership framework (trait and behavior theories). Cadets practice aspects of personal motivation and team building in the context of planning, executing, and assessing team exercises and participating in leadership labs. Focus is on continued development of the knowledge of leadership values and attributes through an understanding of Army rank, structure, duties and basic aspects of land navigation and squad tactics. Case studies provide tangible context for learning the Soldier's Creed and Warrior Ethos as they apply in the contemporary operating environment (COE). Full Description " + "description": "Explores the dimensions of creative and innovative tactical leadership strategies and styles by examining team dynamics and two historical leadership theories that form the basis of the Army leadership framework (trait and behavior theories). Cadets practice aspects of personal motivation and team building in the context of planning, executing, and assessing team exercises and participating in leadership labs. Focus is on continued development of the knowledge of leadership values and attributes through an understanding of Army rank, structure, duties and basic aspects of land navigation and squad tactics. Case studies provide tangible context for learning the Soldier's Creed and Warrior Ethos as they apply in the contemporary operating environment (COE)." }, "MSL2002": { "subject": "MSL", "number": "2002", "name": "Found Tatical Leadership ", - "description": "Examines the challenges of leading tactical teams in the complex contemporary operating environment (COE). The course highlights dimensions of terrain analysis, patrolling, and operation orders. Further study of the theoretical basis of the Army leadership framework explores the dynamics of adaptive leadership in the context of military operations. Cadets develop greater self awareness as they assess their own leadership styles ad practice communication and team building skills. COE case studies give insight into the importance and practice of teamwork and tactics in real-world scenarios. Full Description " + "description": "Examines the challenges of leading tactical teams in the complex contemporary operating environment (COE). The course highlights dimensions of terrain analysis, patrolling, and operation orders. Further study of the theoretical basis of the Army leadership framework explores the dynamics of adaptive leadership in the context of military operations. Cadets develop greater self awareness as they assess their own leadership styles ad practice communication and team building skills. COE case studies give insight into the importance and practice of teamwork and tactics in real-world scenarios." }, "MSL2XXX": { "subject": "MSL", "number": "2XXX", "name": "Military Sci Elective ", - "description": " Full Description " + "description": "" }, "MSL3001": { "subject": "MSL", "number": "3001", "name": "Adapt Tactical Leadrshp ", - "description": "Challenges cadets to study, practice, and evaluate adaptive leadership skills as they are presented with challenging scenarios related to squad tactical operations. Cadets receive systematic and specific feedback on their leadership attributes and actions. Based on such feedback, as well as their own self evaluations, cadets continue to develop their leadership and critical thinking abilities. The focus is developing cadets' tatical leadership abilities to enable them to succeed at ROTC's summer Leadership Development and Assessment Course (LDAC). Full Description " + "description": "Challenges cadets to study, practice, and evaluate adaptive leadership skills as they are presented with challenging scenarios related to squad tactical operations. Cadets receive systematic and specific feedback on their leadership attributes and actions. Based on such feedback, as well as their own self evaluations, cadets continue to develop their leadership and critical thinking abilities. The focus is developing cadets' tatical leadership abilities to enable them to succeed at ROTC's summer Leadership Development and Assessment Course (LDAC)." }, "MSL3002": { "subject": "MSL", "number": "3002", "name": "Leadrshp-Changing Enviro ", - "description": "Uses increasingly intense situational leadership challenges to build cadet awareness and skills in leading tactical operations up to platoon level. Cadets review aspects of combat, stability, and support operations. They also conduct military briefings and develop proficiency in garrison operation orders. The focus is on exploring, evaluating, and developing skills in decision-making, persuading, and motivating team members in the contemporary operating environment (COE). Cadets are evaluated on what they know, and do as leaders as they prepare to attend the ROTC summer Leadership Develpment Assessment Course (LDAC). Full Description " + "description": "Uses increasingly intense situational leadership challenges to build cadet awareness and skills in leading tactical operations up to platoon level. Cadets review aspects of combat, stability, and support operations. They also conduct military briefings and develop proficiency in garrison operation orders. The focus is on exploring, evaluating, and developing skills in decision-making, persuading, and motivating team members in the contemporary operating environment (COE). Cadets are evaluated on what they know, and do as leaders as they prepare to attend the ROTC summer Leadership Develpment Assessment Course (LDAC)." }, "MSL3XXX": { "subject": "MSL", "number": "3XXX", "name": "Military Sci Elective ", - "description": " Full Description " + "description": "" }, "MSL4001": { "subject": "MSL", "number": "4001", "name": "Develop Adaptive Leaders ", - "description": "Develops cadet proficiency in planning, executing, and assessing complex operations, funtioning as a member of a staff, and providing performance feedback to subordinates. Cadets assess risk, make ethical decisions, and lead fellow ROTC cadets. Lessons on military justice and personnel processes prepare cadets to make the transition to Army officers. MSIV cadets analyze, evaluate, and instruct cadets at lower levels. Both their classroom and battalion leadership experiences are designed to prepare cades for their first unit of assignment. They identify responsibilities of key staff, coordinate staff roles, and use situational opportunitites to teach, train, and develop subordinates. Full Description " + "description": "Develops cadet proficiency in planning, executing, and assessing complex operations, funtioning as a member of a staff, and providing performance feedback to subordinates. Cadets assess risk, make ethical decisions, and lead fellow ROTC cadets. Lessons on military justice and personnel processes prepare cadets to make the transition to Army officers. MSIV cadets analyze, evaluate, and instruct cadets at lower levels. Both their classroom and battalion leadership experiences are designed to prepare cades for their first unit of assignment. They identify responsibilities of key staff, coordinate staff roles, and use situational opportunitites to teach, train, and develop subordinates." }, "MSL4002": { "subject": "MSL", "number": "4002", "name": "Leadership-Complex World ", - "description": "Explores the dynamics of leading in the complex situations of current military operations in the contemporary operating environment (COE). Cadets examine differences in customes and courtesies, military law, principles of war, and rules of engagement in the face of international terrorism. They also explore aspects of interacting with non-government organizations, civilians on the battlefield, and host national support. The course places significant emphasis on preparing cadets for their first unit of assignment. It uses case studies, scenarios, and \"What now Lieutenant?\" exercises to prepare cadets to face the complex ethical and practical demands of leading as commissioned officers in the United States Army. Full Description " + "description": "Explores the dynamics of leading in the complex situations of current military operations in the contemporary operating environment (COE). Cadets examine differences in customes and courtesies, military law, principles of war, and rules of engagement in the face of international terrorism. They also explore aspects of interacting with non-government organizations, civilians on the battlefield, and host national support. The course places significant emphasis on preparing cadets for their first unit of assignment. It uses case studies, scenarios, and \"What now Lieutenant?\" exercises to prepare cadets to face the complex ethical and practical demands of leading as commissioned officers in the United States Army." }, "MSL4801": { "subject": "MSL", "number": "4801", "name": "Special Topics ", - "description": "Topics and research will pursue areas of military science not extensively treated in other Military Science courses. Full Description " + "description": "Topics and research will pursue areas of military science not extensively treated in other Military Science courses." }, "MSL4802": { "subject": "MSL", "number": "4802", "name": "Special Topics ", - "description": "Topics and research will pursue areas of military science not extensively treated in other Military Science courses. Full Description " + "description": "Topics and research will pursue areas of military science not extensively treated in other Military Science courses." }, "MSL4803": { "subject": "MSL", "number": "4803", "name": "Special Topics ", - "description": "Topics and research will pursue areas of military science not extensively treated in other Military Science courses. Full Description " + "description": "Topics and research will pursue areas of military science not extensively treated in other Military Science courses." }, "MSL4804": { "subject": "MSL", "number": "4804", "name": "Special Topics ", - "description": "Topics and research will pursue areas of military science not extensively treated in other Military Science courses. Full Description " + "description": "Topics and research will pursue areas of military science not extensively treated in other Military Science courses." }, "MSL4805": { "subject": "MSL", "number": "4805", "name": "Special Topics ", - "description": "Topics and research will pursue areas of military science not extensively treated in other Military Science courses. Full Description " + "description": "Topics and research will pursue areas of military science not extensively treated in other Military Science courses." }, "MSL4901": { "subject": "MSL", "number": "4901", "name": "Special Problems ", - "description": "Permits independent study with a faculty member. Topics and research will pursue areas of military science not extensively treated in any other Military Science class. Full Description " + "description": "Permits independent study with a faculty member. Topics and research will pursue areas of military science not extensively treated in any other Military Science class." }, "MSL4XXX": { "subject": "MSL", "number": "4XXX", "name": "Military Sci Elective ", - "description": " Full Description " + "description": "" }, "MUSI1008": { "subject": "MUSI", "number": "1008", "name": "Marching Band ", - "description": "The Georgia Tech Marching Yellow Jackets perform at all home and some away football games. Students are expected to attend a pre-season camp. All conflicts must be approved by director. Full Description " + "description": "The Georgia Tech Marching Yellow Jackets perform at all home and some away football games. Students are expected to attend a pre-season camp. All conflicts must be approved by director." }, "MUSI1009": { "subject": "MUSI", "number": "1009", "name": "Pep Band ", - "description": "Performance ensemble for men's and women's basketball games. Full Description " + "description": "Performance ensemble for men's and women's basketball games." }, "MUSI1102": { "subject": "MUSI", "number": "1102", "name": "Concert Band ", - "description": "An instrumental ensemble that performs traditional and contemporary wind literature and is offered to all students with wind, brass, or percussion experience. Full Description " + "description": "An instrumental ensemble that performs traditional and contemporary wind literature and is offered to all students with wind, brass, or percussion experience." }, "MUSI1103": { "subject": "MUSI", "number": "1103", "name": "Concert Band ", - "description": "An instrumental ensemble that performs traditional and contemporary wind literature and is offered to all students with wind, brass, or percussion experience. Full Description " + "description": "An instrumental ensemble that performs traditional and contemporary wind literature and is offered to all students with wind, brass, or percussion experience." }, "MUSI1112": { "subject": "MUSI", "number": "1112", "name": "Symphonic Band ", - "description": "Audition required prior to the first day of class. An auditioned instrumental ensemble for the more accomplished student interested in band performance; focusing on musical excellence of challenging band literature. Contact director for audition requirements. Full Description " + "description": "Audition required prior to the first day of class. An auditioned instrumental ensemble for the more accomplished student interested in band performance; focusing on musical excellence of challenging band literature. Contact director for audition requirements." }, "MUSI1113": { "subject": "MUSI", "number": "1113", "name": "Symphonic Band ", - "description": "Audition required prior to the first day of class. An auditioned instrumental ensemble for the more accomplished student interested in band performance; focusing on musical excellence of challenging band literature. Contact director for audition requirements. Full Description " + "description": "Audition required prior to the first day of class. An auditioned instrumental ensemble for the more accomplished student interested in band performance; focusing on musical excellence of challenging band literature. Contact director for audition requirements." }, "MUSI1114": { "subject": "MUSI", "number": "1114", "name": "Symphonic Band ", - "description": "Audition required prior to the first day of class. An auditioned instrumental ensemble for the more accomplished student interested in band performance; focusing on musical excellence of challenging band literature. Contact director for audition requirements. Full Description " + "description": "Audition required prior to the first day of class. An auditioned instrumental ensemble for the more accomplished student interested in band performance; focusing on musical excellence of challenging band literature. Contact director for audition requirements." }, "MUSI1201": { "subject": "MUSI", "number": "1201", "name": "Chorale ", - "description": "A large ensemble focused on rehearsal and performance of high quality music of all genres. Choral music experience recommended. Full Description " + "description": "A large ensemble focused on rehearsal and performance of high quality music of all genres. Choral music experience recommended." }, "MUSI1202": { "subject": "MUSI", "number": "1202", "name": "Chorale ", - "description": " A large ensemble focused on rehearsal and performance of high quality music of all genres. Choral music experience recommended. Full Description " + "description": " A large ensemble focused on rehearsal and performance of high quality music of all genres. Choral music experience recommended." }, "MUSI1203": { "subject": "MUSI", "number": "1203", "name": "Chorale ", - "description": "A large ensemble focused on rehearsal and performance of high quality music of all genres. Choral music experience recommended. Full Description " + "description": "A large ensemble focused on rehearsal and performance of high quality music of all genres. Choral music experience recommended." }, "MUSI1211": { "subject": "MUSI", "number": "1211", "name": "Vocal Ensemble ", - "description": "An auditioned vocal ensemble for the more serious student of vocal music; focuses on rehearsal and performance of high- quality music of all genres. Audition and/or consent of instructor required. Full Description " + "description": "An auditioned vocal ensemble for the more serious student of vocal music; focuses on rehearsal and performance of high- quality music of all genres. Audition and/or consent of instructor required." }, "MUSI1212": { "subject": "MUSI", "number": "1212", "name": "Vocal Ensemble ", - "description": "Audition and/or consent of instructor required. An auditioned vocal ensemble for the more serious student of vocal music; focused on rehearsal and performance of high-quality music of all genres. Full Description " + "description": "Audition and/or consent of instructor required. An auditioned vocal ensemble for the more serious student of vocal music; focused on rehearsal and performance of high-quality music of all genres." }, "MUSI1213": { "subject": "MUSI", "number": "1213", "name": "Vocal Ensemble ", - "description": "Audition and/or consent of instructor required. An auditioned vocal ensemble for the more serious student of vocal music; focused on rehearsal and performance of high- quality music of all genres. Full Description " + "description": "Audition and/or consent of instructor required. An auditioned vocal ensemble for the more serious student of vocal music; focused on rehearsal and performance of high- quality music of all genres." }, "MUSI1221": { "subject": "MUSI", "number": "1221", "name": "Men's Glee Club ", - "description": "An all-male choral ensemble focused on rehearsal and performance of male chorus literature. Full Description " + "description": "An all-male choral ensemble focused on rehearsal and performance of male chorus literature." }, "MUSI1222": { "subject": "MUSI", "number": "1222", "name": "Men's Glee Club ", - "description": "An all-male choral ensemble focused on rehearsal and performance of male chorus literature. Full Description " + "description": "An all-male choral ensemble focused on rehearsal and performance of male chorus literature." }, "MUSI1223": { "subject": "MUSI", "number": "1223", "name": "Men's Glee CLub ", - "description": "An all-male choral ensemble focused on rehearsal and performance of male chorus literature. Full Description " + "description": "An all-male choral ensemble focused on rehearsal and performance of male chorus literature." }, "MUSI1301": { "subject": "MUSI", "number": "1301", "name": "Jazz Ensemble ", - "description": "A traditional twenty member big band and small ensemble specializing in improvisation. Members learn various jazz styles, performance practices, and history. Full Description " + "description": "A traditional twenty member big band and small ensemble specializing in improvisation. Members learn various jazz styles, performance practices, and history." }, "MUSI1302": { "subject": "MUSI", "number": "1302", "name": "Jazz Ensemble ", - "description": "A traditional twenty member big band and small ensemble specializing in improvisation. Members learn various jazz styles, performance practices, and history. Full Description " + "description": "A traditional twenty member big band and small ensemble specializing in improvisation. Members learn various jazz styles, performance practices, and history." }, "MUSI1303": { "subject": "MUSI", "number": "1303", "name": "Jazz Ensemble ", - "description": "A traditional twenty member big band and small ensemble specializing in improvisation. Members learn various jazz styles, performance practices, and history. Full Description " + "description": "A traditional twenty member big band and small ensemble specializing in improvisation. Members learn various jazz styles, performance practices, and history." }, "MUSI1401": { "subject": "MUSI", "number": "1401", "name": "Chamber Ensemble ", - "description": "Small instrumental ensembles of various types selected by the director to perform literature for the specific ensemble. Full Description " + "description": "Small instrumental ensembles of various types selected by the director to perform literature for the specific ensemble." }, "MUSI1402": { "subject": "MUSI", "number": "1402", "name": "Chamber Ensemble ", - "description": "Small instrumental ensembles of various types selected by the director to perform literature for the specific ensemble. Full Description " + "description": "Small instrumental ensembles of various types selected by the director to perform literature for the specific ensemble." }, "MUSI1403": { "subject": "MUSI", "number": "1403", "name": "Chamber Ensemble ", - "description": "Small instrumental ensembles of various types selected by the director to perform literature for the specific ensemble. Full Description " + "description": "Small instrumental ensembles of various types selected by the director to perform literature for the specific ensemble." }, "MUSI1501": { "subject": "MUSI", "number": "1501", "name": "Percussion Ensemble ", - "description": "Percussion ensemble focuses on traditional and contemporary ensemble literature as well as transcriptions of popular music. Full Description " + "description": "Percussion ensemble focuses on traditional and contemporary ensemble literature as well as transcriptions of popular music." }, "MUSI1502": { "subject": "MUSI", "number": "1502", "name": "Percussion Ensemble ", - "description": "Percussion ensemble focuses on traditional and contemporary ensemble literature as well as transcriptions of popular music. Full Description " + "description": "Percussion ensemble focuses on traditional and contemporary ensemble literature as well as transcriptions of popular music." }, "MUSI1503": { "subject": "MUSI", "number": "1503", "name": "Percussion Ensemble ", - "description": "Percussion ensemble focuses on traditional and contemporary ensemble literature as well as transcriptions of popular music. Full Description " + "description": "Percussion ensemble focuses on traditional and contemporary ensemble literature as well as transcriptions of popular music." }, "MUSI1601": { "subject": "MUSI", "number": "1601", "name": "University Orchestra ", - "description": "The Georgia Tech Orchestra maintains a full complement of woodwinds, brass, percussion, and strings and performs classical through contemporary literature. Contact director prior to the first day of class to arrange an audition. Full Description " + "description": "The Georgia Tech Orchestra maintains a full complement of woodwinds, brass, percussion, and strings and performs classical through contemporary literature. Contact director prior to the first day of class to arrange an audition." }, "MUSI1602": { "subject": "MUSI", "number": "1602", "name": "University Orchestra ", - "description": "The Georgia Tech Orchestra maintains a full complement of woodwinds, brass, percussion, and strings and performs classical through contemporary literature. Contact director prior to the first day of class to arrange an audition. Full Description " + "description": "The Georgia Tech Orchestra maintains a full complement of woodwinds, brass, percussion, and strings and performs classical through contemporary literature. Contact director prior to the first day of class to arrange an audition." }, "MUSI1603": { "subject": "MUSI", "number": "1603", "name": "University Orchestra ", - "description": "The Georgia Tech Orchestra maintains a full complement of woodwinds, brass, percussion, and strings and performs classical through contemporary literature. Contact director prior to the first day of class to arrange an audition. Full Description " + "description": "The Georgia Tech Orchestra maintains a full complement of woodwinds, brass, percussion, and strings and performs classical through contemporary literature. Contact director prior to the first day of class to arrange an audition." }, "MUSI2008": { "subject": "MUSI", "number": "2008", "name": "Marching Band ", - "description": "The Georgia Tech Marching Yellow Jackets perform at all home and some away football games. Students are expected to attend a pre-season camp. All conflicts must be approved by director. Full Description " + "description": "The Georgia Tech Marching Yellow Jackets perform at all home and some away football games. Students are expected to attend a pre-season camp. All conflicts must be approved by director." }, "MUSI2009": { "subject": "MUSI", "number": "2009", "name": "Pep Band ", - "description": "Performance ensemble for men's and women's basketball games. Full Description " + "description": "Performance ensemble for men's and women's basketball games." }, "MUSI2010": { "subject": "MUSI", "number": "2010", "name": "Funds of Musicianship I ", - "description": "First semester of integrated sequence in music theory, aural training, music technology, and music literature. Full Description " + "description": "First semester of integrated sequence in music theory, aural training, music technology, and music literature." }, "MUSI2011": { "subject": "MUSI", "number": "2011", "name": "Funds of Musicianship II ", - "description": "Second semester of integrated sequence in music theory, aural training, music technology, and music literature. Full Description " + "description": "Second semester of integrated sequence in music theory, aural training, music technology, and music literature." }, "MUSI2102": { "subject": "MUSI", "number": "2102", "name": "Concert Band ", - "description": "An instrumental ensemble that performs traditional and contemporary wind literature and is offered to all students with wind, brass, or percussion experience. Full Description " + "description": "An instrumental ensemble that performs traditional and contemporary wind literature and is offered to all students with wind, brass, or percussion experience." }, "MUSI2103": { "subject": "MUSI", "number": "2103", "name": "Concert Band ", - "description": "An instrumental ensemble that performs traditional and contemporary wind literature and is offered to all students with wind, brass, or percussion experience. Full Description " + "description": "An instrumental ensemble that performs traditional and contemporary wind literature and is offered to all students with wind, brass, or percussion experience." }, "MUSI2112": { "subject": "MUSI", "number": "2112", "name": "Symphonic Band ", - "description": "Audition required prior to the first day of class. An auditioned instrumental ensemble for the more accomplished student interested in band performance; focusing on musical excellence of challenging band literature. Contact director for audition requirements. Full Description " + "description": "Audition required prior to the first day of class. An auditioned instrumental ensemble for the more accomplished student interested in band performance; focusing on musical excellence of challenging band literature. Contact director for audition requirements." }, "MUSI2113": { "subject": "MUSI", "number": "2113", "name": "Symphonic Band ", - "description": "Audition prior to the first day of class. An auditioned instrumental ensemble for the more accomplished student interested in band performance; focusing on musical excellence of challenging band literature. Contact director for audition requirements. Full Description " + "description": "Audition prior to the first day of class. An auditioned instrumental ensemble for the more accomplished student interested in band performance; focusing on musical excellence of challenging band literature. Contact director for audition requirements." }, "MUSI2201": { "subject": "MUSI", "number": "2201", "name": "Chorale ", - "description": "A large ensemble focused on rehearsal and performance of high-quality music of all genres. Choral music experience recommended. Full Description " + "description": "A large ensemble focused on rehearsal and performance of high-quality music of all genres. Choral music experience recommended." }, "MUSI2202": { "subject": "MUSI", "number": "2202", "name": "Chorale ", - "description": "Prerequisite: Choral music experience recommended. A large ensemble focused on rehearsal and performance of high- quality music of all genres. Full Description " + "description": "Prerequisite: Choral music experience recommended. A large ensemble focused on rehearsal and performance of high- quality music of all genres." }, "MUSI2203": { "subject": "MUSI", "number": "2203", "name": "Chorale ", - "description": "Prerequisite: Choral music experience recommended. A large ensemble focused on rehearsal and performance of high- quality music of all genres. Full Description " + "description": "Prerequisite: Choral music experience recommended. A large ensemble focused on rehearsal and performance of high- quality music of all genres." }, "MUSI2211": { "subject": "MUSI", "number": "2211", "name": "Vocal Ensemble ", - "description": "An auditioned vocal ensemble for the more serious student of vocal music; focuses on rehearsal and performance of high- quality music of all genres. Audition and/or consent of instructor required. Full Description " + "description": "An auditioned vocal ensemble for the more serious student of vocal music; focuses on rehearsal and performance of high- quality music of all genres. Audition and/or consent of instructor required." }, "MUSI2212": { "subject": "MUSI", "number": "2212", "name": "Vocal Ensemble ", - "description": "Prerequisite: Audition and/or consent of instructor. An auditioned vocal ensemble for the more serious student of vocal music; focused on rehearsal and performance of high- quality music of all genres. Full Description " + "description": "Prerequisite: Audition and/or consent of instructor. An auditioned vocal ensemble for the more serious student of vocal music; focused on rehearsal and performance of high- quality music of all genres." }, "MUSI2213": { "subject": "MUSI", "number": "2213", "name": "Vocal Ensemble ", - "description": "Audition and/or consent of instructor required. An auditioned vocal ensemble for the more serious student of vocal music; focused on rehearsal and performance of high- quality music of all genres. Full Description " + "description": "Audition and/or consent of instructor required. An auditioned vocal ensemble for the more serious student of vocal music; focused on rehearsal and performance of high- quality music of all genres." }, "MUSI2221": { "subject": "MUSI", "number": "2221", "name": "Men's Glee Club ", - "description": "An all-male choral ensemble focused on rehearsal and performance of male chorus literature. Full Description " + "description": "An all-male choral ensemble focused on rehearsal and performance of male chorus literature." }, "MUSI2222": { "subject": "MUSI", "number": "2222", "name": "Men's Glee Club ", - "description": "An all-male choral ensemble focused on rehearsal and performance of male chorus literature. Full Description " + "description": "An all-male choral ensemble focused on rehearsal and performance of male chorus literature." }, "MUSI2223": { "subject": "MUSI", "number": "2223", "name": "Men's Glee Club ", - "description": "An all-male choral ensemble focused on rehearsal and performance of male chorus literature. Full Description " + "description": "An all-male choral ensemble focused on rehearsal and performance of male chorus literature." }, "MUSI2301": { "subject": "MUSI", "number": "2301", "name": "Jazz Ensemble ", - "description": "A traditional twenty member big band and small ensemble specializing in improvisation. Members learn various jazz styles, performance practices, and history. Full Description " + "description": "A traditional twenty member big band and small ensemble specializing in improvisation. Members learn various jazz styles, performance practices, and history." }, "MUSI2302": { "subject": "MUSI", "number": "2302", "name": "Jazz Ensemble ", - "description": "A traditional twenty member big band and small ensemble specializing in improvisation. Members learn various jazz styles, performance practices, and history. Full Description " + "description": "A traditional twenty member big band and small ensemble specializing in improvisation. Members learn various jazz styles, performance practices, and history." }, "MUSI2303": { "subject": "MUSI", "number": "2303", "name": "Jazz Ensemble ", - "description": "A traditional twenty member big band and small ensemble specializing in improvisation. Members learn various jazz styles, performance practices, and history. Full Description " + "description": "A traditional twenty member big band and small ensemble specializing in improvisation. Members learn various jazz styles, performance practices, and history." }, "MUSI2401": { "subject": "MUSI", "number": "2401", "name": "Chamber Ensemble ", - "description": "Small instrumental ensembles of various types selected by the director to perform literature for the specific ensemble. Full Description " + "description": "Small instrumental ensembles of various types selected by the director to perform literature for the specific ensemble." }, "MUSI2402": { "subject": "MUSI", "number": "2402", "name": "Chamber Ensemble ", - "description": "Small instrumental ensembles of various types selected by the director to perform literature for the specific ensemble. Full Description " + "description": "Small instrumental ensembles of various types selected by the director to perform literature for the specific ensemble." }, "MUSI2403": { "subject": "MUSI", "number": "2403", "name": "Chamber Ensemble ", - "description": "Small instrumental ensembles of various types selected by the director to perform literature for the specific ensemble. Full Description " + "description": "Small instrumental ensembles of various types selected by the director to perform literature for the specific ensemble." }, "MUSI2501": { "subject": "MUSI", "number": "2501", "name": "Percussion Ensemble ", - "description": "Percussion ensemble focuses on traditional and contemporary ensemble literature as well as transcriptions of popular music. Full Description " + "description": "Percussion ensemble focuses on traditional and contemporary ensemble literature as well as transcriptions of popular music." }, "MUSI2502": { "subject": "MUSI", "number": "2502", "name": "Percussion Ensemble ", - "description": "Percussion ensemble focuses on traditional and contemporary ensemble literature as well as transcriptions of popular music. Full Description " + "description": "Percussion ensemble focuses on traditional and contemporary ensemble literature as well as transcriptions of popular music." }, "MUSI2503": { "subject": "MUSI", "number": "2503", "name": "Percussion Ensemble ", - "description": "Percussion ensemble focuses on traditional and contemporary ensemble literature as well as transcriptions of popular music. Full Description " + "description": "Percussion ensemble focuses on traditional and contemporary ensemble literature as well as transcriptions of popular music." }, "MUSI2521": { "subject": "MUSI", "number": "2521", "name": "Elec Percuss Studio/Ens. ", - "description": "Applied design construction and programming for performance. Full Description " + "description": "Applied design construction and programming for performance." }, "MUSI2522": { "subject": "MUSI", "number": "2522", "name": "Elec Percuss Studio/Ens. ", - "description": "Applied design construction and programming for performance. Full Description " + "description": "Applied design construction and programming for performance." }, "MUSI2600": { "subject": "MUSI", "number": "2600", "name": "Music Theory I ", - "description": "Fundamentals of music language to include basic notation, scales, key, signatures, and triads. Ability to read music required. Full Description " + "description": "Fundamentals of music language to include basic notation, scales, key, signatures, and triads. Ability to read music required." }, "MUSI2601": { "subject": "MUSI", "number": "2601", "name": "University Orchestra ", - "description": "The Georgia Tech Orchestra maintains a full complement of woodwinds, brass, percussion, and strings and performs classical through contemporary literature. Contact director prior to the first day of class to arrange audition. Full Description " + "description": "The Georgia Tech Orchestra maintains a full complement of woodwinds, brass, percussion, and strings and performs classical through contemporary literature. Contact director prior to the first day of class to arrange audition." }, "MUSI2602": { "subject": "MUSI", "number": "2602", "name": "University Orchestra ", - "description": "The Georgia Tech Orchestra maintains a full complement of woodwinds, brass, percussion, and strings and performs classical through contemporary literature. Contact director prior to the first day of class to arrange audition. Full Description " + "description": "The Georgia Tech Orchestra maintains a full complement of woodwinds, brass, percussion, and strings and performs classical through contemporary literature. Contact director prior to the first day of class to arrange audition." }, "MUSI2603": { "subject": "MUSI", "number": "2603", "name": "University Orchestra ", - "description": "The Georgia Tech Orchestra maintains a full complement of woodwinds, brass, percussion, and strings and performs classical through contemporary literature. Contact director prior to the first day of class to arrange audition. Full Description " + "description": "The Georgia Tech Orchestra maintains a full complement of woodwinds, brass, percussion, and strings and performs classical through contemporary literature. Contact director prior to the first day of class to arrange audition." }, "MUSI2698": { "subject": "MUSI", "number": "2698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "MUSI2699": { "subject": "MUSI", "number": "2699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "MUSI3008": { "subject": "MUSI", "number": "3008", "name": "Marching Band ", - "description": "The Georgia Tech Marching Yellow Jackets perform at all home and some away football games. Students are expected to attend a pre-season camp. All conflicts must be approved by director. Full Description " + "description": "The Georgia Tech Marching Yellow Jackets perform at all home and some away football games. Students are expected to attend a pre-season camp. All conflicts must be approved by director." }, "MUSI3009": { "subject": "MUSI", "number": "3009", "name": "Pep Band ", - "description": "Performance ensemble for men's and women's basketball games. Full Description " + "description": "Performance ensemble for men's and women's basketball games." }, "MUSI3018": { "subject": "MUSI", "number": "3018", "name": "Marching Band ", - "description": "This course will prepare various traditional and contemporary music for scheduled performances throughout the semester in support various athletic events and School of Music concerts. Full Description " + "description": "This course will prepare various traditional and contemporary music for scheduled performances throughout the semester in support various athletic events and School of Music concerts." }, "MUSI3019": { "subject": "MUSI", "number": "3019", "name": "Pep Band ", - "description": "This course will prepare a variety of traditional and contemporary music for scheduled performances throughout the semester in support of various athletic events and School of Music concerts. Full Description " + "description": "This course will prepare a variety of traditional and contemporary music for scheduled performances throughout the semester in support of various athletic events and School of Music concerts." }, "MUSI3102": { "subject": "MUSI", "number": "3102", "name": "Concert Band ", - "description": "An instrumental ensemble that performs traditional and contemporary wind literature and is offered to all students with wind, brass, or percussion experience. Full Description " + "description": "An instrumental ensemble that performs traditional and contemporary wind literature and is offered to all students with wind, brass, or percussion experience." }, "MUSI3103": { "subject": "MUSI", "number": "3103", "name": "Concert Band ", - "description": "An instrumental ensemble that performs traditional and contemporary wind literature and is offered to all students with wind, brass, or percussion experience. Full Description " + "description": "An instrumental ensemble that performs traditional and contemporary wind literature and is offered to all students with wind, brass, or percussion experience." }, "MUSI3112": { "subject": "MUSI", "number": "3112", "name": "Symphonic Band ", - "description": "Audition required prior to the first day of class. An auditioned instrumental ensemble for the more accomplished student interested in band performance; focusing on musical excellence of challenging band literature. Contact director for audition requirements. Full Description " + "description": "Audition required prior to the first day of class. An auditioned instrumental ensemble for the more accomplished student interested in band performance; focusing on musical excellence of challenging band literature. Contact director for audition requirements." }, "MUSI3113": { "subject": "MUSI", "number": "3113", "name": "Symphonic Band ", - "description": "Prerequisite: Audition prior to the first day of class. An auditioned instrumental ensemble for the more accomplished student interested in band performance; focusing on musical excellence of challenging band literature. Contact director for audition requirements. Full Description " + "description": "Prerequisite: Audition prior to the first day of class. An auditioned instrumental ensemble for the more accomplished student interested in band performance; focusing on musical excellence of challenging band literature. Contact director for audition requirements." }, "MUSI3121": { "subject": "MUSI", "number": "3121", "name": "Concert Band ", - "description": "An advanced instrumental ensemble performing traditional and contemporary wind literature. Offered to all students with woodwind, brass, or percussion experience. Audition required. Full Description " + "description": "An advanced instrumental ensemble performing traditional and contemporary wind literature. Offered to all students with woodwind, brass, or percussion experience. Audition required." }, "MUSI3131": { "subject": "MUSI", "number": "3131", "name": "Symphonic Band ", - "description": "An advanced instrumental ensemble performing traditional and contemporary wind literature. Offered to all students with woodwind, brass, or percussion experience. Audition required. Full Description " + "description": "An advanced instrumental ensemble performing traditional and contemporary wind literature. Offered to all students with woodwind, brass, or percussion experience. Audition required." }, "MUSI3201": { "subject": "MUSI", "number": "3201", "name": "Chorale ", - "description": "A large ensemble focused on rehearsal and performance of high-quality music of all genres. Choral music experience recommended. Full Description " + "description": "A large ensemble focused on rehearsal and performance of high-quality music of all genres. Choral music experience recommended." }, "MUSI3202": { "subject": "MUSI", "number": "3202", "name": "Chorale ", - "description": "Prerequisite: Choral music experience recommended. A large ensemble focused on rehearsal and performance of high- quality music of all genres. Full Description " + "description": "Prerequisite: Choral music experience recommended. A large ensemble focused on rehearsal and performance of high- quality music of all genres." }, "MUSI3203": { "subject": "MUSI", "number": "3203", "name": "Chorale ", - "description": "Prerequisite: Choral music experience recommended. A large ensemble focused on rehearsal and performance of high- quality music of all genres. Full Description " + "description": "Prerequisite: Choral music experience recommended. A large ensemble focused on rehearsal and performance of high- quality music of all genres." }, "MUSI3211": { "subject": "MUSI", "number": "3211", "name": "Vocal Ensemble ", - "description": "An auditioned vocal ensemble of the more serious student of vocal music; focuses on rehearsal and performance of high- quality music of all genres. Audition and/or consent of instructor required. Full Description " + "description": "An auditioned vocal ensemble of the more serious student of vocal music; focuses on rehearsal and performance of high- quality music of all genres. Audition and/or consent of instructor required." }, "MUSI3212": { "subject": "MUSI", "number": "3212", "name": "Vocal Ensemble ", - "description": "Prerequisite: Audition and/or consent of instructor. An auditioned vocal ensemble for the more serious student of vocal music; focused on rehearsal and performance of high- quality music of all genres. Full Description " + "description": "Prerequisite: Audition and/or consent of instructor. An auditioned vocal ensemble for the more serious student of vocal music; focused on rehearsal and performance of high- quality music of all genres." }, "MUSI3213": { "subject": "MUSI", "number": "3213", "name": "Vocal Ensemble ", - "description": "Prerequisite: Audition and/or consent of instructor. An auditioned vocal ensemble for the more serious student of vocal music; focused on rehearsal and performance of high- quality music of all genres. Full Description " + "description": "Prerequisite: Audition and/or consent of instructor. An auditioned vocal ensemble for the more serious student of vocal music; focused on rehearsal and performance of high- quality music of all genres." }, "MUSI3221": { "subject": "MUSI", "number": "3221", "name": "Men's Glee Club ", - "description": "An all-male choral ensemble focused on rehearsal and performance of male chorus literature. Full Description " + "description": "An all-male choral ensemble focused on rehearsal and performance of male chorus literature." }, "MUSI3222": { "subject": "MUSI", "number": "3222", "name": "Men's Glee Club ", - "description": "An all-male choral ensemble focused on rehearsal and performance of male chorus literature. Full Description " + "description": "An all-male choral ensemble focused on rehearsal and performance of male chorus literature." }, "MUSI3223": { "subject": "MUSI", "number": "3223", "name": "Men's Glee Club ", - "description": "An all-male choral ensemble focused on rehearsal and performance of male chorus literature. Full Description " + "description": "An all-male choral ensemble focused on rehearsal and performance of male chorus literature." }, "MUSI3231": { "subject": "MUSI", "number": "3231", "name": "Chamber Choir ", - "description": "An auditioned mixed ensemble focused upon the rehearsal, study and performance of choral music. Repertoire varies from various style eras and genres. Full Description " + "description": "An auditioned mixed ensemble focused upon the rehearsal, study and performance of choral music. Repertoire varies from various style eras and genres." }, "MUSI3241": { "subject": "MUSI", "number": "3241", "name": "Chorale ", - "description": "A non-auditioned mixed ensemble focused upon the rehearsal, study and performance of choral music. Repertoire varies from various style eras and genres. Full Description " + "description": "A non-auditioned mixed ensemble focused upon the rehearsal, study and performance of choral music. Repertoire varies from various style eras and genres." }, "MUSI3251": { "subject": "MUSI", "number": "3251", "name": "Glee Club ", - "description": "A non-auditioned male ensemble focused upon the rehearsal, study and performance of choral music. Repertoire varies from various style eras and genres. Full Description " + "description": "A non-auditioned male ensemble focused upon the rehearsal, study and performance of choral music. Repertoire varies from various style eras and genres." }, "MUSI3261": { "subject": "MUSI", "number": "3261", "name": "Women's Choir ", - "description": "A non-auditioned TREBLE ensemble focused upon the rehearsal, study and performance of choral music. Repertoire varies from various style eras and genres. Full Description " + "description": "A non-auditioned TREBLE ensemble focused upon the rehearsal, study and performance of choral music. Repertoire varies from various style eras and genres." }, "MUSI3301": { "subject": "MUSI", "number": "3301", "name": "Jazz Ensemble ", - "description": "A traditional twenty member big band and small ensemble specializing in improvisation. Members learn various jazz styles, performance practices, and history. Full Description " + "description": "A traditional twenty member big band and small ensemble specializing in improvisation. Members learn various jazz styles, performance practices, and history." }, "MUSI3302": { "subject": "MUSI", "number": "3302", "name": "Jazz Ensemble ", - "description": "A traditional twenty member big band and small ensemble specializing in improvisation. Members learn various jazz styles, performance practices, and history. Full Description " + "description": "A traditional twenty member big band and small ensemble specializing in improvisation. Members learn various jazz styles, performance practices, and history." }, "MUSI3303": { "subject": "MUSI", "number": "3303", "name": "Jazz Ensemble ", - "description": "A traditional twenty member big band and small ensemble specializing in improvisation. Members learn various jazz styles, performance practices, and history. Full Description " + "description": "A traditional twenty member big band and small ensemble specializing in improvisation. Members learn various jazz styles, performance practices, and history." }, "MUSI3311": { "subject": "MUSI", "number": "3311", "name": "Jazz Ensemble ", - "description": "Jazz Ensemble explores music from the 1920's to the present, focusing on ensemble playing and improvisation. Full Description " + "description": "Jazz Ensemble explores music from the 1920's to the present, focusing on ensemble playing and improvisation." }, "MUSI3321": { "subject": "MUSI", "number": "3321", "name": "Jazz Combo ", - "description": "Jazz Combos explore small group jazz focusing on ensemble playing and improvisation. Full Description " + "description": "Jazz Combos explore small group jazz focusing on ensemble playing and improvisation." }, "MUSI3401": { "subject": "MUSI", "number": "3401", "name": "Chamber Ensemble ", - "description": "Small instrumental ensembles of various types selected by the director to perform literature for the specific ensemble. Full Description " + "description": "Small instrumental ensembles of various types selected by the director to perform literature for the specific ensemble." }, "MUSI3402": { "subject": "MUSI", "number": "3402", "name": "Chamber Ensemble ", - "description": "Small instrumental ensembles of various types selected by the director to perform literature for the specific ensemble. Full Description " + "description": "Small instrumental ensembles of various types selected by the director to perform literature for the specific ensemble." }, "MUSI3403": { "subject": "MUSI", "number": "3403", "name": "Chamber Ensemble ", - "description": "Small instrumental ensembles of various types selected by the director to perform literature for the specific ensemble. Full Description " + "description": "Small instrumental ensembles of various types selected by the director to perform literature for the specific ensemble." }, "MUSI3450": { "subject": "MUSI", "number": "3450", "name": "Survey-Music Technology ", - "description": "A detailed survey of historic and contemporary electronic music systems and their applications in the creation, production, and reproduction of music. Full Description " + "description": "A detailed survey of historic and contemporary electronic music systems and their applications in the creation, production, and reproduction of music." }, "MUSI3500": { "subject": "MUSI", "number": "3500", "name": "Intro-Computer Music ", - "description": "Introduction of synthesized computer music familiarizes the student with basic sequencing and music engraving using fundamentals of music theory and composition. Full Description " + "description": "Introduction of synthesized computer music familiarizes the student with basic sequencing and music engraving using fundamentals of music theory and composition." }, "MUSI3501": { "subject": "MUSI", "number": "3501", "name": "Percussion Ensemble ", - "description": "Percussion ensemble focuses on traditional and contemporary ensemble literature as well as transcriptions of popular music. Full Description " + "description": "Percussion ensemble focuses on traditional and contemporary ensemble literature as well as transcriptions of popular music." }, "MUSI3502": { "subject": "MUSI", "number": "3502", "name": "Percussion Ensemble ", - "description": "Percussion ensemble focuses on traditional and contemporary ensemble literature as well as transcriptions of popular music. Full Description " + "description": "Percussion ensemble focuses on traditional and contemporary ensemble literature as well as transcriptions of popular music." }, "MUSI3503": { "subject": "MUSI", "number": "3503", "name": "Percussion Ensemble ", - "description": "Percussion ensemble focuses on traditional and contemporary ensemble literature as well as transcriptions of popular music. Full Description " + "description": "Percussion ensemble focuses on traditional and contemporary ensemble literature as well as transcriptions of popular music." }, "MUSI3511": { "subject": "MUSI", "number": "3511", "name": "Percussion Ensemble ", - "description": "An advanced instrumental ensemble performing traditional and contemporary percussion literature. Offered to all students with percussion experience. Audition required. Full Description " + "description": "An advanced instrumental ensemble performing traditional and contemporary percussion literature. Offered to all students with percussion experience. Audition required." }, "MUSI3521": { "subject": "MUSI", "number": "3521", "name": "Elec Percuss Studio/Ens. ", - "description": "Applied design construction and programming for performance. Full Description " + "description": "Applied design construction and programming for performance." }, "MUSI3522": { "subject": "MUSI", "number": "3522", "name": "Elec Percuss Studio/Ens. ", - "description": "Applied design construction and programming for performance. Full Description " + "description": "Applied design construction and programming for performance." }, "MUSI3531": { "subject": "MUSI", "number": "3531", "name": "New Music Ensemble ", - "description": "An advanced instrumental chamber ensemble that performs new and contemporary literature often using technology. Offered to all students with advanced performing experience. Audition required. Full Description " + "description": "An advanced instrumental chamber ensemble that performs new and contemporary literature often using technology. Offered to all students with advanced performing experience. Audition required." }, "MUSI3551": { "subject": "MUSI", "number": "3551", "name": "Rock and Pop Ensemble ", - "description": "A contemporary popular music ensemble performing historical and current popular music. Offered to all students with advanced performing experience. Audition required. Full Description " + "description": "A contemporary popular music ensemble performing historical and current popular music. Offered to all students with advanced performing experience. Audition required." }, "MUSI3600": { "subject": "MUSI", "number": "3600", "name": "Music Theory II ", - "description": "Advanced music theory including Roman numeral analysis, voice leading in four-part harmony, seventh chords, melodic organization, and modulation. Full Description " + "description": "Advanced music theory including Roman numeral analysis, voice leading in four-part harmony, seventh chords, melodic organization, and modulation." }, "MUSI3601": { "subject": "MUSI", "number": "3601", "name": "University Orchestra ", - "description": "The Georgia Tech Orchestra maintains a full complement of woodwinds, brass, percussion, and strings and performs classical through contemporary literature. Contact director prior to the first day of class to arrange audition. Full Description " + "description": "The Georgia Tech Orchestra maintains a full complement of woodwinds, brass, percussion, and strings and performs classical through contemporary literature. Contact director prior to the first day of class to arrange audition." }, "MUSI3602": { "subject": "MUSI", "number": "3602", "name": "University Orchestra ", - "description": "The Georgia Tech Orchestra maintains a full complement of woodwinds, brass, percussion, and strings and performs classical through contemporary literature. Contact director prior to the first day of class to arrange audition. Full Description " + "description": "The Georgia Tech Orchestra maintains a full complement of woodwinds, brass, percussion, and strings and performs classical through contemporary literature. Contact director prior to the first day of class to arrange audition." }, "MUSI3603": { "subject": "MUSI", "number": "3603", "name": "University Orchestra ", - "description": "The Georgia Tech Orchestra maintains a full complement of woodwinds, brass, percussion, and strings and performs classical through contemporary literature. Contact director prior to the first day of class to arrange audition. Full Description " + "description": "The Georgia Tech Orchestra maintains a full complement of woodwinds, brass, percussion, and strings and performs classical through contemporary literature. Contact director prior to the first day of class to arrange audition." }, "MUSI3610": { "subject": "MUSI", "number": "3610", "name": "Composers 1500-1800 ", - "description": "The history of western music from the Renaissance to the period of classicism. Full Description " + "description": "The history of western music from the Renaissance to the period of classicism." }, "MUSI3611": { "subject": "MUSI", "number": "3611", "name": "Symphony Orchestra ", - "description": "An advanced instrumental ensemble performing traditional and contemporary literature. Offered to all students with string, woodwind, brass, or percussion experience. Audition required. Full Description " + "description": "An advanced instrumental ensemble performing traditional and contemporary literature. Offered to all students with string, woodwind, brass, or percussion experience. Audition required." }, "MUSI3620": { "subject": "MUSI", "number": "3620", "name": "Composers 1800-Present ", - "description": "The history of western music from the period of classicism to present day. Full Description " + "description": "The history of western music from the period of classicism to present day." }, "MUSI3630": { "subject": "MUSI", "number": "3630", "name": "History of Jazz ", - "description": "The history of the American musical art form, Jazz, from its roots within African American work songs through fusion and new directions in jazz. Full Description " + "description": "The history of the American musical art form, Jazz, from its roots within African American work songs through fusion and new directions in jazz." }, "MUSI3710": { "subject": "MUSI", "number": "3710", "name": "Ind Applied Instruction ", - "description": "Private instruction for vocal, wind, and percussion students admitted into the Minor of Music program. Full Description " + "description": "Private instruction for vocal, wind, and percussion students admitted into the Minor of Music program." }, "MUSI3720": { "subject": "MUSI", "number": "3720", "name": "Ind Applied Instruction ", - "description": "Private instruction for vocal, wind, and percussion students admitted into the Minor of Music program. Full Description " + "description": "Private instruction for vocal, wind, and percussion students admitted into the Minor of Music program." }, "MUSI3730": { "subject": "MUSI", "number": "3730", "name": "Ind Applied Instruction ", - "description": "Private instruction for vocal, wind, and percussion students admitted into the Minor of Music program. Full Description " + "description": "Private instruction for vocal, wind, and percussion students admitted into the Minor of Music program." }, "MUSI3740": { "subject": "MUSI", "number": "3740", "name": "Ind Applied Instruction ", - "description": "Private instruction for vocal, wind, and percussion students admitted into the Music Minor program. Full Description " + "description": "Private instruction for vocal, wind, and percussion students admitted into the Music Minor program." }, "MUSI3750": { "subject": "MUSI", "number": "3750", "name": "Ind Applied Instruction ", - "description": "Private instruction for vocal, wind, and percussion students admitted into the Music Minor program. Full Description " + "description": "Private instruction for vocal, wind, and percussion students admitted into the Music Minor program." }, "MUSI3801": { "subject": "MUSI", "number": "3801", "name": "Special Topics ", - "description": "Special ad hoc courses or projects not included in regular course offerings. Full Description " + "description": "Special ad hoc courses or projects not included in regular course offerings." }, "MUSI3802": { "subject": "MUSI", "number": "3802", "name": "Special Topics ", - "description": "Special ad hoc courses or projects not included in regular course offerings. Full Description " + "description": "Special ad hoc courses or projects not included in regular course offerings." }, "MUSI3803": { "subject": "MUSI", "number": "3803", "name": "Special Topics ", - "description": "Special ad hoc courses or projects not included in regular course offerings. Full Description " + "description": "Special ad hoc courses or projects not included in regular course offerings." }, "MUSI4008": { "subject": "MUSI", "number": "4008", "name": "Marching Band ", - "description": "The Georgia Tech Marching Yellow Jackets perform at all home and some away football games. Students are expected to attend a pre-season camp. All conflicts must be approved by the director. Full Description " + "description": "The Georgia Tech Marching Yellow Jackets perform at all home and some away football games. Students are expected to attend a pre-season camp. All conflicts must be approved by the director." }, "MUSI4009": { "subject": "MUSI", "number": "4009", "name": "Pep Band ", - "description": "Performance ensemble for men's and women's basketball games. Full Description " + "description": "Performance ensemble for men's and women's basketball games." }, "MUSI4102": { "subject": "MUSI", "number": "4102", "name": "Concert Band ", - "description": "An instrumental ensemble that performs traditional and contemporary wind literature and is offered to all students with wind, brass, or percussion experience. Full Description " + "description": "An instrumental ensemble that performs traditional and contemporary wind literature and is offered to all students with wind, brass, or percussion experience." }, "MUSI4103": { "subject": "MUSI", "number": "4103", "name": "Concert Band ", - "description": "An instrumental ensemble that performs traditional and contemporary wind literature and is offered to all students with wind, brass, or percussion experience. Full Description " + "description": "An instrumental ensemble that performs traditional and contemporary wind literature and is offered to all students with wind, brass, or percussion experience." }, "MUSI4112": { "subject": "MUSI", "number": "4112", "name": "Symphonic Band ", - "description": "Audition required prior to the first day of class. An auditioned instrumental ensemble for the more accomplished student interested in band performance; focusing on musical excellence of challenging band literature. Contact director for audition requirements. Full Description " + "description": "Audition required prior to the first day of class. An auditioned instrumental ensemble for the more accomplished student interested in band performance; focusing on musical excellence of challenging band literature. Contact director for audition requirements." }, "MUSI4113": { "subject": "MUSI", "number": "4113", "name": "Symphonic Band ", - "description": "Prerequisite: Audition prior to the first day of class. An auditioned instrumental ensemble for the more accomplished student interested in band performance; focusing on musical excellence of challenging band literature. Contact director for audition requirements. Full Description " + "description": "Prerequisite: Audition prior to the first day of class. An auditioned instrumental ensemble for the more accomplished student interested in band performance; focusing on musical excellence of challenging band literature. Contact director for audition requirements." }, "MUSI4201": { "subject": "MUSI", "number": "4201", "name": "Chorale ", - "description": "A large ensemble focused on rehearsal and performance of high-quality music of all genres. Choral music experience recommended. Full Description " + "description": "A large ensemble focused on rehearsal and performance of high-quality music of all genres. Choral music experience recommended." }, "MUSI4202": { "subject": "MUSI", "number": "4202", "name": "Chorale ", - "description": "Prerequisite: Choral music experience recommended. A large ensemble focused on rehearsal and performance of high- quality music of all genres. Full Description " + "description": "Prerequisite: Choral music experience recommended. A large ensemble focused on rehearsal and performance of high- quality music of all genres." }, "MUSI4203": { "subject": "MUSI", "number": "4203", "name": "Chorale ", - "description": "Prerequisite: Choral music experience recommended. A large ensemble focused on rehearsal and performance of high- quality music of all genres. Full Description " + "description": "Prerequisite: Choral music experience recommended. A large ensemble focused on rehearsal and performance of high- quality music of all genres." }, "MUSI4211": { "subject": "MUSI", "number": "4211", "name": "Vocal Ensemble ", - "description": "An auditioned vocal ensemble of the more serious student of vocal music; focuses on rehearsal and performance of high- quality music of all genres. Audition and/or consent of instructor required. Full Description " + "description": "An auditioned vocal ensemble of the more serious student of vocal music; focuses on rehearsal and performance of high- quality music of all genres. Audition and/or consent of instructor required." }, "MUSI4212": { "subject": "MUSI", "number": "4212", "name": "Vocal Ensemble ", - "description": "Prerequisite: Audition and/or consent of instructor. An auditioned vocal ensemble for the more serious student of vocal music; focused on rehearsal and performance of high- quality music of all genres. Full Description " + "description": "Prerequisite: Audition and/or consent of instructor. An auditioned vocal ensemble for the more serious student of vocal music; focused on rehearsal and performance of high- quality music of all genres." }, "MUSI4213": { "subject": "MUSI", "number": "4213", "name": "Vocal Ensemble ", - "description": "Prerequisite: Audition and/or consent of professor. An auditioned vocal ensemble for the more serious student of vocal music; focused on rehearsal and performance of high- quality music of all genres. Full Description " + "description": "Prerequisite: Audition and/or consent of professor. An auditioned vocal ensemble for the more serious student of vocal music; focused on rehearsal and performance of high- quality music of all genres." }, "MUSI4221": { "subject": "MUSI", "number": "4221", "name": "Men's Glee Club ", - "description": "An all -ale choral ensemble focused on rehearsal and performance of male chorus literature. Full Description " + "description": "An all -ale choral ensemble focused on rehearsal and performance of male chorus literature." }, "MUSI4222": { "subject": "MUSI", "number": "4222", "name": "Men's Glee Club ", - "description": "An all-male choral ensemble focused on rehearsal and performance of male chorus literature. Full Description " + "description": "An all-male choral ensemble focused on rehearsal and performance of male chorus literature." }, "MUSI4223": { "subject": "MUSI", "number": "4223", "name": "Men's Glee Club ", - "description": "An all-male choral ensemble focused on rehearsal and performance of male chorus literature. Full Description " + "description": "An all-male choral ensemble focused on rehearsal and performance of male chorus literature." }, "MUSI4301": { "subject": "MUSI", "number": "4301", "name": "Jazz Ensemble ", - "description": "A traditional twenty member big band and small ensemble specializing in improvisation. Members learn various jazz styles, performance practices, and history. Full Description " + "description": "A traditional twenty member big band and small ensemble specializing in improvisation. Members learn various jazz styles, performance practices, and history." }, "MUSI4302": { "subject": "MUSI", "number": "4302", "name": "Jazz Ensemble ", - "description": "A traditional twenty member big band and small ensemble specializing in improvisation. Members learn various jazz styles, performance practices, and history. Full Description " + "description": "A traditional twenty member big band and small ensemble specializing in improvisation. Members learn various jazz styles, performance practices, and history." }, "MUSI4303": { "subject": "MUSI", "number": "4303", "name": "Jazz Ensemble ", - "description": "A traditional twenty member big band and small ensemble specializing in improvisation. Members learn various jazz styles, performance practices, and history. Full Description " + "description": "A traditional twenty member big band and small ensemble specializing in improvisation. Members learn various jazz styles, performance practices, and history." }, "MUSI4401": { "subject": "MUSI", "number": "4401", "name": "Chamber Ensemble ", - "description": "Small instrumental ensembles of various types selected by the director to perform literature for the specific ensemble. Full Description " + "description": "Small instrumental ensembles of various types selected by the director to perform literature for the specific ensemble." }, "MUSI4402": { "subject": "MUSI", "number": "4402", "name": "Chamber Ensemble ", - "description": "Small instrumental ensembles of various types selected by the director to perform literature for the specific ensemble. Full Description " + "description": "Small instrumental ensembles of various types selected by the director to perform literature for the specific ensemble." }, "MUSI4403": { "subject": "MUSI", "number": "4403", "name": "Chamber Ensemble ", - "description": "Small instrumental ensembles of various types selected by the director to perform literature for the specific ensemble. Full Description " + "description": "Small instrumental ensembles of various types selected by the director to perform literature for the specific ensemble." }, "MUSI4450": { "subject": "MUSI", "number": "4450", "name": "Integrat Mus Multimedia ", - "description": "Techniques for effectively utilizing music and audio in the context of digital multimedia. Full Description " + "description": "Techniques for effectively utilizing music and audio in the context of digital multimedia." }, "MUSI4455": { "subject": "MUSI", "number": "4455", "name": "Streaming Media ", - "description": "To familiarize students with tools and techniques for the creation, production, distribution, and aesthetic analysis of audio, video, and live events for Internet and Internet2 dissemination. Full Description " + "description": "To familiarize students with tools and techniques for the creation, production, distribution, and aesthetic analysis of audio, video, and live events for Internet and Internet2 dissemination." }, "MUSI4501": { "subject": "MUSI", "number": "4501", "name": "Percussion Ensemble ", - "description": "Percussion ensemble focuses on traditional and contemporary ensemble literature as well as transcriptions of popular music. Full Description " + "description": "Percussion ensemble focuses on traditional and contemporary ensemble literature as well as transcriptions of popular music." }, "MUSI4502": { "subject": "MUSI", "number": "4502", "name": "Percussion Ensemble ", - "description": "Percussion ensemble focuses on traditional and contemporary ensemble literature as well as transcriptions of popular music. Full Description " + "description": "Percussion ensemble focuses on traditional and contemporary ensemble literature as well as transcriptions of popular music." }, "MUSI4503": { "subject": "MUSI", "number": "4503", "name": "Percussion Ensemble ", - "description": "Percussion ensemble focuses on traditional and contemporary ensemble literature as well as transcriptions of popular music. Full Description " + "description": "Percussion ensemble focuses on traditional and contemporary ensemble literature as well as transcriptions of popular music." }, "MUSI4521": { "subject": "MUSI", "number": "4521", "name": "Elec Percuss Studio/Ens. ", - "description": "Applied design construction and programming for performance. Full Description " + "description": "Applied design construction and programming for performance." }, "MUSI4522": { "subject": "MUSI", "number": "4522", "name": "Elec Percuss Studio/Ens. ", - "description": "Applied design construction and programming for performance. Full Description " + "description": "Applied design construction and programming for performance." }, "MUSI4601": { "subject": "MUSI", "number": "4601", "name": "University Orchestra ", - "description": "The Georgia Tech Orchestra maintains a full complement of woodwinds, brass, percussion, and strings and performs classical through contemporary literature. Contact director prior to the first day of class to arrange audition. Full Description " + "description": "The Georgia Tech Orchestra maintains a full complement of woodwinds, brass, percussion, and strings and performs classical through contemporary literature. Contact director prior to the first day of class to arrange audition." }, "MUSI4602": { "subject": "MUSI", "number": "4602", "name": "University Orchestra ", - "description": "The Georgia Tech Orchestra maintains a full complement of woodwinds, brass, percussion, and strings and performs classical through contemporary literature. Contact director prior to the first day of class to arrange audition. Full Description " + "description": "The Georgia Tech Orchestra maintains a full complement of woodwinds, brass, percussion, and strings and performs classical through contemporary literature. Contact director prior to the first day of class to arrange audition." }, "MUSI4603": { "subject": "MUSI", "number": "4603", "name": "University Orchestra ", - "description": "The Georgia Tech Orchestra maintains a full complement of woodwinds, brass, percussion, and strings and performs classical through contemporary literature. Contact director prior to the first day of class to arrange audition. Full Description " + "description": "The Georgia Tech Orchestra maintains a full complement of woodwinds, brass, percussion, and strings and performs classical through contemporary literature. Contact director prior to the first day of class to arrange audition." }, "MUSI4630": { "subject": "MUSI", "number": "4630", "name": "Music Recording & Mixing ", - "description": "Overview of concepts, techniques, hardware, and software used in audio production, as well as aesthetic concerns and considerations. Full Description " + "description": "Overview of concepts, techniques, hardware, and software used in audio production, as well as aesthetic concerns and considerations." }, "MUSI4650": { "subject": "MUSI", "number": "4650", "name": "Music & Sound Design ", - "description": "An investigation of principles and practice of audio and music design, in both contemporary digital and traditional analog systems. Full Description " + "description": "An investigation of principles and practice of audio and music design, in both contemporary digital and traditional analog systems." }, "MUSI4670": { "subject": "MUSI", "number": "4670", "name": "Music Interface Design ", - "description": "Theory and practice of designing and prototyping new forms of music interfaces, including percussion, haptic, and augmented traditional constructs. Full Description " + "description": "Theory and practice of designing and prototyping new forms of music interfaces, including percussion, haptic, and augmented traditional constructs." }, "MUSI4698": { "subject": "MUSI", "number": "4698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "MUSI4699": { "subject": "MUSI", "number": "4699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "MUSI4801": { "subject": "MUSI", "number": "4801", "name": "Special Topics ", - "description": "Special ad hoc courses or projects not included in regular course offerings. Full Description " + "description": "Special ad hoc courses or projects not included in regular course offerings." }, "MUSI4802": { "subject": "MUSI", "number": "4802", "name": "Special Topics ", - "description": "Special ad hoc courses or projects not included in regular course offerings. Full Description " + "description": "Special ad hoc courses or projects not included in regular course offerings." }, "MUSI4803": { "subject": "MUSI", "number": "4803", "name": "Special Topics ", - "description": "Special ad hoc courses or projects not included in regular course offerings. Full Description " + "description": "Special ad hoc courses or projects not included in regular course offerings." }, "MUSI4813": { "subject": "MUSI", "number": "4813", "name": "Special Topics ", - "description": "Special ad hoc courses or projects not included in regular course offerings. Full Description " + "description": "Special ad hoc courses or projects not included in regular course offerings." }, "MUSI4823": { "subject": "MUSI", "number": "4823", "name": "Special Topics ", - "description": "Special ad hoc courses or projects included in regular course offerings. Full Description " + "description": "Special ad hoc courses or projects included in regular course offerings." }, "MUSI4833": { "subject": "MUSI", "number": "4833", "name": "Special Topics ", - "description": "Special ad hoc courses or projects not included in regular course offerings. Full Description " + "description": "Special ad hoc courses or projects not included in regular course offerings." }, "MUSI6001": { "subject": "MUSI", "number": "6001", "name": "Mus Perception&Cognition ", - "description": "This course examines how humans process musical sound, including topics such as the auditory system, psychacoustics, music cognition, and psychology. Full Description " + "description": "This course examines how humans process musical sound, including topics such as the auditory system, psychacoustics, music cognition, and psychology." }, "MUSI6002": { "subject": "MUSI", "number": "6002", "name": "Interactive Music ", - "description": "Theoretical and practical issues in computer supported interactive music. The course involves readings, class discussions, student presentations, and the design of a final project. Full Description " + "description": "Theoretical and practical issues in computer supported interactive music. The course involves readings, class discussions, student presentations, and the design of a final project." }, "MUSI6003": { "subject": "MUSI", "number": "6003", "name": "Mus Tech Hist&Repertoire ", - "description": "Overview of the history, aesthetics, and technology of electronic and computer music over the past century through selected readings, musical analysis, and individual research projects. Full Description " + "description": "Overview of the history, aesthetics, and technology of electronic and computer music over the past century through selected readings, musical analysis, and individual research projects." }, "MUSI6004": { "subject": "MUSI", "number": "6004", "name": "Technology Ensemble ", - "description": "Practice and performance of original and repertoire works in live audio settings using commercial and propriety technology. Full Description " + "description": "Practice and performance of original and repertoire works in live audio settings using commercial and propriety technology." }, "MUSI6005": { "subject": "MUSI", "number": "6005", "name": "Music Ensemble ", - "description": "The graduate level of any music ensemble. Full Description " + "description": "The graduate level of any music ensemble." }, "MUSI6103": { "subject": "MUSI", "number": "6103", "name": "Music Recording & Mixing ", - "description": "Overview of concepts, techniques, hardware, and software used in audio production as well as aesthetic concerns and considerations. Full Description " + "description": "Overview of concepts, techniques, hardware, and software used in audio production as well as aesthetic concerns and considerations." }, "MUSI6104": { "subject": "MUSI", "number": "6104", "name": "Integrat Musi-Multimedia ", - "description": "To familiarize students with the tools and techniques for effectively utilizing music and audio in the context of digital multimedia and the internet. Full Description " + "description": "To familiarize students with the tools and techniques for effectively utilizing music and audio in the context of digital multimedia and the internet." }, "MUSI6105": { "subject": "MUSI", "number": "6105", "name": "Dig Media Prod&Mastering ", - "description": "Tools and techniques for effectively mastering, optimizing, finalizing, and producing digital media for multimedia and the Internet. Full Description " + "description": "Tools and techniques for effectively mastering, optimizing, finalizing, and producing digital media for multimedia and the Internet." }, "MUSI6201": { "subject": "MUSI", "number": "6201", "name": "Computational Music Anly ", - "description": "This class addresses theory and techniques of Music Information Retrieval (MIR). Topics include computational analysis of audio signals, symbolic representations, and pattern recognition techniques. Credit will not be awarded for both MUSI 6201 and MUSI 4457. Full Description " + "description": "This class addresses theory and techniques of Music Information Retrieval (MIR). Topics include computational analysis of audio signals, symbolic representations, and pattern recognition techniques. Credit will not be awarded for both MUSI 6201 and MUSI 4457." }, "MUSI6202": { "subject": "MUSI", "number": "6202", "name": "Dig Signal Process-Music ", - "description": "Research in music, as well as music production and composition increasingly relies on sophiticated digital signal processing techniques. This course will review fundamental elements of digital audio signal processing, such as sinusoids, spectra, digital filters, and Fourier analysis and their application to the fundamental music analysis problems of modeling and synthesis. The course will focus particularly on the algorithmic implementation sound transformation and synthesis techniques through intensive programming assignments in Matlab and CSound. Full Description " + "description": "Research in music, as well as music production and composition increasingly relies on sophiticated digital signal processing techniques. This course will review fundamental elements of digital audio signal processing, such as sinusoids, spectra, digital filters, and Fourier analysis and their application to the fundamental music analysis problems of modeling and synthesis. The course will focus particularly on the algorithmic implementation sound transformation and synthesis techniques through intensive programming assignments in Matlab and CSound." }, "MUSI6203": { "subject": "MUSI", "number": "6203", "name": "Proj Studio-Music Tech ", - "description": "Discussion, design and development of computer music applications and performance controllers. Full Description " + "description": "Discussion, design and development of computer music applications and performance controllers." }, "MUSI6301": { "subject": "MUSI", "number": "6301", "name": "Music Interface Design ", - "description": "Theory and practice of designing and prototyping new forms of music interfaces including percussion, haptic, and augmented traditional constructs. Full Description " + "description": "Theory and practice of designing and prototyping new forms of music interfaces including percussion, haptic, and augmented traditional constructs." }, "MUSI6302": { "subject": "MUSI", "number": "6302", "name": "The Musical Mind ", - "description": "This course teaches the science of music, nature of music, perception of music, analysis of musical talent, development of musical skills, and approaches to musical esthetics. Full Description " + "description": "This course teaches the science of music, nature of music, perception of music, analysis of musical talent, development of musical skills, and approaches to musical esthetics." }, "MUSI6303": { "subject": "MUSI", "number": "6303", "name": "Network Music ", - "description": "Exploration of distributed music systems over local-area networks and Internet, including discussion of existing technologies, works, literature, and hands-on experimentation with tools and techniques. Full Description " + "description": "Exploration of distributed music systems over local-area networks and Internet, including discussion of existing technologies, works, literature, and hands-on experimentation with tools and techniques." }, "MUSI6304": { "subject": "MUSI", "number": "6304", "name": "Comp Music Composition ", - "description": "Realization of individual composition projects in music technology and consideration of related theory, aesthetics, and repertoire. Credit will not be awarded for both MUSI 6304 and MUSI 4458. Full Description " + "description": "Realization of individual composition projects in music technology and consideration of related theory, aesthetics, and repertoire. Credit will not be awarded for both MUSI 6304 and MUSI 4458." }, "MUSI7000": { "subject": "MUSI", "number": "7000", "name": "Master's Thesis ", - "description": "Advisor guided thesis writing. Full Description " + "description": "Advisor guided thesis writing." }, "MUSI7100": { "subject": "MUSI", "number": "7100", "name": "Music Tech Research Lab ", - "description": "Advisor guided research and creative work in music technology. Investigation of novel technological and artistic concepts. Design and develop new hardware, software, and musical artifacts. Full Description " + "description": "Advisor guided research and creative work in music technology. Investigation of novel technological and artistic concepts. Design and develop new hardware, software, and musical artifacts." }, "MUSI7998": { "subject": "MUSI", "number": "7998", "name": "Prep-Doct Qual Paper ", - "description": "Preparation of qualifying paper for Ph.D. in Music Technology. Full Description " + "description": "Preparation of qualifying paper for Ph.D. in Music Technology." }, "MUSI7999": { "subject": "MUSI", "number": "7999", "name": "Prep-Doct Qual Exams ", - "description": "Preparation for qualifying examinations for Ph.D. in Music Technology. Full Description " + "description": "Preparation for qualifying examinations for Ph.D. in Music Technology." }, "MUSI8001": { "subject": "MUSI", "number": "8001", "name": "Research Methods ", - "description": "Theoretical and practical issues in music technology research including design patterns, data sets, quantitative and qualitative evaluation standards, proper citation, and print and oral presentation. Full Description " + "description": "Theoretical and practical issues in music technology research including design patterns, data sets, quantitative and qualitative evaluation standards, proper citation, and print and oral presentation." }, "MUSI8002": { "subject": "MUSI", "number": "8002", "name": "Teaching Practicum ", - "description": "Pedagogical approaches to music technology, focusing on hands-on teaching experience. Full Description " + "description": "Pedagogical approaches to music technology, focusing on hands-on teaching experience." }, "MUSI8801": { "subject": "MUSI", "number": "8801", "name": "Special Topics ", - "description": "Topics of current interest. Full Description " + "description": "Topics of current interest." }, "MUSI8802": { "subject": "MUSI", "number": "8802", "name": "Special Topics ", - "description": "Topics of current interest. Full Description " + "description": "Topics of current interest." }, "MUSI8803": { "subject": "MUSI", "number": "8803", "name": "Special Topics ", - "description": "Topics of current interest. Full Description " + "description": "Topics of current interest." }, "MUSI8804": { "subject": "MUSI", "number": "8804", "name": "Special Topics ", - "description": "Topics of current interest. Full Description " + "description": "Topics of current interest." }, "MUSI8805": { "subject": "MUSI", "number": "8805", "name": "Special Topics ", - "description": "Topics of current interest. Full Description " + "description": "Topics of current interest." }, "MUSI8901": { "subject": "MUSI", "number": "8901", "name": "Special Problems ", - "description": "individualized study with an advisor. Full Description " + "description": "individualized study with an advisor." }, "MUSI8902": { "subject": "MUSI", "number": "8902", "name": "Special Problems ", - "description": "Individualized study with an advisor. Full Description " + "description": "Individualized study with an advisor." }, "MUSI8903": { "subject": "MUSI", "number": "8903", "name": "Special Problems ", - "description": "individualized study with an advisor. Full Description " + "description": "individualized study with an advisor." }, "MUSI9000": { "subject": "MUSI", "number": "9000", "name": "Doctoral Thesis ", - "description": " Full Description " + "description": "" }, "NRE2110": { "subject": "NRE", "number": "2110", "name": "Intro to NRE ", - "description": "Introduction to nuclear and radiological engineering; nuclear energy production and radiation technologies and their role of importance to society, their environmental impact. Full Description " + "description": "Introduction to nuclear and radiological engineering; nuclear energy production and radiation technologies and their role of importance to society, their environmental impact." }, "NRE2698": { "subject": "NRE", "number": "2698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "NRE2699": { "subject": "NRE", "number": "2699", "name": "Underegraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "NRE3112": { "subject": "NRE", "number": "3112", "name": "Radiation Detection ", - "description": "An introduction to the principles and characteristics of basic detectors for nuclear radiation and the pulse processing electronics associated with them. Full Description " + "description": "An introduction to the principles and characteristics of basic detectors for nuclear radiation and the pulse processing electronics associated with them." }, "NRE3208": { "subject": "NRE", "number": "3208", "name": "Nuclear Reactor Phys I ", - "description": "Intermediate treatment of reactor physics and associated advanced mathematics topics. Full Description " + "description": "Intermediate treatment of reactor physics and associated advanced mathematics topics." }, "NRE3212": { "subject": "NRE", "number": "3212", "name": "Fundamentals of NRE ", - "description": "Intermediate treatment of nuclear and radiological engineering, with emphasis on reactor physics and engineering, radiation protection, and radiation shielding. Full Description " + "description": "Intermediate treatment of nuclear and radiological engineering, with emphasis on reactor physics and engineering, radiation protection, and radiation shielding." }, "NRE3301": { "subject": "NRE", "number": "3301", "name": "Radiation Physics ", - "description": "Characteristics of atomic and nuclear radiations, transition probabilities, radioactivity, classical and quantum-mechanical derivations of cross sections, interactions of photon, neutron, and charged particles with matter. Full Description " + "description": "Characteristics of atomic and nuclear radiations, transition probabilities, radioactivity, classical and quantum-mechanical derivations of cross sections, interactions of photon, neutron, and charged particles with matter." }, "NRE3316": { "subject": "NRE", "number": "3316", "name": "Radiation Protection Eng ", - "description": "Covers radiation dosimetry, biological effects of radiation, radiation-protection criteria and exposure limits, external radiation protection, internal radiation protection, and sources of human exposure. Full Description " + "description": "Covers radiation dosimetry, biological effects of radiation, radiation-protection criteria and exposure limits, external radiation protection, internal radiation protection, and sources of human exposure." }, "NRE3XXX": { "subject": "NRE", "number": "3XXX", "name": "Nuclear&Rad Eng Elective ", - "description": " Full Description " + "description": "" }, "NRE4206": { "subject": "NRE", "number": "4206", "name": "Radiation Physics Lab ", - "description": "Measurements of reactor parameters, such as approach to criticality, flux mapping, buckling, and diffusion length using subcritical assemblies. Neutron spectral measurements, shield transmission measurements, and other radiation field measurements. Full Description " + "description": "Measurements of reactor parameters, such as approach to criticality, flux mapping, buckling, and diffusion length using subcritical assemblies. Neutron spectral measurements, shield transmission measurements, and other radiation field measurements." }, "NRE4208": { "subject": "NRE", "number": "4208", "name": "Nuclear Reactor Phys II ", - "description": "Advanced treatment of reactor physics and associated advanced mathematics topics. Students may not receive credit for both NRE 4208 and NRE 4202. Full Description " + "description": "Advanced treatment of reactor physics and associated advanced mathematics topics. Students may not receive credit for both NRE 4208 and NRE 4202." }, "NRE4214": { "subject": "NRE", "number": "4214", "name": "Reactor Engineering ", - "description": "Nuclear heat generation; fuel elements' thermal analysis; single and two-phase flow and heat transfer in reactor systems; core thermal design and treatment of uncertainties. Full Description " + "description": "Nuclear heat generation; fuel elements' thermal analysis; single and two-phase flow and heat transfer in reactor systems; core thermal design and treatment of uncertainties." }, "NRE4232": { "subject": "NRE", "number": "4232", "name": "NRE Design ", - "description": "Introduction to the methodologies of nuclear and radiological design. An open-ended design project that integrates all relevant engineering aspects is to be completed in this course. Full Description " + "description": "Introduction to the methodologies of nuclear and radiological design. An open-ended design project that integrates all relevant engineering aspects is to be completed in this course." }, "NRE4234": { "subject": "NRE", "number": "4234", "name": "Nuc Criticality Safe Eng ", - "description": "This course covers the theoretical concepts, the computational techniques, and the principal methods of criticality safety. Full Description " + "description": "This course covers the theoretical concepts, the computational techniques, and the principal methods of criticality safety." }, "NRE4266": { "subject": "NRE", "number": "4266", "name": "Light Water Reactor Tech ", - "description": "A systematic survey of the technology of both pressurized and boiling water reactors with emphasis on the nuclear stream supply system and its associated safety and control systems. Full Description " + "description": "A systematic survey of the technology of both pressurized and boiling water reactors with emphasis on the nuclear stream supply system and its associated safety and control systems." }, "NRE4328": { "subject": "NRE", "number": "4328", "name": "Radiation Sources & Appl ", - "description": "Radiation Sources. Radioisotope production. Application of radiation and radioisotope technology in industry and medicine. Full Description " + "description": "Radiation Sources. Radioisotope production. Application of radiation and radioisotope technology in industry and medicine." }, "NRE4404": { "subject": "NRE", "number": "4404", "name": "Rad Assessment&Waste Mgt ", - "description": "Mathematical models for movement in the environment. Scenario development for release, environmental transport, and exposure. Radioactive waste disposal facilities and waste disposal technology. Full Description " + "description": "Mathematical models for movement in the environment. Scenario development for release, environmental transport, and exposure. Radioactive waste disposal facilities and waste disposal technology." }, "NRE4430": { "subject": "NRE", "number": "4430", "name": "Nucl Regulatory Require ", - "description": "This course introduces regulatory organizations and delineates their jurisdictions. It covers the fundamentals of regulations, the impacts on occupational workers, the public, and the environment. Full Description " + "description": "This course introduces regulatory organizations and delineates their jurisdictions. It covers the fundamentals of regulations, the impacts on occupational workers, the public, and the environment." }, "NRE4610": { "subject": "NRE", "number": "4610", "name": "Plasma Phys& Fusion Engr ", - "description": "A first course in plasma physics and magnetic confinement fusion: basic plasma physics, magnetic confinement concepts, fusion engineering, and a review of the current status of fusion research. Full Description " + "description": "A first course in plasma physics and magnetic confinement fusion: basic plasma physics, magnetic confinement concepts, fusion engineering, and a review of the current status of fusion research." }, "NRE4698": { "subject": "NRE", "number": "4698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "NRE4699": { "subject": "NRE", "number": "4699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "NRE4750": { "subject": "NRE", "number": "4750", "name": "Diagnostic Imaging Phys ", - "description": "Physics and image formation methods for conventional X-ray CT, nuclear medicine, and magnetic resonance and ultrasound imaging. Full Description " + "description": "Physics and image formation methods for conventional X-ray CT, nuclear medicine, and magnetic resonance and ultrasound imaging." }, "NRE4770": { "subject": "NRE", "number": "4770", "name": "Nuclear Chemical Engr ", - "description": "This course surveys the chemical engineering aspects of nuclear power. Topics include nuclear reactions, fuel cycles, solvent extraction of metals, the properties of actinides and other irradiated fuel materials, fuel reprocessing, and radioactive waste management. Crosslisted with CHE 4770. Full Description " + "description": "This course surveys the chemical engineering aspects of nuclear power. Topics include nuclear reactions, fuel cycles, solvent extraction of metals, the properties of actinides and other irradiated fuel materials, fuel reprocessing, and radioactive waste management. Crosslisted with CHE 4770." }, "NRE4801": { "subject": "NRE", "number": "4801", "name": "Special Topics ", - "description": "Special topic offerings of current interest not included in regular courses. Full Description " + "description": "Special topic offerings of current interest not included in regular courses." }, "NRE4802": { "subject": "NRE", "number": "4802", "name": "Special Topics ", - "description": "Special topic offerings of current interest not included in regular courses. Full Description " + "description": "Special topic offerings of current interest not included in regular courses." }, "NRE4803": { "subject": "NRE", "number": "4803", "name": "Special Topics ", - "description": "Special topic offerings of current interest not included in regular courses. Full Description " + "description": "Special topic offerings of current interest not included in regular courses." }, "NRE4804": { "subject": "NRE", "number": "4804", "name": "Special Topics ", - "description": "Special topics offerings of current interest not included in regular courses. Full Description " + "description": "Special topics offerings of current interest not included in regular courses." }, "NRE4805": { "subject": "NRE", "number": "4805", "name": "Special Topics ", - "description": "Special topic offerings of current interest not included in regular courses. Full Description " + "description": "Special topic offerings of current interest not included in regular courses." }, "NRE4901": { "subject": "NRE", "number": "4901", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "NRE4902": { "subject": "NRE", "number": "4902", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "NRE4903": { "subject": "NRE", "number": "4903", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "NRE4XXX": { "subject": "NRE", "number": "4XXX", "name": "Nuclear&Rad Eng Elective ", - "description": " Full Description " + "description": "" }, "NRE6101": { "subject": "NRE", "number": "6101", "name": "Transport Fundamentals ", - "description": "Neutral and charged particle transport. Fluid mass, energy, and momentum transport. Models used in nuclear radiation transport; fluid hydrodynamics, radiative and plasma transport. Full Description " + "description": "Neutral and charged particle transport. Fluid mass, energy, and momentum transport. Models used in nuclear radiation transport; fluid hydrodynamics, radiative and plasma transport." }, "NRE6102": { "subject": "NRE", "number": "6102", "name": "Plasma Physics ", - "description": "Physics of ionized plasmas. Magnetic confinement, kinetic and fluid theories, equilibrium, waves and stability, plasma-material interactions, atomic/molecular-plasma interactions, multispecies transport. Plasma processing applications. Full Description " + "description": "Physics of ionized plasmas. Magnetic confinement, kinetic and fluid theories, equilibrium, waves and stability, plasma-material interactions, atomic/molecular-plasma interactions, multispecies transport. Plasma processing applications." }, "NRE6103": { "subject": "NRE", "number": "6103", "name": "Computational Transport ", - "description": "Deterministic and stochastic computational methods for solving transport equations of neutral particles. Full Description " + "description": "Deterministic and stochastic computational methods for solving transport equations of neutral particles." }, "NRE6201": { "subject": "NRE", "number": "6201", "name": "Reactor Physics ", - "description": "Fundamentals of reactor physics for nuclear analysis of neutron chain reactors and for developing tools required for design of those reactors. Full Description " + "description": "Fundamentals of reactor physics for nuclear analysis of neutron chain reactors and for developing tools required for design of those reactors." }, "NRE6301": { "subject": "NRE", "number": "6301", "name": "Reactor Engineering ", - "description": "Two-phase flow, boiling heat transfer, fast reactor thermal-hydraulics, reactor thermal-hydraulics uncertainty analysis, loss-of-coolant accidents. Reactor thermal- hydraulic accident analysis. Full Description " + "description": "Two-phase flow, boiling heat transfer, fast reactor thermal-hydraulics, reactor thermal-hydraulics uncertainty analysis, loss-of-coolant accidents. Reactor thermal- hydraulic accident analysis." }, "NRE6401": { "subject": "NRE", "number": "6401", "name": "Adv Nuclear Engr Design ", - "description": "Synthesis of principles of nuclear engineering in the design of nuclear reactors and other facilities. Full Description " + "description": "Synthesis of principles of nuclear engineering in the design of nuclear reactors and other facilities." }, "NRE6434": { "subject": "NRE", "number": "6434", "name": "Nucl Crit Safety Engr ", - "description": "Concepts, computational techniques, and the principal methods of criticality safety such as accident experience, standards, experiments, computer and hand calculations, limits and regulations. Application to overall facility operation. Full Description " + "description": "Concepts, computational techniques, and the principal methods of criticality safety such as accident experience, standards, experiments, computer and hand calculations, limits and regulations. Application to overall facility operation." }, "NRE6501": { "subject": "NRE", "number": "6501", "name": "Nuclear Fuel Cycle ", - "description": "Fission fuel cycle, uranium mining and milling, enrichment. Fuel fabrication. In-core fuel management. Reprocessing and fuel cycle economics. Spent-fuel waste management. Full Description " + "description": "Fission fuel cycle, uranium mining and milling, enrichment. Fuel fabrication. In-core fuel management. Reprocessing and fuel cycle economics. Spent-fuel waste management." }, "NRE6502": { "subject": "NRE", "number": "6502", "name": "Nuclear Materials ", - "description": "Materials science and engineering of metallic and ceramic fuels; cladding, structural, and control materials including radiation effects. Full Description " + "description": "Materials science and engineering of metallic and ceramic fuels; cladding, structural, and control materials including radiation effects." }, "NRE6755": { "subject": "NRE", "number": "6755", "name": "Rad Assessment&Waste Mgt ", - "description": "Critical analyses of sources and human exposures, mathematical models for movement through the biosphere, environmental transport, and exposure for nuclear facilities and waste disposal processing. Crosslisted with HP 6755. Full Description " + "description": "Critical analyses of sources and human exposures, mathematical models for movement through the biosphere, environmental transport, and exposure for nuclear facilities and waste disposal processing. Crosslisted with HP 6755." }, "NRE6756": { "subject": "NRE", "number": "6756", "name": "Radiation Physics ", - "description": "Characteristics of atomic and nuclear radiation, transition probabilities, radioactivity and isotopes, cross sections, electromagnetic radiation, neutrons, and charged particle interaction with matter. Crosslisted with HP 6756. Full Description " + "description": "Characteristics of atomic and nuclear radiation, transition probabilities, radioactivity and isotopes, cross sections, electromagnetic radiation, neutrons, and charged particle interaction with matter. Crosslisted with HP 6756." }, "NRE6757": { "subject": "NRE", "number": "6757", "name": "Radiation Detection ", - "description": "Introduction to the theory and application of radiation detectors, measurement methods, signal processing, and data analysis. Crosslisted with HP 6757. Full Description " + "description": "Introduction to the theory and application of radiation detectors, measurement methods, signal processing, and data analysis. Crosslisted with HP 6757." }, "NRE6758": { "subject": "NRE", "number": "6758", "name": "Numerical Methods in ME ", - "description": "Numerical methods for solution of engineering problems; initial, eigenvalue, and boundary-value problems; computational stability for ordinary and linear partial differential equations. Crosslisted with ME and HP 6758. Full Description " + "description": "Numerical methods for solution of engineering problems; initial, eigenvalue, and boundary-value problems; computational stability for ordinary and linear partial differential equations. Crosslisted with ME and HP 6758." }, "NRE6759": { "subject": "NRE", "number": "6759", "name": "Radiation Shielding ", - "description": "Principles of Radiation Shielding; Design of Shields; Computational Methods for Analysis of Shielding; Emphasis on Monte Carlo Simulation as a Shielding Tool. Full Description " + "description": "Principles of Radiation Shielding; Design of Shields; Computational Methods for Analysis of Shielding; Emphasis on Monte Carlo Simulation as a Shielding Tool." }, "NRE6XXX": { "subject": "NRE", "number": "6XXX", "name": "Nuclear&Rad Eng Elective ", - "description": " Full Description " + "description": "" }, "NRE7000": { "subject": "NRE", "number": "7000", "name": "Master's Thesis ", - "description": " Full Description " + "description": "" }, "NRE7103": { "subject": "NRE", "number": "7103", "name": "Advanced Plasma Physics ", - "description": "Classical and collective transport phenomena, plasma instabilities, plasma-materials interactions, and plasma edge physics. Emphasis on magnetic fusion, plasma processing, and other plasma applications research. Full Description " + "description": "Classical and collective transport phenomena, plasma instabilities, plasma-materials interactions, and plasma edge physics. Emphasis on magnetic fusion, plasma processing, and other plasma applications research." }, "NRE7203": { "subject": "NRE", "number": "7203", "name": "Advanced Reactor Physics ", - "description": "Advanced topics in reactor physics and transport theory. Full Description " + "description": "Advanced topics in reactor physics and transport theory." }, "NRE7757": { "subject": "NRE", "number": "7757", "name": "Teaching Practicum ", - "description": "Supervised teaching for doctoral students. Teaching techniques, course and curriculum design, student evaluation methods and criteria. Students may, in some instances, prepare and present lectures. Crosslisted with HP, ME, and CHBE 7757. Full Description " + "description": "Supervised teaching for doctoral students. Teaching techniques, course and curriculum design, student evaluation methods and criteria. Students may, in some instances, prepare and present lectures. Crosslisted with HP, ME, and CHBE 7757." }, "NRE8011": { "subject": "NRE", "number": "8011", "name": "Seminar-Nuclear Engr ", - "description": "Seminars involving current research projects presented by graduate students, faculty, and invited speakers. Full Description " + "description": "Seminars involving current research projects presented by graduate students, faculty, and invited speakers." }, "NRE8012": { "subject": "NRE", "number": "8012", "name": "Seminar-Nuclear Engr ", - "description": "Seminars involving current research projects presented by graduate students, faculty, and invited speakers. Full Description " + "description": "Seminars involving current research projects presented by graduate students, faculty, and invited speakers." }, "NRE8801": { "subject": "NRE", "number": "8801", "name": "Spec Topic-Nuclear Engr ", - "description": "Special topic offerings of current interest in nuclear engineering not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in nuclear engineering not included in regular courses." }, "NRE8802": { "subject": "NRE", "number": "8802", "name": "Spec Topic-Nuclear Engr ", - "description": "Special topic offerings of current interest in nuclear engineering not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in nuclear engineering not included in regular courses." }, "NRE8803": { "subject": "NRE", "number": "8803", "name": "Spec Topic-Nuclear Engr ", - "description": "Special topic offerings of current interest in nuclear engineering not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in nuclear engineering not included in regular courses." }, "NRE8804": { "subject": "NRE", "number": "8804", "name": "Spec Topic-Nuclear Engr ", - "description": "Special topic offerings of current interest in nuclear engineering not included in regular courses. Full Description " + "description": "Special topic offerings of current interest in nuclear engineering not included in regular courses." }, "NRE8805": { "subject": "NRE", "number": "8805", "name": "Spec Topic-Nuclear Engr ", - "description": "Special topics offerings of current interest in nuclear engineering not included in regular courses. Full Description " + "description": "Special topics offerings of current interest in nuclear engineering not included in regular courses." }, "NRE8806": { "subject": "NRE", "number": "8806", "name": "Spec Topic-Nuclear Engr ", - "description": "Special topics offerings of current interest in nuclear engineering not included in regular courses. Full Description " + "description": "Special topics offerings of current interest in nuclear engineering not included in regular courses." }, "NRE8901": { "subject": "NRE", "number": "8901", "name": "Spec Prob-Nuclear Engr ", - "description": "Individual studies and/or experimental investigations of problems of current interest in nuclear engineering. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in nuclear engineering." }, "NRE8902": { "subject": "NRE", "number": "8902", "name": "Spec Prob-Nuclear Engr ", - "description": "Individual studies and/or experimental investigations of problems of current interest in nuclear engineering. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in nuclear engineering." }, "NRE8903": { "subject": "NRE", "number": "8903", "name": "Spec Prob-Nuclear Engr ", - "description": "Individual studies and/or experimental investigations of problems of current interest in nuclear engineering. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in nuclear engineering." }, "NRE8904": { "subject": "NRE", "number": "8904", "name": "Spec Prob-Nuclear Engr ", - "description": "Individual studies and/or experimental investigations of problems of current interest in nuclear engineering. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in nuclear engineering." }, "NRE8905": { "subject": "NRE", "number": "8905", "name": "Spec Prob-Nuclear Engr ", - "description": "Individual studies and/or experimental investigations of problems of current interest in nuclear engineering. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in nuclear engineering." }, "NRE8906": { "subject": "NRE", "number": "8906", "name": "Spec Prob-Nuclear Engr ", - "description": "Individual studies and/or experimental investigations of problems of current interest in nuclear engineering. Full Description " + "description": "Individual studies and/or experimental investigations of problems of current interest in nuclear engineering." }, "NRE8997": { "subject": "NRE", "number": "8997", "name": "Teaching Assistantship ", - "description": "For graduate students holding graduate teaching assistantships. Full Description " + "description": "For graduate students holding graduate teaching assistantships." }, "NRE8998": { "subject": "NRE", "number": "8998", "name": "Research Assistantship ", - "description": "For graduate students holding graduate research assistantships. Full Description " + "description": "For graduate students holding graduate research assistantships." }, "NRE9000": { "subject": "NRE", "number": "9000", "name": "Doctoral Thesis ", - "description": " Full Description " + "description": "" }, "NS1321": { "subject": "NS", "number": "1321", "name": "Intro to Naval Sciences ", - "description": "This course is an introduction and orientation class designed to give students a broad overview of the roles of the United States Navy and Marine Corps. This course also provides an introduction to the structure, terminology, customs, and uniforms of the Navy and Marine Corps. Full Description " + "description": "This course is an introduction and orientation class designed to give students a broad overview of the roles of the United States Navy and Marine Corps. This course also provides an introduction to the structure, terminology, customs, and uniforms of the Navy and Marine Corps." }, "NS1323": { "subject": "NS", "number": "1323", "name": "Naval History ", - "description": "This course surveys U.S. Naval history from its European origin to the present with emphasis on major developments and the geopolitical forces shaping these developments. The course also covers present day concerns in seapower and maritime affairs, including the economic and political issues of maritime commerce, the law of the sea, and the rise and decline of the Soviet Navy. Full Description " + "description": "This course surveys U.S. Naval history from its European origin to the present with emphasis on major developments and the geopolitical forces shaping these developments. The course also covers present day concerns in seapower and maritime affairs, including the economic and political issues of maritime commerce, the law of the sea, and the rise and decline of the Soviet Navy." }, "NS2321": { "subject": "NS", "number": "2321", "name": "Naval Leadership I ", - "description": "Survey of managerial functions, communication, and major theories of leadership and motivation applied to the Navy organization. Culminates with focus on Naval core values. Full Description " + "description": "Survey of managerial functions, communication, and major theories of leadership and motivation applied to the Navy organization. Culminates with focus on Naval core values." }, "NS2323": { "subject": "NS", "number": "2323", "name": "Navigation ", - "description": "This course develops and broadens the student's understanding of basic piloting and the laws of vessel operations by applying the fundamentals of navigation at sea. Full Description " + "description": "This course develops and broadens the student's understanding of basic piloting and the laws of vessel operations by applying the fundamentals of navigation at sea." }, "NS3323": { "subject": "NS", "number": "3323", "name": "Evolution of Warfare ", - "description": "A historical exploration of warfare practiced by great nations. Selected campaigns are studied with emphasis on leadership, evolution of tactics, weaponry, and principles of war. Full Description " + "description": "A historical exploration of warfare practiced by great nations. Selected campaigns are studied with emphasis on leadership, evolution of tactics, weaponry, and principles of war." }, "NS3324": { "subject": "NS", "number": "3324", "name": "Marine Weapons & Tactics ", - "description": "This course is a prepatory course required by all Marines and Marine Options their junior year prior to Officer Candidates School. General military subjects, land navigation, history, tactics drill, leadership, and physical fitness will be taught and tested. Full Description " + "description": "This course is a prepatory course required by all Marines and Marine Options their junior year prior to Officer Candidates School. General military subjects, land navigation, history, tactics drill, leadership, and physical fitness will be taught and tested." }, "NS3325": { "subject": "NS", "number": "3325", "name": "Naval Weapons Systems ", - "description": "This course develops and broadens the student's understanding of basic engineering concepts and principles as applied to naval weapon systems. Full Description " + "description": "This course develops and broadens the student's understanding of basic engineering concepts and principles as applied to naval weapon systems." }, "NS3326": { "subject": "NS", "number": "3326", "name": "Naval Engineering Sys ", - "description": "This course develops and broadens the student's understanding of basic engineering concepts and priciples as applied to naval engineering plants. Full Description " + "description": "This course develops and broadens the student's understanding of basic engineering concepts and priciples as applied to naval engineering plants." }, "NS4320": { "subject": "NS", "number": "4320", "name": "Naval Operations ", - "description": "This course builds on the fundamentals presented in its prerequisites and further prepares soon-to-be-commissioned officers to step aboard their new ship/submarine and stand watch. Full Description " + "description": "This course builds on the fundamentals presented in its prerequisites and further prepares soon-to-be-commissioned officers to step aboard their new ship/submarine and stand watch." }, "NS4322": { "subject": "NS", "number": "4322", "name": "Naval Leadership II ", - "description": "Study of Naval values and ethics to include core values, Navy regulations, and military law. Duties and responsibilities of a junior naval officer. Full Description " + "description": "Study of Naval values and ethics to include core values, Navy regulations, and military law. Duties and responsibilities of a junior naval officer." }, "NS4323": { "subject": "NS", "number": "4323", "name": "Amphibious Warfare ", - "description": "A historical exploration of warfare practiced by great nations. Selected campaigns are studied with emphasis on leadership, evolution of tactics, and principles of war. Full Description " + "description": "A historical exploration of warfare practiced by great nations. Selected campaigns are studied with emphasis on leadership, evolution of tactics, and principles of war." }, "PERS1001": { "subject": "PERS", "number": "1001", "name": "Elementary Persian I ", - "description": "Students acquire reading and writing skills and the ability to communicate in basic situations. Taught in Persian. Full Description " + "description": "Students acquire reading and writing skills and the ability to communicate in basic situations. Taught in Persian." }, "PERS1002": { "subject": "PERS", "number": "1002", "name": "Elementary Persian II ", - "description": "Students aquire reading and writing skills and the ability to communicate in basic situations. Continuation of PERS 1001. Taught in Persian. Full Description " + "description": "Students aquire reading and writing skills and the ability to communicate in basic situations. Continuation of PERS 1001. Taught in Persian." }, "PERS1814": { "subject": "PERS", "number": "1814", "name": "Special Topics ", - "description": "Topics of current interest in Persian Languages. Full Description " + "description": "Topics of current interest in Persian Languages." }, "PERS1824": { "subject": "PERS", "number": "1824", "name": "Special Topics ", - "description": "Topics of current interest in Persian Languages. Full Description " + "description": "Topics of current interest in Persian Languages." }, "PERS2813": { "subject": "PERS", "number": "2813", "name": "Special Topics ", - "description": "Topics of current interest in Persian Languages. Full Description " + "description": "Topics of current interest in Persian Languages." }, "PERS2823": { "subject": "PERS", "number": "2823", "name": "Special Topics ", - "description": "Topics of current interest in Persian Languages. Full Description " + "description": "Topics of current interest in Persian Languages." }, "PERS3813": { "subject": "PERS", "number": "3813", "name": "Special Topics ", - "description": "Topics of current interest in Persian Languages. Full Description " + "description": "Topics of current interest in Persian Languages." }, "PERS4813": { "subject": "PERS", "number": "4813", "name": "Special Topics ", - "description": "Topics of current interest in Persian Languages. Full Description " + "description": "Topics of current interest in Persian Languages." }, "PERS4823": { "subject": "PERS", "number": "4823", "name": "Special Topics ", - "description": "Topics of current interest in Persian Languages. Full Description " + "description": "Topics of current interest in Persian Languages." }, "PHIL1XXX": { "subject": "PHIL", "number": "1XXX", "name": "Philosophy, Sci& Tech Elec ", - "description": " Full Description " + "description": "" }, "PHIL2010": { "subject": "PHIL", "number": "2010", "name": "Intro Philosophy ", - "description": "An introduction to the nature of philosophy through the critical analysis of selected works, such as Descartes, Hobbes, and Locke. The relationship of philosophy to science, religion, and culture will be emphasized. Credit not allowed for both PST 1101 and PHIL 2010 Full Description " + "description": "An introduction to the nature of philosophy through the critical analysis of selected works, such as Descartes, Hobbes, and Locke. The relationship of philosophy to science, religion, and culture will be emphasized. Credit not allowed for both PST 1101 and PHIL 2010" }, "PHIL2025": { "subject": "PHIL", "number": "2025", "name": "Philosophical Analysis ", - "description": "An introduction to philosophical questions that may arise in public policy debate and decision making and to resources from the philosophical tradition for addressing them. Credit not allowed for both PHIL 2025 and PST 2020 or PHIL 2025 and PST 2068. Full Description " + "description": "An introduction to philosophical questions that may arise in public policy debate and decision making and to resources from the philosophical tradition for addressing them. Credit not allowed for both PHIL 2025 and PST 2020 or PHIL 2025 and PST 2068." }, "PHIL2698": { "subject": "PHIL", "number": "2698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "PHIL2699": { "subject": "PHIL", "number": "2699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "PHIL2XXX": { "subject": "PHIL", "number": "2XXX", "name": "Philosophy, Sci&Tech Elec ", - "description": " Full Description " + "description": "" }, "PHIL3050": { "subject": "PHIL", "number": "3050", "name": "Political Philosophy ", - "description": "An exploration of the main currents in political philosophy from antiquity to the present, seeking resources for analyzing contemporary debates about policy and political process. Credit not allowed for both PST 3050 and PHIL 3050. Full Description " + "description": "An exploration of the main currents in political philosophy from antiquity to the present, seeking resources for analyzing contemporary debates about policy and political process. Credit not allowed for both PST 3050 and PHIL 3050." }, "PHIL3102": { "subject": "PHIL", "number": "3102", "name": "Ancient Philosophy ", - "description": "Development of philosophy in the classical works of Ancient Greek philosophy. Credit not allowed for both PHIL 3102 and PST 3102. Full Description " + "description": "Development of philosophy in the classical works of Ancient Greek philosophy. Credit not allowed for both PHIL 3102 and PST 3102." }, "PHIL3103": { "subject": "PHIL", "number": "3103", "name": "Modern Philosophy ", - "description": "A study of the development of philosophy from the views of Bacon and Descartes to the beginning of the 20th century. Traces the philosophic response to modern science in the rational and empirical traditions. Credit not allowed for both PST 3103 and PHIL 3103. Full Description " + "description": "A study of the development of philosophy from the views of Bacon and Descartes to the beginning of the 20th century. Traces the philosophic response to modern science in the rational and empirical traditions. Credit not allowed for both PST 3103 and PHIL 3103." }, "PHIL3105": { "subject": "PHIL", "number": "3105", "name": "Ethical Theories ", - "description": "Surveys traditional ethical theories of value, obligation, and rights and applies these theories to contemporary social problems such as abortion, euthanasia, poverty, and distributional equity, and environmental problems. Credit not allowed for both PHIL 3105 and PST 3105. Full Description " + "description": "Surveys traditional ethical theories of value, obligation, and rights and applies these theories to contemporary social problems such as abortion, euthanasia, poverty, and distributional equity, and environmental problems. Credit not allowed for both PHIL 3105 and PST 3105." }, "PHIL3109": { "subject": "PHIL", "number": "3109", "name": "Engineering Ethics ", - "description": "Ethical reasoning in the context of professional work in science and technology. Prepares future technical professionals to approach decision with a coherent ethical framework. Credit not allowed for both PHIL 3109 and PST 3109. Full Description " + "description": "Ethical reasoning in the context of professional work in science and technology. Prepares future technical professionals to approach decision with a coherent ethical framework. Credit not allowed for both PHIL 3109 and PST 3109." }, "PHIL3113": { "subject": "PHIL", "number": "3113", "name": "Logic& Critical Thinking ", - "description": "Symbolic logic and applications of logic in critical reading and thinking by exploring modern systems of symbolic logic and their implications for science. Emphasizes skills in critical thinking and writing based on the principles of logic. Credit not allowed for both PST 3113 and PHIL 3113. Full Description " + "description": "Symbolic logic and applications of logic in critical reading and thinking by exploring modern systems of symbolic logic and their implications for science. Emphasizes skills in critical thinking and writing based on the principles of logic. Credit not allowed for both PST 3113 and PHIL 3113." }, "PHIL3115": { "subject": "PHIL", "number": "3115", "name": "Philosophy of Science ", - "description": "Examination of the nature and processes of scientific inquiry, including the status of scientific knowledge, identification of pseudoscientific claims, and the role of values in generating and using scientific knowledge. Credit not allowed for both PHIL 3115 and PST 3115. Full Description " + "description": "Examination of the nature and processes of scientific inquiry, including the status of scientific knowledge, identification of pseudoscientific claims, and the role of values in generating and using scientific knowledge. Credit not allowed for both PHIL 3115 and PST 3115." }, "PHIL3127": { "subject": "PHIL", "number": "3127", "name": "Sci, Tech & Human Values ", - "description": "Exploration of the boundaries between science, religion, and social values, examining science and technology in a broader social context. Examines claims that science is isolated from social problems and values. Credit not allowed for both PHIL 3127 and PST 3127. Full Description " + "description": "Exploration of the boundaries between science, religion, and social values, examining science and technology in a broader social context. Examines claims that science is isolated from social problems and values. Credit not allowed for both PHIL 3127 and PST 3127." }, "PHIL3135": { "subject": "PHIL", "number": "3135", "name": "Philosophy of Technology ", - "description": "The course considers philosophical accounts of how technologies can and should shape our understandings of politics, ethics, and daily life. Full Description " + "description": "The course considers philosophical accounts of how technologies can and should shape our understandings of politics, ethics, and daily life." }, "PHIL3140": { "subject": "PHIL", "number": "3140", "name": "Philosophy of Food ", - "description": "Examines a range of philosophical and political issues pertaining to the production and consumption of food. Full Description " + "description": "Examines a range of philosophical and political issues pertaining to the production and consumption of food." }, "PHIL3790": { "subject": "PHIL", "number": "3790", "name": "Intro-Cognitive Science ", - "description": "Multidisciplinary perspectives on cognitive science. Interdisciplinary approaches to issues in cognition, including memory, language, problem solving, learning, perception, and action. Credit not allowed for both PHIL 3790 and PST 3790 (or CS 3790, PSYC 3790, ISYE 3790). Full Description " + "description": "Multidisciplinary perspectives on cognitive science. Interdisciplinary approaches to issues in cognition, including memory, language, problem solving, learning, perception, and action. Credit not allowed for both PHIL 3790 and PST 3790 (or CS 3790, PSYC 3790, ISYE 3790)." }, "PHIL3XXX": { "subject": "PHIL", "number": "3XXX", "name": "Philosophy, Sci&Tech Elec ", - "description": " Full Description " + "description": "" }, "PHIL4110": { "subject": "PHIL", "number": "4110", "name": "Theories of Knowledge ", - "description": "Critical examination of perception, verification, apriori and aposteriori knowledge, meaning and criteria of truth, and cognitive significance of scientific and philosophical propositions. Evolution of epistemology. Credit not allowed for both PHIL 4110 and PST 4110. Full Description " + "description": "Critical examination of perception, verification, apriori and aposteriori knowledge, meaning and criteria of truth, and cognitive significance of scientific and philosophical propositions. Evolution of epistemology. Credit not allowed for both PHIL 4110 and PST 4110." }, "PHIL4174": { "subject": "PHIL", "number": "4174", "name": "Perspectives-Sci & Tech ", - "description": "Comparative analysis of frameworks for interpreting science and technology, discussed in light of case studies. Selected frameworks include philosophical, historical, cognitive, and sociological. Credit not allowed for both PHIL 4174 and PST 4174. Full Description " + "description": "Comparative analysis of frameworks for interpreting science and technology, discussed in light of case studies. Selected frameworks include philosophical, historical, cognitive, and sociological. Credit not allowed for both PHIL 4174 and PST 4174." }, "PHIL4176": { "subject": "PHIL", "number": "4176", "name": "Environmental Ethics ", - "description": "Conceptual and normative foundations of environmental attitudes and values. Impacts of traditional and modern beliefs that shape human attitudes toward nature on creating a more compatible relationship between humans and their environment. Credit not allowed for both PHIL 4176 and PST 4176. Full Description " + "description": "Conceptual and normative foundations of environmental attitudes and values. Impacts of traditional and modern beliefs that shape human attitudes toward nature on creating a more compatible relationship between humans and their environment. Credit not allowed for both PHIL 4176 and PST 4176." }, "PHIL4698": { "subject": "PHIL", "number": "4698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "PHIL4699": { "subject": "PHIL", "number": "4699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "PHIL4752": { "subject": "PHIL", "number": "4752", "name": "Phil Issues-Computation ", - "description": "Introduction to metaphysical and epistemological issues in foundations, methods, and implications of computing. Issues include: minds, brains, and machines; representation and language; simulating nature. Credit not allowed for both PHIL 4752 and PST 4752. Crosslisted with CS 4752. Full Description " + "description": "Introduction to metaphysical and epistemological issues in foundations, methods, and implications of computing. Issues include: minds, brains, and machines; representation and language; simulating nature. Credit not allowed for both PHIL 4752 and PST 4752. Crosslisted with CS 4752." }, "PHIL4790": { "subject": "PHIL", "number": "4790", "name": "Semi-Cognitive Science ", - "description": "a seminar-type course in cognitive science focusing on integrating and deepening students' cognitive science knowledge and skills. Topics include memory, language, problem solving, learning, perception, and action. Credit not allowed for both PHIL 4790 and PST 4790 (or CS 4790, PSYC 4790, ISYE 4790). Full Description " + "description": "a seminar-type course in cognitive science focusing on integrating and deepening students' cognitive science knowledge and skills. Topics include memory, language, problem solving, learning, perception, and action. Credit not allowed for both PHIL 4790 and PST 4790 (or CS 4790, PSYC 4790, ISYE 4790)." }, "PHIL4803": { "subject": "PHIL", "number": "4803", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "PHIL4811": { "subject": "PHIL", "number": "4811", "name": "Special Topics ", - "description": "Topics of interest not covered in the regular course offerings. Full Description " + "description": "Topics of interest not covered in the regular course offerings." }, "PHIL4812": { "subject": "PHIL", "number": "4812", "name": "Special Topics ", - "description": "Topics of interest not covered in the regular course offerings. Full Description " + "description": "Topics of interest not covered in the regular course offerings." }, "PHIL4813": { "subject": "PHIL", "number": "4813", "name": "Special Topics ", - "description": "Topics of interest not covered in the regular course offerings. Full Description " + "description": "Topics of interest not covered in the regular course offerings." }, "PHIL4814": { "subject": "PHIL", "number": "4814", "name": "Special Topics ", - "description": "Topics of interest not covered in the regular course offerings. Full Description " + "description": "Topics of interest not covered in the regular course offerings." }, "PHIL4815": { "subject": "PHIL", "number": "4815", "name": "Special Topics ", - "description": "Topics of interest not covered in the regular courses offerings. Full Description " + "description": "Topics of interest not covered in the regular courses offerings." }, "PHIL4901": { "subject": "PHIL", "number": "4901", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "PHIL4902": { "subject": "PHIL", "number": "4902", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "PHIL4903": { "subject": "PHIL", "number": "4903", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "PHIL4XXX": { "subject": "PHIL", "number": "4XXX", "name": "Philosophy, Sci&Tech Elec ", - "description": " Full Description " + "description": "" }, "PHIL6000": { "subject": "PHIL", "number": "6000", "name": "Responsible Conduct-Res ", - "description": "An introduction to the concepts guiding the responsible conduct of research. Students will learn about the ethical norms and guidelines within different fields of research. Full Description " + "description": "An introduction to the concepts guiding the responsible conduct of research. Students will learn about the ethical norms and guidelines within different fields of research." }, "PHIL6010": { "subject": "PHIL", "number": "6010", "name": "Biotech Research Ethics ", - "description": "This course focuses on ethical issues in biotechnological fields. The course is designed to satisfy Georgia Tech RCR policy's requirements for \"in-person\" training. Full Description " + "description": "This course focuses on ethical issues in biotechnological fields. The course is designed to satisfy Georgia Tech RCR policy's requirements for \"in-person\" training." }, "PHYS1000": { "subject": "PHYS", "number": "1000", "name": "Physics Orientation ", - "description": "Guest lectures will describe career opportunities in physics; the role physicists play in education, government, and industrial laboratories; and programs available to physics majors. Full Description " + "description": "Guest lectures will describe career opportunities in physics; the role physicists play in education, government, and industrial laboratories; and programs available to physics majors." }, "PHYS11X1": { "subject": "PHYS", "number": "11X1", "name": "Transfer Non-Calc Phys I ", - "description": " Full Description " + "description": "" }, "PHYS11X2": { "subject": "PHYS", "number": "11X2", "name": "Transfer Non-Calc PhysII ", - "description": " Full Description " + "description": "" }, "PHYS1XXX": { "subject": "PHYS", "number": "1XXX", "name": "Physics Elective ", - "description": " Full Description " + "description": "" }, "PHYS2001": { "subject": "PHYS", "number": "2001", "name": "Evolution of Physics ", - "description": "The development of physics concepts and doctrines from early times to the near future, with social and philosophical correlates. Full Description " + "description": "The development of physics concepts and doctrines from early times to the near future, with social and philosophical correlates." }, "PHYS2021": { "subject": "PHYS", "number": "2021", "name": "Solar System ", - "description": "This course covers Ancient and Renaissance astronomy, gravity, sky phenomena, telescopes, and the solar system. Full Description " + "description": "This course covers Ancient and Renaissance astronomy, gravity, sky phenomena, telescopes, and the solar system." }, "PHYS2022": { "subject": "PHYS", "number": "2022", "name": "Stars, Galaxy & Universe ", - "description": "This course covers optics, telescopes, stellar characteristics and evolution, galaxies, the universe, and the big bang. Physics topics include mechanics, optics, atomic physics, nuclear physics, and relativity. Full Description " + "description": "This course covers optics, telescopes, stellar characteristics and evolution, galaxies, the universe, and the big bang. Physics topics include mechanics, optics, atomic physics, nuclear physics, and relativity." }, "PHYS2030": { "subject": "PHYS", "number": "2030", "name": "Physics Of Music ", - "description": "An introduction to the physical principles underlying the production, transmission, and detection of musical sounds. Full Description " + "description": "An introduction to the physical principles underlying the production, transmission, and detection of musical sounds." }, "PHYS2211": { "subject": "PHYS", "number": "2211", "name": "Intro Physics I ", - "description": "A calculus-based course with a laboratory covering classical mechanics, applications of classical mechanics, oscillations, and waves. Full Description " + "description": "A calculus-based course with a laboratory covering classical mechanics, applications of classical mechanics, oscillations, and waves." }, "PHYS2212": { "subject": "PHYS", "number": "2212", "name": "Intro Physics II ", - "description": "A calculus-based course with laboratory covering electromagnetism, applications of electromagnetism, light, and modern physics. Full Description " + "description": "A calculus-based course with laboratory covering electromagnetism, applications of electromagnetism, light, and modern physics." }, "PHYS2213": { "subject": "PHYS", "number": "2213", "name": "Intro to Modern Physics ", - "description": "A survey of twentieth century physics. Developments of several branches of physics up to their present frontiers, including historical and philosophical perspectives. Full Description " + "description": "A survey of twentieth century physics. Developments of several branches of physics up to their present frontiers, including historical and philosophical perspectives." }, "PHYS2231": { "subject": "PHYS", "number": "2231", "name": "Honors Physics I ", - "description": "Parallels introductory Physics I (PHYS 2211). Some topics treated in more depth or more extensively. A rigorous physics foundation requiring demonstrated competence in mathematics. Full Description " + "description": "Parallels introductory Physics I (PHYS 2211). Some topics treated in more depth or more extensively. A rigorous physics foundation requiring demonstrated competence in mathematics." }, "PHYS2232": { "subject": "PHYS", "number": "2232", "name": "Honors Physics II ", - "description": "Parallels introductory Physics II (PHYS 2212). Some topics treated in more depth or more extensively. No modern physics content. A rigorous physics foundation requiring demonstrated competence in mathematics. Full Description " + "description": "Parallels introductory Physics II (PHYS 2212). Some topics treated in more depth or more extensively. No modern physics content. A rigorous physics foundation requiring demonstrated competence in mathematics." }, "PHYS25X1": { "subject": "PHYS", "number": "25X1", "name": "Transfer Physics I ", - "description": " Full Description " + "description": "" }, "PHYS2698": { "subject": "PHYS", "number": "2698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "PHYS2699": { "subject": "PHYS", "number": "2699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "PHYS2750": { "subject": "PHYS", "number": "2750", "name": "Physics of the Weather ", - "description": "An introductory treatment applying basic physical laws to understanding weather phenomena. Crosslisted with EAS 2750. Full Description " + "description": "An introductory treatment applying basic physical laws to understanding weather phenomena. Crosslisted with EAS 2750." }, "PHYS2801": { "subject": "PHYS", "number": "2801", "name": "Special Topics ", - "description": "Courses in special topics of current interest in physics are presented from time to time. Full Description " + "description": "Courses in special topics of current interest in physics are presented from time to time." }, "PHYS2802": { "subject": "PHYS", "number": "2802", "name": "Special Topics ", - "description": "Courses in special topics of current interest in physics are presented from time to time. Full Description " + "description": "Courses in special topics of current interest in physics are presented from time to time." }, "PHYS2803": { "subject": "PHYS", "number": "2803", "name": "Special Topics ", - "description": "Courses in special topics of current interest in physics are presented from time to time. Full Description " + "description": "Courses in special topics of current interest in physics are presented from time to time." }, "PHYS2804": { "subject": "PHYS", "number": "2804", "name": "Special Topics ", - "description": "Courses in special topics of current interest in physics are presented from time to time. Full Description " + "description": "Courses in special topics of current interest in physics are presented from time to time." }, "PHYS2814": { "subject": "PHYS", "number": "2814", "name": "Special Topics ", - "description": "Courses in special topics of current interest in physics. Full Description " + "description": "Courses in special topics of current interest in physics." }, "PHYS2900": { "subject": "PHYS", "number": "2900", "name": "Special Problems ", - "description": "Course involving special problems in physics are offered from time to time. Full Description " + "description": "Course involving special problems in physics are offered from time to time." }, "PHYS2901": { "subject": "PHYS", "number": "2901", "name": "Special Problems ", - "description": "Courses involving special problems in physics are offered from time to time. Full Description " + "description": "Courses involving special problems in physics are offered from time to time." }, "PHYS2902": { "subject": "PHYS", "number": "2902", "name": "Special Problems ", - "description": "Courses involving special problems in physics are offered from time to time. Full Description " + "description": "Courses involving special problems in physics are offered from time to time." }, "PHYS2XXX": { "subject": "PHYS", "number": "2XXX", "name": "Physics Elective ", - "description": " Full Description " + "description": "" }, "PHYS3021": { "subject": "PHYS", "number": "3021", "name": "Stellar Astrophysics ", - "description": "Develops a working knowledge of stellar and extra-stellar galactic astronomy. Includes stellar structure, nucleosynthesis, stellar evolution, and degenerate objects. Full Description " + "description": "Develops a working knowledge of stellar and extra-stellar galactic astronomy. Includes stellar structure, nucleosynthesis, stellar evolution, and degenerate objects." }, "PHYS3043": { "subject": "PHYS", "number": "3043", "name": "Wave Mechanics ", - "description": "A first introduction to wave mechanics, with emphasis on practical calculations. The rules of quantum mechanics will be illustrated by many working examples. Full Description " + "description": "A first introduction to wave mechanics, with emphasis on practical calculations. The rules of quantum mechanics will be illustrated by many working examples." }, "PHYS3122": { "subject": "PHYS", "number": "3122", "name": "Electro & Magnetostatics ", - "description": "First of two courses on the physics of electromagnetism. Topics include Coulomb's Law, Ampere's Law, scalar and vector potentials,Laplace's equation and electric and magnetic fields in matter. Full Description " + "description": "First of two courses on the physics of electromagnetism. Topics include Coulomb's Law, Ampere's Law, scalar and vector potentials,Laplace's equation and electric and magnetic fields in matter." }, "PHYS3123": { "subject": "PHYS", "number": "3123", "name": "Electrodynamics ", - "description": "Second of two courses on the physics of electromagnetism. Topics include time-dependent phenomena including Faraday's Law, the Maxwell equations, electromagnetic radiation, and electromagnetic waves. Full Description " + "description": "Second of two courses on the physics of electromagnetism. Topics include time-dependent phenomena including Faraday's Law, the Maxwell equations, electromagnetic radiation, and electromagnetic waves." }, "PHYS3141": { "subject": "PHYS", "number": "3141", "name": "Thermodynamics ", - "description": "Introduction to the basic concepts of thermodynamics. Thermodynamic laws will be developed with an emphasis on the macroscopic point of view. Applications of the basic principles will be considered briefly. Full Description " + "description": "Introduction to the basic concepts of thermodynamics. Thermodynamic laws will be developed with an emphasis on the macroscopic point of view. Applications of the basic principles will be considered briefly." }, "PHYS3143": { "subject": "PHYS", "number": "3143", "name": "Quantum Mechanics I ", - "description": "First of two courses that develop the principles of quantum mechanics. Topics include the state vector concept. Heisenberg and Schrodinger pictures, uncertainty relations, and exact solvable models in one dimension. Full Description " + "description": "First of two courses that develop the principles of quantum mechanics. Topics include the state vector concept. Heisenberg and Schrodinger pictures, uncertainty relations, and exact solvable models in one dimension." }, "PHYS3151": { "subject": "PHYS", "number": "3151", "name": "Mathematical Physics ", - "description": "A review of the mathematical techniques required for the description of physical systems encountered in mechanics, electromagnetism, thermal physics, and quantum mechanics. Full Description " + "description": "A review of the mathematical techniques required for the description of physical systems encountered in mechanics, electromagnetism, thermal physics, and quantum mechanics." }, "PHYS3201": { "subject": "PHYS", "number": "3201", "name": "Classical Mechanics I ", - "description": "Dynamics of particles including oscillations and planetary motion, rotation of rigid bodies, and collisions. Full Description " + "description": "Dynamics of particles including oscillations and planetary motion, rotation of rigid bodies, and collisions." }, "PHYS3202": { "subject": "PHYS", "number": "3202", "name": "Classical Mechanics II ", - "description": "A continuation of PHYS 3201. Topics include Lagrangians and Hamiltonian techniques, and many body mechanics. Full Description " + "description": "A continuation of PHYS 3201. Topics include Lagrangians and Hamiltonian techniques, and many body mechanics." }, "PHYS3211": { "subject": "PHYS", "number": "3211", "name": "Electronics I ", - "description": "A first course in both theoretical and applied electronics that is based on a thorough grounding in circuit as well as device physics. Full Description " + "description": "A first course in both theoretical and applied electronics that is based on a thorough grounding in circuit as well as device physics." }, "PHYS3223": { "subject": "PHYS", "number": "3223", "name": "Geometric Optics ", - "description": "Principles of geometrical optics using ray tracing techniques. Stops, pupils, aberrations, and photometry. Design and analysis of lenses using current lens design software. Full Description " + "description": "Principles of geometrical optics using ray tracing techniques. Stops, pupils, aberrations, and photometry. Design and analysis of lenses using current lens design software." }, "PHYS3224": { "subject": "PHYS", "number": "3224", "name": "Geometrical Optics Lab ", - "description": "Measurement of parameters of optical surfaces, lenses, and systems using a variety of techniques. Full Description " + "description": "Measurement of parameters of optical surfaces, lenses, and systems using a variety of techniques." }, "PHYS3225": { "subject": "PHYS", "number": "3225", "name": "Modern Optics ", - "description": "Principles of wave propagation, coherence, polarization, diffraction, and Fourier Optics; laser theory including the interaction of light with matter. Full Description " + "description": "Principles of wave propagation, coherence, polarization, diffraction, and Fourier Optics; laser theory including the interaction of light with matter." }, "PHYS3226": { "subject": "PHYS", "number": "3226", "name": "Modern Optics Lab ", - "description": "Measurement of parameters of optical surfaces, lenses, and systems using a variety of modern optics techniques. Full Description " + "description": "Measurement of parameters of optical surfaces, lenses, and systems using a variety of modern optics techniques." }, "PHYS3232": { "subject": "PHYS", "number": "3232", "name": "Optics I ", - "description": "Optics principles, including waves, reflection, refraction, absorption, scattering, group velocity, lasers, polarization geometrical optics, the Fourier transform, coherence, interference, and diffraction. Full Description " + "description": "Optics principles, including waves, reflection, refraction, absorption, scattering, group velocity, lasers, polarization geometrical optics, the Fourier transform, coherence, interference, and diffraction." }, "PHYS3265": { "subject": "PHYS", "number": "3265", "name": "Acoustics ", - "description": "A course in classical acoustics and applied electroacoustics taught through the palliative of a study of sound reinforcement and reproduction systems. Full Description " + "description": "A course in classical acoustics and applied electroacoustics taught through the palliative of a study of sound reinforcement and reproduction systems." }, "PHYS3266": { "subject": "PHYS", "number": "3266", "name": "Computational Physics ", - "description": "Computer solutions of realistic physics problems such as projectiles in resistive media, electromagnetic sources and fields, atomic scattering, and band pass filters. Full Description " + "description": "Computer solutions of realistic physics problems such as projectiles in resistive media, electromagnetic sources and fields, atomic scattering, and band pass filters." }, "PHYS3801": { "subject": "PHYS", "number": "3801", "name": "Special Topics ", - "description": "Courses in special topics of current interest in physics are presented from time to time. Full Description " + "description": "Courses in special topics of current interest in physics are presented from time to time." }, "PHYS3802": { "subject": "PHYS", "number": "3802", "name": "Special Topics ", - "description": "Courses in special topics of current interest in physics are presented from time to time. Full Description " + "description": "Courses in special topics of current interest in physics are presented from time to time." }, "PHYS3803": { "subject": "PHYS", "number": "3803", "name": "Special Topics ", - "description": "Courses in special topics of current interest in physics are presented from time to time. Full Description " + "description": "Courses in special topics of current interest in physics are presented from time to time." }, "PHYS3804": { "subject": "PHYS", "number": "3804", "name": "Special Topics ", - "description": "Courses in special topics of current interest in physics are presented from time to time. Full Description " + "description": "Courses in special topics of current interest in physics are presented from time to time." }, "PHYS3900": { "subject": "PHYS", "number": "3900", "name": "Special Problems ", - "description": "Courses involving special problems in physics are offered from time to time. Full Description " + "description": "Courses involving special problems in physics are offered from time to time." }, "PHYS3901": { "subject": "PHYS", "number": "3901", "name": "Special Problems ", - "description": "Courses involving special problems in physics are offered from time to time. Full Description " + "description": "Courses involving special problems in physics are offered from time to time." }, "PHYS3902": { "subject": "PHYS", "number": "3902", "name": "Special Problems ", - "description": "Courses involving special problems in physics are offered from time to time. Full Description " + "description": "Courses involving special problems in physics are offered from time to time." }, "PHYS3XXX": { "subject": "PHYS", "number": "3XXX", "name": "Physics ELective ", - "description": " Full Description " + "description": "" }, "PHYS4142": { "subject": "PHYS", "number": "4142", "name": "Statistical Mechanics ", - "description": "The statistical basis of thermodynamics is developed. Topics include entropy and the second law, partition functions and free energy, systems of variable particle number, and quantum statistics. Full Description " + "description": "The statistical basis of thermodynamics is developed. Topics include entropy and the second law, partition functions and free energy, systems of variable particle number, and quantum statistics." }, "PHYS4143": { "subject": "PHYS", "number": "4143", "name": "Quantum Mechanics II ", - "description": "Second of two courses that develop the principles of quantum mechanics. Topics include angular momentum, hydrogen atom, variation methods, perturbation theory, matter-radiation interactions, identical particles. Full Description " + "description": "Second of two courses that develop the principles of quantum mechanics. Topics include angular momentum, hydrogen atom, variation methods, perturbation theory, matter-radiation interactions, identical particles." }, "PHYS4147": { "subject": "PHYS", "number": "4147", "name": "Relativity ", - "description": "The course provides an introduction to the special and general theories of relativity that govern gravitational physics including experimental tests, astrophysical applications, black holes and gravitational waves. Full Description " + "description": "The course provides an introduction to the special and general theories of relativity that govern gravitational physics including experimental tests, astrophysical applications, black holes and gravitational waves." }, "PHYS4206": { "subject": "PHYS", "number": "4206", "name": "Electronics II ", - "description": "A course in electronic instrumentation with an emphasis on signal processing, both analog and digital, and computer interfacing. Full Description " + "description": "A course in electronic instrumentation with an emphasis on signal processing, both analog and digital, and computer interfacing." }, "PHYS4220": { "subject": "PHYS", "number": "4220", "name": "Optical Design ", - "description": "Principles of optical and optomechanical design including tolerancing, specification, and thermal compensation of systems. Full Description " + "description": "Principles of optical and optomechanical design including tolerancing, specification, and thermal compensation of systems." }, "PHYS4222": { "subject": "PHYS", "number": "4222", "name": "Solid State Devices ", - "description": "Course provides an understanding of contemporary research on solid state devices. Topics include band structure, p-n junctions, transistors, superlattices, lasers and detectors, charge coupled devices, and others. Full Description " + "description": "Course provides an understanding of contemporary research on solid state devices. Topics include band structure, p-n junctions, transistors, superlattices, lasers and detectors, charge coupled devices, and others." }, "PHYS4247": { "subject": "PHYS", "number": "4247", "name": "Cosmology ", - "description": "Modern cosmology of the universe, with the emphasis on the origin and evolution of galaxies and clusters of galaxies, inflation, the cosmic microwave background, dark matter and dark energy. Full Description " + "description": "Modern cosmology of the universe, with the emphasis on the origin and evolution of galaxies and clusters of galaxies, inflation, the cosmic microwave background, dark matter and dark energy." }, "PHYS4251": { "subject": "PHYS", "number": "4251", "name": "Biophysics ", - "description": "Physical principles applied to molecular and cellular biology. Topics include chemiosmosis, self-assembly, protein biosynthesis, and the mechanisms of muscle and nerve function. Full Description " + "description": "Physical principles applied to molecular and cellular biology. Topics include chemiosmosis, self-assembly, protein biosynthesis, and the mechanisms of muscle and nerve function." }, "PHYS4261": { "subject": "PHYS", "number": "4261", "name": "Atomic Physics ", - "description": "Course provides an introduction to the fundamentals of atomic physics, the structure of atoms, and their interaction with static and radiation fields. Full Description " + "description": "Course provides an introduction to the fundamentals of atomic physics, the structure of atoms, and their interaction with static and radiation fields." }, "PHYS4262": { "subject": "PHYS", "number": "4262", "name": "Solid State Physics ", - "description": "A first course in the physics of crystalline solids. Core topics include crystal lattices, diffraction, bonding, elastic properties, band theory, as well as others. Full Description " + "description": "A first course in the physics of crystalline solids. Core topics include crystal lattices, diffraction, bonding, elastic properties, band theory, as well as others." }, "PHYS4263": { "subject": "PHYS", "number": "4263", "name": "Nuclei,Particles&Fields ", - "description": "An introduction to nuclear and subnuclear systems. Topics include nuclear models, radioactive decay, nuclear reactions, quarks, accelerators, reactors, and stellar nucleosynthesis. Full Description " + "description": "An introduction to nuclear and subnuclear systems. Topics include nuclear models, radioactive decay, nuclear reactions, quarks, accelerators, reactors, and stellar nucleosynthesis." }, "PHYS4267": { "subject": "PHYS", "number": "4267", "name": "Nonlinear Dynamics&Chaos ", - "description": "A modern introduction to nonlinear phenomena. Topics include driven oscillators, entrainment, bifurcation, fractals, and control of chaos. Examples are drawn from physical systems. Full Description " + "description": "A modern introduction to nonlinear phenomena. Topics include driven oscillators, entrainment, bifurcation, fractals, and control of chaos. Examples are drawn from physical systems." }, "PHYS4321": { "subject": "PHYS", "number": "4321", "name": "Advanced Lab I ", - "description": "Experiments are conducted that demonstrate basic principles from various fields of physics. An emphasis is placed on contemporary concepts in modern physics. Full Description " + "description": "Experiments are conducted that demonstrate basic principles from various fields of physics. An emphasis is placed on contemporary concepts in modern physics." }, "PHYS4322": { "subject": "PHYS", "number": "4322", "name": "Advanced Lab II ", - "description": "A continuation of PHYS 4321. Experiments are conducted that demonstrate basic principles from various fields of physics. An emphasis is placed on contemporary concepts in modern physics. Full Description " + "description": "A continuation of PHYS 4321. Experiments are conducted that demonstrate basic principles from various fields of physics. An emphasis is placed on contemporary concepts in modern physics." }, "PHYS4347": { "subject": "PHYS", "number": "4347", "name": "Fund of Astrophysics ", - "description": "Theoretical investigation of astrophysical objects and processes, with an emphasis on the interstellar medium, extragalactic astrophysics, gas dynamics, and radiative transfer, and radiation processes. Full Description " + "description": "Theoretical investigation of astrophysical objects and processes, with an emphasis on the interstellar medium, extragalactic astrophysics, gas dynamics, and radiative transfer, and radiation processes." }, "PHYS4421": { "subject": "PHYS", "number": "4421", "name": "Intro-Continuum Phys ", - "description": "A modern introduction to continuum physics. Topics include elastic theory, dislocations and waves, fluid mechanics and dynamics, and instabilities in fluids. Full Description " + "description": "A modern introduction to continuum physics. Topics include elastic theory, dislocations and waves, fluid mechanics and dynamics, and instabilities in fluids." }, "PHYS4601": { "subject": "PHYS", "number": "4601", "name": "Senior Seminar I ", - "description": "Representative research programs in the School are described by advanced graduate students, post-doctoral fellows and faculty members. Full Description " + "description": "Representative research programs in the School are described by advanced graduate students, post-doctoral fellows and faculty members." }, "PHYS4602": { "subject": "PHYS", "number": "4602", "name": "Senior Seminar II ", - "description": "Representative research programs in the school are described by advanced graduate students, post-doctoral fellows, and faculty members. Full Description " + "description": "Representative research programs in the school are described by advanced graduate students, post-doctoral fellows, and faculty members." }, "PHYS4655": { "subject": "PHYS", "number": "4655", "name": "Intro-Diffraction Study ", - "description": "Introductory theory and practice of x-ray and neutron diffraction techniques, including single crystals and powders. Laboratory work is strongly correlated with principles developed in the lectures. Full Description " + "description": "Introductory theory and practice of x-ray and neutron diffraction techniques, including single crystals and powders. Laboratory work is strongly correlated with principles developed in the lectures." }, "PHYS4698": { "subject": "PHYS", "number": "4698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "PHYS4699": { "subject": "PHYS", "number": "4699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "PHYS4751": { "subject": "PHYS", "number": "4751", "name": "Laser Theory&Application ", - "description": "Provides an introduction to the theory and applications of laser principles and related instrumentation. Emphasis is on the fundamental principles underlying laser action. Crosslisted with ECE 4751. Full Description " + "description": "Provides an introduction to the theory and applications of laser principles and related instrumentation. Emphasis is on the fundamental principles underlying laser action. Crosslisted with ECE 4751." }, "PHYS4782": { "subject": "PHYS", "number": "4782", "name": "Quantum Info&Quant Comp ", - "description": "Introduction to quantum computing and quantum information theory, formalism of quantum mechanics, quantum gates, algorithms, measurements, coding, and information. Physical realizations and experiments. Crosslisted with MATH 4782. Full Description " + "description": "Introduction to quantum computing and quantum information theory, formalism of quantum mechanics, quantum gates, algorithms, measurements, coding, and information. Physical realizations and experiments. Crosslisted with MATH 4782." }, "PHYS4801": { "subject": "PHYS", "number": "4801", "name": "Special Topics ", - "description": "Courses in special topics of current interest in physics are presented from time to time. Full Description " + "description": "Courses in special topics of current interest in physics are presented from time to time." }, "PHYS4802": { "subject": "PHYS", "number": "4802", "name": "Special Topics ", - "description": "Courses in special topics of current interest in physics are presented from time to time. Full Description " + "description": "Courses in special topics of current interest in physics are presented from time to time." }, "PHYS4803": { "subject": "PHYS", "number": "4803", "name": "Special Topics ", - "description": "Courses in special topics of current interest in physics are presented from time to time. Full Description " + "description": "Courses in special topics of current interest in physics are presented from time to time." }, "PHYS4804": { "subject": "PHYS", "number": "4804", "name": "Special Topics ", - "description": "Courses in special topics of current interest in physics are presented from time to time. Full Description " + "description": "Courses in special topics of current interest in physics are presented from time to time." }, "PHYS4900": { "subject": "PHYS", "number": "4900", "name": "Special Problems ", - "description": "Courses involving special problems in physics are offered from time to time. Full Description " + "description": "Courses involving special problems in physics are offered from time to time." }, "PHYS4901": { "subject": "PHYS", "number": "4901", "name": "Special Problems ", - "description": "Courses involving special problems in physics are offered from time to time. Full Description " + "description": "Courses involving special problems in physics are offered from time to time." }, "PHYS4902": { "subject": "PHYS", "number": "4902", "name": "Special Problems ", - "description": "Courses involving special problems in physics are offered from time to time. Full Description " + "description": "Courses involving special problems in physics are offered from time to time." }, "PHYS4XXX": { "subject": "PHYS", "number": "4XXX", "name": "Physics Elective ", - "description": " Full Description " + "description": "" }, "PHYS6011": { "subject": "PHYS", "number": "6011", "name": "Nuclear&Particle Phys ", - "description": "Quantum mechanics of nuclear and subnuclear systems. Topics include shell, collective and pairing models; multi-quark systems; group theoretical and dynamic algebra techniques. Full Description " + "description": "Quantum mechanics of nuclear and subnuclear systems. Topics include shell, collective and pairing models; multi-quark systems; group theoretical and dynamic algebra techniques." }, "PHYS6101": { "subject": "PHYS", "number": "6101", "name": "Classical Mechanics I ", - "description": "Newtonian mechanics, Hamilton's variational principle, Lagrangian and Hamiltonian mechanics, central forces, rigid body motion, and small oscillations. Full Description " + "description": "Newtonian mechanics, Hamilton's variational principle, Lagrangian and Hamiltonian mechanics, central forces, rigid body motion, and small oscillations." }, "PHYS6102": { "subject": "PHYS", "number": "6102", "name": "Classical Mechanics II ", - "description": "Canonical transformations, Hamilton-Jacobi theory, canonical perturbation theory, and an introduction to the Lagrangian formulations for continuous systems and fields. Full Description " + "description": "Canonical transformations, Hamilton-Jacobi theory, canonical perturbation theory, and an introduction to the Lagrangian formulations for continuous systems and fields." }, "PHYS6103": { "subject": "PHYS", "number": "6103", "name": "Electromagnetism I ", - "description": "Static and quasistatic phenomena in electromagnetism. Boundary value problems in electrostatics and magnetostatics. Maxwell's equations. Full Description " + "description": "Static and quasistatic phenomena in electromagnetism. Boundary value problems in electrostatics and magnetostatics. Maxwell's equations." }, "PHYS6104": { "subject": "PHYS", "number": "6104", "name": "Electromagnetism II ", - "description": "Theory of generation of electromagnetic waves, their propagation, scattering, and diffraction. Covariant formulation of electrodynamics and application to radiation from charged particles. Full Description " + "description": "Theory of generation of electromagnetic waves, their propagation, scattering, and diffraction. Covariant formulation of electrodynamics and application to radiation from charged particles." }, "PHYS6105": { "subject": "PHYS", "number": "6105", "name": "Quantum Mechanics I ", - "description": "An axiomatic development of quantum mechanics. Topics include linear vector spaces, linear operators, infinitesimal transformations, function space, representation and transformation groups. Full Description " + "description": "An axiomatic development of quantum mechanics. Topics include linear vector spaces, linear operators, infinitesimal transformations, function space, representation and transformation groups." }, "PHYS6106": { "subject": "PHYS", "number": "6106", "name": "Quantum Mechanics II ", - "description": "Applications of quantum mechanics. Topics include systems with spin and angular momentum, atomic structure, time-dependent phenomena, scattering, and various methods of modeling and approximations. Full Description " + "description": "Applications of quantum mechanics. Topics include systems with spin and angular momentum, atomic structure, time-dependent phenomena, scattering, and various methods of modeling and approximations." }, "PHYS6107": { "subject": "PHYS", "number": "6107", "name": "Statistical Mechanics I ", - "description": "Equilibrium statistical mechanics for closed and open systems. Probability distribution for classical and quantum systems. Partition functions and associated thermodynamical potentials. Full Description " + "description": "Equilibrium statistical mechanics for closed and open systems. Probability distribution for classical and quantum systems. Partition functions and associated thermodynamical potentials." }, "PHYS6110": { "subject": "PHYS", "number": "6110", "name": "Survey of Physics ", - "description": "This course provides a review of basic theories in classical and quantum physics through the solution of problems. It provides an excellent preparation for students planning to take the doctoral qualifying exam. This course cannot be used for credit toward a graduate degree in physics. Full Description " + "description": "This course provides a review of basic theories in classical and quantum physics through the solution of problems. It provides an excellent preparation for students planning to take the doctoral qualifying exam. This course cannot be used for credit toward a graduate degree in physics." }, "PHYS6124": { "subject": "PHYS", "number": "6124", "name": "Math Methods-Phys I ", - "description": "First of two courses on mathematical methods used in classical mechanics, electromagnetism, quantum mechanics, and statistical physics. Topics include complex analysis, vectors and matrices, and Sturm-Liouville theory. Full Description " + "description": "First of two courses on mathematical methods used in classical mechanics, electromagnetism, quantum mechanics, and statistical physics. Topics include complex analysis, vectors and matrices, and Sturm-Liouville theory." }, "PHYS6125": { "subject": "PHYS", "number": "6125", "name": "Math Methods-Phys II ", - "description": "Second of two courses on mathematical methods. Topics include partial differential equations, random processes, and group theory. Full Description " + "description": "Second of two courses on mathematical methods. Topics include partial differential equations, random processes, and group theory." }, "PHYS6201": { "subject": "PHYS", "number": "6201", "name": "Applied Quantum Mech ", - "description": "Basic postulates of quantum mechanics, one-dimensional energy eigenvalue problems. Potential wells, tunneling phenomena. Full Description " + "description": "Basic postulates of quantum mechanics, one-dimensional energy eigenvalue problems. Potential wells, tunneling phenomena." }, "PHYS6202": { "subject": "PHYS", "number": "6202", "name": "Applied Electromagnetism ", - "description": "A course centered on the solution of practical problems encountered in the transmission and reception of electromagnetic signals via transmission lines, waveguides, and radiation. Full Description " + "description": "A course centered on the solution of practical problems encountered in the transmission and reception of electromagnetic signals via transmission lines, waveguides, and radiation." }, "PHYS6203": { "subject": "PHYS", "number": "6203", "name": "Solid State Physics ", - "description": "A first course in the physics of crystalline solids. Core topics include crystal lattices, diffraction, bonding, elastic properties, band theory, as well as others. Full Description " + "description": "A first course in the physics of crystalline solids. Core topics include crystal lattices, diffraction, bonding, elastic properties, band theory, as well as others." }, "PHYS6204": { "subject": "PHYS", "number": "6204", "name": "Electronics I ", - "description": "A first course in both theoretical and applied electronics that is based on a thorough grounding in circuit as well as device physics. Full Description " + "description": "A first course in both theoretical and applied electronics that is based on a thorough grounding in circuit as well as device physics." }, "PHYS6206": { "subject": "PHYS", "number": "6206", "name": "Electronics II ", - "description": "A course in electronic instrumentation with an emphasis on signal processing, both analog and digital, and computer interfacing. Full Description " + "description": "A course in electronic instrumentation with an emphasis on signal processing, both analog and digital, and computer interfacing." }, "PHYS6210": { "subject": "PHYS", "number": "6210", "name": "Condensed Matter Phys I ", - "description": "Introduction to condensed matter physics. Crystal structure, electronic and thermal properties, response to external electric and magnetic fields. Full Description " + "description": "Introduction to condensed matter physics. Crystal structure, electronic and thermal properties, response to external electric and magnetic fields." }, "PHYS6211": { "subject": "PHYS", "number": "6211", "name": "Condensed Matter Phys II ", - "description": "Collective and many-electron properties in condensed matter systems. Topics include second quantization, magnetism, phase transitions, and superconductivity. Full Description " + "description": "Collective and many-electron properties in condensed matter systems. Topics include second quantization, magnetism, phase transitions, and superconductivity." }, "PHYS6265": { "subject": "PHYS", "number": "6265", "name": "Atomic Physics I ", - "description": "This course provides a detailed description of atomic structures and interactions. It contains applications of advanced quantum mechanics to problems in modern atomic physics. Full Description " + "description": "This course provides a detailed description of atomic structures and interactions. It contains applications of advanced quantum mechanics to problems in modern atomic physics." }, "PHYS6267": { "subject": "PHYS", "number": "6267", "name": "Atomic Physics II ", - "description": "This course will provide detailed descriptions of non-relativistic atomic/molecular scattering/reaction processes. Full Description " + "description": "This course will provide detailed descriptions of non-relativistic atomic/molecular scattering/reaction processes." }, "PHYS6268": { "subject": "PHYS", "number": "6268", "name": "Nonlinear Dynamics ", - "description": "A modern introduction to nonlinear phenomena. Topics include driven oscillators, entrainment, bifurcation, fractals, and control of chaos. Examples are drawn from physical systems. Full Description " + "description": "A modern introduction to nonlinear phenomena. Topics include driven oscillators, entrainment, bifurcation, fractals, and control of chaos. Examples are drawn from physical systems." }, "PHYS6300": { "subject": "PHYS", "number": "6300", "name": "Graduate Laboratory ", - "description": "Experiments are conducted that demonstrate basic principles from various fields of physics. An emphasis is placed on contemporary concepts in modern physics. Full Description " + "description": "Experiments are conducted that demonstrate basic principles from various fields of physics. An emphasis is placed on contemporary concepts in modern physics." }, "PHYS6567": { "subject": "PHYS", "number": "6567", "name": "Ultrafast Optics ", - "description": "A modern introduction to ultrafast optical phenomena. Topics include the generation, amplification, measurement, nonlinear optics, propagation, focusing, shaping and applications of ultrashort laser pulses. Full Description " + "description": "A modern introduction to ultrafast optical phenomena. Topics include the generation, amplification, measurement, nonlinear optics, propagation, focusing, shaping and applications of ultrashort laser pulses." }, "PHYS6771": { "subject": "PHYS", "number": "6771", "name": "Optoelectronics ", - "description": "Optoelectronic materials, physical processes, and devices. Includes compound semiconductor materials, excitation, recombination, gain, and modulation processes, and devices such as emitters, detectors, and modulators. Crosslisted with ECE 6771. Full Description " + "description": "Optoelectronic materials, physical processes, and devices. Includes compound semiconductor materials, excitation, recombination, gain, and modulation processes, and devices such as emitters, detectors, and modulators. Crosslisted with ECE 6771." }, "PHYS6787": { "subject": "PHYS", "number": "6787", "name": "Quantitative Electrophys ", - "description": "A quantitative presentation of electrophysiological systems in biomedical organisms, emphasizing the electrical properties and modeling of neural and cardiac cells and systems. Crosslisted with BMED and ECE 6787. Full Description " + "description": "A quantitative presentation of electrophysiological systems in biomedical organisms, emphasizing the electrical properties and modeling of neural and cardiac cells and systems. Crosslisted with BMED and ECE 6787." }, "PHYS6XXX": { "subject": "PHYS", "number": "6XXX", "name": "Physics Elective ", - "description": " Full Description " + "description": "" }, "PHYS7000": { "subject": "PHYS", "number": "7000", "name": "Master's Thesis ", - "description": " Full Description " + "description": "" }, "PHYS7123": { "subject": "PHYS", "number": "7123", "name": "Statistical Mechanics II ", - "description": "Principles of nonequilibrium statistical mechanics, both classical and quantal. Emphasis is on the dynamics of fluctuations, their measurement, and their relationship to transport properties. Full Description " + "description": "Principles of nonequilibrium statistical mechanics, both classical and quantal. Emphasis is on the dynamics of fluctuations, their measurement, and their relationship to transport properties." }, "PHYS7125": { "subject": "PHYS", "number": "7125", "name": "Gravity ", - "description": "The theory of gravity, describing how matter curves spacetime and spacetime guides matter, with its experimental and theoretical applications. Full Description " + "description": "The theory of gravity, describing how matter curves spacetime and spacetime guides matter, with its experimental and theoretical applications." }, "PHYS7141": { "subject": "PHYS", "number": "7141", "name": "Many-Particle Quant Mech ", - "description": "Quantum mechanics of interacting Fermi and Bose particles. Topics include second quantization, diagrammatic purturbation theory, variational methods, and path integrals. Full Description " + "description": "Quantum mechanics of interacting Fermi and Bose particles. Topics include second quantization, diagrammatic purturbation theory, variational methods, and path integrals." }, "PHYS7143": { "subject": "PHYS", "number": "7143", "name": "Group Theory&Quantum Mec ", - "description": "Foundations of group representation theory with applications in atomic, molecular, nuclear, and solid state physics. Full Description " + "description": "Foundations of group representation theory with applications in atomic, molecular, nuclear, and solid state physics." }, "PHYS7147": { "subject": "PHYS", "number": "7147", "name": "Quantum Field Theory ", - "description": "Introduction to quantum field theory, with an emphasis in quantum electrodynamics. Second quantization, Dirac equation, Feynman diagrams, quantum electrodynamics, electro-weak interactions. Full Description " + "description": "Introduction to quantum field theory, with an emphasis in quantum electrodynamics. Second quantization, Dirac equation, Feynman diagrams, quantum electrodynamics, electro-weak interactions." }, "PHYS7150": { "subject": "PHYS", "number": "7150", "name": "Quantum Logics ", - "description": "The revision of classical logic and set theory to accommodate the phenomena of quantum interference, with experimental and theoretical consequences. Full Description " + "description": "The revision of classical logic and set theory to accommodate the phenomena of quantum interference, with experimental and theoretical consequences." }, "PHYS7221": { "subject": "PHYS", "number": "7221", "name": "Statistical Optics ", - "description": "Phenomena in optics where randomness is dominant. Topics include random variables and processes, partial coherence, polarization, photo statistics, and imaging in random media. Full Description " + "description": "Phenomena in optics where randomness is dominant. Topics include random variables and processes, partial coherence, polarization, photo statistics, and imaging in random media." }, "PHYS7222": { "subject": "PHYS", "number": "7222", "name": "Quantum Optics I ", - "description": "Basic course on the interaction of light with matter, based on quantum theory. Applications to the laser and to the study of coherence properties of light. Full Description " + "description": "Basic course on the interaction of light with matter, based on quantum theory. Applications to the laser and to the study of coherence properties of light." }, "PHYS7223": { "subject": "PHYS", "number": "7223", "name": "Quantum Optics II ", - "description": "Advanced treatment of the interaction of light with matter using modern methods of open quantum systems. Applications to current research. Full Description " + "description": "Advanced treatment of the interaction of light with matter using modern methods of open quantum systems. Applications to current research." }, "PHYS7224": { "subject": "PHYS", "number": "7224", "name": "Nonlinear Dynamics ", - "description": "A course on nonlinear dissipative dynamical systems, with an emphasis in aspects relevant to physicists. Topics include bifurcation theory, attractors, renormalization group techniques, and pattern formation. Full Description " + "description": "A course on nonlinear dissipative dynamical systems, with an emphasis in aspects relevant to physicists. Topics include bifurcation theory, attractors, renormalization group techniques, and pattern formation." }, "PHYS7268": { "subject": "PHYS", "number": "7268", "name": "Pattern Formation ", - "description": "A theoretical description of dynamics and pattern formation in physical, chemical and biological systems driven out of equilibrium. Topics include linear and weakly nonlinear analysis of patterns, bifurcation theory and amplitude equations. Full Description " + "description": "A theoretical description of dynamics and pattern formation in physical, chemical and biological systems driven out of equilibrium. Topics include linear and weakly nonlinear analysis of patterns, bifurcation theory and amplitude equations." }, "PHYS8001": { "subject": "PHYS", "number": "8001", "name": "Seminar ", - "description": "Representative research programs in the School are described by advanced graduate students, post-doctoral fellows, and faculty members. The experimental basis of physics is illustrated through accounts of great experiments of importance to contemporary research. Full Description " + "description": "Representative research programs in the School are described by advanced graduate students, post-doctoral fellows, and faculty members. The experimental basis of physics is illustrated through accounts of great experiments of importance to contemporary research." }, "PHYS8002": { "subject": "PHYS", "number": "8002", "name": "Seminar ", - "description": "Representative research programs in the School are described by advanced graduate students, post-doctoral fellows, and faculty members. The experimental basis of physics is illustrated through accounts of great experiments of importance to contemporary research. Full Description " + "description": "Representative research programs in the School are described by advanced graduate students, post-doctoral fellows, and faculty members. The experimental basis of physics is illustrated through accounts of great experiments of importance to contemporary research." }, "PHYS8801": { "subject": "PHYS", "number": "8801", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "PHYS8802": { "subject": "PHYS", "number": "8802", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "PHYS8803": { "subject": "PHYS", "number": "8803", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "PHYS8804": { "subject": "PHYS", "number": "8804", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "PHYS8901": { "subject": "PHYS", "number": "8901", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "PHYS8991": { "subject": "PHYS", "number": "8991", "name": "Master's Practicum ", - "description": " Full Description " + "description": "" }, "PHYS8992": { "subject": "PHYS", "number": "8992", "name": "Master's Practicum ", - "description": " Full Description " + "description": "" }, "PHYS8993": { "subject": "PHYS", "number": "8993", "name": "Master's Practicum ", - "description": " Full Description " + "description": "" }, "PHYS8997": { "subject": "PHYS", "number": "8997", "name": "Teaching Assistantship ", - "description": "For graduate students holding a graduate teaching assistantship. Full Description " + "description": "For graduate students holding a graduate teaching assistantship." }, "PHYS8998": { "subject": "PHYS", "number": "8998", "name": "Research Assistantship ", - "description": "For graduate students holding a graduate research assistantship. Full Description " + "description": "For graduate students holding a graduate research assistantship." }, "PHYS9000": { "subject": "PHYS", "number": "9000", "name": "Doctoral Thesis ", - "description": " Full Description " + "description": "" }, "POL1101": { "subject": "POL", "number": "1101", "name": "Government of the U.S. ", - "description": "The purposes, structure, and functions of national and state governments, focusing on participation, institutions, and the policy process. Foundations of law, civil rights and civil liberties, role of the media, parties and elections, and policy processes. Credit not allowed for both POL 1101 and INTA 1200. Full Description " + "description": "The purposes, structure, and functions of national and state governments, focusing on participation, institutions, and the policy process. Foundations of law, civil rights and civil liberties, role of the media, parties and elections, and policy processes. Credit not allowed for both POL 1101 and INTA 1200." }, "POL2101": { "subject": "POL", "number": "2101", "name": "State & Local Government ", - "description": "Politics and government processes at the state and local levels. Full Description " + "description": "Politics and government processes at the state and local levels." }, "PSY1XXX": { "subject": "PSY", "number": "1XXX", "name": "Psychology Elective ", - "description": " Full Description " + "description": "" }, "PSY2XXX": { "subject": "PSY", "number": "2XXX", "name": "Psychology Elective ", - "description": " Full Description " + "description": "" }, "PSY3XXX": { "subject": "PSY", "number": "3XXX", "name": "Psychology Elective ", - "description": " Full Description " + "description": "" }, "PSY4XXX": { "subject": "PSY", "number": "4XXX", "name": "Psychology Elective ", - "description": " Full Description " + "description": "" }, "PSY6XXX": { "subject": "PSY", "number": "6XXX", "name": "Psychology Elective ", - "description": " Full Description " + "description": "" }, "PSYC1101": { "subject": "PSYC", "number": "1101", "name": "General Psychology ", - "description": "A survey of methods, findings, and theories of the science of mind and behavior. Full Description " + "description": "A survey of methods, findings, and theories of the science of mind and behavior." }, "PSYC1XXX": { "subject": "PSYC", "number": "1XXX", "name": "Psychology Elective ", - "description": " Full Description " + "description": "" }, "PSYC2005": { "subject": "PSYC", "number": "2005", "name": "Expl Multicultural Ident ", - "description": "This course explores multicultural identities and key multicultural competencies needed to succeed in a global and international society. Full Description " + "description": "This course explores multicultural identities and key multicultural competencies needed to succeed in a global and international society." }, "PSYC2015": { "subject": "PSYC", "number": "2015", "name": "Research Methods ", - "description": "Introduction to methods used in conducting research on human behavior. Experimental research emphasized, but course covers other methods and some statistics. Full Description " + "description": "Introduction to methods used in conducting research on human behavior. Experimental research emphasized, but course covers other methods and some statistics." }, "PSYC2020": { "subject": "PSYC", "number": "2020", "name": "Psychological Statistics ", - "description": "Introduction to probability and statistics as applied to psychological data. Tests for means, variances, correlation, ANVOA, and regression. Credit not allowed for both PSYC 2020 and PSYC 6022. Full Description " + "description": "Introduction to probability and statistics as applied to psychological data. Tests for means, variances, correlation, ANVOA, and regression. Credit not allowed for both PSYC 2020 and PSYC 6022." }, "PSYC2103": { "subject": "PSYC", "number": "2103", "name": "Human Development ", - "description": "Theories and issues in human development including cognitive, social, and emotional development. The course is organized topically rather than chronologically. Full Description " + "description": "Theories and issues in human development including cognitive, social, and emotional development. The course is organized topically rather than chronologically." }, "PSYC2210": { "subject": "PSYC", "number": "2210", "name": "Social Psychology ", - "description": "Consideration of the behavior of individuals in social contexts, including interpersonal and group settings. Full Description " + "description": "Consideration of the behavior of individuals in social contexts, including interpersonal and group settings." }, "PSYC2220": { "subject": "PSYC", "number": "2220", "name": "Industrial/Organiz Psy ", - "description": "An introduction to industrial/organizational psychology providing an overview of behavior in the workplace and psychology applied in industrial and organizational settings. Full Description " + "description": "An introduction to industrial/organizational psychology providing an overview of behavior in the workplace and psychology applied in industrial and organizational settings." }, "PSYC2230": { "subject": "PSYC", "number": "2230", "name": "Abnormal Psychology ", - "description": "This course surveys the spectrum of psychiatric disorders (symptoms, epidemiology, etiology, and treatment) and provides a perspective on adaptive functioning and psychological resilience. Full Description " + "description": "This course surveys the spectrum of psychiatric disorders (symptoms, epidemiology, etiology, and treatment) and provides a perspective on adaptive functioning and psychological resilience." }, "PSYC2240": { "subject": "PSYC", "number": "2240", "name": "Personality Theory ", - "description": "Introduction to major approaches to personality theory. Full Description " + "description": "Introduction to major approaches to personality theory." }, "PSYC2250": { "subject": "PSYC", "number": "2250", "name": "Cross-Cultural Psyc ", - "description": "This course provides students with an opportunity to learn about the similarities and differences in human behavior across cultures. Full Description " + "description": "This course provides students with an opportunity to learn about the similarities and differences in human behavior across cultures." }, "PSYC2270": { "subject": "PSYC", "number": "2270", "name": "Engineering Psychology ", - "description": "Engineering psychology presented as an integral component in the design and evaluation of human-machine systems. Applied problems and general methodological questions are examined. Full Description " + "description": "Engineering psychology presented as an integral component in the design and evaluation of human-machine systems. Applied problems and general methodological questions are examined." }, "PSYC2280": { "subject": "PSYC", "number": "2280", "name": "Psyc of Creativity & Art ", - "description": "Evolutionary theories of art production and consumption; the psychology of aesthetics; psychological correlates of creative and artistic behavior. Full Description " + "description": "Evolutionary theories of art production and consumption; the psychology of aesthetics; psychological correlates of creative and artistic behavior." }, "PSYC2300": { "subject": "PSYC", "number": "2300", "name": "Psy of Advertising ", - "description": "An examination of contemporary advertisers' use of basic psychological principles in advertising. Concepts explored include memory, attention, comparative advertising, and attitude change. Full Description " + "description": "An examination of contemporary advertisers' use of basic psychological principles in advertising. Concepts explored include memory, attention, comparative advertising, and attitude change." }, "PSYC2400": { "subject": "PSYC", "number": "2400", "name": "Psy& Contemporary Issues ", - "description": "Contributions of psychology to an appreciation of selected contemporary issues. Full Description " + "description": "Contributions of psychology to an appreciation of selected contemporary issues." }, "PSYC2698": { "subject": "PSYC", "number": "2698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of the faculty member. Full Description " + "description": "Independent research conducted under the guidance of the faculty member." }, "PSYC2699": { "subject": "PSYC", "number": "2699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "PSYC2760": { "subject": "PSYC", "number": "2760", "name": "Human Language Process ", - "description": "Theories and research in psychlinguistics: how people comprehend and speak human languages. Includes speech perception, word recognition, parsing, sentence interpretation, word production, and sentence generation. Crosslisted with LING 2760. Full Description " + "description": "Theories and research in psychlinguistics: how people comprehend and speak human languages. Includes speech perception, word recognition, parsing, sentence interpretation, word production, and sentence generation. Crosslisted with LING 2760." }, "PSYC2801": { "subject": "PSYC", "number": "2801", "name": "Special Topics ", - "description": "Special topics of current interest. Full Description " + "description": "Special topics of current interest." }, "PSYC2802": { "subject": "PSYC", "number": "2802", "name": "Special Topics ", - "description": "Special topics of current interest. Full Description " + "description": "Special topics of current interest." }, "PSYC2803": { "subject": "PSYC", "number": "2803", "name": "Special Topics ", - "description": "Special topics of current interest. Full Description " + "description": "Special topics of current interest." }, "PSYC2901": { "subject": "PSYC", "number": "2901", "name": "Special Problems ", - "description": "Special problems of current interest. Full Description " + "description": "Special problems of current interest." }, "PSYC2902": { "subject": "PSYC", "number": "2902", "name": "Special Problems ", - "description": "Special problems of current interest. Full Description " + "description": "Special problems of current interest." }, "PSYC2903": { "subject": "PSYC", "number": "2903", "name": "Special Problems ", - "description": "Special problems of current interest. Full Description " + "description": "Special problems of current interest." }, "PSYC2XXX": { "subject": "PSYC", "number": "2XXX", "name": "Psychology Elective ", - "description": " Full Description " + "description": "" }, "PSYC3011": { "subject": "PSYC", "number": "3011", "name": "Cognitive Psychology ", - "description": "Exploration of the central aspects of human cognition including pattern recognition, attention, memory, language, categorization, problem solving, and decision making; phenomena and methods are stressed. Credit not allowed for both PSYC 3011 and PSYC 3012. Full Description " + "description": "Exploration of the central aspects of human cognition including pattern recognition, attention, memory, language, categorization, problem solving, and decision making; phenomena and methods are stressed. Credit not allowed for both PSYC 3011 and PSYC 3012." }, "PSYC3012": { "subject": "PSYC", "number": "3012", "name": "Intro Cognitive Psyc ", - "description": "Examines the foundations of Cognitive Psychology including methods, analysis techniques and psychological theories involved in perception, attention, memory, problem solving, decision making, and language. Credit not allowed for both PSYC 3012 and PSYC 3011. Full Description " + "description": "Examines the foundations of Cognitive Psychology including methods, analysis techniques and psychological theories involved in perception, attention, memory, problem solving, decision making, and language. Credit not allowed for both PSYC 3012 and PSYC 3011." }, "PSYC3020": { "subject": "PSYC", "number": "3020", "name": "Biopsychology ", - "description": "Neurophysiological, endocrinological, and biochemical bases of sensory and motor functioning, motivation, learning, memory, and behavior dysfunction. Full Description " + "description": "Neurophysiological, endocrinological, and biochemical bases of sensory and motor functioning, motivation, learning, memory, and behavior dysfunction." }, "PSYC3031": { "subject": "PSYC", "number": "3031", "name": "Exper Analys of Behavior ", - "description": "History, theory, and methods of behavior analysis. Topics include shaping, stimulus-stimulus and response-consequence contingencies, stimulus control, and choice. Full Description " + "description": "History, theory, and methods of behavior analysis. Topics include shaping, stimulus-stimulus and response-consequence contingencies, stimulus control, and choice." }, "PSYC3040": { "subject": "PSYC", "number": "3040", "name": "Sensation & Perception ", - "description": "An examination of how sensations and perceptions are processed by humans. Topics covered will include vision, hearing, the skin senses, taste, smell, and the vestibular senses. Full Description " + "description": "An examination of how sensations and perceptions are processed by humans. Topics covered will include vision, hearing, the skin senses, taste, smell, and the vestibular senses." }, "PSYC3041": { "subject": "PSYC", "number": "3041", "name": "Human Sensation&Percept ", - "description": "An examination of human sensory systems and perceptual processes. For Psychology majors only. Full Description " + "description": "An examination of human sensory systems and perceptual processes. For Psychology majors only." }, "PSYC3060": { "subject": "PSYC", "number": "3060", "name": "Comparative Psychology ", - "description": "Consideration of principles and research methods of animal psychology and ethology. Literature reviews and reports, field trips, and laboratory studies. Full Description " + "description": "Consideration of principles and research methods of animal psychology and ethology. Literature reviews and reports, field trips, and laboratory studies." }, "PSYC3750": { "subject": "PSYC", "number": "3750", "name": "User Interface and Design ", - "description": "Human computer interface is considered in terms of user-system compatibility. Concepts in human factors and interface design are covered in relation to capabilities of both humans and computers. Crosslisted with CS 3750. Full Description " + "description": "Human computer interface is considered in terms of user-system compatibility. Concepts in human factors and interface design are covered in relation to capabilities of both humans and computers. Crosslisted with CS 3750." }, "PSYC3790": { "subject": "PSYC", "number": "3790", "name": "Intro-Cognitive Science ", - "description": "Multidisciplinary perspectives on cognitive science. Interdisciplinary approaches to issues in cognition, including memory, language, problem solving, learning, perception, and action. Crosslisted with CS, PST, and ISYE 3790. Full Description " + "description": "Multidisciplinary perspectives on cognitive science. Interdisciplinary approaches to issues in cognition, including memory, language, problem solving, learning, perception, and action. Crosslisted with CS, PST, and ISYE 3790." }, "PSYC3XXX": { "subject": "PSYC", "number": "3XXX", "name": "Psychology Elective ", - "description": " Full Description " + "description": "" }, "PSYC4010": { "subject": "PSYC", "number": "4010", "name": "Human Abilities ", - "description": "Introduction to differential psychology providing an overview of differences in humans. Topics such as abilities, temperament, and group differences (e.g., gender) are addressed. Full Description " + "description": "Introduction to differential psychology providing an overview of differences in humans. Topics such as abilities, temperament, and group differences (e.g., gender) are addressed." }, "PSYC4031": { "subject": "PSYC", "number": "4031", "name": "Applied Experimental Psy ", - "description": "Consideration of the applications of methods and data of experimental psychology. Understanding of human capabilities and limitations is applied to design of technology and environments. Full Description " + "description": "Consideration of the applications of methods and data of experimental psychology. Understanding of human capabilities and limitations is applied to design of technology and environments." }, "PSYC4050": { "subject": "PSYC", "number": "4050", "name": "History and Systems ", - "description": "A survey of the history, methods, and content of modern psychological theory, research, and application. Schools of psychology (e.g., structuralism, functionalism, behaviorism, gestalt psychology) and central theories of psychology will be reviewed in their historical and philosophical context. Full Description " + "description": "A survey of the history, methods, and content of modern psychological theory, research, and application. Schools of psychology (e.g., structuralism, functionalism, behaviorism, gestalt psychology) and central theories of psychology will be reviewed in their historical and philosophical context." }, "PSYC4090": { "subject": "PSYC", "number": "4090", "name": "Cognitive Neuroscience ", - "description": "Examination of the neural basis of cognitive function. Basic anatomy and methods are covered. Primary focus is on contemporary problems in the neurocognitive study of perception, memory, language, and attention, as well as disorders in these domains. Full Description " + "description": "Examination of the neural basis of cognitive function. Basic anatomy and methods are covered. Primary focus is on contemporary problems in the neurocognitive study of perception, memory, language, and attention, as well as disorders in these domains." }, "PSYC4100": { "subject": "PSYC", "number": "4100", "name": "Behavioral Pharmacology ", - "description": "An analysis of drug-behavior interactions with emphasis on basic pharmacology, role of contingencies in drug effects, mechanisms of drug dependency, drugs as stimuli, and basic neuropharmacology. Full Description " + "description": "An analysis of drug-behavior interactions with emphasis on basic pharmacology, role of contingencies in drug effects, mechanisms of drug dependency, drugs as stimuli, and basic neuropharmacology." }, "PSYC4200": { "subject": "PSYC", "number": "4200", "name": "Adv Topics-Cognitive Psy ", - "description": "An advanced survey in various topics in cognitive psychology. Topics will vary over time. Full Description " + "description": "An advanced survey in various topics in cognitive psychology. Topics will vary over time." }, "PSYC4260": { "subject": "PSYC", "number": "4260", "name": "Psychology of Aging ", - "description": "Survey of research concerned with the nature and causes of adult age differences in behavior. Full Description " + "description": "Survey of research concerned with the nature and causes of adult age differences in behavior." }, "PSYC4270": { "subject": "PSYC", "number": "4270", "name": "Psychological Testing ", - "description": "Fundamentals of psychological test construction (reliability and validity) and applications of intelligence, personality, and interest assessment. Topics will include theoretical, practical, ethical, and legal issues. Full Description " + "description": "Fundamentals of psychological test construction (reliability and validity) and applications of intelligence, personality, and interest assessment. Topics will include theoretical, practical, ethical, and legal issues." }, "PSYC4310": { "subject": "PSYC", "number": "4310", "name": "Animal Behavior I ", - "description": "Course takes place in the field (Africa, South America, or Asia) and is limited to fifteen qualified students. Lectures by instructor provide in-class portion. Visits to national parks, game reserves, and in-field observations will introduce students to natural habitats. Full Description " + "description": "Course takes place in the field (Africa, South America, or Asia) and is limited to fifteen qualified students. Lectures by instructor provide in-class portion. Visits to national parks, game reserves, and in-field observations will introduce students to natural habitats." }, "PSYC4320": { "subject": "PSYC", "number": "4320", "name": "Animal Behavior II ", - "description": "Course takes place in the field (Africa, South America, Asia) and is limited to fifteen qualified students. Lectures by instructor provide in-class portion. Visits to national parks, game reserves, and in-field observation will introduce students to natural habitats. Full Description " + "description": "Course takes place in the field (Africa, South America, Asia) and is limited to fifteen qualified students. Lectures by instructor provide in-class portion. Visits to national parks, game reserves, and in-field observation will introduce students to natural habitats." }, "PSYC4600": { "subject": "PSYC", "number": "4600", "name": "Senior Thesis I ", - "description": "The first of a two course sequence in which selected students conduct original work under the direction of a faculty member. The student will produce a proposal for research that will be undertaken during the second course (PSYC 4601). Full Description " + "description": "The first of a two course sequence in which selected students conduct original work under the direction of a faculty member. The student will produce a proposal for research that will be undertaken during the second course (PSYC 4601)." }, "PSYC4601": { "subject": "PSYC", "number": "4601", "name": "Senior Thesis II ", - "description": "The second of a two course sequence in which selected students conduct original work under the direction of a faculty member. Full Description " + "description": "The second of a two course sequence in which selected students conduct original work under the direction of a faculty member." }, "PSYC4698": { "subject": "PSYC", "number": "4698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "PSYC4699": { "subject": "PSYC", "number": "4699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "PSYC4770": { "subject": "PSYC", "number": "4770", "name": "Environmental Design ", - "description": "Introduction of psychological concepts relevant to environmental design. Survey of selected methods for assessing human-made environments and development of design solutions to selected problems. Crosslisted with ARCH 4770. Full Description " + "description": "Introduction of psychological concepts relevant to environmental design. Survey of selected methods for assessing human-made environments and development of design solutions to selected problems. Crosslisted with ARCH 4770." }, "PSYC4790": { "subject": "PSYC", "number": "4790", "name": "Sem-Cognitive Science ", - "description": "A seminar-type course in cognitive science focusing on integrating and deepening students' cognitive science knowledge and skills. Topics include memory, language, problem solving, learning, perception, and action. Crosslisted with CS, PST, and ISYE 4790. Full Description " + "description": "A seminar-type course in cognitive science focusing on integrating and deepening students' cognitive science knowledge and skills. Topics include memory, language, problem solving, learning, perception, and action. Crosslisted with CS, PST, and ISYE 4790." }, "PSYC4791": { "subject": "PSYC", "number": "4791", "name": "Integrative Proj-Cog Sci ", - "description": "An integrative course in cognitive science focusing on the integration and use of concepts and skills from cognitive science. A different integrative project or set of projects will be taken on each semester; students will contribute on the basis of their background and skills. Crosslisted with CS, ISYE, and PST 4791. Full Description " + "description": "An integrative course in cognitive science focusing on the integration and use of concepts and skills from cognitive science. A different integrative project or set of projects will be taken on each semester; students will contribute on the basis of their background and skills. Crosslisted with CS, ISYE, and PST 4791." }, "PSYC4792": { "subject": "PSYC", "number": "4792", "name": "Dsgn Proj-Cognitive Sci ", - "description": "Individual project with a cognitive science faculty member, designed as a supplement to the student's senior design project or thesis in their major area. Crosslisted with CS, ISYE, and PST 4792. Full Description " + "description": "Individual project with a cognitive science faculty member, designed as a supplement to the student's senior design project or thesis in their major area. Crosslisted with CS, ISYE, and PST 4792." }, "PSYC4803": { "subject": "PSYC", "number": "4803", "name": "Special Topics ", - "description": "Special topics or courses of an experimental nature. Full Description " + "description": "Special topics or courses of an experimental nature." }, "PSYC4813": { "subject": "PSYC", "number": "4813", "name": "Special Topics ", - "description": "Special topics or courses of an experimental nature. Full Description " + "description": "Special topics or courses of an experimental nature." }, "PSYC4823": { "subject": "PSYC", "number": "4823", "name": "Special Topics ", - "description": "Special topics or courses of an experimental nature. Full Description " + "description": "Special topics or courses of an experimental nature." }, "PSYC4833": { "subject": "PSYC", "number": "4833", "name": "Special Topics ", - "description": "Special topics or courses of an experimental nature, Full Description " + "description": "Special topics or courses of an experimental nature," }, "PSYC4900": { "subject": "PSYC", "number": "4900", "name": "Special Problems ", - "description": "Students engage in individual and group projects under the direction of a faculty member. Full Description " + "description": "Students engage in individual and group projects under the direction of a faculty member." }, "PSYC4901": { "subject": "PSYC", "number": "4901", "name": "Special Problems ", - "description": "Students engage in individual and group projects under the direction of a faculty member. Full Description " + "description": "Students engage in individual and group projects under the direction of a faculty member." }, "PSYC4902": { "subject": "PSYC", "number": "4902", "name": "Special Problems ", - "description": "Students engage in individual and group projects under the direction of a faculty member. Full Description " + "description": "Students engage in individual and group projects under the direction of a faculty member." }, "PSYC4903": { "subject": "PSYC", "number": "4903", "name": "Special Problems ", - "description": "Students engage in individual and group projects under the direction of a faculty member. Full Description " + "description": "Students engage in individual and group projects under the direction of a faculty member." }, "PSYC4904": { "subject": "PSYC", "number": "4904", "name": "Special Problems ", - "description": "Students engage in individual and group projects under the direction of a faculty member. Full Description " + "description": "Students engage in individual and group projects under the direction of a faculty member." }, "PSYC4905": { "subject": "PSYC", "number": "4905", "name": "Special Problems ", - "description": "Students engage in individual and group projects under the direction of a faculty member. Full Description " + "description": "Students engage in individual and group projects under the direction of a faculty member." }, "PSYC4906": { "subject": "PSYC", "number": "4906", "name": "Special Problems ", - "description": "Students engage in individual and group projects under the direction of a faculty member. Full Description " + "description": "Students engage in individual and group projects under the direction of a faculty member." }, "PSYC4907": { "subject": "PSYC", "number": "4907", "name": "Special Problems ", - "description": "Students engage in individual and group projects under the direction of a faculty member. Full Description " + "description": "Students engage in individual and group projects under the direction of a faculty member." }, "PSYC4908": { "subject": "PSYC", "number": "4908", "name": "Special Problems ", - "description": "Students engage in individual and group projects under the direction of a faculty member. Full Description " + "description": "Students engage in individual and group projects under the direction of a faculty member." }, "PSYC4909": { "subject": "PSYC", "number": "4909", "name": "Special Problems ", - "description": "Students engage in individual and group projects under the direction of a faculty member. Full Description " + "description": "Students engage in individual and group projects under the direction of a faculty member." }, "PSYC4910": { "subject": "PSYC", "number": "4910", "name": "Special Problems ", - "description": "Students engage in individual and group projects under the direction of a faculty member. Full Description " + "description": "Students engage in individual and group projects under the direction of a faculty member." }, "PSYC4XXX": { "subject": "PSYC", "number": "4XXX", "name": "Psychology Elective ", - "description": " Full Description " + "description": "" }, "PSYC6000": { "subject": "PSYC", "number": "6000", "name": "Resp. Conduct Research ", - "description": "Topics include research misconduct, data management, use of animal and human subjects, conflicts of interest and commitment, authorship, publication, peer review , and collaboration and mentoring. Full Description " + "description": "Topics include research misconduct, data management, use of animal and human subjects, conflicts of interest and commitment, authorship, publication, peer review , and collaboration and mentoring." }, "PSYC6011": { "subject": "PSYC", "number": "6011", "name": "Cognitive Psychology ", - "description": "Survey course on human cognition including pattern recognition, attention, memory, categorization, problem solving, consciousness, decision making, intention, and the relation between mind and brain. Full Description " + "description": "Survey course on human cognition including pattern recognition, attention, memory, categorization, problem solving, consciousness, decision making, intention, and the relation between mind and brain." }, "PSYC6012": { "subject": "PSYC", "number": "6012", "name": "Social Psychology ", - "description": "Fundamental theory and research in social behavior including social perception/cognition, attitude formation and change, social influences, and group processes. Full Description " + "description": "Fundamental theory and research in social behavior including social perception/cognition, attitude formation and change, social influences, and group processes." }, "PSYC6013": { "subject": "PSYC", "number": "6013", "name": "Biopsychology ", - "description": "Neurophysiological, endocrinological, and biochemical bases of sensory and motor functioning, motivation, learning, memory, and behavior dysfunction. Full Description " + "description": "Neurophysiological, endocrinological, and biochemical bases of sensory and motor functioning, motivation, learning, memory, and behavior dysfunction." }, "PSYC6014": { "subject": "PSYC", "number": "6014", "name": "Sensation & Perception ", - "description": "This course examines how sensations and perceptions of the outside world are processed by humans, including physiological, psychophysical, ecological, and computational perspectives. Full Description " + "description": "This course examines how sensations and perceptions of the outside world are processed by humans, including physiological, psychophysical, ecological, and computational perspectives." }, "PSYC6015": { "subject": "PSYC", "number": "6015", "name": "Developmental Psychology ", - "description": "Overview of concepts, assumptions, methods, theories, and research in human development across the life span including cognitive, emotional, and social behavior. Full Description " + "description": "Overview of concepts, assumptions, methods, theories, and research in human development across the life span including cognitive, emotional, and social behavior." }, "PSYC6016": { "subject": "PSYC", "number": "6016", "name": "Analysis of Behavior ", - "description": "Conceptual, methodological, and theoretical issues in the experimental analysis of behavior with special emphasis on classical and operant conditioning as foundations for complex behavior. Full Description " + "description": "Conceptual, methodological, and theoretical issues in the experimental analysis of behavior with special emphasis on classical and operant conditioning as foundations for complex behavior." }, "PSYC6017": { "subject": "PSYC", "number": "6017", "name": "Human Abilities ", - "description": "Theory, methods, and applications of research on human abilities, including intelligence, aptitude, achievement, learning, aptitude treatment interactions, information processing correlates, and measurement issues. Full Description " + "description": "Theory, methods, and applications of research on human abilities, including intelligence, aptitude, achievement, learning, aptitude treatment interactions, information processing correlates, and measurement issues." }, "PSYC6018": { "subject": "PSYC", "number": "6018", "name": "Research Design ", - "description": "Introduction to basic principles and practices of empirical research in psychology. Covers both experimental and correlational methods and designs. Full Description " + "description": "Introduction to basic principles and practices of empirical research in psychology. Covers both experimental and correlational methods and designs." }, "PSYC6019": { "subject": "PSYC", "number": "6019", "name": "Statistical Analysis I ", - "description": "Introductory treatment of descriptive and inferential statistics as applied to psychological research. Full Description " + "description": "Introductory treatment of descriptive and inferential statistics as applied to psychological research." }, "PSYC6020": { "subject": "PSYC", "number": "6020", "name": "Statistical Analaysis II ", - "description": "Introductory treatment of inferential statistics, especially the general linear model, as applied to psychological research. Full Description " + "description": "Introductory treatment of inferential statistics, especially the general linear model, as applied to psychological research." }, "PSYC6021": { "subject": "PSYC", "number": "6021", "name": "Personality Theories ", - "description": "Survey of personality theories, research, and methods of assessment. Full Description " + "description": "Survey of personality theories, research, and methods of assessment." }, "PSYC6022": { "subject": "PSYC", "number": "6022", "name": "Psyc Stat for HCI ", - "description": "Introduction to statistical methods as applied to psychological data within the HCI domain. Credit not allowed for both PSYC 6022 and PSYC 2020. Full Description " + "description": "Introduction to statistical methods as applied to psychological data within the HCI domain. Credit not allowed for both PSYC 6022 and PSYC 2020." }, "PSYC6023": { "subject": "PSYC", "number": "6023", "name": "Psyc Res Methods for HCI ", - "description": "Introduction to psychological research methods within the HCI domain. Credit not allowed for both PSYC 6023 and PSYC 2020. Full Description " + "description": "Introduction to psychological research methods within the HCI domain. Credit not allowed for both PSYC 6023 and PSYC 2020." }, "PSYC6031": { "subject": "PSYC", "number": "6031", "name": "Eng Psyc Analysis Tech ", - "description": "This course covers the basic analysis techniques used to investigate human-machine systems and human performance. Full Description " + "description": "This course covers the basic analysis techniques used to investigate human-machine systems and human performance." }, "PSYC6032": { "subject": "PSYC", "number": "6032", "name": "Eng Psyc Stressors ", - "description": "This course covers environmental stressors and their influence on human performance. Emphasis will be placed onnoise, lighting, micro-gravity and atmospheric conditions. Full Description " + "description": "This course covers environmental stressors and their influence on human performance. Emphasis will be placed onnoise, lighting, micro-gravity and atmospheric conditions." }, "PSYC6033": { "subject": "PSYC", "number": "6033", "name": "Eng Psyc Cognitive Ergo ", - "description": "This course applies the research findings from cognitive psychology to the design of products and systems that involve people. Full Description " + "description": "This course applies the research findings from cognitive psychology to the design of products and systems that involve people." }, "PSYC6034": { "subject": "PSYC", "number": "6034", "name": "Eng Psyc Displays ", - "description": "This course covers the basic human factors principles involved in display formatting. Full Description " + "description": "This course covers the basic human factors principles involved in display formatting." }, "PSYC6035": { "subject": "PSYC", "number": "6035", "name": "Eng Psyc Cntrl&Workspace ", - "description": "This course covers the basic human factors principles involved in controls and workspace layout. Full Description " + "description": "This course covers the basic human factors principles involved in controls and workspace layout." }, "PSYC6040": { "subject": "PSYC", "number": "6040", "name": "Topics in Cog & Brain Sc ", - "description": "This course presents current research topics in cognition and brain science. Full Description " + "description": "This course presents current research topics in cognition and brain science." }, "PSYC6041": { "subject": "PSYC", "number": "6041", "name": "Topics in Cog Aging ", - "description": "This course presents current research topics in cognitive aging. Full Description " + "description": "This course presents current research topics in cognitive aging." }, "PSYC6042": { "subject": "PSYC", "number": "6042", "name": "Neuroimaging ", - "description": "This course details the potential and limits of fMRI and critically evaluates the inferences that can be drawn from fMRI studies. Full Description " + "description": "This course details the potential and limits of fMRI and critically evaluates the inferences that can be drawn from fMRI studies." }, "PSYC6043": { "subject": "PSYC", "number": "6043", "name": "Engr Psyc Res Seminar ", - "description": "This course presents current research topics in engineering psychology. Full Description " + "description": "This course presents current research topics in engineering psychology." }, "PSYC6060": { "subject": "PSYC", "number": "6060", "name": "Psyc of Aging ", - "description": "A survey covering psychological aspects of aging, mind, and behavior (perception, cognition, emotion, mental health) and topics relevant to adulthood (e.g. caregiving and retirement). Full Description " + "description": "A survey covering psychological aspects of aging, mind, and behavior (perception, cognition, emotion, mental health) and topics relevant to adulthood (e.g. caregiving and retirement)." }, "PSYC6090": { "subject": "PSYC", "number": "6090", "name": "Cognitive Neuroscience ", - "description": "Examines the foundations of Cognitive Neuroscience, including the biological mechanisms underlying cognition, the dominant theories, and the experimental techniques. Full Description " + "description": "Examines the foundations of Cognitive Neuroscience, including the biological mechanisms underlying cognition, the dominant theories, and the experimental techniques." }, "PSYC6270": { "subject": "PSYC", "number": "6270", "name": "Psychological Testing ", - "description": "Fundamentals of psychological testing. Topics include test construction and application issues. Full Description " + "description": "Fundamentals of psychological testing. Topics include test construction and application issues." }, "PSYC6750": { "subject": "PSYC", "number": "6750", "name": "Human-Computer Interact ", - "description": "Describes the characteristics of interaction between humans and computers and demonstrates techniques for the evaluation of user-centered systems. Crosslisted with CS 6750. Full Description " + "description": "Describes the characteristics of interaction between humans and computers and demonstrates techniques for the evaluation of user-centered systems. Crosslisted with CS 6750." }, "PSYC6753": { "subject": "PSYC", "number": "6753", "name": "HCI Prof Prep & Practice ", - "description": "Preparation for a professional career in HCI. Speakers. Atlanta-area lab visits. Career trajectories. Project presentations. Technical, resume and interviewing skills, Atlanta-area HCI resources. Credit not allowed for both PSYC 6753 and CS 6753 or LCC 6753. Full Description " + "description": "Preparation for a professional career in HCI. Speakers. Atlanta-area lab visits. Career trajectories. Project presentations. Technical, resume and interviewing skills, Atlanta-area HCI resources. Credit not allowed for both PSYC 6753 and CS 6753 or LCC 6753." }, "PSYC6795": { "subject": "PSYC", "number": "6795", "name": "Intro-Cognitive Science ", - "description": "Multidisciplinary perspectives on cognitive science. Interdisciplinary approaches to issues in cognition, including memory, language, problem solving, learning, perception, and action. Crosslisted with CS and ISYE 6795. Full Description " + "description": "Multidisciplinary perspectives on cognitive science. Interdisciplinary approaches to issues in cognition, including memory, language, problem solving, learning, perception, and action. Crosslisted with CS and ISYE 6795." }, "PSYC6998": { "subject": "PSYC", "number": "6998", "name": "HCI Master's Project ", - "description": "Final project for students completing a Human-Computer Interaction master's degree. Repeatable for multi-semester projects. Full Description " + "description": "Final project for students completing a Human-Computer Interaction master's degree. Repeatable for multi-semester projects." }, "PSYC6XXX": { "subject": "PSYC", "number": "6XXX", "name": "Psychology Elective ", - "description": " Full Description " + "description": "" }, "PSYC7000": { "subject": "PSYC", "number": "7000", "name": "Master's Thesis ", - "description": " Full Description " + "description": "" }, "PSYC7020": { "subject": "PSYC", "number": "7020", "name": "Cognitive Aging ", - "description": "Introduction to theory and research on adult cognitive development, including intelligence, attention, memory, and problem solving. Full Description " + "description": "Introduction to theory and research on adult cognitive development, including intelligence, attention, memory, and problem solving." }, "PSYC7101": { "subject": "PSYC", "number": "7101", "name": "Engineering Psy I ", - "description": "Basic methods used to study human-machine systems including both system analysis and human performance evaluation techniques. These methods will be applied to specific systems. Full Description " + "description": "Basic methods used to study human-machine systems including both system analysis and human performance evaluation techniques. These methods will be applied to specific systems." }, "PSYC7102": { "subject": "PSYC", "number": "7102", "name": "Engineering Psy II ", - "description": "Basic principles of human factors for the design, evaluation, and use of displays, controls, and workspace layouts including new technologies and associated human factors problems. Full Description " + "description": "Basic principles of human factors for the design, evaluation, and use of displays, controls, and workspace layouts including new technologies and associated human factors problems." }, "PSYC7103": { "subject": "PSYC", "number": "7103", "name": "Engineering Psy III ", - "description": "Environmental stressors and their influences on human performance, physiological function, and emotional responses including work/rest cycles, jetlag, noise, vibration, glare, weightlessness, etc. Full Description " + "description": "Environmental stressors and their influences on human performance, physiological function, and emotional responses including work/rest cycles, jetlag, noise, vibration, glare, weightlessness, etc." }, "PSYC7104": { "subject": "PSYC", "number": "7104", "name": "Psychomotor & Cog Skill ", - "description": "Human capabilities and limitations for learning and performing psychomotor and cognitive skills are studied. Full Description " + "description": "Human capabilities and limitations for learning and performing psychomotor and cognitive skills are studied." }, "PSYC7105": { "subject": "PSYC", "number": "7105", "name": "First Yr Research I ", - "description": "First year graduate students will initiate a research project. Full Description " + "description": "First year graduate students will initiate a research project." }, "PSYC7106": { "subject": "PSYC", "number": "7106", "name": "First Yr Research II ", - "description": "First year graduate students will complete a research project. Full Description " + "description": "First year graduate students will complete a research project." }, "PSYC7201": { "subject": "PSYC", "number": "7201", "name": "Industrial/Organiz Psy ", - "description": "This course introduces an overview of issues relevant to behavior in the workplace and psychology applied in industrial and organizational settings. Full Description " + "description": "This course introduces an overview of issues relevant to behavior in the workplace and psychology applied in industrial and organizational settings." }, "PSYC7202": { "subject": "PSYC", "number": "7202", "name": "Employee Selection ", - "description": "The course provides a conceptual framework for personnel selection guided by scientific principles, research, and theory as well as by professional, legal, and technical guidelines. Full Description " + "description": "The course provides a conceptual framework for personnel selection guided by scientific principles, research, and theory as well as by professional, legal, and technical guidelines." }, "PSYC7203": { "subject": "PSYC", "number": "7203", "name": "Motivation&Job Attitudes ", - "description": "Examines theory and pragmatics in description, prediction, and measurement of work-related behavior and associated evaluations. Includes theoretical and methodological problems in field and laboratory contexts. Full Description " + "description": "Examines theory and pragmatics in description, prediction, and measurement of work-related behavior and associated evaluations. Includes theoretical and methodological problems in field and laboratory contexts." }, "PSYC7204": { "subject": "PSYC", "number": "7204", "name": "Training & Development ", - "description": "This course will focus on theory, principles, techniques, and practices relevant to training and developing human resources. Research and professional literature will be examined. Full Description " + "description": "This course will focus on theory, principles, techniques, and practices relevant to training and developing human resources. Research and professional literature will be examined." }, "PSYC7301": { "subject": "PSYC", "number": "7301", "name": "Multivariate Statistics ", - "description": "Foundations for multivariate analysis including properties of linear composite variables, multiple regression, multiple and partial correlation, MANOVA, factor analysis, multiple discriminant analysis, canonical correlation, etc. Full Description " + "description": "Foundations for multivariate analysis including properties of linear composite variables, multiple regression, multiple and partial correlation, MANOVA, factor analysis, multiple discriminant analysis, canonical correlation, etc." }, "PSYC7302": { "subject": "PSYC", "number": "7302", "name": "Equation Modeling ", - "description": "Methods of causal modeling to study causal relations including issues of causality, establishing causality, fundamentals of linear structural equation modeling with latent variables, fitting models. Full Description " + "description": "Methods of causal modeling to study causal relations including issues of causality, establishing causality, fundamentals of linear structural equation modeling with latent variables, fitting models." }, "PSYC7303": { "subject": "PSYC", "number": "7303", "name": "Psychometric Theory ", - "description": "Preparation of students in statistical theory and techniques relevant to becoming professionally involved in construction, analysis, and evaluation of psychology and personnel tests. Full Description " + "description": "Preparation of students in statistical theory and techniques relevant to becoming professionally involved in construction, analysis, and evaluation of psychology and personnel tests." }, "PSYC7700": { "subject": "PSYC", "number": "7700", "name": "Professional Problems ", - "description": "Discussion of issues faced by professional psychologists in the areas of teaching, research, and professional practice. Ethical issues in all of these areas are emphasized. Full Description " + "description": "Discussion of issues faced by professional psychologists in the areas of teaching, research, and professional practice. Ethical issues in all of these areas are emphasized." }, "PSYC7701": { "subject": "PSYC", "number": "7701", "name": "Teaching Practicum ", - "description": "Supervised college teaching including techniques, course and curriculum design, evaluation. Students will prepare and present lectures with direct observations and video taping for discussion. Full Description " + "description": "Supervised college teaching including techniques, course and curriculum design, evaluation. Students will prepare and present lectures with direct observations and video taping for discussion." }, "PSYC7790": { "subject": "PSYC", "number": "7790", "name": "Cognitive Modeling ", - "description": "A hands-on course covering a range of cognitive modeling methodologies. It explores the analysis, development, construction, and evaluation of models of cognitive processing. Crosslisted with CS and ISYE 7790. Full Description " + "description": "A hands-on course covering a range of cognitive modeling methodologies. It explores the analysis, development, construction, and evaluation of models of cognitive processing. Crosslisted with CS and ISYE 7790." }, "PSYC7999": { "subject": "PSYC", "number": "7999", "name": "Prep Doctoral Qual Exam ", - "description": " Full Description " + "description": "" }, "PSYC8000": { "subject": "PSYC", "number": "8000", "name": "Sem-Experimental Psy ", - "description": "Critical examination of current problems in a selected area of general experimental psychology. Areas to be discussed may vary each time course is offered. Full Description " + "description": "Critical examination of current problems in a selected area of general experimental psychology. Areas to be discussed may vary each time course is offered." }, "PSYC8010": { "subject": "PSYC", "number": "8010", "name": "Seminar-Cognitive Psy ", - "description": "Critical examination of current problems in a selected area of cognitive psychology. Areas to be discussed may vary each time course is offered. Full Description " + "description": "Critical examination of current problems in a selected area of cognitive psychology. Areas to be discussed may vary each time course is offered." }, "PSYC8020": { "subject": "PSYC", "number": "8020", "name": "Seminar-Cognitive Aging ", - "description": "Critical examination of current problems in a selected area of cognitive aging. Areas to be discussed may vary each time course is offered. Full Description " + "description": "Critical examination of current problems in a selected area of cognitive aging. Areas to be discussed may vary each time course is offered." }, "PSYC8030": { "subject": "PSYC", "number": "8030", "name": "Sem-Comparative Psy ", - "description": "Critical examination of current problems in a selected area of comparative psychology. Areas to be discussed may vary each time course is offered. Full Description " + "description": "Critical examination of current problems in a selected area of comparative psychology. Areas to be discussed may vary each time course is offered." }, "PSYC8040": { "subject": "PSYC", "number": "8040", "name": "Seminar-Engineering Psy ", - "description": "Critical examination of current problems in a selected area of engineering psychology. Areas to be discussed may vary each time course is offered. Full Description " + "description": "Critical examination of current problems in a selected area of engineering psychology. Areas to be discussed may vary each time course is offered." }, "PSYC8050": { "subject": "PSYC", "number": "8050", "name": "Sem-Indust/Organiz Psy ", - "description": "Critical examination of current problems in a selected area of industrial/organizational psychology. Areas to be discussed may vary each time course is offered. Full Description " + "description": "Critical examination of current problems in a selected area of industrial/organizational psychology. Areas to be discussed may vary each time course is offered." }, "PSYC8060": { "subject": "PSYC", "number": "8060", "name": "Sem-Quantitative Psy ", - "description": "Presentation and discussion of quantitative approaches to psychology. Topics will vary, but might include neural networks, measurement theory, behavioral ecology, modeling, system dynamics, etc. Full Description " + "description": "Presentation and discussion of quantitative approaches to psychology. Topics will vary, but might include neural networks, measurement theory, behavioral ecology, modeling, system dynamics, etc." }, "PSYC8070": { "subject": "PSYC", "number": "8070", "name": "Seminar CogNeuro ", - "description": "Critical examination of current problems in selected areas of cognitive neuroscience. Areas to be discussed vary each time. Full Description " + "description": "Critical examination of current problems in selected areas of cognitive neuroscience. Areas to be discussed vary each time." }, "PSYC8080": { "subject": "PSYC", "number": "8080", "name": "Seminar Cog & Brain ", - "description": "Critical examination of current problems in selected areas of cognition and brain sciences. Areas to be discussed may vary each time. Full Description " + "description": "Critical examination of current problems in selected areas of cognition and brain sciences. Areas to be discussed may vary each time." }, "PSYC8795": { "subject": "PSYC", "number": "8795", "name": "Colloquium-Cognitive Sci ", - "description": "Reading of research papers by leading cognitive scientists, attendance at their colloquia, and meeting with them to discuss research. Crosslisted with CS and ISYE 8795. Full Description " + "description": "Reading of research papers by leading cognitive scientists, attendance at their colloquia, and meeting with them to discuss research. Crosslisted with CS and ISYE 8795." }, "PSYC8802": { "subject": "PSYC", "number": "8802", "name": "Topics in CogNeuro ", - "description": "Covers current issues and recent advances in cognitive neuroscience. Full Description " + "description": "Covers current issues and recent advances in cognitive neuroscience." }, "PSYC8803": { "subject": "PSYC", "number": "8803", "name": "Spec Top-Applied Stat ", - "description": "Covers current issues and recent advances in the application of statistical methods to research in psychology. Instructors select the specific focus for a given term. Full Description " + "description": "Covers current issues and recent advances in the application of statistical methods to research in psychology. Instructors select the specific focus for a given term." }, "PSYC8804": { "subject": "PSYC", "number": "8804", "name": "Topics in Cog Aging ", - "description": "Covers current issues and recent advances in cognitive aging. Full Description " + "description": "Covers current issues and recent advances in cognitive aging." }, "PSYC8805": { "subject": "PSYC", "number": "8805", "name": "Topics in CogNeuro ", - "description": "Covers current issues and recent advances in cognitive neuroscience. Full Description " + "description": "Covers current issues and recent advances in cognitive neuroscience." }, "PSYC8806": { "subject": "PSYC", "number": "8806", "name": "Topics in Cog Psyc ", - "description": "Covers current issues and recent advances in cognitive psychology. Full Description " + "description": "Covers current issues and recent advances in cognitive psychology." }, "PSYC8807": { "subject": "PSYC", "number": "8807", "name": "Special Topics Engr Psyc ", - "description": "Covers current issues and recent advances in Engineering Psychology Full Description " + "description": "Covers current issues and recent advances in Engineering Psychology" }, "PSYC8811": { "subject": "PSYC", "number": "8811", "name": "Special Topics ", - "description": "Special topics that cover current issues and recent advances in Psychology. Full Description " + "description": "Special topics that cover current issues and recent advances in Psychology." }, "PSYC8812": { "subject": "PSYC", "number": "8812", "name": "Special Topics ", - "description": "Special topics that cover current issues and recent advances in Psychology. Full Description " + "description": "Special topics that cover current issues and recent advances in Psychology." }, "PSYC8890": { "subject": "PSYC", "number": "8890", "name": "Spec Topic-Cognitive Sci ", - "description": " Full Description " + "description": "" }, "PSYC8900": { "subject": "PSYC", "number": "8900", "name": "Spec Prob-Experiment Psy ", - "description": "Students conduct research under direction of a faculty member on problems in the general area of experimental psychology. Full Description " + "description": "Students conduct research under direction of a faculty member on problems in the general area of experimental psychology." }, "PSYC8901": { "subject": "PSYC", "number": "8901", "name": "Spec Prob-Engr Psy ", - "description": "Students conduct research under the direction of a faculty member on problems in the general area of engineering psychology. Full Description " + "description": "Students conduct research under the direction of a faculty member on problems in the general area of engineering psychology." }, "PSYC8902": { "subject": "PSYC", "number": "8902", "name": "Spe Prob-Ind/Organiz Psy ", - "description": "Students conduct research under the direction of a faculty member on problems investigating some psychological aspect of industrial/organizational problems. Full Description " + "description": "Students conduct research under the direction of a faculty member on problems investigating some psychological aspect of industrial/organizational problems." }, "PSYC8903": { "subject": "PSYC", "number": "8903", "name": "Special Problems in HCI ", - "description": "Students conduct research under the direction of a faculty member on problems in the general area of human-computer interaction. Full Description " + "description": "Students conduct research under the direction of a faculty member on problems in the general area of human-computer interaction." }, "PSYC8904": { "subject": "PSYC", "number": "8904", "name": "Spec Problems: Cog Aging ", - "description": "Students conduct research under the direction of a faculty member on problems in cognitive aging. Full Description " + "description": "Students conduct research under the direction of a faculty member on problems in cognitive aging." }, "PSYC8905": { "subject": "PSYC", "number": "8905", "name": "Special Prblems: CogNeuro ", - "description": "Students conduct research under the direction of a faculty member on problems in cognitive neuroscience. Full Description " + "description": "Students conduct research under the direction of a faculty member on problems in cognitive neuroscience." }, "PSYC8906": { "subject": "PSYC", "number": "8906", "name": "Special Problems: CogPsyc ", - "description": "Students conduct research under the direction of a faculty member on problems in cognitive psychology. Full Description " + "description": "Students conduct research under the direction of a faculty member on problems in cognitive psychology." }, "PSYC8907": { "subject": "PSYC", "number": "8907", "name": "Spec Problems: Cog&Brain ", - "description": "Students conduct research under the direction of a faculty member on problems in cognition and brain sciences. Full Description " + "description": "Students conduct research under the direction of a faculty member on problems in cognition and brain sciences." }, "PSYC8908": { "subject": "PSYC", "number": "8908", "name": "Spec Problems: Quant Psyc ", - "description": "Students conduct research under the direction of a faculty member on problems in quantitative psychology. Full Description " + "description": "Students conduct research under the direction of a faculty member on problems in quantitative psychology." }, "PSYC8997": { "subject": "PSYC", "number": "8997", "name": "Teaching Assistantship ", - "description": "For graduate students holding a teaching assistantship. Full Description " + "description": "For graduate students holding a teaching assistantship." }, "PSYC8998": { "subject": "PSYC", "number": "8998", "name": "Research Assistantship ", - "description": "For graduate students holding a research assistantship. Full Description " + "description": "For graduate students holding a research assistantship." }, "PSYC9000": { "subject": "PSYC", "number": "9000", "name": "Doctoral Thesis ", - "description": " Full Description " + "description": "" }, "PTFE1100": { "subject": "PTFE", "number": "1100", "name": "Intro-Polymer&Fiber Engr ", - "description": "Introduction to and overview of the breadth and depth of the polymer, fiber, textile, and fabricated products manufacturing complex, its infrastructure, resources, opportunities, and career paths. Full Description " + "description": "Introduction to and overview of the breadth and depth of the polymer, fiber, textile, and fabricated products manufacturing complex, its infrastructure, resources, opportunities, and career paths." }, "PTFE1XXX": { "subject": "PTFE", "number": "1XXX", "name": "PTFE Electives ", - "description": " Full Description " + "description": "" }, "PTFE2200": { "subject": "PTFE", "number": "2200", "name": "Struct&Prop-Fibers&Polym ", - "description": "The micro and macro structure of fibers are examined. Structure property relationships will be covered, and various properties of both natural and synthetic fibers will be discussed. Full Description " + "description": "The micro and macro structure of fibers are examined. Structure property relationships will be covered, and various properties of both natural and synthetic fibers will be discussed." }, "PTFE2698": { "subject": "PTFE", "number": "2698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "PTFE2699": { "subject": "PTFE", "number": "2699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "PTFE2XXX": { "subject": "PTFE", "number": "2XXX", "name": "PTFE Electives ", - "description": " Full Description " + "description": "" }, "PTFE3200": { "subject": "PTFE", "number": "3200", "name": "Yarn & Fabric Formation ", - "description": "Principles of yarn formation, weaving preparation and weaving, modern processing technologies, and product structure-property relationship. Full Description " + "description": "Principles of yarn formation, weaving preparation and weaving, modern processing technologies, and product structure-property relationship." }, "PTFE3210": { "subject": "PTFE", "number": "3210", "name": "Transport-Polymers&Fiber ", - "description": "An introduction to heat and mass transfer, psychrometrics, and flow through porous media, emphasizing applications to polymers, fibers, and textiles. Credit not allowed for both PTFE 3210 and MSE 3210. Full Description " + "description": "An introduction to heat and mass transfer, psychrometrics, and flow through porous media, emphasizing applications to polymers, fibers, and textiles. Credit not allowed for both PTFE 3210 and MSE 3210." }, "PTFE3220": { "subject": "PTFE", "number": "3220", "name": "Text Operations&Mgt Meth ", - "description": "Principles and applications of production and operations management to the textile enterprise, including process flow analysis, production planning and scheduling, optimization, quality management, and facilities planning. Credit not allowed for both PTFE 3220 and MSE 3220. Full Description " + "description": "Principles and applications of production and operations management to the textile enterprise, including process flow analysis, production planning and scheduling, optimization, quality management, and facilities planning. Credit not allowed for both PTFE 3220 and MSE 3220." }, "PTFE3221": { "subject": "PTFE", "number": "3221", "name": "Textile Formation&Test ", - "description": "Plant layout and processing equipment for yarn and fabric formation. Laboratory testing on yarns, fabrics, and carpet. Data analysis. Full Description " + "description": "Plant layout and processing equipment for yarn and fabric formation. Laboratory testing on yarns, fabrics, and carpet. Data analysis." }, "PTFE3230": { "subject": "PTFE", "number": "3230", "name": "Polymer&Fiber Processing ", - "description": "Discussion of the principles of fiber formation from polymers including rheology, mechanics, energetics, phase transition, and polymer structure. High-performance fiber processing, and plastics processing. Credit not allowed for both PTFE 3230 and MSE 3230. Full Description " + "description": "Discussion of the principles of fiber formation from polymers including rheology, mechanics, energetics, phase transition, and polymer structure. High-performance fiber processing, and plastics processing. Credit not allowed for both PTFE 3230 and MSE 3230." }, "PTFE3720": { "subject": "PTFE", "number": "3720", "name": "Intro-Fiber Enterprise ", - "description": "This course approaches the manufacture of engineered fibrous structures from a manager's viewpoint. The student will receive a working knowledge and understanding of the various processes in manufacturing fibers and fibrous structures from yarns to fiber optics for telecommunications. Guest lectures from industry representatives and plant trips will enhance understanding. Credit not allowed for both PTFE 3720 and MSE 3720. Full Description " + "description": "This course approaches the manufacture of engineered fibrous structures from a manager's viewpoint. The student will receive a working knowledge and understanding of the various processes in manufacturing fibers and fibrous structures from yarns to fiber optics for telecommunications. Guest lectures from industry representatives and plant trips will enhance understanding. Credit not allowed for both PTFE 3720 and MSE 3720." }, "PTFE3XXX": { "subject": "PTFE", "number": "3XXX", "name": "PTFE Electives ", - "description": " Full Description " + "description": "" }, "PTFE4020": { "subject": "PTFE", "number": "4020", "name": "Textile Mgt Internship ", - "description": "Students will participate in an internship at an industrial site where they will receive management training and be involved with corporate activities such as sales, marketing, management, and human resources. Full Description " + "description": "Students will participate in an internship at an industrial site where they will receive management training and be involved with corporate activities such as sales, marketing, management, and human resources." }, "PTFE4043": { "subject": "PTFE", "number": "4043", "name": "Safety and Ethics ", - "description": "Principles of ethics and safety are presented. The legal requirements for chemical usage and worker safety are discussed. Full Description " + "description": "Principles of ethics and safety are presented. The legal requirements for chemical usage and worker safety are discussed." }, "PTFE4100": { "subject": "PTFE", "number": "4100", "name": "Chem Proc-Text Materials ", - "description": "The chemical, thermal, and mechanical processes used in the preparation, coloration, and finishing of textile surfaces. Credit not allowed for both PTFE 4100 and MSE 4100. Full Description " + "description": "The chemical, thermal, and mechanical processes used in the preparation, coloration, and finishing of textile surfaces. Credit not allowed for both PTFE 4100 and MSE 4100." }, "PTFE4101": { "subject": "PTFE", "number": "4101", "name": "Carpet Technology ", - "description": "A study of materials and production systems used in carpet manufacturing. Carpet structures and performance characteristics, and industry structure and markets are examined. Full Description " + "description": "A study of materials and production systems used in carpet manufacturing. Carpet structures and performance characteristics, and industry structure and markets are examined." }, "PTFE4102": { "subject": "PTFE", "number": "4102", "name": "Nonwovens Technology ", - "description": "A review of the principles of nonwoven processes. Review of the machinery requirements for the most commonly produced structures is followed by an analysis of the structure-property relationships of nonwoven fabrics. Full Description " + "description": "A review of the principles of nonwoven processes. Review of the machinery requirements for the most commonly produced structures is followed by an analysis of the structure-property relationships of nonwoven fabrics." }, "PTFE4103": { "subject": "PTFE", "number": "4103", "name": "Knitting Technology ", - "description": "An overview of warp and weft knitting processes. Review of the machinery requirements and analysis of structure-property relationships of knit fabrics. Full Description " + "description": "An overview of warp and weft knitting processes. Review of the machinery requirements and analysis of structure-property relationships of knit fabrics." }, "PTFE4104": { "subject": "PTFE", "number": "4104", "name": "Industrial Textiles ", - "description": "Design, structures, properties, and processes of textiles for industrial applications. Full Description " + "description": "Design, structures, properties, and processes of textiles for industrial applications." }, "PTFE4105": { "subject": "PTFE", "number": "4105", "name": "Survey-Apparel Industry ", - "description": "Study of processes in manufacturing of apparel including sourcing options available nationally and internationally. Includes the analysis of the stages of production, marketing, and distribution. Full Description " + "description": "Study of processes in manufacturing of apparel including sourcing options available nationally and internationally. Includes the analysis of the stages of production, marketing, and distribution." }, "PTFE4106": { "subject": "PTFE", "number": "4106", "name": "Science of Color ", - "description": "The physical, chemical, and biological principles involved in the perception, measurement, and specification of color and its applications. Full Description " + "description": "The physical, chemical, and biological principles involved in the perception, measurement, and specification of color and its applications." }, "PTFE4107": { "subject": "PTFE", "number": "4107", "name": "App of Mech-Text Struct ", - "description": "Applications of mechanics of yarns, fabrics, and other flexible bodies, including yarn and fabric geometry; response to tensile and bending deformations, and fabric shear and drape. Full Description " + "description": "Applications of mechanics of yarns, fabrics, and other flexible bodies, including yarn and fabric geometry; response to tensile and bending deformations, and fabric shear and drape." }, "PTFE4108": { "subject": "PTFE", "number": "4108", "name": "Tex Production Economics ", - "description": "A PTFE elective course designed to explore the factor costs of production across seven countries within the context of industry globalization drivers. Full Description " + "description": "A PTFE elective course designed to explore the factor costs of production across seven countries within the context of industry globalization drivers." }, "PTFE4110": { "subject": "PTFE", "number": "4110", "name": "Poly&Fiber Engr Design I ", - "description": "A design course covering the principles of concurrent product/process design and development. Team-based projects will explore product/process design and development in the polymers, fibers, and areas of polymers and textiles. Credit not allowed for both PTFE 4110 and MSE 4410. Full Description " + "description": "A design course covering the principles of concurrent product/process design and development. Team-based projects will explore product/process design and development in the polymers, fibers, and areas of polymers and textiles. Credit not allowed for both PTFE 4110 and MSE 4410." }, "PTFE4122": { "subject": "PTFE", "number": "4122", "name": "Textile Chemistry Lab ", - "description": "Laboratory course in preparation, colorization, and finishing of textiles. Credit not allowed for both PTFE 4122 and MSE 4122. Full Description " + "description": "Laboratory course in preparation, colorization, and finishing of textiles. Credit not allowed for both PTFE 4122 and MSE 4122." }, "PTFE4140": { "subject": "PTFE", "number": "4140", "name": "Poly Solutions&Surfaces ", - "description": "Physical chemistry of polymer solutions, polymer miscibility, adsorptions, sorptions, plasticization, molecular weights, molecular weight distributions. Study of polymer surfaces. Credit not allowed for both PTFE 4140 and MSE 4140. Full Description " + "description": "Physical chemistry of polymer solutions, polymer miscibility, adsorptions, sorptions, plasticization, molecular weights, molecular weight distributions. Study of polymer surfaces. Credit not allowed for both PTFE 4140 and MSE 4140." }, "PTFE4141": { "subject": "PTFE", "number": "4141", "name": "Polymer Characterization ", - "description": "Polymer characterization using thermomechanical, scattering, and microscopy, as well as spectroscopy techniques. Full Description " + "description": "Polymer characterization using thermomechanical, scattering, and microscopy, as well as spectroscopy techniques." }, "PTFE4210": { "subject": "PTFE", "number": "4210", "name": "Poly&Fiber Eng Design II ", - "description": "A team problem-solving approach is used to work on a project developed in cooperation with a textile company. Weekly communications, both oral and written, are required. Credit not allowed for both PTFE 4201 and MSE 4420. Full Description " + "description": "A team problem-solving approach is used to work on a project developed in cooperation with a textile company. Weekly communications, both oral and written, are required. Credit not allowed for both PTFE 4201 and MSE 4420." }, "PTFE4698": { "subject": "PTFE", "number": "4698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "PTFE4699": { "subject": "PTFE", "number": "4699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "PTFE4720": { "subject": "PTFE", "number": "4720", "name": "Fiber Proc for Managers ", - "description": "Fundamental understanding of the processing of fibers into engineered structures such as yarns and fabrics (woven, knitted, tufted, and nonwoven). Medical products to spacesuits will be discussed. Full Description " + "description": "Fundamental understanding of the processing of fibers into engineered structures such as yarns and fabrics (woven, knitted, tufted, and nonwoven). Medical products to spacesuits will be discussed." }, "PTFE4721": { "subject": "PTFE", "number": "4721", "name": "Fabric-Color&Performance ", - "description": "Aesthetic and/or physical properties of engineered fibrous structures are changed dramatically by chemical treatments including coloration. The student will receive a basic understanding of the various processes that provide fabrics a silky feel to dazzling colors. Full Description " + "description": "Aesthetic and/or physical properties of engineered fibrous structures are changed dramatically by chemical treatments including coloration. The student will receive a basic understanding of the various processes that provide fabrics a silky feel to dazzling colors." }, "PTFE4723": { "subject": "PTFE", "number": "4723", "name": "Prop-Textile Material ", - "description": "Mechanics of yarns, fabrics, and other flexible bodies, including yarn and fabric geometry, response to tensile and bending deformations, and fabric shear and drape. Full Description " + "description": "Mechanics of yarns, fabrics, and other flexible bodies, including yarn and fabric geometry, response to tensile and bending deformations, and fabric shear and drape." }, "PTFE4740": { "subject": "PTFE", "number": "4740", "name": "Bio-Inspired Design ", - "description": "We examine evolutionary adaptation as a course for engineering design inspiration, utilizing principles of scaling, adaptability, and robust multifunctionality that characterize biological systems. Credit not allowed for both PTFE 4740 and (BIOL 4740 or ISYE 4740 or MSE 4740 or ME 4740). Full Description " + "description": "We examine evolutionary adaptation as a course for engineering design inspiration, utilizing principles of scaling, adaptability, and robust multifunctionality that characterize biological systems. Credit not allowed for both PTFE 4740 and (BIOL 4740 or ISYE 4740 or MSE 4740 or ME 4740)." }, "PTFE4761": { "subject": "PTFE", "number": "4761", "name": "Industrial Ctrls & Mfg ", - "description": "Students are introduced to industrial controls and the fundamentals of manufacturing with hands-on experience based on lab projects using industry software and hardware for communications and control. Crosslisted with ECE 4761. Credit not allowed for both PTFE 4761 and MSE 4761. Full Description " + "description": "Students are introduced to industrial controls and the fundamentals of manufacturing with hands-on experience based on lab projects using industry software and hardware for communications and control. Crosslisted with ECE 4761. Credit not allowed for both PTFE 4761 and MSE 4761." }, "PTFE4775": { "subject": "PTFE", "number": "4775", "name": "Polymer Science & Engr I ", - "description": "An introduction to the chemistry, structure, and formation of polymers, physical states and transitions, physical and mechanical properties of polymer fluids and solids. Crosslisted with CHE, CHEM, ME, and MSE 4775. Full Description " + "description": "An introduction to the chemistry, structure, and formation of polymers, physical states and transitions, physical and mechanical properties of polymer fluids and solids. Crosslisted with CHE, CHEM, ME, and MSE 4775." }, "PTFE4776": { "subject": "PTFE", "number": "4776", "name": "Polymer Science & Engr II ", - "description": "Polymer fabrication processes and methods of characterization and identification of polymers are presented. Experiments in polymerization, processing, and property evaluation of polymers. Crosslisted with CHE, CHEM, ME, and MSE 4776. Full Description " + "description": "Polymer fabrication processes and methods of characterization and identification of polymers are presented. Experiments in polymerization, processing, and property evaluation of polymers. Crosslisted with CHE, CHEM, ME, and MSE 4776." }, "PTFE4777": { "subject": "PTFE", "number": "4777", "name": "Intro-Polymer Sci & Engr ", - "description": "An introduction to the structure and formation of polymers, physical states and transitions, physical and mechanical properties of polymer fluids and solids, and processing of polymers. Crosslisted with MSE and ME 4777. Full Description " + "description": "An introduction to the structure and formation of polymers, physical states and transitions, physical and mechanical properties of polymer fluids and solids, and processing of polymers. Crosslisted with MSE and ME 4777." }, "PTFE4791": { "subject": "PTFE", "number": "4791", "name": "Mech Behavior-Composites ", - "description": "Stress-strain behavior of composites, property of matrix and reinforcing materials, mechanics of fiber-reinforced composites, lamina and laminate analysis, and mechanical performance. Crosslisted with AE, CEE, CHE, ME, and MSE 4791. Full Description " + "description": "Stress-strain behavior of composites, property of matrix and reinforcing materials, mechanics of fiber-reinforced composites, lamina and laminate analysis, and mechanical performance. Crosslisted with AE, CEE, CHE, ME, and MSE 4791." }, "PTFE4793": { "subject": "PTFE", "number": "4793", "name": "Composite Mater& Process ", - "description": "Basic principles of selection and design of composite materials and their manufacturing and testing. Cost factors. Laboratory exercises on manufacturing and tests. Crosslisted with AE, CEE, CHE, ME, and MSE 4793. Full Description " + "description": "Basic principles of selection and design of composite materials and their manufacturing and testing. Cost factors. Laboratory exercises on manufacturing and tests. Crosslisted with AE, CEE, CHE, ME, and MSE 4793." }, "PTFE4794": { "subject": "PTFE", "number": "4794", "name": "Composite Materials& Mfg ", - "description": "Basic principles of selection and design of composite materials and their manufacturing and testing. Cost factors. Laboratory exercises on manufacturing and tests. Crosslisted with AE, CEE, CHE, ME, and MSE 4794. Full Description " + "description": "Basic principles of selection and design of composite materials and their manufacturing and testing. Cost factors. Laboratory exercises on manufacturing and tests. Crosslisted with AE, CEE, CHE, ME, and MSE 4794." }, "PTFE4801": { "subject": "PTFE", "number": "4801", "name": "Special Topics ", - "description": "Topics of special interest in polymers, fibers, and textiles not included in the regular offerings. Full Description " + "description": "Topics of special interest in polymers, fibers, and textiles not included in the regular offerings." }, "PTFE4802": { "subject": "PTFE", "number": "4802", "name": "Special Topics ", - "description": "Topic of current interest in polyumers, fibers, and textiles not included in the regular offerings. Full Description " + "description": "Topic of current interest in polyumers, fibers, and textiles not included in the regular offerings." }, "PTFE4803": { "subject": "PTFE", "number": "4803", "name": "Special Topics ", - "description": "Topics of current interest in polymers, fibers, and textiles not included in the regular offerings. Full Description " + "description": "Topics of current interest in polymers, fibers, and textiles not included in the regular offerings." }, "PTFE4804": { "subject": "PTFE", "number": "4804", "name": "Special Topics ", - "description": "Topics of current interest in polymer, fiber, and textiles not included in the regular offerings. Full Description " + "description": "Topics of current interest in polymer, fiber, and textiles not included in the regular offerings." }, "PTFE4901": { "subject": "PTFE", "number": "4901", "name": "Special Problems ", - "description": "Special problems involving analytical and/or experimental investigations in the fields of polymers, fibers, and textiles. Full Description " + "description": "Special problems involving analytical and/or experimental investigations in the fields of polymers, fibers, and textiles." }, "PTFE4902": { "subject": "PTFE", "number": "4902", "name": "Special Problems ", - "description": "Special problems involving analytical and/or experimental investigations in the fields of polymers, fibers, and textiles. Full Description " + "description": "Special problems involving analytical and/or experimental investigations in the fields of polymers, fibers, and textiles." }, "PTFE4903": { "subject": "PTFE", "number": "4903", "name": "Special Problems ", - "description": "Special problems involving analytical and/or experimental investigations in the fields of polymers, fibers, and textiles. Full Description " + "description": "Special problems involving analytical and/or experimental investigations in the fields of polymers, fibers, and textiles." }, "PTFE4XXX": { "subject": "PTFE", "number": "4XXX", "name": "PTFE Electives ", - "description": " Full Description " + "description": "" }, "PTFE6100": { "subject": "PTFE", "number": "6100", "name": "Mech-Fibrous Materials ", - "description": "Discussion of deformation of anisotropic fibrous materials; anisotropy and critical phenomena in the mechanical behavior of fibrous materials; models for viscoelastic behavior of fibrous materials. Full Description " + "description": "Discussion of deformation of anisotropic fibrous materials; anisotropy and critical phenomena in the mechanical behavior of fibrous materials; models for viscoelastic behavior of fibrous materials." }, "PTFE6101": { "subject": "PTFE", "number": "6101", "name": "Dynamic-Text Dry Process ", - "description": "Features of modern weaving, weaving preparatory, and spinning equipment, and their interaction with fibrous materials are discussed at length. Full Description " + "description": "Features of modern weaving, weaving preparatory, and spinning equipment, and their interaction with fibrous materials are discussed at length." }, "PTFE6200": { "subject": "PTFE", "number": "6200", "name": "Industrial Chem Process ", - "description": "The industrial chemical processes for the production of chemicals, monomers, and textile auxiliaries are covered. Chemical textile auxiliaries are discussed in relation to theory and applications. Full Description " + "description": "The industrial chemical processes for the production of chemicals, monomers, and textile auxiliaries are covered. Chemical textile auxiliaries are discussed in relation to theory and applications." }, "PTFE6201": { "subject": "PTFE", "number": "6201", "name": "Dye Synthesis ", - "description": "The chemistry of the synthesis and structures of dyes is covered. Color of dyes is discussed in relation to structure and molecular orbital theory. Full Description " + "description": "The chemistry of the synthesis and structures of dyes is covered. Color of dyes is discussed in relation to structure and molecular orbital theory." }, "PTFE6202": { "subject": "PTFE", "number": "6202", "name": "Phys Chem-Polym Sorption ", - "description": "Detailed description of sorption by polymers, emphasizing physio-chemical laws of transport of chromophores through solution, interfaces, and solid-state. Full Description " + "description": "Detailed description of sorption by polymers, emphasizing physio-chemical laws of transport of chromophores through solution, interfaces, and solid-state." }, "PTFE6301": { "subject": "PTFE", "number": "6301", "name": "Natural Polymers ", - "description": "The structures and properties of natural products are presented. Production of cellulose and proteins is discussed. Full Description " + "description": "The structures and properties of natural products are presented. Production of cellulose and proteins is discussed." }, "PTFE6751": { "subject": "PTFE", "number": "6751", "name": "Phys Chem-Poly Solutions ", - "description": "Study of polymer solutions, polymer miscibility, adsorptions, sorptions, plasticization, molecular weights, molecular weight distributions, and interfacial phenomena using thermodynamics and statistical mechanics. Crosslisted with CHE, CHEM, and MSE 6751. Full Description " + "description": "Study of polymer solutions, polymer miscibility, adsorptions, sorptions, plasticization, molecular weights, molecular weight distributions, and interfacial phenomena using thermodynamics and statistical mechanics. Crosslisted with CHE, CHEM, and MSE 6751." }, "PTFE6752": { "subject": "PTFE", "number": "6752", "name": "Polymer Characterization ", - "description": "This course introduces the student to surface, near-surface, and structural methods of polymer characterization. Specialized techniques critical to physical structure are emphasized. Crosslisted with CHE, CHEM, and MSE 6752. Full Description " + "description": "This course introduces the student to surface, near-surface, and structural methods of polymer characterization. Specialized techniques critical to physical structure are emphasized. Crosslisted with CHE, CHEM, and MSE 6752." }, "PTFE6755": { "subject": "PTFE", "number": "6755", "name": "Theoretical Chem-Polymer ", - "description": "Thermodynamics and microscopic dynamics of polymers. Fundamental concepts, including scaling concepts, governing anisotropy of polarizability, phase transitions, morphology, time-dependent correlations, etc. are discussed. Crosslisted with CHEM and MSE 6755. Full Description " + "description": "Thermodynamics and microscopic dynamics of polymers. Fundamental concepts, including scaling concepts, governing anisotropy of polarizability, phase transitions, morphology, time-dependent correlations, etc. are discussed. Crosslisted with CHEM and MSE 6755." }, "PTFE6759": { "subject": "PTFE", "number": "6759", "name": "Mate-Envir Conscious Dgn ", - "description": "Covers the environmental impact of materials choices and quantitative measure of life-cycle assessment and environmental burden. The Natural Step philosophy will be used as a model for the overall approach. Crosslisted with ME and MSE 6759. Full Description " + "description": "Covers the environmental impact of materials choices and quantitative measure of life-cycle assessment and environmental burden. The Natural Step philosophy will be used as a model for the overall approach. Crosslisted with ME and MSE 6759." }, "PTFE6768": { "subject": "PTFE", "number": "6768", "name": "Polymer Structure& Props ", - "description": "Formulations and analysis of molecular and phenomenological models of elastic and viscoelastic behavior, development and description of structure, and fundamental aspects of structure-property relations. Crosslisted with MSE, CHE, and ME 6768. Full Description " + "description": "Formulations and analysis of molecular and phenomenological models of elastic and viscoelastic behavior, development and description of structure, and fundamental aspects of structure-property relations. Crosslisted with MSE, CHE, and ME 6768." }, "PTFE6778": { "subject": "PTFE", "number": "6778", "name": "Intro to Biomaterials ", - "description": "Introduction to a variety of biomaterials and their biomedical applications. Crosslisted with CHE and BMED 6778. Full Description " + "description": "Introduction to a variety of biomaterials and their biomedical applications. Crosslisted with CHE and BMED 6778." }, "PTFE6795": { "subject": "PTFE", "number": "6795", "name": "Math,Stat&Comp Tech-Mate ", - "description": "Emphasizes the fundamental physical, analytical, and mathematical techniques commonly encountered in materials engineering including stress and strain, crystallographic and orientation transformations, X-ray, TEM, and solid-state concepts. Crosslisted with MSE and ME 6795. Full Description " + "description": "Emphasizes the fundamental physical, analytical, and mathematical techniques commonly encountered in materials engineering including stress and strain, crystallographic and orientation transformations, X-ray, TEM, and solid-state concepts. Crosslisted with MSE and ME 6795." }, "PTFE6796": { "subject": "PTFE", "number": "6796", "name": "Struct-Property Relation ", - "description": "Introduction to the multi-scale structure effects on material properties. For MSE students, the course will prepare students for future in-depth courses. For non-MSE, students the course will provide a background in materials and may serve as part of the program of study for a minor in materials. Crosslisted with ME and MSE 6796. Full Description " + "description": "Introduction to the multi-scale structure effects on material properties. For MSE students, the course will prepare students for future in-depth courses. For non-MSE, students the course will provide a background in materials and may serve as part of the program of study for a minor in materials. Crosslisted with ME and MSE 6796." }, "PTFE6797": { "subject": "PTFE", "number": "6797", "name": "Therm&Kinetic Microstruc ", - "description": "The reduction of chemical free energy, strain energy, and interfacial energy control the kinetics of diffusional transformations. These factors are explored from the point of view of processing and stability of the microstructure during service. Crosslisted with MSE and ME 6797. Full Description " + "description": "The reduction of chemical free energy, strain energy, and interfacial energy control the kinetics of diffusional transformations. These factors are explored from the point of view of processing and stability of the microstructure during service. Crosslisted with MSE and ME 6797." }, "PTFE6998": { "subject": "PTFE", "number": "6998", "name": "Safety and Ethics ", - "description": "Principles of ethics and safety are presented. The legal requirements for chemical usage and worker safety are discussed. Full Description " + "description": "Principles of ethics and safety are presented. The legal requirements for chemical usage and worker safety are discussed." }, "PTFE6999": { "subject": "PTFE", "number": "6999", "name": "TFE Colloquium ", - "description": "Graduate students discuss their research work and special topics in a structured setting with their research groups and research advisors. Full Description " + "description": "Graduate students discuss their research work and special topics in a structured setting with their research groups and research advisors." }, "PTFE6XXX": { "subject": "PTFE", "number": "6XXX", "name": "Text&Fiber Eng Elective ", - "description": " Full Description " + "description": "" }, "PTFE7000": { "subject": "PTFE", "number": "7000", "name": "Master's Thesis ", - "description": " Full Description " + "description": "" }, "PTFE7100": { "subject": "PTFE", "number": "7100", "name": "Adv Fiber Format&Struct ", - "description": "Principles and theories of structure, properties, and formation of fibers; structural models, physical properties, rheology, mechanics, energetics, and phase transitions in fiber formation processes. Full Description " + "description": "Principles and theories of structure, properties, and formation of fibers; structural models, physical properties, rheology, mechanics, energetics, and phase transitions in fiber formation processes." }, "PTFE7771": { "subject": "PTFE", "number": "7771", "name": "Mech-Polymer Solid&Fluid ", - "description": "Continuum of solids and fluids; mechanics of deformation of anisotropic polymers; yield, breaking, and fatigue; non-Newtonian viscous and viscoelastic behavior of polymer fluids. Crosslisted with CHE, ME, and MSE 7771. Full Description " + "description": "Continuum of solids and fluids; mechanics of deformation of anisotropic polymers; yield, breaking, and fatigue; non-Newtonian viscous and viscoelastic behavior of polymer fluids. Crosslisted with CHE, ME, and MSE 7771." }, "PTFE7791": { "subject": "PTFE", "number": "7791", "name": "Damage & Fail-Composites ", - "description": "Provides knowledge of the fundamental concepts and methods related to analysis and assessment of damage, failure, and durability of composite material. Crosslisted with AE, CHE, CEE, ME, and MSE 7791. Full Description " + "description": "Provides knowledge of the fundamental concepts and methods related to analysis and assessment of damage, failure, and durability of composite material. Crosslisted with AE, CHE, CEE, ME, and MSE 7791." }, "PTFE7792": { "subject": "PTFE", "number": "7792", "name": "Mechanics of Composites ", - "description": "Anisotropic elasticity, failure theories, hygrothermal behavior, 3-D analysis of laminates, thick laminates, free- edge effects, stress concentrations, joints, creep and fracture of composites, and advanced topics. Crosslisted with AE, CEE, CHE, ME, and MSE 7792. Full Description " + "description": "Anisotropic elasticity, failure theories, hygrothermal behavior, 3-D analysis of laminates, thick laminates, free- edge effects, stress concentrations, joints, creep and fracture of composites, and advanced topics. Crosslisted with AE, CEE, CHE, ME, and MSE 7792." }, "PTFE7793": { "subject": "PTFE", "number": "7793", "name": "Manufacture-Composites ", - "description": "Major manufacturing techniques of metal-, ceramic-, and polymer-matrix composites. Modeling of processes with emphasis on fundamental mechanisms and effects. Crosslisted with AE, CEE, CHE, ME, and MSE 7793. Full Description " + "description": "Major manufacturing techniques of metal-, ceramic-, and polymer-matrix composites. Modeling of processes with emphasis on fundamental mechanisms and effects. Crosslisted with AE, CEE, CHE, ME, and MSE 7793." }, "PTFE7999": { "subject": "PTFE", "number": "7999", "name": "Prep-Doctoral Qual Exams ", - "description": " Full Description " + "description": "" }, "PTFE8001": { "subject": "PTFE", "number": "8001", "name": "TFE Seminar ", - "description": "Graduate students discuss their research work. Invited speakers with diverse backgrounds describe their experiences, entrepreneurial ventures, and research challenges. Full Description " + "description": "Graduate students discuss their research work. Invited speakers with diverse backgrounds describe their experiences, entrepreneurial ventures, and research challenges." }, "PTFE8002": { "subject": "PTFE", "number": "8002", "name": "TFE Seminar ", - "description": "Graduate students discuss their research work. Invited speakers with diverse backgrounds describe their experiences, entrepreneurial ventures, and research challenges. Full Description " + "description": "Graduate students discuss their research work. Invited speakers with diverse backgrounds describe their experiences, entrepreneurial ventures, and research challenges." }, "PTFE8801": { "subject": "PTFE", "number": "8801", "name": "Special Topics ", - "description": "Graduate-level special topic offerings of current interest in polymers, fibers, and textiles, not included in regular courses. Full Description " + "description": "Graduate-level special topic offerings of current interest in polymers, fibers, and textiles, not included in regular courses." }, "PTFE8802": { "subject": "PTFE", "number": "8802", "name": "Special Topics ", - "description": "Graduate-level special topic offerings of current interest in polymers, fibers and textiles, not included in regular courses. Full Description " + "description": "Graduate-level special topic offerings of current interest in polymers, fibers and textiles, not included in regular courses." }, "PTFE8803": { "subject": "PTFE", "number": "8803", "name": "Special Topics ", - "description": "Graduate-level special topic offerings of current interest in polymers, fibers and textiles not included in regular courses. Full Description " + "description": "Graduate-level special topic offerings of current interest in polymers, fibers and textiles not included in regular courses." }, "PTFE8804": { "subject": "PTFE", "number": "8804", "name": "Special Topics ", - "description": "Graduate level special topic offerings of current interest in polymers, fibers and textiles not included in regular courses. Full Description " + "description": "Graduate level special topic offerings of current interest in polymers, fibers and textiles not included in regular courses." }, "PTFE8813": { "subject": "PTFE", "number": "8813", "name": "Special Topics ", - "description": "Graduate-level special topic offerings of current interest in polymers, fibers, and textiles not included in regular courses. Full Description " + "description": "Graduate-level special topic offerings of current interest in polymers, fibers, and textiles not included in regular courses." }, "PTFE8814": { "subject": "PTFE", "number": "8814", "name": "Special Topics ", - "description": "Graduate-level special topic offerings of current interest in polymers, fibers, and textiles not included in regular courses. Full Description " + "description": "Graduate-level special topic offerings of current interest in polymers, fibers, and textiles not included in regular courses." }, "PTFE8900": { "subject": "PTFE", "number": "8900", "name": "Special Problems ", - "description": "Graduate-level special problems involving research investigations in the fields of polymers, fibers, and/or textiles. Full Description " + "description": "Graduate-level special problems involving research investigations in the fields of polymers, fibers, and/or textiles." }, "PTFE8901": { "subject": "PTFE", "number": "8901", "name": "Special Problems ", - "description": "Graduate-level special problems involving research investigations in the fields of polymers, fibers, and/or textiles. Full Description " + "description": "Graduate-level special problems involving research investigations in the fields of polymers, fibers, and/or textiles." }, "PTFE8902": { "subject": "PTFE", "number": "8902", "name": "Special Problems ", - "description": "Graduate-level special problems involving research investigations in the fields of polymers, fibers, and/or textiles. Full Description " + "description": "Graduate-level special problems involving research investigations in the fields of polymers, fibers, and/or textiles." }, "PTFE8997": { "subject": "PTFE", "number": "8997", "name": "Teaching Assistantship ", - "description": "For students holding a teaching assistantship. Full Description " + "description": "For students holding a teaching assistantship." }, "PTFE8998": { "subject": "PTFE", "number": "8998", "name": "Research Assistantship ", - "description": "For students holding graduate research assistantships. Full Description " + "description": "For students holding graduate research assistantships." }, "PTFE9000": { "subject": "PTFE", "number": "9000", "name": "Doctoral Thesis ", - "description": " Full Description " + "description": "" }, "PUBJ8000": { "subject": "PUBJ", "number": "8000", "name": "Joint GT/GSU PhD Program ", - "description": "Placeholder course for students in the joint Doctoral program in Public Policy with Georgia State University as their home institution. Used to maintain Georgia Tech student status. Full Description " + "description": "Placeholder course for students in the joint Doctoral program in Public Policy with Georgia State University as their home institution. Used to maintain Georgia Tech student status." }, "PUBJ8801": { "subject": "PUBJ", "number": "8801", "name": "Spec Top-Joint Prgm GSU ", - "description": " Full Description " + "description": "" }, "PUBJ8802": { "subject": "PUBJ", "number": "8802", "name": "Spec Top-Joint Prgm GSU ", - "description": " Full Description " + "description": "" }, "PUBJ8803": { "subject": "PUBJ", "number": "8803", "name": "Spec Top-Joint Prgm GSU ", - "description": " Full Description " + "description": "" }, "PUBJ8811": { "subject": "PUBJ", "number": "8811", "name": "Spec Top-Joint Prgm GSU ", - "description": " Full Description " + "description": "" }, "PUBJ8812": { "subject": "PUBJ", "number": "8812", "name": "Spec Top-Joint Prgm GSU ", - "description": " Full Description " + "description": "" }, "PUBJ8813": { "subject": "PUBJ", "number": "8813", "name": "Spec Top-Joint Prgm GSU ", - "description": " Full Description " + "description": "" }, "PUBJ8821": { "subject": "PUBJ", "number": "8821", "name": "Spec Top-Joint Prgm GSU ", - "description": " Full Description " + "description": "" }, "PUBJ8822": { "subject": "PUBJ", "number": "8822", "name": "Spec Top-Joint Prgm GSU ", - "description": " Full Description " + "description": "" }, "PUBJ8823": { "subject": "PUBJ", "number": "8823", "name": "Spec Top-Joint Prgm GSU ", - "description": " Full Description " + "description": "" }, "PUBP1142": { "subject": "PUBP", "number": "1142", "name": "Teams and Collaboration ", - "description": "Exposes students to essential theories and concepts for analyzing, understanding, and managing teams in the context of complex interdependent public problems. Credit not awarded for both PUBP 1142 and PUBP 2142. Full Description " + "description": "Exposes students to essential theories and concepts for analyzing, understanding, and managing teams in the context of complex interdependent public problems. Credit not awarded for both PUBP 1142 and PUBP 2142." }, "PUBP1XXX": { "subject": "PUBP", "number": "1XXX", "name": "Public Policy Elective ", - "description": " Full Description " + "description": "" }, "PUBP2010": { "subject": "PUBP", "number": "2010", "name": "Political Processes ", - "description": "Introduction to political models and theories of policy making. Agenda-setting, stakeholder involvement, policy adoption, policy design and implementation, evaluation, and advocacy. Full Description " + "description": "Introduction to political models and theories of policy making. Agenda-setting, stakeholder involvement, policy adoption, policy design and implementation, evaluation, and advocacy." }, "PUBP2012": { "subject": "PUBP", "number": "2012", "name": "Foundation-Public Policy ", - "description": "An in-depth exploration of American public policy, with emphasis on the dynamics of policymaking in policy areas such as health care, research, energy and environment, income maintenance, and economic development. Full Description " + "description": "An in-depth exploration of American public policy, with emphasis on the dynamics of policymaking in policy areas such as health care, research, energy and environment, income maintenance, and economic development." }, "PUBP2030": { "subject": "PUBP", "number": "2030", "name": "Organizations and Policy ", - "description": "An exploration of the roles and activities of bureaucracies in the implementation of policies and programs, with emphasis on practical issues of public management. Credit not allowed for both PUBP 2030 and PUBP 3010. Full Description " + "description": "An exploration of the roles and activities of bureaucracies in the implementation of policies and programs, with emphasis on practical issues of public management. Credit not allowed for both PUBP 2030 and PUBP 3010." }, "PUBP2142": { "subject": "PUBP", "number": "2142", "name": "Teams and Collab Context ", - "description": "Exposes students to essential theories and concepts for analyzing, understanding, and managing teams in the context of complex interdependent public problems. Credit not awarded for both PUBP 2142 and PUBP 1142. Full Description " + "description": "Exposes students to essential theories and concepts for analyzing, understanding, and managing teams in the context of complex interdependent public problems. Credit not awarded for both PUBP 2142 and PUBP 1142." }, "PUBP2651": { "subject": "PUBP", "number": "2651", "name": "Public Policy Internship ", - "description": "Course projects related to professional internships. Topics, credit, and requirements to be arranged by student, instructor, and sponsor. Maybe taken only once. Full Description " + "description": "Course projects related to professional internships. Topics, credit, and requirements to be arranged by student, instructor, and sponsor. Maybe taken only once." }, "PUBP2698": { "subject": "PUBP", "number": "2698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "PUBP2699": { "subject": "PUBP", "number": "2699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "PUBP2803": { "subject": "PUBP", "number": "2803", "name": "Special Topics ", - "description": "Courses on special topics of current interest in Public Policy. Full Description " + "description": "Courses on special topics of current interest in Public Policy." }, "PUBP2XXX": { "subject": "PUBP", "number": "2XXX", "name": "Public Policy Elective ", - "description": " Full Description " + "description": "" }, "PUBP3000": { "subject": "PUBP", "number": "3000", "name": "US Constitutional Issues ", - "description": "Examines the American social and political system through the prism of Constitutional issues decided by the U.S. Supreme Court. Full Description " + "description": "Examines the American social and political system through the prism of Constitutional issues decided by the U.S. Supreme Court." }, "PUBP3016": { "subject": "PUBP", "number": "3016", "name": "Judicial Process ", - "description": "The functions, structures, and procedures of state and federal court systems, including selection and appointment of judges, judicial activism, influences on court decisions, and enforcement of court decisions. Full Description " + "description": "The functions, structures, and procedures of state and federal court systems, including selection and appointment of judges, judicial activism, influences on court decisions, and enforcement of court decisions." }, "PUBP3020": { "subject": "PUBP", "number": "3020", "name": "Applied Political Econ ", - "description": "Roles of markets and government in allocating resources. Rational choice approaches to understanding policy. Institutional design. Growth and sustainability. Full Description " + "description": "Roles of markets and government in allocating resources. Rational choice approaches to understanding policy. Institutional design. Growth and sustainability." }, "PUBP3030": { "subject": "PUBP", "number": "3030", "name": "Policy Analysis ", - "description": "The science and craft of professional problem-solving, analysis, and advice. Economic and political approaches and techniques for analysis of costs, benefits, and risks. Full Description " + "description": "The science and craft of professional problem-solving, analysis, and advice. Economic and political approaches and techniques for analysis of costs, benefits, and risks." }, "PUBP3120": { "subject": "PUBP", "number": "3120", "name": "Stat Analysis-Pub Policy ", - "description": "Introduction to probability, descriptive statistics, inferential statistics and analysis, and spreadsheets. Emphasis application of basic statistical concepts to public policy and administration problems. Credit not allowed for both PUBP 3120 and PUBP 4113. Full Description " + "description": "Introduction to probability, descriptive statistics, inferential statistics and analysis, and spreadsheets. Emphasis application of basic statistical concepts to public policy and administration problems. Credit not allowed for both PUBP 3120 and PUBP 4113." }, "PUBP3130": { "subject": "PUBP", "number": "3130", "name": "Research Methods ", - "description": "Conceptual and methodological issues in policy studies, including causality, explanation, models, threats to research, data collection, and assessment of applicability to policy issues. Design of research. Credit not allowed for both PUBP 3130 and PUBP 3110. Full Description " + "description": "Conceptual and methodological issues in policy studies, including causality, explanation, models, threats to research, data collection, and assessment of applicability to policy issues. Design of research. Credit not allowed for both PUBP 3130 and PUBP 3110." }, "PUBP3141": { "subject": "PUBP", "number": "3141", "name": "Leading Social Orgs ", - "description": "This course is designed to give the student a sound understanding of how to lead and manage change in social organizations. Full Description " + "description": "This course is designed to give the student a sound understanding of how to lead and manage change in social organizations." }, "PUBP3201": { "subject": "PUBP", "number": "3201", "name": "Intro To Social Policy ", - "description": "A survey of public policies directed toward social problems in America and their evolution and reform. Development of role of government in addressing issues related to poverty and social welfare. Full Description " + "description": "A survey of public policies directed toward social problems in America and their evolution and reform. Development of role of government in addressing issues related to poverty and social welfare." }, "PUBP3214": { "subject": "PUBP", "number": "3214", "name": "African-Amer Politics ", - "description": "An exploration of the organizations, strategies, and issues that have defined African American political life in the post-civil rights era in the United States. Full Description " + "description": "An exploration of the organizations, strategies, and issues that have defined African American political life in the post-civil rights era in the United States." }, "PUBP3244": { "subject": "PUBP", "number": "3244", "name": "Stem Cell Policy Ethics ", - "description": "Examination of current state of scientific knowledge regarding stem cells and historical development, relevant ethical issues, and policy considerations. Full Description " + "description": "Examination of current state of scientific knowledge regarding stem cells and historical development, relevant ethical issues, and policy considerations." }, "PUBP3315": { "subject": "PUBP", "number": "3315", "name": "Environ Policy& Politics ", - "description": "Overview of the major institutions, organizations, official and unofficial actors in environmental policy and politics, and what influences their environmental decisions and actions. Credit not allowed for both PUBP 3315 and PUBP 4314. Full Description " + "description": "Overview of the major institutions, organizations, official and unofficial actors in environmental policy and politics, and what influences their environmental decisions and actions. Credit not allowed for both PUBP 3315 and PUBP 4314." }, "PUBP3320": { "subject": "PUBP", "number": "3320", "name": "Climate Policy ", - "description": "Examines relevant scientific theory and evidence, political history, policy options, alternative policy analysis frameworks, and the influence of science and scientific uncertainity on climate policy. Full Description " + "description": "Examines relevant scientific theory and evidence, political history, policy options, alternative policy analysis frameworks, and the influence of science and scientific uncertainity on climate policy." }, "PUBP3350": { "subject": "PUBP", "number": "3350", "name": "Energy Policy ", - "description": "Examines policies impacting the production and utilization of energy in the U.S. and abroad. Addresses resource constraints, physical principles, and policy analysis tools and concepts. Full Description " + "description": "Examines policies impacting the production and utilization of energy in the U.S. and abroad. Addresses resource constraints, physical principles, and policy analysis tools and concepts." }, "PUBP3502": { "subject": "PUBP", "number": "3502", "name": "IT/Comm/Telecom Policy ", - "description": "Examination of the convergence of information technology, communications and telecommunications, policymaking within the executive/regulatory branches, special interest group role, and key domestic and international issues. Credit not allowed for both PUBP 3502 and PUBP 4512. Full Description " + "description": "Examination of the convergence of information technology, communications and telecommunications, policymaking within the executive/regulatory branches, special interest group role, and key domestic and international issues. Credit not allowed for both PUBP 3502 and PUBP 4512." }, "PUBP3600": { "subject": "PUBP", "number": "3600", "name": "Sustain,Tech & Policy ", - "description": "Ethical, scientific, technological, economic, and political dimensions of sustainable human practices, applying multidisciplinary perspectives to challenges facing public and private-sector approaches to sustainability. Full Description " + "description": "Ethical, scientific, technological, economic, and political dimensions of sustainable human practices, applying multidisciplinary perspectives to challenges facing public and private-sector approaches to sustainability." }, "PUBP3610": { "subject": "PUBP", "number": "3610", "name": "Pre-Law Seminar ", - "description": "Examination of the legal profession and areas of legal specialization (e.g., contract, property, intellectual property, international). Emphasizes skills and values that are essential to success in law school and competent lawyering. Full Description " + "description": "Examination of the legal profession and areas of legal specialization (e.g., contract, property, intellectual property, international). Emphasizes skills and values that are essential to success in law school and competent lawyering." }, "PUBP3XXX": { "subject": "PUBP", "number": "3XXX", "name": "Public Policy Elective ", - "description": " Full Description " + "description": "" }, "PUBP4010": { "subject": "PUBP", "number": "4010", "name": "Policy Task Force I ", - "description": "Capstone project in which teams of students formulate, analyze, and recommend policy options. Full Description " + "description": "Capstone project in which teams of students formulate, analyze, and recommend policy options." }, "PUBP4020": { "subject": "PUBP", "number": "4020", "name": "Policy Task Force II ", - "description": "Capstone project in which teams of students formulate, analyze, and recommend policy options. Full Description " + "description": "Capstone project in which teams of students formulate, analyze, and recommend policy options." }, "PUBP4111": { "subject": "PUBP", "number": "4111", "name": "Internet & Public Policy ", - "description": "Analyzes policy implications of Internet architecture (Internet protocols, domain name system, packet switching, peer-to-peer) and surveys policy issues about content, privacy, intellectual property, and governance. Full Description " + "description": "Analyzes policy implications of Internet architecture (Internet protocols, domain name system, packet switching, peer-to-peer) and surveys policy issues about content, privacy, intellectual property, and governance." }, "PUBP4120": { "subject": "PUBP", "number": "4120", "name": "Survey Research Methods ", - "description": "Methods for producing and reporting valid surveys, including composition of questions, design and implementation of survey strategies, and analysis and communication of results. Full Description " + "description": "Methods for producing and reporting valid surveys, including composition of questions, design and implementation of survey strategies, and analysis and communication of results." }, "PUBP4130": { "subject": "PUBP", "number": "4130", "name": "Pol Analy & Program Eval ", - "description": "Analytical methods for rational planning and policy analysis, emphasizing \"learning by doing\" as students examine alternative types of policy analysis, establish evaluation criteria, and evaluate policy implementation. Full Description " + "description": "Analytical methods for rational planning and policy analysis, emphasizing \"learning by doing\" as students examine alternative types of policy analysis, establish evaluation criteria, and evaluate policy implementation." }, "PUBP4140": { "subject": "PUBP", "number": "4140", "name": "Foundations Leadership ", - "description": "This course offers a comprehensive review of contemporary issues and perspectives on leadership, including multi-disciplinary and systems-oriented approaches as well as classic theory, moving to the examination of evolving contemporary beliefs. Full Description " + "description": "This course offers a comprehensive review of contemporary issues and perspectives on leadership, including multi-disciplinary and systems-oriented approaches as well as classic theory, moving to the examination of evolving contemporary beliefs." }, "PUBP4200": { "subject": "PUBP", "number": "4200", "name": "Social Policy Issues ", - "description": "A review of conceptual and analytical perspectives in social policy and coverage of major areas of persistent social problems, including health care, welfare reform, housing, education, reproductive issues, and gerontology. Full Description " + "description": "A review of conceptual and analytical perspectives in social policy and coverage of major areas of persistent social problems, including health care, welfare reform, housing, education, reproductive issues, and gerontology." }, "PUBP4211": { "subject": "PUBP", "number": "4211", "name": "Urban Policy ", - "description": "Urban policy and urban economic development examined historically, nationally, and locally. Approaches to urban development and redevelopment. Full Description " + "description": "Urban policy and urban economic development examined historically, nationally, and locally. Approaches to urban development and redevelopment." }, "PUBP4212": { "subject": "PUBP", "number": "4212", "name": "Women and Public Policy ", - "description": "The status of women in American society as a function of rights and opportunities conferred upon women by governmental actions and as influenced by forces of social change. Full Description " + "description": "The status of women in American society as a function of rights and opportunities conferred upon women by governmental actions and as influenced by forces of social change." }, "PUBP4214": { "subject": "PUBP", "number": "4214", "name": "Gender,Sci,Tech&Pub Plcy ", - "description": "The course focuses on the connections between gender, science, and technology, and issuues of public policy. Full Description " + "description": "The course focuses on the connections between gender, science, and technology, and issuues of public policy." }, "PUBP4226": { "subject": "PUBP", "number": "4226", "name": "Business and Government ", - "description": "How government regulates business and markets, and how business exercises power and influence on government in areas such as antitrust, financial markets, safety and health, and environmental quality. Full Description " + "description": "How government regulates business and markets, and how business exercises power and influence on government in areas such as antitrust, financial markets, safety and health, and environmental quality." }, "PUBP4260": { "subject": "PUBP", "number": "4260", "name": "Econ Dev Policy & PLan ", - "description": "Introduction to the context, theory, processes, and practice of regional and local economic development policy and planning in the U.S. and internationally. Full Description " + "description": "Introduction to the context, theory, processes, and practice of regional and local economic development policy and planning in the U.S. and internationally." }, "PUBP4338": { "subject": "PUBP", "number": "4338", "name": "Environ Impact Assesment ", - "description": "Examines policy, planning, and methodological issues in the environmental impact assessment of engineering systems. Emphasizes regulatory aspects of environmental analysis and key analytical techniques, and the incorporation of environmental considerations into engineering design processes. Full Description " + "description": "Examines policy, planning, and methodological issues in the environmental impact assessment of engineering systems. Emphasizes regulatory aspects of environmental analysis and key analytical techniques, and the incorporation of environmental considerations into engineering design processes." }, "PUBP4410": { "subject": "PUBP", "number": "4410", "name": "Science,Tech& Pub Policy ", - "description": "Examination of relationships between science, technology, and government, and their mutual influence on public and private decisions. Full Description " + "description": "Examination of relationships between science, technology, and government, and their mutual influence on public and private decisions." }, "PUBP4414": { "subject": "PUBP", "number": "4414", "name": "Tech,Innovation&Policy ", - "description": "Theories and concepts of technological innovation and diffusion, economic development, and the role of public and private institutions in technological development at the firm, industry, regional, national, and international levels. Full Description " + "description": "Theories and concepts of technological innovation and diffusion, economic development, and the role of public and private institutions in technological development at the firm, industry, regional, national, and international levels." }, "PUBP4416": { "subject": "PUBP", "number": "4416", "name": "Critical Issues-Sci&Tech ", - "description": "Exploration of technology and technological society, going beyond utility and functionality to consider justice, meaningfulness, and self-realization. Perspectives include political economy, aesthetics, and social change. Full Description " + "description": "Exploration of technology and technological society, going beyond utility and functionality to consider justice, meaningfulness, and self-realization. Perspectives include political economy, aesthetics, and social change." }, "PUBP4440": { "subject": "PUBP", "number": "4440", "name": "Sci Tech & Regulation ", - "description": "Examines historical, legal, economic, and political rationales for regulation. Survey of administrative law and processes, risk analysis/management, expertise and public, and current topical issues. Credit not allowed for both PUBP 4440 and PUBP 6440. Full Description " + "description": "Examines historical, legal, economic, and political rationales for regulation. Survey of administrative law and processes, risk analysis/management, expertise and public, and current topical issues. Credit not allowed for both PUBP 4440 and PUBP 6440." }, "PUBP4501": { "subject": "PUBP", "number": "4501", "name": "Info Policy & Management ", - "description": "Examination of the information dimensions of public and private organizations in response to the multiple types of uncertainty they face in their strategic pursuits. Credit not allowed for both PUBP 4501 and PUBP 6501. Full Description " + "description": "Examination of the information dimensions of public and private organizations in response to the multiple types of uncertainty they face in their strategic pursuits. Credit not allowed for both PUBP 4501 and PUBP 6501." }, "PUBP4514": { "subject": "PUBP", "number": "4514", "name": "Mass Communications Pol ", - "description": "Examines mass media influences, activities, characteristics, and behavior with respect to the political process and government. Structure of media markets, characteristics of news and advertising, and impacts of changing technologies on political processes. Full Description " + "description": "Examines mass media influences, activities, characteristics, and behavior with respect to the political process and government. Structure of media markets, characteristics of news and advertising, and impacts of changing technologies on political processes." }, "PUBP4530": { "subject": "PUBP", "number": "4530", "name": "Geographic Info Systems ", - "description": "Overview of GIS concepts, methods, and terminology, Introduction to PC-based GIS software. Applications to marketing, natural resource management, and public information systems. Students use case studies to design and implement actual projects. Full Description " + "description": "Overview of GIS concepts, methods, and terminology, Introduction to PC-based GIS software. Applications to marketing, natural resource management, and public information systems. Students use case studies to design and implement actual projects." }, "PUBP4532": { "subject": "PUBP", "number": "4532", "name": "Advanced GIS Topics ", - "description": "Introduction to raster-based GIS software, Avenue script language, and map Internet server. Applications to marketing, natural resource management, and public information systems. Full Description " + "description": "Introduction to raster-based GIS software, Avenue script language, and map Internet server. Applications to marketing, natural resource management, and public information systems." }, "PUBP4600": { "subject": "PUBP", "number": "4600", "name": "Senior Thesis ", - "description": "A capstone course usually taken in the student's last term before graduation, the senior seminar and thesis involves writing an original paper entailing policy analysis relevant to a public or nonprofit agency. Full Description " + "description": "A capstone course usually taken in the student's last term before graduation, the senior seminar and thesis involves writing an original paper entailing policy analysis relevant to a public or nonprofit agency." }, "PUBP4609": { "subject": "PUBP", "number": "4609", "name": "Legal Practice ", - "description": "This course develops skills in reading and comprehension of legal materials, analysis of legal writing, and document drafting in selected areas of law. Full Description " + "description": "This course develops skills in reading and comprehension of legal materials, analysis of legal writing, and document drafting in selected areas of law." }, "PUBP4620": { "subject": "PUBP", "number": "4620", "name": "Environmental Law ", - "description": "Investigation of the principal environmental laws and regulations. The class will also consider philosophical and ethical underpinnings of environmental law. Full Description " + "description": "Investigation of the principal environmental laws and regulations. The class will also consider philosophical and ethical underpinnings of environmental law." }, "PUBP4640": { "subject": "PUBP", "number": "4640", "name": "Tech Law, Policy, Mgmt ", - "description": "An in-depth analysis of patent law and survey of other forms of intellectual property protection, including trademark, copyright, and trade secrets. Full Description " + "description": "An in-depth analysis of patent law and survey of other forms of intellectual property protection, including trademark, copyright, and trade secrets." }, "PUBP4650": { "subject": "PUBP", "number": "4650", "name": "Internet Law ", - "description": "Covers issues including copyright (including music/video file sharing), privacy; freedom of speech (including defamation and obscenity), jurisdiction, regulation, and crimes as applied to the Internet. Full Description " + "description": "Covers issues including copyright (including music/video file sharing), privacy; freedom of speech (including defamation and obscenity), jurisdiction, regulation, and crimes as applied to the Internet." }, "PUBP4651": { "subject": "PUBP", "number": "4651", "name": "Public Policy Internship ", - "description": "Course projects related to professional internships. Topics, credit, and requirements to be arranged by student, instructor, and sponsor. Full Description " + "description": "Course projects related to professional internships. Topics, credit, and requirements to be arranged by student, instructor, and sponsor." }, "PUBP4652": { "subject": "PUBP", "number": "4652", "name": "OLA Legal Internship ", - "description": "Supervised professional internship with the Georgia Tech Office of Legal Affairs. Full Description " + "description": "Supervised professional internship with the Georgia Tech Office of Legal Affairs." }, "PUBP4698": { "subject": "PUBP", "number": "4698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "PUBP4699": { "subject": "PUBP", "number": "4699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "PUBP4756": { "subject": "PUBP", "number": "4756", "name": "Technology Forecasting ", - "description": "Develops skills in methods for technology monitoring, forecasting, and assessment; draws on examples in various emerging technologies. Collection and analysis of quantitative and qualitative data on emerging technologies and their implications. Crosslisted with ISYE 4756 Full Description " + "description": "Develops skills in methods for technology monitoring, forecasting, and assessment; draws on examples in various emerging technologies. Collection and analysis of quantitative and qualitative data on emerging technologies and their implications. Crosslisted with ISYE 4756" }, "PUBP4803": { "subject": "PUBP", "number": "4803", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "PUBP4811": { "subject": "PUBP", "number": "4811", "name": "Special Topics ", - "description": "Topics of interest not covered in the regular course offerings. Full Description " + "description": "Topics of interest not covered in the regular course offerings." }, "PUBP4812": { "subject": "PUBP", "number": "4812", "name": "Special Topics ", - "description": "Topics of interest not covered in the regular course offerings. Full Description " + "description": "Topics of interest not covered in the regular course offerings." }, "PUBP4813": { "subject": "PUBP", "number": "4813", "name": "Special Topics ", - "description": "Topics of interest not covered in the regular course offerings. Full Description " + "description": "Topics of interest not covered in the regular course offerings." }, "PUBP4814": { "subject": "PUBP", "number": "4814", "name": "Special Topics ", - "description": "Topics of interest not covered in the regular course offerings. Full Description " + "description": "Topics of interest not covered in the regular course offerings." }, "PUBP4815": { "subject": "PUBP", "number": "4815", "name": "Special Topics ", - "description": "Topics of interest not covered in the regular course offerings. Full Description " + "description": "Topics of interest not covered in the regular course offerings." }, "PUBP4823": { "subject": "PUBP", "number": "4823", "name": "Special Topics ", - "description": "Topics of interest not covered in the regular offerings. Full Description " + "description": "Topics of interest not covered in the regular offerings." }, "PUBP4833": { "subject": "PUBP", "number": "4833", "name": "Special Topics ", - "description": "Topics of interest not covered in the regular offerings. Full Description " + "description": "Topics of interest not covered in the regular offerings." }, "PUBP4843": { "subject": "PUBP", "number": "4843", "name": "Special Topics ", - "description": "Topics of interest not covered in the regular offerings. Full Description " + "description": "Topics of interest not covered in the regular offerings." }, "PUBP4901": { "subject": "PUBP", "number": "4901", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "PUBP4902": { "subject": "PUBP", "number": "4902", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "PUBP4903": { "subject": "PUBP", "number": "4903", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "PUBP4951": { "subject": "PUBP", "number": "4951", "name": "Georgia Internship Prog ", - "description": "Work-study program assigning students to a project in state or local government. Students prepare research papers analyzing their work experiences relative to theory from the social science or policy studies. Full Description " + "description": "Work-study program assigning students to a project in state or local government. Students prepare research papers analyzing their work experiences relative to theory from the social science or policy studies." }, "PUBP4952": { "subject": "PUBP", "number": "4952", "name": "Legislative Intern Prog ", - "description": "Students work fulltime for the Georgia General Assembly for elected officials or committees. Students prepare research papers analyzing their work experiences relative to theory from the social science or policy studies. Spring semester only. Full Description " + "description": "Students work fulltime for the Georgia General Assembly for elected officials or committees. Students prepare research papers analyzing their work experiences relative to theory from the social science or policy studies. Spring semester only." }, "PUBP4XXX": { "subject": "PUBP", "number": "4XXX", "name": "Public Policy Elective ", - "description": " Full Description " + "description": "" }, "PUBP6001": { "subject": "PUBP", "number": "6001", "name": "Intro to Public Policy ", - "description": "An introduction to the field of public policy, including an overview of the scope of the field and examples of public policy analysis. Full Description " + "description": "An introduction to the field of public policy, including an overview of the scope of the field and examples of public policy analysis." }, "PUBP6010": { "subject": "PUBP", "number": "6010", "name": "Ethic,Epistem&Public Pol ", - "description": "Examination of the role of ethics and epistemology in public decision making including the effects of values of professionals on public institutions and private sector organizations. Full Description " + "description": "Examination of the role of ethics and epistemology in public decision making including the effects of values of professionals on public institutions and private sector organizations." }, "PUBP6012": { "subject": "PUBP", "number": "6012", "name": "Fund of Policy Processes ", - "description": "The political and governmental context of policy is presented, from agenda setting to evaluation. Examines constitutional and federal contexts of policy, the role of various input mechanisms in shaping policy decisions, the processes by which government institutions make decisions (and the interactions among these institutions), and approaches for understanding and anticipating policy decision making. Full Description " + "description": "The political and governmental context of policy is presented, from agenda setting to evaluation. Examines constitutional and federal contexts of policy, the role of various input mechanisms in shaping policy decisions, the processes by which government institutions make decisions (and the interactions among these institutions), and approaches for understanding and anticipating policy decision making." }, "PUBP6014": { "subject": "PUBP", "number": "6014", "name": "Organization Theory ", - "description": "A broad overview of the theoretical issues pertaining to the management of organizations. The course explores both \"macro\" (i.e. external relations, strategies, and structures) organizational issues. While this is a survey course, we will be concentrating much of our attention on current challenges to bureaucracy as a form of organization. In particular, we will be using theories to examine trends toward re-engineering corporations or re-inventing government agencies. Satisfies policy implementation, management, and organization theory requirement. Full Description " + "description": "A broad overview of the theoretical issues pertaining to the management of organizations. The course explores both \"macro\" (i.e. external relations, strategies, and structures) organizational issues. While this is a survey course, we will be concentrating much of our attention on current challenges to bureaucracy as a form of organization. In particular, we will be using theories to examine trends toward re-engineering corporations or re-inventing government agencies. Satisfies policy implementation, management, and organization theory requirement." }, "PUBP6017": { "subject": "PUBP", "number": "6017", "name": "Public Management ", - "description": "Using case studies and a field exercise, students will examine how public policies are executed and managed. Underlying the course is the assumption that public management, is the management of political authority and that strategic thinking can make for effective public management. Satisfies policy implementation, management and organization theory requirement. Full Description " + "description": "Using case studies and a field exercise, students will examine how public policies are executed and managed. Underlying the course is the assumption that public management, is the management of political authority and that strategic thinking can make for effective public management. Satisfies policy implementation, management and organization theory requirement." }, "PUBP6018": { "subject": "PUBP", "number": "6018", "name": "Policy Implement & Admin ", - "description": "This course gives special attention to institutional processes in efforts to coordinate policy implementation at the federal level and within the intergovernmental context; the analysis of implementation and enforcement of policy by regulatory agencies with the support of state governments and private sector agents; challenges to implementation by policy type; and the analysis of policy tools and administrative discretion in implementation. Satisfies policy implementation, management, and organization theory requirement. Full Description " + "description": "This course gives special attention to institutional processes in efforts to coordinate policy implementation at the federal level and within the intergovernmental context; the analysis of implementation and enforcement of policy by regulatory agencies with the support of state governments and private sector agents; challenges to implementation by policy type; and the analysis of policy tools and administrative discretion in implementation. Satisfies policy implementation, management, and organization theory requirement." }, "PUBP6111": { "subject": "PUBP", "number": "6111", "name": "Internet & Public Policy ", - "description": "Analyzes policy implications of Internet architecture (Internet protocols, domain name system, packet switching, peer-to-peer) and surveys policy issues about content, privacy, intellectual property, and governance. Full Description " + "description": "Analyzes policy implications of Internet architecture (Internet protocols, domain name system, packet switching, peer-to-peer) and surveys policy issues about content, privacy, intellectual property, and governance." }, "PUBP6112": { "subject": "PUBP", "number": "6112", "name": "Research Dsgn-Polcy Sci ", - "description": "The objectives for this course include: (1) providing a broad overview of research methods and research criteria; (2) giving students the opportunity to conduct data-based research and analysis; (3) providing more specialized knowledge of one set of research techniques (e.g. survey research, case studies, experimentation - varies by term); (4) providing experience in presenting and defending research. Full Description " + "description": "The objectives for this course include: (1) providing a broad overview of research methods and research criteria; (2) giving students the opportunity to conduct data-based research and analysis; (3) providing more specialized knowledge of one set of research techniques (e.g. survey research, case studies, experimentation - varies by term); (4) providing experience in presenting and defending research." }, "PUBP6114": { "subject": "PUBP", "number": "6114", "name": "Applied Policy Methods ", - "description": "This course will focus on how to design, carry out, present, and interpret quantitative analyses, of policy problems. Topics include probability, inferential statistics, regression analysis, general linear models, nonparametric analyses and graphical analysis, as time permits. Classes will focus on (1) the course project, (2) discussions of assigned readings and problems, and (3) data analysis using spreadsheets and a standard statistical package. Note: Students without preparation in basic statistical concepts and computer methods will be required to take appropriate courses at the 4000 level prior to admission. Full Description " + "description": "This course will focus on how to design, carry out, present, and interpret quantitative analyses, of policy problems. Topics include probability, inferential statistics, regression analysis, general linear models, nonparametric analyses and graphical analysis, as time permits. Classes will focus on (1) the course project, (2) discussions of assigned readings and problems, and (3) data analysis using spreadsheets and a standard statistical package. Note: Students without preparation in basic statistical concepts and computer methods will be required to take appropriate courses at the 4000 level prior to admission." }, "PUBP6116": { "subject": "PUBP", "number": "6116", "name": "Microecon-Policy Analy ", - "description": "Microeconomic theory is studied with applications to public problems. Students will be introduced to price-generating processes in an economy, demand and supply theory, market equilibrium, welfare economics, categories of market failure, and the public sector's role. Full Description " + "description": "Microeconomic theory is studied with applications to public problems. Students will be introduced to price-generating processes in an economy, demand and supply theory, market equilibrium, welfare economics, categories of market failure, and the public sector's role." }, "PUBP6118": { "subject": "PUBP", "number": "6118", "name": "Public Finance & Policy ", - "description": "Examines the theory, practice and policy implementations of federal, state, and local government budgeting and finance. Topics include government spending decisions with a focus on aggregate demand and supply, fiscal policy, budgeting practice, introduction to cost/benefit analysis. Full Description " + "description": "Examines the theory, practice and policy implementations of federal, state, and local government budgeting and finance. Topics include government spending decisions with a focus on aggregate demand and supply, fiscal policy, budgeting practice, introduction to cost/benefit analysis." }, "PUBP6201": { "subject": "PUBP", "number": "6201", "name": "Public Policy Analysis ", - "description": "This course provides a capstone experience for public policy students. The course addresses real-world policy issues and various approaches to analyzing them. The course relies heavily on cases and exercises. Full Description " + "description": "This course provides a capstone experience for public policy students. The course addresses real-world policy issues and various approaches to analyzing them. The course relies heavily on cases and exercises." }, "PUBP6218": { "subject": "PUBP", "number": "6218", "name": "Quantitative Models-Pubp ", - "description": "This course lays a foundation for model building, and through the introduction of a variety of software packages will provide some hands-on experience with elementary model- building. Decision models will be emphasized. Some familiarity with data analysis, probability, and statistical models is assumed. The goal of the course is to equip students with basic model building tools, familiarize them with common problems in modeling, and improve their ability to create and evaluate simple models of policy problems. Full Description " + "description": "This course lays a foundation for model building, and through the introduction of a variety of software packages will provide some hands-on experience with elementary model- building. Decision models will be emphasized. Some familiarity with data analysis, probability, and statistical models is assumed. The goal of the course is to equip students with basic model building tools, familiarize them with common problems in modeling, and improve their ability to create and evaluate simple models of policy problems." }, "PUBP6221": { "subject": "PUBP", "number": "6221", "name": "Pol & Program Evaluation ", - "description": "Approaches to evaluation policies and programs are presented using examples and case studies to contrast evaluation methods as well as the organizational and political context for evaluation. Full Description " + "description": "Approaches to evaluation policies and programs are presented using examples and case studies to contrast evaluation methods as well as the organizational and political context for evaluation." }, "PUBP6226": { "subject": "PUBP", "number": "6226", "name": "Business & Government' ", - "description": "Examines government regulation of business operations and the economy from a broad perspective. Full Description " + "description": "Examines government regulation of business operations and the economy from a broad perspective." }, "PUBP6300": { "subject": "PUBP", "number": "6300", "name": "Earth Systems ", - "description": "Describes the scientific principles and interactions that make up the Earth's environmental system. The course examines the interaction of natural and human influences that shape the development and operation of the Earth system and how public and private decision-making impacts this system. Full Description " + "description": "Describes the scientific principles and interactions that make up the Earth's environmental system. The course examines the interaction of natural and human influences that shape the development and operation of the Earth system and how public and private decision-making impacts this system." }, "PUBP6310": { "subject": "PUBP", "number": "6310", "name": "Environmental Issues ", - "description": "Provides an overview of basic concepts and methods of environmental policy analysis and implementation through a case study approach. Cases will range from local to global environmental policy issues. The goal of the course will be to expose students to the broad range of social and physical problems referred to as \"environmental\" problems, and to orient the student for future work in the field. Full Description " + "description": "Provides an overview of basic concepts and methods of environmental policy analysis and implementation through a case study approach. Cases will range from local to global environmental policy issues. The goal of the course will be to expose students to the broad range of social and physical problems referred to as \"environmental\" problems, and to orient the student for future work in the field." }, "PUBP6312": { "subject": "PUBP", "number": "6312", "name": "Economics-Environ Polcy ", - "description": "This course addresses key concepts in environmental economics, including externalities, efficiency, social welfare and environmental quality as a public good. Addresses environmental problems (i.e. water resources, air quality, urbanization) and vehicles of collective environmental action. Full Description " + "description": "This course addresses key concepts in environmental economics, including externalities, efficiency, social welfare and environmental quality as a public good. Addresses environmental problems (i.e. water resources, air quality, urbanization) and vehicles of collective environmental action." }, "PUBP6314": { "subject": "PUBP", "number": "6314", "name": "Policy Tools-Environ Mgt ", - "description": "Explores the various regulatory, managerial, and legal mechanisms available to policy analysts and decision makers for protecting environmental quality. Full Description " + "description": "Explores the various regulatory, managerial, and legal mechanisms available to policy analysts and decision makers for protecting environmental quality." }, "PUBP6326": { "subject": "PUBP", "number": "6326", "name": "Environ Values&Pol Goals ", - "description": "Examines the goals and objectives of environmentalists, with special attention to the literature of environmental ethics. Full Description " + "description": "Examines the goals and objectives of environmentalists, with special attention to the literature of environmental ethics." }, "PUBP6327": { "subject": "PUBP", "number": "6327", "name": "Sustainability & Env Pol ", - "description": "This course explores the theory and practice of sustainable development, surveying areas of consensus and controversy in emerging thought on sustainability. Credit not allowed for both PUBP 6327 and PUBP 6320. Full Description " + "description": "This course explores the theory and practice of sustainable development, surveying areas of consensus and controversy in emerging thought on sustainability. Credit not allowed for both PUBP 6327 and PUBP 6320." }, "PUBP6330": { "subject": "PUBP", "number": "6330", "name": "Environmental Law ", - "description": "Presents the legal and institutional framework within which environmental law is developed and implemented in the in the United States and internationally. Also examines the major pollution control statutes, and reviews international law and conventions to address trans-boundary environmental issues. Full Description " + "description": "Presents the legal and institutional framework within which environmental law is developed and implemented in the in the United States and internationally. Also examines the major pollution control statutes, and reviews international law and conventions to address trans-boundary environmental issues." }, "PUBP6350": { "subject": "PUBP", "number": "6350", "name": "Energy Policy & Markets ", - "description": "Examines theory and policy impacting production and utilization of energy in the U.S. and abroad. Addresses resource constraints, environmental impacts, and policy analysis tools. Full Description " + "description": "Examines theory and policy impacting production and utilization of energy in the U.S. and abroad. Addresses resource constraints, environmental impacts, and policy analysis tools." }, "PUBP6401": { "subject": "PUBP", "number": "6401", "name": "Sci,Tech & Public Policy ", - "description": "Examination of the relationships between science, technology, and government, including policies for support, control, and application of science and technology. Full Description " + "description": "Examination of the relationships between science, technology, and government, including policies for support, control, and application of science and technology." }, "PUBP6402": { "subject": "PUBP", "number": "6402", "name": "Research Policy & Mgt ", - "description": "Examines challenges in research policy and management. The research activities of public, private, and not-for-profit organizations are contrasted in examining strategic planning, allocation of resources, technology transfer, and research evaluation practices. Full Description " + "description": "Examines challenges in research policy and management. The research activities of public, private, and not-for-profit organizations are contrasted in examining strategic planning, allocation of resources, technology transfer, and research evaluation practices." }, "PUBP6403": { "subject": "PUBP", "number": "6403", "name": "Sci Careers/Workplaces ", - "description": "Focuses on key social and organizational dimensions of scientific careers and workplace sectors (academia, industry, and government). Full Description " + "description": "Focuses on key social and organizational dimensions of scientific careers and workplace sectors (academia, industry, and government)." }, "PUBP6414": { "subject": "PUBP", "number": "6414", "name": "Tech Innovation&Gov Plcy ", - "description": "Federal and state policies to stimulate innovation; sources and stimuli for innovation; role of universities and industry consortia; comparative innovation policy; evaluation of technology policy. Full Description " + "description": "Federal and state policies to stimulate innovation; sources and stimuli for innovation; role of universities and industry consortia; comparative innovation policy; evaluation of technology policy." }, "PUBP6415": { "subject": "PUBP", "number": "6415", "name": "Tech Regions & Policy ", - "description": "Explores concepts, issues, and policies related to regional development, economic development, industrial change, and technology policy. Full Description " + "description": "Explores concepts, issues, and policies related to regional development, economic development, industrial change, and technology policy." }, "PUBP6417": { "subject": "PUBP", "number": "6417", "name": "Critic Perspect-Sci&Tech ", - "description": "This course seeks to stimulate students' critical thinking about science and technology and their relationships to markets, politics and societies. Discussions include topics such as the social organization of scientific and technical communities, the roles of economic and political forces in science and technology, the shaping of the technical workforce, and the implications of science and technology for concepts that go beyond utility and competitiveness to include justice and self-realization. Full Description " + "description": "This course seeks to stimulate students' critical thinking about science and technology and their relationships to markets, politics and societies. Discussions include topics such as the social organization of scientific and technical communities, the roles of economic and political forces in science and technology, the shaping of the technical workforce, and the implications of science and technology for concepts that go beyond utility and competitiveness to include justice and self-realization." }, "PUBP6421": { "subject": "PUBP", "number": "6421", "name": "Large-Scale Soc-Tech Sys ", - "description": "Analyzes development of large systems such as smart highways, computer networks, electrical power, weapons, and space. Teaches practical skills including negotiation, coalition-building, strategy, and innovation politics. Full Description " + "description": "Analyzes development of large systems such as smart highways, computer networks, electrical power, weapons, and space. Teaches practical skills including negotiation, coalition-building, strategy, and innovation politics." }, "PUBP6440": { "subject": "PUBP", "number": "6440", "name": "Sci Tech & Regulation ", - "description": "Examines historical, legal, economic, and political rationales for regulation. Survey of administrative law and processes, risk analysis/management, expertise and public, and current topical issues. Credit not allowed for both PUBP 6440 and PUBP 4440. Full Description " + "description": "Examines historical, legal, economic, and political rationales for regulation. Survey of administrative law and processes, risk analysis/management, expertise and public, and current topical issues. Credit not allowed for both PUBP 6440 and PUBP 4440." }, "PUBP6501": { "subject": "PUBP", "number": "6501", "name": "Information Policy & Mgt ", - "description": "Examination of the information age from policy and management perspectives. The course will explore concepts and issues related to the formation and implementation of information policies. Credit not allowed for both PUBP 6501 and PUBP 4501. Full Description " + "description": "Examination of the information age from policy and management perspectives. The course will explore concepts and issues related to the formation and implementation of information policies. Credit not allowed for both PUBP 6501 and PUBP 4501." }, "PUBP6502": { "subject": "PUBP", "number": "6502", "name": "IT/Comm/Telecom Policy ", - "description": "Examination of the convergence of information technology, communications and telecommunication, policymaking within the executive/regulatory branches, special interest group role, and key domestic and international issues. Full Description " + "description": "Examination of the convergence of information technology, communications and telecommunication, policymaking within the executive/regulatory branches, special interest group role, and key domestic and international issues." }, "PUBP6514": { "subject": "PUBP", "number": "6514", "name": "Mass Communications Plcy ", - "description": "Traces the evolution of broadcasting, cable, and other mass media policies. Examines the functioning/impact of mass communications in a changing technological environment. Full Description " + "description": "Traces the evolution of broadcasting, cable, and other mass media policies. Examines the functioning/impact of mass communications in a changing technological environment." }, "PUBP6530": { "subject": "PUBP", "number": "6530", "name": "Intro to GIS ", - "description": "Introduction to the application of geographic information systems (GIS) to public policy issues. Students develop an understanding of GIS software and hardware components, develop facility with a desktop GIS software package, explore digital data availability on the Internet, learn data transfer procedures, learn cartographic projection methods, apply GIS and environmental management data to analyze a selected program. Full Description " + "description": "Introduction to the application of geographic information systems (GIS) to public policy issues. Students develop an understanding of GIS software and hardware components, develop facility with a desktop GIS software package, explore digital data availability on the Internet, learn data transfer procedures, learn cartographic projection methods, apply GIS and environmental management data to analyze a selected program." }, "PUBP6600": { "subject": "PUBP", "number": "6600", "name": "Local Econ Dev Plan&Plcy ", - "description": "Introduction to the context, theory, process, and practice of local economic development planning and policy. Topics covered include: differing theoretical and conceptual explanations of the economic development process; international, national, and regional factors affecting local economic development; federal, state, and local roles; key elements in the economic development process; and contrasting economic development approaches. Full Description " + "description": "Introduction to the context, theory, process, and practice of local economic development planning and policy. Topics covered include: differing theoretical and conceptual explanations of the economic development process; international, national, and regional factors affecting local economic development; federal, state, and local roles; key elements in the economic development process; and contrasting economic development approaches." }, "PUBP6602": { "subject": "PUBP", "number": "6602", "name": "Econ Dev Analy& Practice ", - "description": "Strategy development, methods of analysis, and approaches to practice for urban and regional economic development policy and planning. Full Description " + "description": "Strategy development, methods of analysis, and approaches to practice for urban and regional economic development policy and planning." }, "PUBP6604": { "subject": "PUBP", "number": "6604", "name": "Urban Policy Analy& Plan ", - "description": "Applies analytical techniques and practices of public policy and planning to urban issues, synthesizing varied public policy techniques and practices in a case study context. Full Description " + "description": "Applies analytical techniques and practices of public policy and planning to urban issues, synthesizing varied public policy techniques and practices in a case study context." }, "PUBP6606": { "subject": "PUBP", "number": "6606", "name": "Urban Development Policy ", - "description": "Introduces elements of urban policy and urban economic development by examining them historically, nationally, and locally. Approaches to urban development and redevelopment are analyzed. Full Description " + "description": "Introduces elements of urban policy and urban economic development by examining them historically, nationally, and locally. Approaches to urban development and redevelopment are analyzed." }, "PUBP6701": { "subject": "PUBP", "number": "6701", "name": "Energy Technol & Policy ", - "description": "Examines energy production, use, and policy using quantitative engineering and policy analysis. Addresses resource constraints, physical principles, and policy analysis methods. Full Description " + "description": "Examines energy production, use, and policy using quantitative engineering and policy analysis. Addresses resource constraints, physical principles, and policy analysis methods." }, "PUBP6740": { "subject": "PUBP", "number": "6740", "name": "Innovation and the State ", - "description": "Research seminar exploring the role of the state in industrial development, innovation and business-government relations. Special attention given to science and technology policies and their influence in different international and industrial contexts. Crosslisted with INTA 6740. Full Description " + "description": "Research seminar exploring the role of the state in industrial development, innovation and business-government relations. Special attention given to science and technology policies and their influence in different international and industrial contexts. Crosslisted with INTA 6740." }, "PUBP6741": { "subject": "PUBP", "number": "6741", "name": "Geography of Innovation ", - "description": "Examination of the growing discussion on the knowledge economy, learning regions, innovation capacity, and place management and what those strategies mean for regional economies. Full Description " + "description": "Examination of the growing discussion on the knowledge economy, learning regions, innovation capacity, and place management and what those strategies mean for regional economies." }, "PUBP6743": { "subject": "PUBP", "number": "6743", "name": "STS Core Seminar ", - "description": "This survey course covers key works in Science, Technology & Society, and guest lectures introduce students to faculty doing STS-related research across the Ivan Allen College. Credit not allowed for both PUBP 6743 and HTS 6743 or LCC 6743. Full Description " + "description": "This survey course covers key works in Science, Technology & Society, and guest lectures introduce students to faculty doing STS-related research across the Ivan Allen College. Credit not allowed for both PUBP 6743 and HTS 6743 or LCC 6743." }, "PUBP6748": { "subject": "PUBP", "number": "6748", "name": "Social Justice & Design ", - "description": "Focuses on social justice from a Science, Technology, and Society (STS) point of view that is informed by critical theory and philosophy of design. Credit not allowed for both PUBP 6748 and LCC 6748. Full Description " + "description": "Focuses on social justice from a Science, Technology, and Society (STS) point of view that is informed by critical theory and philosophy of design. Credit not allowed for both PUBP 6748 and LCC 6748." }, "PUBP6749": { "subject": "PUBP", "number": "6749", "name": "Feminist Theory STS ", - "description": "This course is an advanced science, technology and society (STS) seminar in feminist theory. Credit not allowed for both PUBP 6749 and LCC 6749. Full Description " + "description": "This course is an advanced science, technology and society (STS) seminar in feminist theory. Credit not allowed for both PUBP 6749 and LCC 6749." }, "PUBP6753": { "subject": "PUBP", "number": "6753", "name": "Comp Science&Tech Policy ", - "description": "Examination of the social, political, and cultural contexts of science and technology, and how they affect the research, development, and regulatory policies of nations. Crosslisted with INTA 6753. Full Description " + "description": "Examination of the social, political, and cultural contexts of science and technology, and how they affect the research, development, and regulatory policies of nations. Crosslisted with INTA 6753." }, "PUBP6760": { "subject": "PUBP", "number": "6760", "name": "Negotiation&Conflict Mgt ", - "description": "Practical and theoretical instruction on techniques of negotiation and consensus building using training exercises and case studies. Emphasizes environmental, policy, planning, and development disputes. Crosslisted with CP 6760. Full Description " + "description": "Practical and theoretical instruction on techniques of negotiation and consensus building using training exercises and case studies. Emphasizes environmental, policy, planning, and development disputes. Crosslisted with CP 6760." }, "PUBP6777": { "subject": "PUBP", "number": "6777", "name": "Analysis-Emerging Tech ", - "description": "This course develops skills in the use of selected methods for technology monitoring, forecasting, and assessment. Also examines current status and prospects in selected emerging technology domains. Crosslisted with ISYE 6777. Full Description " + "description": "This course develops skills in the use of selected methods for technology monitoring, forecasting, and assessment. Also examines current status and prospects in selected emerging technology domains. Crosslisted with ISYE 6777." }, "PUBP6801": { "subject": "PUBP", "number": "6801", "name": "Research Paper ", - "description": "Either a professional policy research paper or a team research project including a co-authored policy research monograph prepared for a government or public affairs client. Full Description " + "description": "Either a professional policy research paper or a team research project including a co-authored policy research monograph prepared for a government or public affairs client." }, "PUBP6XXX": { "subject": "PUBP", "number": "6XXX", "name": "Public Policy Elective ", - "description": " Full Description " + "description": "" }, "PUBP7000": { "subject": "PUBP", "number": "7000", "name": "Master's Thesis ", - "description": " Full Description " + "description": "" }, "PUBP8101": { "subject": "PUBP", "number": "8101", "name": "Workshop Pub Pol Res I ", - "description": "Course provides an overview of research and professional socialization. It presents topics partially satisfying GT RCR policy for in-person training. Student will brainstorm dissertation topics. Full Description " + "description": "Course provides an overview of research and professional socialization. It presents topics partially satisfying GT RCR policy for in-person training. Student will brainstorm dissertation topics." }, "PUBP8102": { "subject": "PUBP", "number": "8102", "name": "Workshop Pub Pol Res II ", - "description": "Course provides an overview of public policy research and professional socialization. It completes the sequence of topics satisfying GT RCR policy for in-person training. Full Description " + "description": "Course provides an overview of public policy research and professional socialization. It completes the sequence of topics satisfying GT RCR policy for in-person training." }, "PUBP8200": { "subject": "PUBP", "number": "8200", "name": "Adv Research Methods I ", - "description": "The course will cover advanced policy analysis and modeling methods, including regression models, and other topics as time permits. Full Description " + "description": "The course will cover advanced policy analysis and modeling methods, including regression models, and other topics as time permits." }, "PUBP8205": { "subject": "PUBP", "number": "8205", "name": "Adv Research Methods II ", - "description": "Building on Advanced Research Methods I, the course will cover advanced policy analysis and modeling methods, for example, panel data and nonparametric regression. Other policy research methods may be explored as time permits. Full Description " + "description": "Building on Advanced Research Methods I, the course will cover advanced policy analysis and modeling methods, for example, panel data and nonparametric regression. Other policy research methods may be explored as time permits." }, "PUBP8211": { "subject": "PUBP", "number": "8211", "name": "Microeconomic Theory ", - "description": "Extensions of microeconomic theory-consumer theory, firm theory, and markets-to situations involving many periods and uncertainty. Introduces students to general equilibrium, externality, and welfare economics. Full Description " + "description": "Extensions of microeconomic theory-consumer theory, firm theory, and markets-to situations involving many periods and uncertainty. Introduces students to general equilibrium, externality, and welfare economics." }, "PUBP8500": { "subject": "PUBP", "number": "8500", "name": "Research Seminar ", - "description": "Exploration of the purpose of and approaches used in public policy research. Requires development of original empirical research. Full Description " + "description": "Exploration of the purpose of and approaches used in public policy research. Requires development of original empirical research." }, "PUBP8510": { "subject": "PUBP", "number": "8510", "name": "Logic of Policy Inquiry ", - "description": "This course presents the conceptual foundations of models of policy inquiry. Topics include the scientific, rational-actor, and ethical models. The ethical values underlying cost benefit analysis, pareto-optimal models, and market models are also examined. Full Description " + "description": "This course presents the conceptual foundations of models of policy inquiry. Topics include the scientific, rational-actor, and ethical models. The ethical values underlying cost benefit analysis, pareto-optimal models, and market models are also examined." }, "PUBP8520": { "subject": "PUBP", "number": "8520", "name": "Scope&Theory-Public Plcy ", - "description": "Overview of core literature of public policy including theories of public policy, the history of public policy studies, the institutional structure of policy analysis, the profession of policy research, and the intellectual bases of public policy studies. Full Description " + "description": "Overview of core literature of public policy including theories of public policy, the history of public policy studies, the institutional structure of policy analysis, the profession of policy research, and the intellectual bases of public policy studies." }, "PUBP8530": { "subject": "PUBP", "number": "8530", "name": "Adv Science& Tech Policy ", - "description": "Overview of core literature of technology and science policy, theories of innovation, intellectual foundations of technology and science policy. Full Description " + "description": "Overview of core literature of technology and science policy, theories of innovation, intellectual foundations of technology and science policy." }, "PUBP8540": { "subject": "PUBP", "number": "8540", "name": "Adv Environmental Policy ", - "description": "Overview of core literature of environmental policy, theories of environmental policy, intellectual foundations of environmental policy. Full Description " + "description": "Overview of core literature of environmental policy, theories of environmental policy, intellectual foundations of environmental policy." }, "PUBP8550": { "subject": "PUBP", "number": "8550", "name": "Adv Urb&Region Econ Dev ", - "description": "Overview of core literature of economic development policy, theories of economic development in urban and regional settings, intellectual foundations of economic development policy. Full Description " + "description": "Overview of core literature of economic development policy, theories of economic development in urban and regional settings, intellectual foundations of economic development policy." }, "PUBP8590": { "subject": "PUBP", "number": "8590", "name": "Dissertation Colloquium ", - "description": "Seminar focusing on dissertation research preparation, culminates in public colloquium in which students present preliminary dissertation proposal. Full Description " + "description": "Seminar focusing on dissertation research preparation, culminates in public colloquium in which students present preliminary dissertation proposal." }, "PUBP8801": { "subject": "PUBP", "number": "8801", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "PUBP8802": { "subject": "PUBP", "number": "8802", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "PUBP8803": { "subject": "PUBP", "number": "8803", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "PUBP8811": { "subject": "PUBP", "number": "8811", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "PUBP8812": { "subject": "PUBP", "number": "8812", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "PUBP8813": { "subject": "PUBP", "number": "8813", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "PUBP8821": { "subject": "PUBP", "number": "8821", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "PUBP8822": { "subject": "PUBP", "number": "8822", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "PUBP8823": { "subject": "PUBP", "number": "8823", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "PUBP8831": { "subject": "PUBP", "number": "8831", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "PUBP8832": { "subject": "PUBP", "number": "8832", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "PUBP8833": { "subject": "PUBP", "number": "8833", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "PUBP8900": { "subject": "PUBP", "number": "8900", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "PUBP8910": { "subject": "PUBP", "number": "8910", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "PUBP8920": { "subject": "PUBP", "number": "8920", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "PUBP8930": { "subject": "PUBP", "number": "8930", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "PUBP8940": { "subject": "PUBP", "number": "8940", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "PUBP8950": { "subject": "PUBP", "number": "8950", "name": "Special Problems ", - "description": " Full Description " + "description": "" }, "PUBP8997": { "subject": "PUBP", "number": "8997", "name": "Teaching Assistantship ", - "description": "For graduate students holding a teaching assistantship. Full Description " + "description": "For graduate students holding a teaching assistantship." }, "PUBP8998": { "subject": "PUBP", "number": "8998", "name": "Research Assistantship ", - "description": "For graduate students holding a research assistantship. Full Description " + "description": "For graduate students holding a research assistantship." }, "PUBP8999": { "subject": "PUBP", "number": "8999", "name": "Prep-Doctoral Qual Exam ", - "description": " Full Description " + "description": "" }, "PUBP9000": { "subject": "PUBP", "number": "9000", "name": "Doctoral Thesis ", - "description": " Full Description " + "description": "" }, "RUSS1001": { "subject": "RUSS", "number": "1001", "name": "Elementary Russian I ", - "description": "An introduction to Russian language and culture. First half of a survey of basic Russian grammar and the development of the four language skills of listening, speaking, reading, and writing. The course includes an orientation to aspects of everyday life in Russia. Humanities credit awarded upon successful completion of RUSS 1002 or RUSS 2001. Full Description " + "description": "An introduction to Russian language and culture. First half of a survey of basic Russian grammar and the development of the four language skills of listening, speaking, reading, and writing. The course includes an orientation to aspects of everyday life in Russia. Humanities credit awarded upon successful completion of RUSS 1002 or RUSS 2001." }, "RUSS1002": { "subject": "RUSS", "number": "1002", "name": "Elementary Russian II ", - "description": "Second half of an introduction to Russian language and culture. Second half of a survey of basic Russian grammar and the development of the four basic language skills of listening, speaking, reading, and writing. The course includes an orientation to aspects of everyday life in Russia. Credit not allowed for both RUSS 1002 and RUSS 1692. Full Description " + "description": "Second half of an introduction to Russian language and culture. Second half of a survey of basic Russian grammar and the development of the four basic language skills of listening, speaking, reading, and writing. The course includes an orientation to aspects of everyday life in Russia. Credit not allowed for both RUSS 1002 and RUSS 1692." }, "RUSS10X1": { "subject": "RUSS", "number": "10X1", "name": "Trans Elementary Russian I ", - "description": " Full Description " + "description": "" }, "RUSS10X2": { "subject": "RUSS", "number": "10X2", "name": "Trans Elementary Russian II ", - "description": " Full Description " + "description": "" }, "RUSS1250": { "subject": "RUSS", "number": "1250", "name": "Vampires International ", - "description": "Gothic aesthetics in post-Soviet Russian and U.S. vampire fiction and films. Post-Soviet fiction and movies as a source for studying historical memory. Conducted in English. Full Description " + "description": "Gothic aesthetics in post-Soviet Russian and U.S. vampire fiction and films. Post-Soviet fiction and movies as a source for studying historical memory. Conducted in English." }, "RUSS1692": { "subject": "RUSS", "number": "1692", "name": "Intens Element Russ II ", - "description": "Continues introduction to fundamental Russian grammar and development of four modalities -- speaking, reading, listening, and writing -- in intensive immersion environment in Russia. Credit not allowed for both RUSS 1692 and RUSS 1002. Full Description " + "description": "Continues introduction to fundamental Russian grammar and development of four modalities -- speaking, reading, listening, and writing -- in intensive immersion environment in Russia. Credit not allowed for both RUSS 1692 and RUSS 1002." }, "RUSS1813": { "subject": "RUSS", "number": "1813", "name": "Special Topics ", - "description": "Topics of current interest in Russian. Full Description " + "description": "Topics of current interest in Russian." }, "RUSS1814": { "subject": "RUSS", "number": "1814", "name": "Special Topics ", - "description": "Topics of current interest in Russian. Full Description " + "description": "Topics of current interest in Russian." }, "RUSS1XXX": { "subject": "RUSS", "number": "1XXX", "name": "Russian Elective ", - "description": " Full Description " + "description": "" }, "RUSS2001": { "subject": "RUSS", "number": "2001", "name": "Intermediate Russian I ", - "description": "A review and extension of basic grammar with intensive vocabulary-building and focus on development of idiom on the basis of conversation, reading, and writing activities. Includes reading and discussion of stories and magazine articles of general cultural interest with follow-up composition assignments. Credit not allowed for both RUSS 2001 and RUSS 2691. Full Description " + "description": "A review and extension of basic grammar with intensive vocabulary-building and focus on development of idiom on the basis of conversation, reading, and writing activities. Includes reading and discussion of stories and magazine articles of general cultural interest with follow-up composition assignments. Credit not allowed for both RUSS 2001 and RUSS 2691." }, "RUSS2002": { "subject": "RUSS", "number": "2002", "name": "Intermediate Russian II ", - "description": "A review and extension of basic grammar with intensive vocabulary-building and focus on development of idiom on the basics of conversation, reading, and writing activities. Includes reading and discussion of stories and magazine articles of general cultural interest with follow-up composition assignments. Credit not allowed for both RUSS 2002 and RUSS 2692. Full Description " + "description": "A review and extension of basic grammar with intensive vocabulary-building and focus on development of idiom on the basics of conversation, reading, and writing activities. Includes reading and discussion of stories and magazine articles of general cultural interest with follow-up composition assignments. Credit not allowed for both RUSS 2002 and RUSS 2692." }, "RUSS2691": { "subject": "RUSS", "number": "2691", "name": "Intens Interm Russian I ", - "description": "Review and extension of basic grammar, intensive vocabulary- building, and development of idiom on the basis of conversation, reading, and writing activities (in Russia). Credit not allowed for both RUSS 2691 and RUSS 2001. Full Description " + "description": "Review and extension of basic grammar, intensive vocabulary- building, and development of idiom on the basis of conversation, reading, and writing activities (in Russia). Credit not allowed for both RUSS 2691 and RUSS 2001." }, "RUSS2692": { "subject": "RUSS", "number": "2692", "name": "Intens Interm Russian II ", - "description": "Review and extension of basic grammar, intensive vocabulary- building, and development of idiom on the basis of conversation, reading, and writing activities (in Russia). Credit not allowed for both RUSS 2692 and RUSS 2002. Full Description " + "description": "Review and extension of basic grammar, intensive vocabulary- building, and development of idiom on the basis of conversation, reading, and writing activities (in Russia). Credit not allowed for both RUSS 2692 and RUSS 2002." }, "RUSS2698": { "subject": "RUSS", "number": "2698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "RUSS2699": { "subject": "RUSS", "number": "2699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "RUSS2813": { "subject": "RUSS", "number": "2813", "name": "Special Topics ", - "description": "Topics of current interest in Russian. Full Description " + "description": "Topics of current interest in Russian." }, "RUSS2XXX": { "subject": "RUSS", "number": "2XXX", "name": "Russian Elective ", - "description": " Full Description " + "description": "" }, "RUSS3001": { "subject": "RUSS", "number": "3001", "name": "Advanced Russian I ", - "description": "First half of advanced courses in Russian conversation and composition. Discussion of controversial issues with the goal of self expression in coherent paragraphs. Advanced grammar topics. Full Description " + "description": "First half of advanced courses in Russian conversation and composition. Discussion of controversial issues with the goal of self expression in coherent paragraphs. Advanced grammar topics." }, "RUSS3002": { "subject": "RUSS", "number": "3002", "name": "Advanced Russian II ", - "description": "Second half of advanced courses in Russian conversation and composition. Discussion of controversial issues with the goal of self expression in coherent paragraphs. Advanced grammar topics. Full Description " + "description": "Second half of advanced courses in Russian conversation and composition. Discussion of controversial issues with the goal of self expression in coherent paragraphs. Advanced grammar topics." }, "RUSS3005": { "subject": "RUSS", "number": "3005", "name": "Russian for Herit Spkrs ", - "description": "Russian-language communication skills for heritage speakers. Focus on grammar and orthography, stylistics of adult/professional communication. Reading, discussion and writing on contemporary topics. Taught in Russian. Credit will not be awarded for both RUSS 3005 and RUSS 3001. Full Description " + "description": "Russian-language communication skills for heritage speakers. Focus on grammar and orthography, stylistics of adult/professional communication. Reading, discussion and writing on contemporary topics. Taught in Russian. Credit will not be awarded for both RUSS 3005 and RUSS 3001." }, "RUSS3222": { "subject": "RUSS", "number": "3222", "name": "Russ 20th Cent Lit&Film ", - "description": "Russian twentieth-century literature and film. Discussion of historical and cultural context, aesthetics, structure and meaning. Reading and discussion in English. Full Description " + "description": "Russian twentieth-century literature and film. Discussion of historical and cultural context, aesthetics, structure and meaning. Reading and discussion in English." }, "RUSS3242": { "subject": "RUSS", "number": "3242", "name": "Urban Myth in Russ Lit ", - "description": "Students analyze iconic texts that have been shaped by both Russian and non-Russian urban environments across generations. Conducted in English. Full Description " + "description": "Students analyze iconic texts that have been shaped by both Russian and non-Russian urban environments across generations. Conducted in English." }, "RUSS3350": { "subject": "RUSS", "number": "3350", "name": "Russian-US Mass Cultures ", - "description": "Trends, genres and youth movements existing in contemporary American and Russian mass culture area compared to distinguish important cultural differences and similarities. Conducted in English. Full Description " + "description": "Trends, genres and youth movements existing in contemporary American and Russian mass culture area compared to distinguish important cultural differences and similarities. Conducted in English." }, "RUSS3691": { "subject": "RUSS", "number": "3691", "name": "Intensive Adv Russian ", - "description": "Intensive development of aural/oral communication skills, capitalizing on a rich linguistic environment. Review and expansion of grammar, practiced in context. Focus on description, narration and comparison. Full Description " + "description": "Intensive development of aural/oral communication skills, capitalizing on a rich linguistic environment. Review and expansion of grammar, practiced in context. Focus on description, narration and comparison." }, "RUSS3692": { "subject": "RUSS", "number": "3692", "name": "Read&Comp:Bus,Sci & Tech ", - "description": "Advanced reading and writing skills. Study of syntax enables more sophisticated paragraph structure. Readings include newpaper texts on current affairs, business, science and technology. Full Description " + "description": "Advanced reading and writing skills. Study of syntax enables more sophisticated paragraph structure. Readings include newpaper texts on current affairs, business, science and technology." }, "RUSS3695": { "subject": "RUSS", "number": "3695", "name": "Contemporary Russia ", - "description": "General introduction to political, cultural, social, and historical background of Russian domestic and foreign politics. Lectures in English. Discussion section and research project in Russian. Full Description " + "description": "General introduction to political, cultural, social, and historical background of Russian domestic and foreign politics. Lectures in English. Discussion section and research project in Russian." }, "RUSS3698": { "subject": "RUSS", "number": "3698", "name": "Russia Yesterday & Today ", - "description": "Lecture and discussion of a range of problems confronting Russian society today and the depth of their connection to Russia's historical heritage. Taught in English. Full Description " + "description": "Lecture and discussion of a range of problems confronting Russian society today and the depth of their connection to Russia's historical heritage. Taught in English." }, "RUSS3803": { "subject": "RUSS", "number": "3803", "name": "Special Topics ", - "description": "Permits a group of students and a professor to pursue areas of the Russian language not extensively treated in other courses in the department. Full Description " + "description": "Permits a group of students and a professor to pursue areas of the Russian language not extensively treated in other courses in the department." }, "RUSS3813": { "subject": "RUSS", "number": "3813", "name": "Special Topics ", - "description": "Permits a group of students and a professor to pursue areas of the Russian language not extensively treated in other courses in the department. Full Description " + "description": "Permits a group of students and a professor to pursue areas of the Russian language not extensively treated in other courses in the department." }, "RUSS3823": { "subject": "RUSS", "number": "3823", "name": "Special Topics ", - "description": "Permits a group of students and a professor to pursue areas of the Russian language not extensively treated in other coures in the department. Full Description " + "description": "Permits a group of students and a professor to pursue areas of the Russian language not extensively treated in other coures in the department." }, "RUSS3833": { "subject": "RUSS", "number": "3833", "name": "Special Topics ", - "description": "Topics of current interest in Russian. Full Description " + "description": "Topics of current interest in Russian." }, "RUSS3XXX": { "subject": "RUSS", "number": "3XXX", "name": "Russian Elective ", - "description": " Full Description " + "description": "" }, "RUSS4320": { "subject": "RUSS", "number": "4320", "name": "19th Cent Russ Writers ", - "description": "Trends and paradigms in Russian literature from Pushkin to Chekhov. Conducted in Russian. Full Description " + "description": "Trends and paradigms in Russian literature from Pushkin to Chekhov. Conducted in Russian." }, "RUSS4335": { "subject": "RUSS", "number": "4335", "name": "Tech, Soc&Cult-USSR&RUSS ", - "description": "Problems of sustainability, ecology, medicine, industrial development, and technological progress as manifested in Soviet and Russian society and reflected in culture. Conducted in Russian. Full Description " + "description": "Problems of sustainability, ecology, medicine, industrial development, and technological progress as manifested in Soviet and Russian society and reflected in culture. Conducted in Russian." }, "RUSS4340": { "subject": "RUSS", "number": "4340", "name": "Business Discourse 1990- ", - "description": "Origins of business discourse in post-Soviet Russia. Transformations in meaning of words and related practices during process of acculturation. Conducted in Russian. Full Description " + "description": "Origins of business discourse in post-Soviet Russia. Transformations in meaning of words and related practices during process of acculturation. Conducted in Russian." }, "RUSS4360": { "subject": "RUSS", "number": "4360", "name": "Russ Cult Through Song ", - "description": "Russian songs as object of study and focal points for broader exploration of key issues in Russian and Soviet culture and history. Conducted in Russian. Full Description " + "description": "Russian songs as object of study and focal points for broader exploration of key issues in Russian and Soviet culture and history. Conducted in Russian." }, "RUSS4380": { "subject": "RUSS", "number": "4380", "name": "Russian Culture in Exile ", - "description": "A journey through almost a century of Russian culture in exile across genres, periods and artistic forms(prose, poetry, songs, films, photography). Conducted in Russian. Full Description " + "description": "A journey through almost a century of Russian culture in exile across genres, periods and artistic forms(prose, poetry, songs, films, photography). Conducted in Russian." }, "RUSS4500": { "subject": "RUSS", "number": "4500", "name": "Intercultural Seminar ", - "description": "Russia and the West: cultural models and political fault lines. Historical debates that continue to divide and engage Russians. Conducted in Russian. Full Description " + "description": "Russia and the West: cultural models and political fault lines. Historical debates that continue to divide and engage Russians. Conducted in Russian." }, "RUSS4695": { "subject": "RUSS", "number": "4695", "name": "Russian Internship ", - "description": "Professional experience with a business/organization in which students enhance their language skills and cultural knowledge in Russian in relation on the practical goals/objectives of the entity. Full Description " + "description": "Professional experience with a business/organization in which students enhance their language skills and cultural knowledge in Russian in relation on the practical goals/objectives of the entity." }, "RUSS4698": { "subject": "RUSS", "number": "4698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "RUSS4699": { "subject": "RUSS", "number": "4699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "RUSS4813": { "subject": "RUSS", "number": "4813", "name": "Special Topics ", - "description": "Topics of interest not covered in the regular course offerings. Full Description " + "description": "Topics of interest not covered in the regular course offerings." }, "RUSS4823": { "subject": "RUSS", "number": "4823", "name": "Special Topics ", - "description": "Topics of current interest in Russian. Full Description " + "description": "Topics of current interest in Russian." }, "RUSS4833": { "subject": "RUSS", "number": "4833", "name": "Special Topics ", - "description": "Topics of current interest in Russian. Full Description " + "description": "Topics of current interest in Russian." }, "RUSS4901": { "subject": "RUSS", "number": "4901", "name": "Special Prob - Russian ", - "description": "Provides the special instruction required under special programs. Full Description " + "description": "Provides the special instruction required under special programs." }, "RUSS4902": { "subject": "RUSS", "number": "4902", "name": "Special Prob - Russian ", - "description": "Provides the special instruction required under special programs. Full Description " + "description": "Provides the special instruction required under special programs." }, "RUSS4XXX": { "subject": "RUSS", "number": "4XXX", "name": "Russian Elective ", - "description": " Full Description " + "description": "" }, "SCI1XXX": { "subject": "SCI", "number": "1XXX", "name": "Science Elective ", - "description": " Full Description " + "description": "" }, "SCI2XXX": { "subject": "SCI", "number": "2XXX", "name": "Science Elective ", - "description": " Full Description " + "description": "" }, "SOC1101": { "subject": "SOC", "number": "1101", "name": "Intro to Sociology ", - "description": "A study of basic social relations, including social structure and functions, analysis of social processes, the foundations of personality, and analysis of social organization. Full Description " + "description": "A study of basic social relations, including social structure and functions, analysis of social processes, the foundations of personality, and analysis of social organization." }, "SPAN1001": { "subject": "SPAN", "number": "1001", "name": "Elementary Spanish I ", - "description": "An introduction to the Spanish language and the cultures of the Spanish-speaking world. Beginning of a survey of basic Spanish grammar and the development of the four language skills of listening, speaking, reading and writing. Some aspects of everyday life in the Spanish-speaking world will also be introduced. Conducted in Spanish. No native speakers allowed. Credit not allowed for both Span 1001 and 1101. Full Description " + "description": "An introduction to the Spanish language and the cultures of the Spanish-speaking world. Beginning of a survey of basic Spanish grammar and the development of the four language skills of listening, speaking, reading and writing. Some aspects of everyday life in the Spanish-speaking world will also be introduced. Conducted in Spanish. No native speakers allowed. Credit not allowed for both Span 1001 and 1101." }, "SPAN1002": { "subject": "SPAN", "number": "1002", "name": "Elementary Spanish II ", - "description": "The second part of an introduction to the Spanish language and cultures of the Spanish-speaking world. Completion of the survey of basic Spanish grammar and the development of the four language skills of listening, speaking, reading, and writing. Aspects of everyday life in the Spanish- speaking world will also be introduced. Conducted in Spanish. No native speakers allowed. Credit not allowed for both SPAN 1002 and SPAN 1102. Full Description " + "description": "The second part of an introduction to the Spanish language and cultures of the Spanish-speaking world. Completion of the survey of basic Spanish grammar and the development of the four language skills of listening, speaking, reading, and writing. Aspects of everyday life in the Spanish- speaking world will also be introduced. Conducted in Spanish. No native speakers allowed. Credit not allowed for both SPAN 1002 and SPAN 1102." }, "SPAN1101": { "subject": "SPAN", "number": "1101", "name": "Patterns of Spanish I ", - "description": "Focuses on the development of communication and cultural skills, building upon previous elementary Spanish experience. Conducted in Spanish. Credit not allowed for both SPAN 1001 and 1101. Humanities credit is awarded for SPAN 1101 only upon the successful completion of SPAN 1102 or SPAN 2001. Full Description " + "description": "Focuses on the development of communication and cultural skills, building upon previous elementary Spanish experience. Conducted in Spanish. Credit not allowed for both SPAN 1001 and 1101. Humanities credit is awarded for SPAN 1101 only upon the successful completion of SPAN 1102 or SPAN 2001." }, "SPAN1102": { "subject": "SPAN", "number": "1102", "name": "Patterns of Spanish II ", - "description": "Focuses on the development of communication and cultural skills, building upon previous elementary Spanish experience. Conducted in Spanish. Credit not allowed for both SPAN 1002 and SPAN 1102. Full Description " + "description": "Focuses on the development of communication and cultural skills, building upon previous elementary Spanish experience. Conducted in Spanish. Credit not allowed for both SPAN 1002 and SPAN 1102." }, "SPAN1813": { "subject": "SPAN", "number": "1813", "name": "Special Topics ", - "description": "Topics of current interest in Spanish. Full Description " + "description": "Topics of current interest in Spanish." }, "SPAN1XXX": { "subject": "SPAN", "number": "1XXX", "name": "Spanish Elective ", - "description": " Full Description " + "description": "" }, "SPAN2001": { "subject": "SPAN", "number": "2001", "name": "Intermediate Spanish I ", - "description": "Review of basic grammatical concepts: conversational, reading, and writing activities; cultural aspects of the Hispanic world. Conducted in Spanish. No native speakers allowed. Full Description " + "description": "Review of basic grammatical concepts: conversational, reading, and writing activities; cultural aspects of the Hispanic world. Conducted in Spanish. No native speakers allowed." }, "SPAN2002": { "subject": "SPAN", "number": "2002", "name": "Intermediate Spanish II ", - "description": "Review of basic grammatical concepts; conversational, reading, and writing activities; cultural aspects of the Hispanic world. Conducted in Spanish. No native speakers allowed. Full Description " + "description": "Review of basic grammatical concepts; conversational, reading, and writing activities; cultural aspects of the Hispanic world. Conducted in Spanish. No native speakers allowed." }, "SPAN2690": { "subject": "SPAN", "number": "2690", "name": "Intermed Span Abroad ", - "description": "Intensive intermediate Spanish conducted abroad with focus on issues and perspectives of the target region. Full Description " + "description": "Intensive intermediate Spanish conducted abroad with focus on issues and perspectives of the target region." }, "SPAN2698": { "subject": "SPAN", "number": "2698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "SPAN2699": { "subject": "SPAN", "number": "2699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "SPAN2813": { "subject": "SPAN", "number": "2813", "name": "Special Topics ", - "description": "Topics of current interest in Spanish. Full Description " + "description": "Topics of current interest in Spanish." }, "SPAN2XXX": { "subject": "SPAN", "number": "2XXX", "name": "Spanish Elective ", - "description": " Full Description " + "description": "" }, "SPAN3040": { "subject": "SPAN", "number": "3040", "name": "Pract. App. Span Grammar ", - "description": "A review of important structures of Spanish, presented in communicative contexts vital to the academic careers of students. Taught in Spanish. Full Description " + "description": "A review of important structures of Spanish, presented in communicative contexts vital to the academic careers of students. Taught in Spanish." }, "SPAN3050": { "subject": "SPAN", "number": "3050", "name": "Intro-Read Hispanic Lit ", - "description": "This course bridges language study and the study of literature by helping students read, understand , and interpret literature as a system of communication in Spanish. Full Description " + "description": "This course bridges language study and the study of literature by helping students read, understand , and interpret literature as a system of communication in Spanish." }, "SPAN3061": { "subject": "SPAN", "number": "3061", "name": "Business Spanish I ", - "description": "Introduction to business language in the Hispanic world. Development of linguistic abilities to this end, with emphasis on those cultural factors that lead to commercial success. Conducted in Spanish. Full Description " + "description": "Introduction to business language in the Hispanic world. Development of linguistic abilities to this end, with emphasis on those cultural factors that lead to commercial success. Conducted in Spanish." }, "SPAN3062": { "subject": "SPAN", "number": "3062", "name": "Business Spanish II ", - "description": "Focus on the oral and written language and cultural context of Hispanic business protocols; themes and situations include banking and finance, marketing and advertising structures and practices. Conducted in Spanish. Full Description " + "description": "Focus on the oral and written language and cultural context of Hispanic business protocols; themes and situations include banking and finance, marketing and advertising structures and practices. Conducted in Spanish." }, "SPAN3064": { "subject": "SPAN", "number": "3064", "name": "Medical Spanish ", - "description": "This course facilitates acquisition of a broad vocabulary and awareness of cultural customs and trends pertaining to the healthcare field. Taught in Spanish. Prerequisites: SPAN 2002 or any SPAN 3000-level course. Full Description " + "description": "This course facilitates acquisition of a broad vocabulary and awareness of cultural customs and trends pertaining to the healthcare field. Taught in Spanish. Prerequisites: SPAN 2002 or any SPAN 3000-level course." }, "SPAN3101": { "subject": "SPAN", "number": "3101", "name": "Conversation I ", - "description": "Development of communicative ability and cross-cultural awareness through discussion of contemporary issues in the Hispanic world. No native speakers allowed. Full Description " + "description": "Development of communicative ability and cross-cultural awareness through discussion of contemporary issues in the Hispanic world. No native speakers allowed." }, "SPAN3102": { "subject": "SPAN", "number": "3102", "name": "Conversation II ", - "description": "Development of communicative ability and cross-cultural awareness through discussion of contemporary issues in the Hispanic world. No native speakers allowed. Full Description " + "description": "Development of communicative ability and cross-cultural awareness through discussion of contemporary issues in the Hispanic world. No native speakers allowed." }, "SPAN3111": { "subject": "SPAN", "number": "3111", "name": "Composition I ", - "description": "Writings from the Hispanic world used as a springboard for analysis and enrichment of self-expression and development of precision in written communication. Incorporates grammar review. No native speakers allowed. Full Description " + "description": "Writings from the Hispanic world used as a springboard for analysis and enrichment of self-expression and development of precision in written communication. Incorporates grammar review. No native speakers allowed." }, "SPAN3112": { "subject": "SPAN", "number": "3112", "name": "Composition II ", - "description": "Writings from the Hispanic world used as a springboard for analysis and enrichment of self-expression and development of precision in written communication. Incorporates grammar review. No native speakers allowed. Full Description " + "description": "Writings from the Hispanic world used as a springboard for analysis and enrichment of self-expression and development of precision in written communication. Incorporates grammar review. No native speakers allowed." }, "SPAN3122": { "subject": "SPAN", "number": "3122", "name": "Cultural Hist-Spain II ", - "description": "History of Spanish culture from 1800 to the present. Conducted in Spanish. Full Description " + "description": "History of Spanish culture from 1800 to the present. Conducted in Spanish." }, "SPAN3170": { "subject": "SPAN", "number": "3170", "name": "Spanish Phonetics ", - "description": "Study of the phonological system of the Spanish language, including dialectal variations in the Hispanic world. Full Description " + "description": "Study of the phonological system of the Spanish language, including dialectal variations in the Hispanic world." }, "SPAN3211": { "subject": "SPAN", "number": "3211", "name": "Spain Today ", - "description": "This course introduces students to current issues in the culture and history of contemporary Spain. Articles, videos, and news clips are used as springboard for discussion. Full Description " + "description": "This course introduces students to current issues in the culture and history of contemporary Spain. Articles, videos, and news clips are used as springboard for discussion." }, "SPAN3235": { "subject": "SPAN", "number": "3235", "name": "Latin America Today ", - "description": "Selected journalistic and literary writings used as a springboard for discussion of social, economic, and political issues of contemporary Latin America. Conducted in Spanish. Full Description " + "description": "Selected journalistic and literary writings used as a springboard for discussion of social, economic, and political issues of contemporary Latin America. Conducted in Spanish." }, "SPAN3241": { "subject": "SPAN", "number": "3241", "name": "Indiv&Family in Hisp Lit ", - "description": "Analysis and discussion of the portrayal of the individual and the family in selected readings from Hispanic literature. Conducted in Spanish. Full Description " + "description": "Analysis and discussion of the portrayal of the individual and the family in selected readings from Hispanic literature. Conducted in Spanish." }, "SPAN3242": { "subject": "SPAN", "number": "3242", "name": "Society in Hispanic Lit ", - "description": "Study of Hispanic society and political thought in selected literary works. Conducted in Spanish. Full Description " + "description": "Study of Hispanic society and political thought in selected literary works. Conducted in Spanish." }, "SPAN3254": { "subject": "SPAN", "number": "3254", "name": "Hispanic Film ", - "description": "Contemporary Latin American and Spanish films serve as gateway to discussion of social, political, economic and cross-cultural perspectives. Conducted in Spanish. Credit not allowed for both SPAN 3254 and SPAN 4254. Full Description " + "description": "Contemporary Latin American and Spanish films serve as gateway to discussion of social, political, economic and cross-cultural perspectives. Conducted in Spanish. Credit not allowed for both SPAN 3254 and SPAN 4254." }, "SPAN3260": { "subject": "SPAN", "number": "3260", "name": "Identity In Hisp. Lit. ", - "description": "This course examines the construction of personal, cultural, national, political, and regional identity in Hispanic American literature over the past two centuries. Taught in Spanish. Full Description " + "description": "This course examines the construction of personal, cultural, national, political, and regional identity in Hispanic American literature over the past two centuries. Taught in Spanish." }, "SPAN3500": { "subject": "SPAN", "number": "3500", "name": "Sci-Fi In Latin America ", - "description": "This course is a survey of Latin America science-fiction. Taught in Spanish. Full Description " + "description": "This course is a survey of Latin America science-fiction. Taught in Spanish." }, "SPAN3590": { "subject": "SPAN", "number": "3590", "name": "Issues in Andean Devmt ", - "description": "Historical and social context of contemporary issues of cultural, economic and environmental sustainability in the Andean region. Taught in Spanish. Full Description " + "description": "Historical and social context of contemporary issues of cultural, economic and environmental sustainability in the Andean region. Taught in Spanish." }, "SPAN3591": { "subject": "SPAN", "number": "3591", "name": "Peru Cultural Patrimony ", - "description": "Using literature, film and art, this course examines cultural patrimony in Peru and its impact on society, economy, environment and threats to its preservation. Conducted in Spanish. Full Description " + "description": "Using literature, film and art, this course examines cultural patrimony in Peru and its impact on society, economy, environment and threats to its preservation. Conducted in Spanish." }, "SPAN3690": { "subject": "SPAN", "number": "3690", "name": "Commerce Sustain Commun ", - "description": "Study of the connectedness and community impact of contemporary issues of economic, sociocultural, and environmental sustainability in Mexico. Conducted in Spanish. Part of the Spanish intensive summer LBAT program. Admission by application only. Full Description " + "description": "Study of the connectedness and community impact of contemporary issues of economic, sociocultural, and environmental sustainability in Mexico. Conducted in Spanish. Part of the Spanish intensive summer LBAT program. Admission by application only." }, "SPAN3691": { "subject": "SPAN", "number": "3691", "name": "Bus Comm& Correspondence ", - "description": "Refinement of accuracy/flexibility in oral/written expression. Focus on appropriate use of strategies, business negotiation protocols, lexical precision in business transactions. Incorporates grammar review. Part of the Spanish intensive summer language program. Admission by application only. Full Description " + "description": "Refinement of accuracy/flexibility in oral/written expression. Focus on appropriate use of strategies, business negotiation protocols, lexical precision in business transactions. Incorporates grammar review. Part of the Spanish intensive summer language program. Admission by application only." }, "SPAN3692": { "subject": "SPAN", "number": "3692", "name": "Business And Culture ", - "description": "Study of cultural issues, tendencies, and traditional patterns of behavior in Spanish-speaking people as they relate to business practices. Value systems and formal manifestations. Regional variations, including the U.S. Hispanic culture. Part of the Spanish intensive summer language program. Admission by application only. Full Description " + "description": "Study of cultural issues, tendencies, and traditional patterns of behavior in Spanish-speaking people as they relate to business practices. Value systems and formal manifestations. Regional variations, including the U.S. Hispanic culture. Part of the Spanish intensive summer language program. Admission by application only." }, "SPAN3693": { "subject": "SPAN", "number": "3693", "name": "Science And Technology ", - "description": "Study of business organizations and use of technology in the Spanish-speaking world. Specialized vocabularies of business, economics, statistics, and computer science. Geographical and anthropological background. Part of the Spanish intensive summer language program. Admission by application only. Full Description " + "description": "Study of business organizations and use of technology in the Spanish-speaking world. Specialized vocabularies of business, economics, statistics, and computer science. Geographical and anthropological background. Part of the Spanish intensive summer language program. Admission by application only." }, "SPAN3694": { "subject": "SPAN", "number": "3694", "name": "Seminar Abroad ", - "description": "Field study of technology, economic trends, business firms, financial institutions, and cultural protocols in the Spanish-speaking area. Part of the Spanish intensive summer language program. Admission by application only. Full Description " + "description": "Field study of technology, economic trends, business firms, financial institutions, and cultural protocols in the Spanish-speaking area. Part of the Spanish intensive summer language program. Admission by application only." }, "SPAN3697": { "subject": "SPAN", "number": "3697", "name": "Span Health Professionls ", - "description": "Culture-specific conceptions of health, medical vocabulary, professional-patient protocols, professional-professional protocols, symptoms, treatments. Part of the Spanish summer program in Cadiz. Full Description " + "description": "Culture-specific conceptions of health, medical vocabulary, professional-patient protocols, professional-professional protocols, symptoms, treatments. Part of the Spanish summer program in Cadiz." }, "SPAN3698": { "subject": "SPAN", "number": "3698", "name": "Spain Health Industry ", - "description": "Study of culture-specific values in health systems in Spain/ Europe. Visits to local sites. Part of the Spanish intensive summer program in Cadiz. Full Description " + "description": "Study of culture-specific values in health systems in Spain/ Europe. Visits to local sites. Part of the Spanish intensive summer program in Cadiz." }, "SPAN3813": { "subject": "SPAN", "number": "3813", "name": "Special Topics ", - "description": "Topics of current interest in Spanish. Full Description " + "description": "Topics of current interest in Spanish." }, "SPAN3823": { "subject": "SPAN", "number": "3823", "name": "Special Topics ", - "description": "Topics of current interest in Spanish. Full Description " + "description": "Topics of current interest in Spanish." }, "SPAN3833": { "subject": "SPAN", "number": "3833", "name": "Special Topics ", - "description": "Topics of current interest in Spanish. Full Description " + "description": "Topics of current interest in Spanish." }, "SPAN3XXX": { "subject": "SPAN", "number": "3XXX", "name": "Spanish Elecitve ", - "description": " Full Description " + "description": "" }, "SPAN4061": { "subject": "SPAN", "number": "4061", "name": "Science & Technology I ", - "description": "Introduction to scientific vocabulary and discourse in Spanish, by fields of interest. Study of expository texts, numerical expressions, and graphic aids. Development of some reading and translation strategies. Writing feature descriptions and article/report summaries in Spanish. Conducted in Spanish. Full Description " + "description": "Introduction to scientific vocabulary and discourse in Spanish, by fields of interest. Study of expository texts, numerical expressions, and graphic aids. Development of some reading and translation strategies. Writing feature descriptions and article/report summaries in Spanish. Conducted in Spanish." }, "SPAN4062": { "subject": "SPAN", "number": "4062", "name": "Science & Technology II ", - "description": "Advanced analysis of scientific and technological discourse in Spanish. Focus on reading strategies and oral discussion of topics such as use and transfer of technology and the acculturation issues that follow. Further development of comprehension, production, and translation strategies, with emphasis on professional communications and on writing feature descriptions, summaries, and abstracts. Conducted in Spanish Full Description " + "description": "Advanced analysis of scientific and technological discourse in Spanish. Focus on reading strategies and oral discussion of topics such as use and transfer of technology and the acculturation issues that follow. Further development of comprehension, production, and translation strategies, with emphasis on professional communications and on writing feature descriptions, summaries, and abstracts. Conducted in Spanish" }, "SPAN4065": { "subject": "SPAN", "number": "4065", "name": "Spanish Linguistics ", - "description": "This course is designed to develop the students' understanding of the linguistic structure of the Spanish language. The topics covered in this course include: phonetics, phonology, morphology, syntax, language change, and language variation. Full Description " + "description": "This course is designed to develop the students' understanding of the linguistic structure of the Spanish language. The topics covered in this course include: phonetics, phonology, morphology, syntax, language change, and language variation." }, "SPAN4070": { "subject": "SPAN", "number": "4070", "name": "Intro-Span/Engl Translat ", - "description": "Introductory course in Spanish/English translation that covers a variety of registers, such as general, business, and technical translation. Full Description " + "description": "Introductory course in Spanish/English translation that covers a variety of registers, such as general, business, and technical translation." }, "SPAN4071": { "subject": "SPAN", "number": "4071", "name": "Translation & Interpret ", - "description": "This course explores translation and interpreting in legal, medical, and media contexts. Conducted in Spanish. Full Description " + "description": "This course explores translation and interpreting in legal, medical, and media contexts. Conducted in Spanish." }, "SPAN4101": { "subject": "SPAN", "number": "4101", "name": "Adv Communication Wkshop ", - "description": "Advancement of oral and written proficiency using a workshop and project-development format to focus on communicative precision, style and register. Includes some treatment of grammar. No native speakers allowed. Full Description " + "description": "Advancement of oral and written proficiency using a workshop and project-development format to focus on communicative precision, style and register. Includes some treatment of grammar. No native speakers allowed." }, "SPAN4150": { "subject": "SPAN", "number": "4150", "name": "Spanish Service Learning ", - "description": "This class combines classroom discussion with Hispanic community service projects to allow students to study Hispanic cultures and practice Spanish with native speakers. Conducted in Spanish. Full Description " + "description": "This class combines classroom discussion with Hispanic community service projects to allow students to study Hispanic cultures and practice Spanish with native speakers. Conducted in Spanish." }, "SPAN4160": { "subject": "SPAN", "number": "4160", "name": "US Spanish-Lang&Cultures ", - "description": "Linguistic groups, changes, bilingualism, customs, traditions of US Hispanics. Course project on current migration, legal, financial, educational, health, media or political issues/advances. Full Description " + "description": "Linguistic groups, changes, bilingualism, customs, traditions of US Hispanics. Course project on current migration, legal, financial, educational, health, media or political issues/advances." }, "SPAN4165": { "subject": "SPAN", "number": "4165", "name": "Bilingualism-Span World ", - "description": "This course introduces students to bilingualism at both individual and societal levels within the Hispanic communities in the US, Spain, and Latin America. Full Description " + "description": "This course introduces students to bilingualism at both individual and societal levels within the Hispanic communities in the US, Spain, and Latin America." }, "SPAN4170": { "subject": "SPAN", "number": "4170", "name": "Span Applied Linguistics ", - "description": "Advanced linguistic analysis of the Spanish language, particularly as it contrasts with English. Full Description " + "description": "Advanced linguistic analysis of the Spanish language, particularly as it contrasts with English." }, "SPAN4220": { "subject": "SPAN", "number": "4220", "name": "Nation/Narration In LA ", - "description": "This course examines the connection between nation and narration in Latin American literature and film and explores the narrative construction of national identities. Taught in Spanish. Full Description " + "description": "This course examines the connection between nation and narration in Latin American literature and film and explores the narrative construction of national identities. Taught in Spanish." }, "SPAN4235": { "subject": "SPAN", "number": "4235", "name": "Food Culture & Society ", - "description": "Food as a gateway to in-depth exploration of Hispanic cultures, including issues of identity, community, cosmology, sustainability and effects of globalization. Conducted in Spanish. Full Description " + "description": "Food as a gateway to in-depth exploration of Hispanic cultures, including issues of identity, community, cosmology, sustainability and effects of globalization. Conducted in Spanish." }, "SPAN4236": { "subject": "SPAN", "number": "4236", "name": "Media,Market&Advertising ", - "description": "Use of print, broadcast, and web-based media to explore the social structures and cultural values reflected in product consumption, marketing, and advertising. Conducted in Spanish. Full Description " + "description": "Use of print, broadcast, and web-based media to explore the social structures and cultural values reflected in product consumption, marketing, and advertising. Conducted in Spanish." }, "SPAN4242": { "subject": "SPAN", "number": "4242", "name": "LatinAm Art: Vision&Voice ", - "description": "Historical and Cultural analysis of the role of plastic arts in Latin America, from preonquest to contemporary times. Conducted in Spanish. Full Description " + "description": "Historical and Cultural analysis of the role of plastic arts in Latin America, from preonquest to contemporary times. Conducted in Spanish." }, "SPAN4251": { "subject": "SPAN", "number": "4251", "name": "Hispanic Internship ", - "description": "Students complete inernships with agencies, organizations, and businesses serving Atlanta Hispanics, using their Spanish language skills in a professional work environment. Conducted in Spanish. Full Description " + "description": "Students complete inernships with agencies, organizations, and businesses serving Atlanta Hispanics, using their Spanish language skills in a professional work environment. Conducted in Spanish." }, "SPAN4255": { "subject": "SPAN", "number": "4255", "name": "Hispanic Drama Workshop ", - "description": "Literary and theatrical aspects of Hispanic drama are explored through class discussion and performance of a collection of contemporary one-act plays. Full Description " + "description": "Literary and theatrical aspects of Hispanic drama are explored through class discussion and performance of a collection of contemporary one-act plays." }, "SPAN4350": { "subject": "SPAN", "number": "4350", "name": "Iberoamerican Cities ", - "description": "This course examines the representation and development of cities in the Hispanic World. Students develop three urban projects based on their study. Taught in Spanish. Full Description " + "description": "This course examines the representation and development of cities in the Hispanic World. Students develop three urban projects based on their study. Taught in Spanish." }, "SPAN4400": { "subject": "SPAN", "number": "4400", "name": "Immigration Through Film ", - "description": "Hispanic film as lens for in-depth exploration of immgration issues throughout the Spanish-speaking world. Conducted in Spanish. Credit not allowed for both SPAN 4400 and SPAN 3400. Full Description " + "description": "Hispanic film as lens for in-depth exploration of immgration issues throughout the Spanish-speaking world. Conducted in Spanish. Credit not allowed for both SPAN 4400 and SPAN 3400." }, "SPAN4500": { "subject": "SPAN", "number": "4500", "name": "Intercultural Seminar ", - "description": "Integrates cross-cultural research and reflection into discussion of current issues in the Hispanic world. Intended for students who have had some study abroad experience in a Spanish-speaking country. Conducted in Spanish. Full Description " + "description": "Integrates cross-cultural research and reflection into discussion of current issues in the Hispanic world. Intended for students who have had some study abroad experience in a Spanish-speaking country. Conducted in Spanish." }, "SPAN4693": { "subject": "SPAN", "number": "4693", "name": "Sustainability in Span ", - "description": "This course examines issues of economic and environmental sustainability as well as the relationship between the economy and the environment during the Spain LBAT Program. Full Description " + "description": "This course examines issues of economic and environmental sustainability as well as the relationship between the economy and the environment during the Spain LBAT Program." }, "SPAN4695": { "subject": "SPAN", "number": "4695", "name": "Spanish Internship ", - "description": "Professional experience with a business/organizaion in which students enhance their language skills and cultural knowledge in Spanish in relation to the practical goals/objectives of the entity. Full Description " + "description": "Professional experience with a business/organizaion in which students enhance their language skills and cultural knowledge in Spanish in relation to the practical goals/objectives of the entity." }, "SPAN4698": { "subject": "SPAN", "number": "4698", "name": "Research Assistantship ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "SPAN4699": { "subject": "SPAN", "number": "4699", "name": "Undergraduate Research ", - "description": "Independent research conducted under the guidance of a faculty member. Full Description " + "description": "Independent research conducted under the guidance of a faculty member." }, "SPAN4813": { "subject": "SPAN", "number": "4813", "name": "Special Topics ", - "description": "Topics of interest not covered in the regular course offerings.. Full Description " + "description": "Topics of interest not covered in the regular course offerings.." }, "SPAN4823": { "subject": "SPAN", "number": "4823", "name": "Special Topics ", - "description": "Topics of current interest in Spanish. Full Description " + "description": "Topics of current interest in Spanish." }, "SPAN4833": { "subject": "SPAN", "number": "4833", "name": "Special Topics ", - "description": " Full Description " + "description": "" }, "SPAN4901": { "subject": "SPAN", "number": "4901", "name": "Special Problems ", - "description": "Provides the special instruction required under special programs. Full Description " + "description": "Provides the special instruction required under special programs." }, "SPAN4902": { "subject": "SPAN", "number": "4902", "name": "Special Problems ", - "description": "Provides the special instruction required under special programs. Full Description " + "description": "Provides the special instruction required under special programs." }, "SPAN4XXX": { "subject": "SPAN", "number": "4XXX", "name": "Spanish Elective ", - "description": " Full Description " + "description": "" }, "UCGA1001": { "subject": "UCGA", "number": "1001", "name": "Cross Enroll-Agnes Scott ", - "description": " Full Description " + "description": "" }, "UCGA1002": { "subject": "UCGA", "number": "1002", "name": "Cross Enroll-Atl Col Art ", - "description": " Full Description " + "description": "" }, "UCGA1003": { "subject": "UCGA", "number": "1003", "name": "Cross Enroll-AU Clark ", - "description": " Full Description " + "description": "" }, "UCGA1004": { "subject": "UCGA", "number": "1004", "name": "Cross Enrol-AU Morehouse ", - "description": " Full Description " + "description": "" }, "UCGA1005": { "subject": "UCGA", "number": "1005", "name": "Cross Enrl-AU Morris Brn ", - "description": " Full Description " + "description": "" }, "UCGA1006": { "subject": "UCGA", "number": "1006", "name": "Cross Enroll-AU Spelman ", - "description": " Full Description " + "description": "" }, "UCGA1007": { "subject": "UCGA", "number": "1007", "name": "Cross Enroll-Clayton ", - "description": " Full Description " + "description": "" }, "UCGA1008": { "subject": "UCGA", "number": "1008", "name": "Cross Enrol-Columbia Sem ", - "description": " Full Description " + "description": "" }, "UCGA1009": { "subject": "UCGA", "number": "1009", "name": "Cross Enroll-Emory Univ ", - "description": " Full Description " + "description": "" }, "UCGA1010": { "subject": "UCGA", "number": "1010", "name": "Cross Enroll-Ga St Univ ", - "description": " Full Description " + "description": "" }, "UCGA1011": { "subject": "UCGA", "number": "1011", "name": "Cross Enroll-Kennesaw ", - "description": " Full Description " + "description": "" }, "UCGA1012": { "subject": "UCGA", "number": "1012", "name": "Cross Enroll-Mercer Univ ", - "description": " Full Description " + "description": "" }, "UCGA1013": { "subject": "UCGA", "number": "1013", "name": "Cross Enroll-Oglethorpe ", - "description": " Full Description " + "description": "" }, "UCGA1014": { "subject": "UCGA", "number": "1014", "name": "Cross Enrl-Southern Poly ", - "description": " Full Description " + "description": "" }, "UCGA1015": { "subject": "UCGA", "number": "1015", "name": "Cross Enroll-Univ of Ga ", - "description": " Full Description " + "description": "" }, "UCGA1017": { "subject": "UCGA", "number": "1017", "name": "Cross Enrol-West Georgia ", - "description": " Full Description " + "description": "" }, "UCGA1018": { "subject": "UCGA", "number": "1018", "name": "Cross Enroll - Brenau ", - "description": " Full Description " + "description": "" }, "UCGA1019": { "subject": "UCGA", "number": "1019", "name": "Cross Enroll-Sav Col Art ", - "description": "CROSS ENROLL-SAVANNAH COLLEGE OF ART Full Description " + "description": "CROSS ENROLL-SAVANNAH COLLEGE OF ART" }, "UCGA1021": { "subject": "UCGA", "number": "1021", "name": "Cross Enroll-GaGwinnett ", - "description": "CROSS-ENROLL-GEORGIA GWINNETT COLLEGE Full Description " + "description": "CROSS-ENROLL-GEORGIA GWINNETT COLLEGE" }, "UCGA2001": { "subject": "UCGA", "number": "2001", "name": "Cross Enroll-Agnes Scott ", - "description": " Full Description " + "description": "" }, "UCGA2002": { "subject": "UCGA", "number": "2002", "name": "Cross Enroll-Atl Col Art ", - "description": " Full Description " + "description": "" }, "UCGA2003": { "subject": "UCGA", "number": "2003", "name": "Cross Enroll-AU Clark ", - "description": " Full Description " + "description": "" }, "UCGA2004": { "subject": "UCGA", "number": "2004", "name": "Cross Enrol-AU Morehouse ", - "description": " Full Description " + "description": "" }, "UCGA2005": { "subject": "UCGA", "number": "2005", "name": "Cross Enrl-AU Morris Brn ", - "description": " Full Description " + "description": "" }, "UCGA2006": { "subject": "UCGA", "number": "2006", "name": "Cross Enroll-AU Spelman ", - "description": " Full Description " + "description": "" }, "UCGA2007": { "subject": "UCGA", "number": "2007", "name": "Cross Enroll-Clayton ", - "description": " Full Description " + "description": "" }, "UCGA2008": { "subject": "UCGA", "number": "2008", "name": "Cross Enrol-Columbia Sem ", - "description": " Full Description " + "description": "" }, "UCGA2009": { "subject": "UCGA", "number": "2009", "name": "Cross Enroll-Emory Univ ", - "description": " Full Description " + "description": "" }, "UCGA2010": { "subject": "UCGA", "number": "2010", "name": "Cross Enroll-Ga St Univ ", - "description": " Full Description " + "description": "" }, "UCGA2011": { "subject": "UCGA", "number": "2011", "name": "Cross Enroll-Kennesaw ", - "description": " Full Description " + "description": "" }, "UCGA2012": { "subject": "UCGA", "number": "2012", "name": "Cross Enroll-Mercer Univ ", - "description": " Full Description " + "description": "" }, "UCGA2013": { "subject": "UCGA", "number": "2013", "name": "Cross Enroll-Oglethorpe ", - "description": " Full Description " + "description": "" }, "UCGA2014": { "subject": "UCGA", "number": "2014", "name": "Cross Enrl-Southern Poly ", - "description": " Full Description " + "description": "" }, "UCGA2015": { "subject": "UCGA", "number": "2015", "name": "Cross Enroll-Univ of Ga ", - "description": " Full Description " + "description": "" }, "UCGA2017": { "subject": "UCGA", "number": "2017", "name": "Cross Enrol-West Georgia ", - "description": " Full Description " + "description": "" }, "UCGA2018": { "subject": "UCGA", "number": "2018", "name": "Cross Enroll - Brenau ", - "description": " Full Description " + "description": "" }, "UCGA2019": { "subject": "UCGA", "number": "2019", "name": "Cross Enroll-Sav Col Art ", - "description": "CROSS ENROLL-SAVANNAH COLLEGE OF ART Full Description " + "description": "CROSS ENROLL-SAVANNAH COLLEGE OF ART" }, "UCGA2021": { "subject": "UCGA", "number": "2021", "name": "Cross Enroll-GaGwinnett ", - "description": "CROSS-ENROLL-GEORGIA GWINNETT COLLEGE Full Description " + "description": "CROSS-ENROLL-GEORGIA GWINNETT COLLEGE" }, "UCGA2110": { "subject": "UCGA", "number": "2110", "name": "Cross Enroll-Ga St Univ ", - "description": " Full Description " + "description": "" }, "UCGA2210": { "subject": "UCGA", "number": "2210", "name": "Cross Enroll-Ga St Univ ", - "description": " Full Description " + "description": "" }, "UCGA2310": { "subject": "UCGA", "number": "2310", "name": "Cross Enroll-Ga St Univ ", - "description": " Full Description " + "description": "" }, "UCGA3001": { "subject": "UCGA", "number": "3001", "name": "Cross Enroll-Agnes Scott ", - "description": " Full Description " + "description": "" }, "UCGA3002": { "subject": "UCGA", "number": "3002", "name": "Cross Enroll-Atl Col Art ", - "description": " Full Description " + "description": "" }, "UCGA3003": { "subject": "UCGA", "number": "3003", "name": "Cross Enroll-AU Clark ", - "description": " Full Description " + "description": "" }, "UCGA3004": { "subject": "UCGA", "number": "3004", "name": "Cross Enrol-AU Morehouse ", - "description": " Full Description " + "description": "" }, "UCGA3005": { "subject": "UCGA", "number": "3005", "name": "Cross Enrl-AU Morris Brn ", - "description": " Full Description " + "description": "" }, "UCGA3006": { "subject": "UCGA", "number": "3006", "name": "Cross Enroll-AU Spelman ", - "description": " Full Description " + "description": "" }, "UCGA3007": { "subject": "UCGA", "number": "3007", "name": "Cross Enroll-Clayton ", - "description": " Full Description " + "description": "" }, "UCGA3008": { "subject": "UCGA", "number": "3008", "name": "Cross Enrol-Columbia Sem ", - "description": " Full Description " + "description": "" }, "UCGA3009": { "subject": "UCGA", "number": "3009", "name": "Cross Enroll-Emory Univ ", - "description": " Full Description " + "description": "" }, "UCGA3010": { "subject": "UCGA", "number": "3010", "name": "Cross Enroll-Ga St Univ ", - "description": " Full Description " + "description": "" }, "UCGA3011": { "subject": "UCGA", "number": "3011", "name": "Cross Enroll-Kennesaw ", - "description": " Full Description " + "description": "" }, "UCGA3012": { "subject": "UCGA", "number": "3012", "name": "Cross Enroll-Mercer Univ ", - "description": " Full Description " + "description": "" }, "UCGA3013": { "subject": "UCGA", "number": "3013", "name": "Cross Enroll-Oglethorpe ", - "description": " Full Description " + "description": "" }, "UCGA3014": { "subject": "UCGA", "number": "3014", "name": "Cross Enrl-Southern Poly ", - "description": " Full Description " + "description": "" }, "UCGA3015": { "subject": "UCGA", "number": "3015", "name": "Cross Enroll-Univ of Ga ", - "description": " Full Description " + "description": "" }, "UCGA3017": { "subject": "UCGA", "number": "3017", "name": "Cross Enrol-West Georgia ", - "description": " Full Description " + "description": "" }, "UCGA3018": { "subject": "UCGA", "number": "3018", "name": "Cross Enroll - Brenau ", - "description": " Full Description " + "description": "" }, "UCGA3019": { "subject": "UCGA", "number": "3019", "name": "Cross Enroll-Sav Col Art ", - "description": "CROSS ENROLL-SAVANNAH COLLEGE OF ART Full Description " + "description": "CROSS ENROLL-SAVANNAH COLLEGE OF ART" }, "UCGA3021": { "subject": "UCGA", "number": "3021", "name": "Cross Enroll-GaGwinnett ", - "description": "CROSS-ENROLL-GEORGIA GWINNETT COLLEGE Full Description " + "description": "CROSS-ENROLL-GEORGIA GWINNETT COLLEGE" }, "UCGA3110": { "subject": "UCGA", "number": "3110", "name": "Cross Enroll-Ga St Univ ", - "description": " Full Description " + "description": "" }, "UCGA3210": { "subject": "UCGA", "number": "3210", "name": "Cross Enroll-Ga St Univ ", - "description": " Full Description " + "description": "" }, "UCGA3310": { "subject": "UCGA", "number": "3310", "name": "Cross Enroll-Ga St Univ ", - "description": " Full Description " + "description": "" }, "UCGA4001": { "subject": "UCGA", "number": "4001", "name": "Cross Enroll-Agnes Scott ", - "description": " Full Description " + "description": "" }, "UCGA4002": { "subject": "UCGA", "number": "4002", "name": "Cross Enroll-Atl Col Art ", - "description": " Full Description " + "description": "" }, "UCGA4003": { "subject": "UCGA", "number": "4003", "name": "Cross Enroll-AU Clark ", - "description": " Full Description " + "description": "" }, "UCGA4004": { "subject": "UCGA", "number": "4004", "name": "Cross Enrol-AU Morehouse ", - "description": " Full Description " + "description": "" }, "UCGA4005": { "subject": "UCGA", "number": "4005", "name": "Cross Enrl-AU Morris Brn ", - "description": " Full Description " + "description": "" }, "UCGA4006": { "subject": "UCGA", "number": "4006", "name": "Cross Enroll-AU Spelman ", - "description": " Full Description " + "description": "" }, "UCGA4007": { "subject": "UCGA", "number": "4007", "name": "Cross Enroll-Clayton ", - "description": " Full Description " + "description": "" }, "UCGA4008": { "subject": "UCGA", "number": "4008", "name": "Cross Enrol-Columbia Sem ", - "description": " Full Description " + "description": "" }, "UCGA4009": { "subject": "UCGA", "number": "4009", "name": "Cross Enroll-Emory Univ ", - "description": " Full Description " + "description": "" }, "UCGA4010": { "subject": "UCGA", "number": "4010", "name": "Cross Enroll-Ga St Univ ", - "description": " Full Description " + "description": "" }, "UCGA4011": { "subject": "UCGA", "number": "4011", "name": "Cross Enroll-Kennesaw ", - "description": " Full Description " + "description": "" }, "UCGA4012": { "subject": "UCGA", "number": "4012", "name": "Cross Enroll-Mercer Univ ", - "description": " Full Description " + "description": "" }, "UCGA4013": { "subject": "UCGA", "number": "4013", "name": "Cross Enroll-Oglethorpe ", - "description": " Full Description " + "description": "" }, "UCGA4014": { "subject": "UCGA", "number": "4014", "name": "Cross Enrol-Southern Poly ", - "description": " Full Description " + "description": "" }, "UCGA4015": { "subject": "UCGA", "number": "4015", "name": "Cross Enroll-Univ of Ga ", - "description": " Full Description " + "description": "" }, "UCGA4017": { "subject": "UCGA", "number": "4017", "name": "Cross Enrol-West Georgia ", - "description": " Full Description " + "description": "" }, "UCGA4018": { "subject": "UCGA", "number": "4018", "name": "Cross Enroll - Brenau ", - "description": " Full Description " + "description": "" }, "UCGA4019": { "subject": "UCGA", "number": "4019", "name": "Cross Enroll-Sav Col Art ", - "description": "CROSS ENROLL-SAVANNAH COLLEGE OF ART Full Description " + "description": "CROSS ENROLL-SAVANNAH COLLEGE OF ART" }, "UCGA4021": { "subject": "UCGA", "number": "4021", "name": "Cross Enroll-GaGwinnett ", - "description": "CROSS-ENROLL-GEORGIA GWINNETT COLLEGE Full Description " + "description": "CROSS-ENROLL-GEORGIA GWINNETT COLLEGE" }, "UCGA4210": { "subject": "UCGA", "number": "4210", "name": "Cross Enroll-Ga St Univ ", - "description": " Full Description " + "description": "" }, "UCGA4310": { "subject": "UCGA", "number": "4310", "name": "Cross Enroll-Ga St Univ ", - "description": " Full Description " + "description": "" }, "UCGA4410": { "subject": "UCGA", "number": "4410", "name": "Cross Enroll-Ga St Univ ", - "description": " Full Description " + "description": "" }, "UCGA4510": { "subject": "UCGA", "number": "4510", "name": "Cross Enroll-Ga St Univ ", - "description": " Full Description " + "description": "" }, "UCGA4610": { "subject": "UCGA", "number": "4610", "name": "Cross Enroll-Ga St Univ ", - "description": " Full Description " + "description": "" }, "UCGA4710": { "subject": "UCGA", "number": "4710", "name": "Cross Enroll-Ga St Univ ", - "description": " Full Description " + "description": "" }, "UCGA4810": { "subject": "UCGA", "number": "4810", "name": "Cross Enroll-Ga St Univ ", - "description": " Full Description " + "description": "" }, "UCGA4910": { "subject": "UCGA", "number": "4910", "name": "Cross Enroll-Ga St Univ ", - "description": " Full Description " + "description": "" }, "UCGA6001": { "subject": "UCGA", "number": "6001", "name": "Cross Enroll-Agnes Scott ", - "description": " Full Description " + "description": "" }, "UCGA6002": { "subject": "UCGA", "number": "6002", "name": "Cross Enroll-Atl Col Art ", - "description": " Full Description " + "description": "" }, "UCGA6003": { "subject": "UCGA", "number": "6003", "name": "Cross Enroll-AU Clark ", - "description": " Full Description " + "description": "" }, "UCGA6004": { "subject": "UCGA", "number": "6004", "name": "Cross Enrol-AU Morehouse ", - "description": " Full Description " + "description": "" }, "UCGA6005": { "subject": "UCGA", "number": "6005", "name": "Cross Enrl-AU Morris Brn ", - "description": " Full Description " + "description": "" }, "UCGA6006": { "subject": "UCGA", "number": "6006", "name": "Cross Enroll-AU Spelman ", - "description": " Full Description " + "description": "" }, "UCGA6007": { "subject": "UCGA", "number": "6007", "name": "Cross Enroll-Clayton ", - "description": " Full Description " + "description": "" }, "UCGA6008": { "subject": "UCGA", "number": "6008", "name": "Cross Enrol-Columbia Sem ", - "description": " Full Description " + "description": "" }, "UCGA6009": { "subject": "UCGA", "number": "6009", "name": "Cross Enroll-Emory Univ ", - "description": " Full Description " + "description": "" }, "UCGA6010": { "subject": "UCGA", "number": "6010", "name": "Cross Enroll-Ga St Univ ", - "description": " Full Description " + "description": "" }, "UCGA6011": { "subject": "UCGA", "number": "6011", "name": "Cross Enroll-Kennesaw ", - "description": " Full Description " + "description": "" }, "UCGA6012": { "subject": "UCGA", "number": "6012", "name": "Cross Enroll-Mercer Univ ", - "description": " Full Description " + "description": "" }, "UCGA6013": { "subject": "UCGA", "number": "6013", "name": "Cross Enroll-Oglethorpe ", - "description": " Full Description " + "description": "" }, "UCGA6014": { "subject": "UCGA", "number": "6014", "name": "Cross Enrl-Southern Poly ", - "description": " Full Description " + "description": "" }, "UCGA6015": { "subject": "UCGA", "number": "6015", "name": "Cross Enroll-Univ of Ga ", - "description": " Full Description " + "description": "" }, "UCGA6016": { "subject": "UCGA", "number": "6016", "name": "Cross Enroll-Paper Inst ", - "description": " Full Description " + "description": "" }, "UCGA6017": { "subject": "UCGA", "number": "6017", "name": "Cross Enrol-West Georgia ", - "description": " Full Description " + "description": "" }, "UCGA6018": { "subject": "UCGA", "number": "6018", "name": "Cross Enroll - Brenau ", - "description": " Full Description " + "description": "" }, "UCGA6019": { "subject": "UCGA", "number": "6019", "name": "Cross Enroll-Sav Col Art ", - "description": "CROSS ENROLL-SAVANNAH COLLEGE OF ART Full Description " + "description": "CROSS ENROLL-SAVANNAH COLLEGE OF ART" }, "UCGA6021": { "subject": "UCGA", "number": "6021", "name": "Cross Enroll-GaGwinnett ", - "description": "CROSS-ENROLL-GEORGIA GWINNETT COLLEGE Full Description " + "description": "CROSS-ENROLL-GEORGIA GWINNETT COLLEGE" } } \ No newline at end of file diff --git a/routes/index.js b/routes/index.js index 1ed2962..1fd8a12 100644 --- a/routes/index.js +++ b/routes/index.js @@ -1,25 +1,70 @@ var express = require('express'); +var app = require('../app.js'); var router = express.Router(); var coursesJson = require('../public/javascripts/courses.json'); var fs = require('fs'); var coursecritique = require('../modules/coursecritique.js'); var path = require('path'); +// define collection from the database +var coursesCollection = app.db.get('courses'); + + //index router.get('/', function(req, res, next) { //send simple html file res.sendFile('index.html'); }); +//routing for providing data from the database + + +//get all courses +router.get('/api/db/course', function(req, res) { + var promise = coursesCollection.find(); + promise.success(function (doc) { + res.send(doc); + }); +}); + +//get all courses of a specific subject +router.get('/api/db/course/:subject', function(req, res) { + var reqSubject = req.params.subject; + if (reqSubject != null) { + reqSubject = reqSubject.toUpperCase(); + var promise = coursesCollection.find({subject: reqSubject}, {fields: {'_id': false}}); + promise.success(function (doc) { + res.send(doc); + }); + } + +}); + +//get the specified course +router.get('/api/db/course/:subject/:number', function (req, res) { + var reqSubject = req.params.subject; + var reqNumber = req.params.number; + if(reqSubject != null && reqNumber != null) { + reqSubject = reqSubject.toUpperCase(); + console.log(reqNumber); + var promise = coursesCollection.findOne({subject: reqSubject, number: reqNumber}, {fields: {'_id': false}}); + promise.success(function (doc) { + res.send(doc); + }); + promise.on('error', function(err){console.log(err)}); + + } +}); + + + //routing for providing simple JSON data //get all courses router.get('/api/course', function(req, res) { - var courses = []; - for (var course in coursesJson) { - courses.push(coursesJson[course]); - } - res.json(courses); -}) + var courses = getAllCoursesFromJson(); + res.json(courses); +}); + //get all courses of a specific subject router.get('/api/course/:subject', function(req, res) { @@ -61,6 +106,24 @@ router.get('/api/coursecritique/:id', function (req, res) { res.send(result); }); } -}) +}); + + + +// helper query functions + +/** + * Returns an array of courses + */ +var getAllCoursesFromJson = function() { + var courses = []; + for (var course in coursesJson) { + courses.push(coursesJson[course]); + } + + return courses; +}; + + module.exports = router; \ No newline at end of file