Chapter 14--simulations Flashcards

1
Q

continuous or discrete sim? weather forecast

A

continuous

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

continuous or discrete sim? stock portfolio modeling

A

continuous

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

continuous or discrete sim? seismic exploration

A

discrete

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

continuous or discrete sim? hurricane tracking

A

continuous

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

continuous or discrete sim? predicting how many tellers a new back needs

A

discrete

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

continuous or discrete sim? `determining the number of waiting rooms for a doctor’s office

A

discrete

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

continuous or discrete sim? gas exploration

A

discrete

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

continuous or discrete sim? air-chemistry propogation

A

continuous

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

True/False. Simple systems are best suited to being simulated

A

false

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

True/False. Complex systems are dynamic, interactive, and complicated.

A

true

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

True/False. a model is an abstraction of a real system.

A

true

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

True/False. the representation of a model may be concrete or abstract.

A

true

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

True/False. in computer simulations, the models are concrete

A

false

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

True/False. the more characteristics or features represented in a model, the better.

A

false

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

True/False. continuous simulations are represented by entities, attributes, and events.

A

false. that’s actually discrete simulations

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

True/False. discrete event simulations are represented by partial differential equations.

A

false. that’s actually continuous simulations.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

True/False. CAD stands for computer-aided drafting.

A

false. computer-aided design

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

True/False. a time-driven simulation can be thought of as a big loop that executes a set of rules for each value of the clock.

A

true

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

True/False. a model whose realization is within a computer program is an abstract model.

A

true

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

True/False. a concrete model can be realized within a computer program

A

false

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

True/False. Red is the specular highlight on a green plastic ball if the light source is red.

A

false

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

True/False. A commonly-used illumination model in computer graphics was developed in the 1970s.

A

true. 1971

23
Q

True/False. Ambient light, diffuse reflection, and specular reflection are three components of a common shading model for computer graphics.

A

true

24
Q

True/False. Computer graphics relies on research from other scientific fields for equations used in image creation.

A

true

25
Q

What is the essence of constructing a model?

A

using the least possible number of all the elements of the thing being modeled to construct the model. using only those elements that are essential to modeling the behavior you are studying.

26
Q

Name two types of simulations and distinguish between them.

A

discrete event and continuous. Discrete-event sims use objects, attributes, and events to model situations that have a clear beginning and end. Continuous sims use partial differential equations to model events without clear beginnings/endings.

27
Q

what defines the interactions among entities in a discrete-event simulation?

A

the rules governing that define the results of the events in the simulation, and the entities that are chosen

28
Q

what is the relationship between object-oriented design and model building?

A

in discrete-event simulation, object-oriented design is used by creating objects/entities and then determining the rules that define the results of the events.

29
Q

Define the goal of a queuing system.

A

to utilize the servers as fully as possible while keeping the wait time to a minimum.

30
Q

what are the 4 pieces of information needed to build a queuing system?

A
  1. the number of events and how they affect the system so we can determine the rules of entity interaction 2. the number of servers 3. the distribution of arrival times so we can determine if an entity enters the system 4. the expected service time so we can determine the duration of an event
31
Q

What part does a random number generator play in queuing sims?

A

It helps model the element of chance in a simulation.

32
Q

Distinguish between a FIFO queue and a priority queue.

A

a FIFO just serves the next customer in line. A priority queue prioritizes customers based on some attribute of the customer, like level of need.

33
Q

What did SIMULA contribute to object-oriented programming methodology?

A

It contributed the concepts of classes, objects, inheritance, and polymorphism.

34
Q

In general, meteorological models are based on the time-dependent equations of what fields?

A

thermodynamics and fluid dynamics.

35
Q

Why is there more than 1 weather prediction model?

A

because each model makes certain assumptions, and none of the models’ sets of assumptions are completely correct. Each is wrong sometimes, and right sometimes. Multiple models are used simultaneously to reduce the chances of error.

36
Q

What are specialized meteorological models, and how are they used?

A

they are for very specific situations, like the weather in a certain place, and they are used to predict the weather for applications like air pollution control, aircraft fuel usage prediction, and others.

37
Q

What are seismic models used for?

A

to predict earthquakes, to help build more accurate models of the earth’s interior, and to help find geological deposits of minerals and fossil fuels.

38
Q

What do simulations and spreadsheets have in common?

A

discrete-event simulations use objects/entities and attributes/fields.

39
Q

How might you use a priority queue to simulate a stack?

A

You would set up the priority queue as the opposite of a FIFO queue, so that first priority automatically goes to the last object that entered the queue

40
Q

How might you use a priority queue to simulate a FIFO queue?

A

You would set the priority to automatically go to the object that has been waiting in the queue the longest.

41
Q

What is an award that Ivan Sutherland won, what is he most famous for, and what did this give rise to?

A

The Smithsonian Computer World Award, Sketchpad, which used a lightpen, and it was the first GUI, and this gave rise to CAD

42
Q

What is Ivan Sutherland most proud of?

A

His 4 grandchildren

43
Q

What award did Herbert Simon win?

A

The Turing award, for his work in human problem solving

44
Q

What word did Herbert Simon coin, and what does it mean?

A

Satisfice

45
Q

Define Pareto’s law.

A

In any group of entities, there are a trivial many and an important few

46
Q

Define “illumination model”.

A

The simulation of light interacting at one point on am object.

47
Q

Define “shading”.

A

The process of using an illumination model to determine the appearance of an entire object.

48
Q

Name the three main components of shading.

A

Ambient light, diffuse reflections, and specular reflections.

49
Q

What is ray tracing, and how is it different, and what is it different from?

A

Different from the older shading method. It uses the concept of lines drawn from the viewer location to the rendered object, and can display transparency and reflectivity, even simultaneously.

50
Q

What is radiosity, and what does it handle well?

A

It is a shading technique that can handle color bleeding. It treats light as energy.

51
Q

What is midpoint subdivision?

A

A fractal model that uses the dividing of triangles at their midpoints to model natural environments.

52
Q

Define “erosion model”.

A

It is used to model how streams erode natural environments.

53
Q

Define “catenary curve”.

A

How rope/cloth drapes between two suspended points. Used in rendering cloth in simulations