12 Pages

sol_HW5_f01

Course: ECE 352, Fall 2008
School: Wisconsin
Rating:
 
 
 
 
 

Word Count: 1754

Document Preview

Sci ECE/Comp 352 Digital System Fundamentals Homework 5 Solutions - Fall 2001 Problem solutions 2000 Prentice Hall Problems are presented in the following order: Text Problems, Old Exam Problems. 1.(3-70) module decoder_2_to_4_st(B, E, D); input [1:0] B; input E; output [3:0] D; wire [1:0] not_A; not go(not_A[0], B[0]), g1(not_A[1], B[1]); nand g2(D[0], not_A[0], not_A[1], E), g3(D[1], B[0], not_A[1], E),...

Register Now

Unformatted Document Excerpt

Coursehero >> Wisconsin >> Wisconsin >> ECE 352

Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.

Course Hero has millions of student submitted documents similar to the one below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
Sci ECE/Comp 352 Digital System Fundamentals Homework 5 Solutions - Fall 2001 Problem solutions 2000 Prentice Hall Problems are presented in the following order: Text Problems, Old Exam Problems. 1.(3-70) module decoder_2_to_4_st(B, E, D); input [1:0] B; input E; output [3:0] D; wire [1:0] not_A; not go(not_A[0], B[0]), g1(not_A[1], B[1]); nand g2(D[0], not_A[0], not_A[1], E), g3(D[1], B[0], not_A[1], E), g4(D[2], not_A[0], B[1], E), g5(D[3], B[0],B[1], E); endmodule g5: NAND3 port map (A(0), A(1), E, D(3)); end structural_1; 2.(3-72*) X1 X2 X3 N5 X4 N1 N2 N3 N6 N4 F 3.(3-75) A B C D B C B D A B G F 1 Problem Solutions Homework 4 4.(3-81) / 4-bit Adder: Behavioral Verilog Description module adder_4_b_v(A, B, Sel, S, C4); input[3:0] A, B; input Sel; output[3:0] S; output C4; assign {C4, S} = Sel ? (A - B):(A + B); endmodule 5.(4-44) module problem_4_44 (S, D, Y) ; input [1:0] S ; input [3:0] D ; output Y; reg Y ; // (continued in the next column) always @(S or D) begin case (S) 2'b00 : Y <= D[0] ; 2'b01 : Y <= D[1] ; 2'b10 : Y <= D[2] ; 2'b11 : Y <= D[3] ; endcase; end endmodule 6.(4-47*) module JK_FF (J, K, CLK, Q) ; input J, K, CLK ; output Q; reg Q; // (continued in the next column) always @(negedge CLK) case (J) 0'b0: Q <= K ? 0: Q; 1'b1: Q <= K ? ~Q: 1; endcase endmodule 2 Problem Solutions Homework 3 7.(4-48) (See Errata: Delete the sentence "Use the D flip-flop ...") module seq_circuit (DIN, CLK, RESET, DOUT) ; input DIN, CLK, RESET ; output DOUT ; reg [2:0] state, next_state, DOUT; parameter A = 3'b000, B = 3'b001, C = 3'b010, D = 3'b011; parameter E = 3'b100, F = 3'b101, G = 3'b110, H = 3'b111; //State register process always @(posedge CLK or posedge RESET) begin if (RESET) //asynchronous RESET active High state <= A; else //use CLK rising edge state <= next_state; end //Next state function always @(DIN or state) begin case (state) A: next_state <= DIN ? C : B; B: next_state <= DIN ? E : D; C: next_state <= F; D: next_state <= G; E: next_state <= DIN ? H : G; F: next_state <= DIN ? H : G; G: next_state <= A; H: next_state <= A; endcase end //Output function always @(DIN or state) begin case (state) A: DOUT <= DIN ? 1'b0 : 1'b1; B: DOUT <= DIN ? 1'b0 : 1'b1; C: DOUT <= DIN ? 1'b1 : 1'b0; D: DOUT <= DIN ? 1'b1 : 1'b0; E: DOUT <= DIN ? 1'b0 : 1'b1; F: DOUT <= DIN ? 1'b0 : 1'b1; G: DOUT <= DIN ? 1'b1 : 1'b0; H: DOUT <= 1'b1; endcase end endmodule State Bus key 0 1 3 4 2 5 6 7 Notice that DOUT is equal to the inverse of the input at states 0, 1, 4, and 5, while it is equal to the input at states 2, 3, and 6. For state 7, DOUT equals 1. 8.(5-3)* 1000, 0100, 1010, 1101 0110, 1011, 1101, 1110 9.(5-6) * Shifts: A B C 0 0110 0011 0 1 1011 0001 0 2 0101 0000 1 3 0010 0000 1 4 1001 0000 0 3 Problem Solutions Homework 4 10.(5-7) The SO output to register B must be inverted and the initial carry must be set to 1, this forms the 2's complement of the contents of register B If A < B, the final value left in the carry flip-flop will be 0. If A < B, then the result will be in 2's complement form. 11. (5-8)* Replace each AND gate in Figure 5-6 with an AND gate with one additional input and connect this input to the following: S1 + S0 This will force the outputs of all the AND gates to zero, and, on the next clock edge, the register will be cleared if S1 is 0 and S0 is logic one. Also, replace each direct shift input with this equation: S1S0 This will stop the shift operation from interfering with the load parallel data operation. 12.(5-10)* a) 1000, 0100, 0010, 0001, 1000 b) # States = n 13.(5-13) Max Delay f= 1/T = = 16(2 ns) 1/32 ns = = 32 ns 31.14 MHz 14.(5-14) a) 4 b) 6 15.(5-19) CLK CTR 4 Count MAX = 2 + 2 + 2 + 2 = 8 gates CTR 4 Q0-Q3 EN Q0 Q1 Q2 Q3 CO Q4-Q7 CTR 4 EN Q0 Q1 Q2 Q3 CO Q8-Q11 CTR 4 EN Q0 Q1 Q2 Q3 CO Q12-Q15 EN Q0 Q1 Q2 Q3 CO 4 Problem Solutions Homework 3 16.(5-21)* S E J C K Q0 J C K Q1 J C K Q2 J C K Q3 Clock 17.(5-22) CLK 1 CTR 4 Load Count D0 Q0 D1 Q 1 D2 Q 2 D3 Q 3 CO CLK 1 CTR 4 Load Count D0 Q0 D1 Q 1 D2 Q 2 D3 Q 3 CO 18.(5-25) JQ8 JQ4 JQ2 JQ1 = = = = Q1Q2Q4 Q1Q2 Q1Q8 1 , KQ8 KQ4 KQ2 KQ1 = = = = Q1 Q1Q2 Q1 1 , , , 19.(6-1)* a) A = 13, D = 32 b) A = 18, D = 64 c) A = 25, D = 32 d) A = 32, D = 8 20.(6-2) a) 215 b) 221 c) 227 d) 232 21.(6-3)* (633)10 = (10 0111 1001)2, (2731) 10 = (0000 1010 1010 1011)2 5 Problem Solutions Homework 4 22.(6-4)* Number of bits in array = 215 * 23 = 218 = 29 * 29 Row Decoder size = 2 9 Column Decoder size = 215 - 29 = 26 a) Row Decoder = 9 to 512, AND gates = 29 = 512 Column Decoder = 6 to 64, AND gates = 26 = 64 Total AND gates required = 512 + 64 =576 b) (21000)10 = (0101 0010 0000 1000)2, Row = 328, Column = 8 23.(6-7) With 4-bit data, the RAM cell array is a square of 213 213. Hence number of address pins is 2 13 = 26. 24.(6-9)* a) 32 b) 20,15 c) 5, 5to32 25.(6-10) Replace the 64k x 8 RAMs in figure 6-13 with the following basic cell to realize a 256k x 32 RAM. Data 0 - 7 Address 0 - 15 64K x 8 RAM 8 16 Data Address CS R/W 8 16 Data 8 - 15 Data 16 - 23 Data 23 - 31 64K x 8 RAM Data Address CS R/W 8 16 64K x 8 RAM Data Address CS R/W 8 16 64K x 8 RAM Data Address CS R/W From Read/Write From Decoder Out Data 0 - 7 Out Data 8 - 15 Out Data 16 - 23 Out Data 23 - 31 26.+(a) (5) Draw the circuit diagram corresponding to the given Verilog description. module prob3_5a Y); (X, input[3:0] X; output[1:0] Y; wire[3:0] N; not N1 N2 and A1 A2 or O1 (N[0], (Y[0], (N[1], (N[2], (Y[1], X[3]), N[1]); N[0], X[2]), X[1], X[0]); N[0], N[2]); Circuit Diagram: X[0] A2 X[1] X[2] N1 X[3] N[0] N[1] O1 A1 Y[1] N[2] N2 Y[0] endmodule (b) (6) Draw the state diagram corre- 6 Problem Solutions Homework 3 sponding to the given Verilog description. module prob3_5b (X, RESET, State Diagram: CLK, Z); 0/0 input CLK, RESET, X; output Z; reg[1:0] state, next_state; RESET 00* reg Z; always@(posedge CLK or posedge RESET) 1/0 1/1 begin if (RESET) 1/0 state <= 2'b00; else 0/0 state <= next_state; 01* 10 end always@(X or state) 0/0 begin //Ignore the next statement. *Also, for states 00 and 01, the output can be next_state <= 2'bxx; Z = 1'bx; shown on the state and omitted on the arcs. case (state) 2'b00: begin Z = 1'b0; if (X == 1) next_state <= 2'b01; else next_state <= 2'b00; end 2'b01: begin Z = 1'b0; if (X == 1) next_state <= 2'b01; else next_state <= 2'b10; end 2'b10: begin if (X == 1) begin next_state <= 2'b00; Z = 1'b1; end else begin next_state <= 2'b10; Z = 1'b0; end end endcase end endmodule 7 Problem Solutions Homework 4 (c) (7) Complete the following Verilog dataflow description which is to compute: 1) the majority function M of A, B, and C, and 2) a selection function Y between A and B with C as the selection input. The majority function is 1 if two or more of A, B, and C have value 1; otherwise, it is 0. The select function is to form Y = A if C = 0 and Y = B if C = 1. module prob3-5c (A, B, C, M, Y); input A, B, C; output M, Y; assign M = A & B | A & C | B & C assign Y = C ? B : A // also, ~C & A | C & B endmodule 27.+ (a) The block diagram of a bidirectional shift register is given below. This register is controlled by a 2-bit code (SL, SR) with the operations performed listed in the table below. 7 SR In SL SR Clock Bidirectional Shift Register SHR 0 SL In SL 0 0 1 1 SR 0 1 0 1 Operation Hold Shift Right Shift Left Not allowed (don't care) Manually simulate the register for 8 clock cycles with the initial contents and inputs as given in the simulation table below. The results due to any given line of the table are to appear on the following line due to the positive clock edge triggering of the register. Shift Register Contents Clock Cycle 1 SL 0 SR 1 SL_In 0 SR_In 7 1 1 6 0 5 0 4 1 3 0 2 1 1 1 0 0 8 Problem Solutions Homework 3 Shift Register Contents Clock Cycle 2 3 4 5 6 7 8 SL 0 0 1 1 0 1 0 SR 0 1 0 0 1 0 1 SL_In 1 0 0 1 1 0 0 SR_In 7 1 1 1 0 0 1 1 1 1 1 1 1 0 1 1 28.+ A block diagram for a bit cell of the register given in part a) is shown below. Design the logic for the cell using a D flip-flop and sum-of-products (SOP) logic for D(i). 6 1 1 1 1 0 1 0 1 5 0 0 1 0 0 0 0 0 4 0 0 0 0 1 0 1 0 3 1 1 0 1 0 1 0 1 2 0 0 1 0 1 0 1 0 1 1 1 0 1 0 1 0 1 0 1 1 1 0 1 0 0 0 SHR(i + 1) SL SR CLOCK SHR Bit Cell SHR(i 1) SHR(i) Equation: D = SL SHR(i 1) + SR SHR(i + 1) + SL SR SHR(i) 9 Problem Solutions Homework 4 Implementation: SHR(i + 1) SL SR D SHR(i 1) CLOCK SHR Bit Cell SHR(i) 29.+ C a) Three positive edge-triggered flip-flops with asynchronous clear are shown. Connect the flipflops shown to form a ripple down counter (counts 0, 7,...

Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more. Course Hero has millions of course specific materials providing students with the best way to expand their education.

Below is a small sample set of documents:

Wisconsin - ECE - 352
Department of Electrical and Computer Engineering University of Wisconsin - Madison ECE/CS 352 Digital System FundamentalsQuiz #1Thursday, February 14, 2002, 7:15-8:30PM 1. (20 points) number representations and conversion (a) (4 points) ( C B A)1
Wisconsin - ECE - 352
University of Wisconsin - MadisonECE/Comp Sci 352 Digital Systems FundamentalsCharles R. Kime Section 2 Fall 2001Logic and Computer Design FundamentalsLecture 5 Registers &amp; Counters Part 2Charles Kime 2001 Prentice Hall, IncCounters Co
Wisconsin - ECE - 352
University of Wisconsin - MadisonECE/Comp Sci 352 Digital Systems FundamentalsCharles R. Kime Section 2 Fall 2001Logic and Computer Design FundamentalsChapter 2 Combinational Logic Circuits Part 7Charles Kime &amp; Thomas Kaminski 2001 Prenti
Wisconsin - ECE - 352
University of Wisconsin - MadisonECE/Comp Sci 352 Digital Systems FundamentalsCharles R. Kime Section 2 Fall 2001Logic and Computer Design FundamentalsLecture 6 Memories &amp; Programmable Logic Devices Part 1Charles Kime &amp; Tom Kaminski 2001
Wisconsin - ECE - 352
University of Wisconsin - MadisonECE/Comp Sci 352 Digital Systems FundamentalsKewal K. Saluja and Yu Hen Hu Spring 2002Overview of Chapter 6 Part 1: MemoriesLogic and Computer Design Fundamentals Memory Definitions Random Access Memory
Wisconsin - ECE - 352
University of Wisconsin - MadisonECE/Comp Sci 352 Digital Systems FundamentalsKewal K. Saluja and Yu Hen Hu Spring 2002Logic and Computer Design FundamentalsChapter 2 Part 1 Combinational Logic CircuitsOriginals by: Charles R. Kime and Tom K
Wisconsin - ECE - 352
ECE/CS 352 Digital Systems FundamentalsSpring 2001 Chapter 6 Part 2Tom Kaminski &amp; Charles R. KimeECE/CS 352 Digital System Fundamentals T. Kaminski &amp; C. Kime 1Overview of Chapter 6 Part 2 RAM Integrated Circuits! Dynamic RAM Array of R
Wisconsin - ECE - 352
ECE/CS 352 Digital Systems FundamentalsSpring 2001 Chapter 4 Part 1Tom Kaminski &amp; Charles R. KimeECE/CS 352 Digital System Fundamentals T. Kaminski &amp; C. Kime 1Sequential Circuits A Sequential circuit contains:Inputs Storage Elements Co
Wisconsin - ECE - 352
ECE/CS 352 Digital Systems FundamentalsSpring 2001 Chapter 6 Part 1Tom Kaminski &amp; Charles R. KimeECE/CS 352 Digital System Fundamentals T. Kaminski &amp; C. Kime 1Overview of Chapter 6 Memory Definitions Random Access Memory Function Operat
Wisconsin - ECE - 352
ECE / COMP SCI 352DIGITAL SYSTEMS FUNDAMENTALSSpring 2002-2003DESIGN PROJECT 1: Counter ModulesDue: Friday, March 15, 2003 (in class); 100 points (5% of course grade)In Project 2 (as a team of two students) you will be designing a digital stopw
Wisconsin - ENGR - 275
Technical Presentationsto to e me om llc o e c 5 e W W 75 27 D 2 PD EP EWhat is a Technical Presentation?Instructor: Steven Zwickel Phone (608) 262-5172 Fax (608) 265-4734 e-mail zwickel@engr.wisc.edu Office M1036e Engineering Centers Build
Wisconsin - ENGR - 397
Heads and Subheads Purpose Issues Generic or Descriptive? Styles for heads Types of Heads Numbering/Labeling headsPurposeDivide document up into smaller, more digestible chunks Act as navigational aids Enable readers to skip parts that dont
Wisconsin - ENGR - 155
ing om CaT ith w upsis heJob #1 Figuring Out What Your Professors/Supervisors WantThen, all you have to figure out is how to give it to them!2What kind of paper are you writing?Academic Writing20 Summary: shows prof you understood
Wisconsin - ENGR - 155
GettingStarted Meetingclassmates Assignmentsfornexttime Visitthecoursehomepagehttp:/ecow.engr.wisc.edu/cgibin/get/epd/155/zwickel/Introduction of class members Talk to one of your classmates and fill in the Interview Worksheet You will be ask
Wisconsin - ENGR - 275
AProposaltoEliminate FloodinginPennyAcresFortheRapidesParishPoliceJury ByFrankWillis,PE,PLS WillisandCompanyEngineeringandSurveying,LLC 804VersaillesBoulevard Alexandria,LA71303 March2006 CityofAlexandria,Louisiana,population55,00050residencesl
Wisconsin - ENGR - 155
ri pa re Pto ngite r W Why is writing so hard? Why is writing so painful?Why is writing so hard? Complex processTakes years to learn Requires mental focus and concentration Need to follow lots of rules2Why is writing so painful? 1} Ass
Wisconsin - EPD - 155
Fusion ReactorsA Comparison of the Three Main Types of Fusion Reactorsxxxxxx EPD 155Page 1 of 12Fusion ReactorsIndexBackground Tokomak Reactors Basic operation Advantages Disadvantages Laser induced fusion reactors Basic Operation Advantag
Wisconsin - ENGR - 397
Recommended Reading Compiled by James R. Black, University of WisconsinMadison Engineering Professional Development 397 28 April 2008 Adams, Scott. The Dilbert Principle: A Cubicle's-Eye View of Bosses, Meetings, Management Fads, and other Workplace
Wisconsin - CS - 701
Summary of SU Algorithmif T is a node (variable or literal) load T into R1 = head(RL) else (T is a binary operator) Let R1 = head(RL) Let R2 = second(RL) if RN(T.left) &gt;= Size(RL) and RN(T.right) &gt;= Size(RL) (A spill is unavoidable) TreeCG(T.left, R
Rhode Island College - CS - 201
CSci 201: Computer Programming ICreating FoldersPart I 1. Login to your student NT account.2.24 Jan 2006Double left-click on the desktop folder My Computer. If there is no &quot;My Computer&quot; on the desktop, click on Start, find My Computer, right-
Rhode Island College - CS - 101
Csci 101 History Assignment:Babbage and Lady Lovelace Twenty (20) points.Due: 30 November 2000, Thursday.You are to write a report about two people, Charles Babbage and Ada Augusta Byron (King), Countess of Lovelace, daughter of poet Lord Byron
Wisconsin - PWANG - 6
Wisconsin - EPS - 550
EPS 550 Spring 2008 Response 4J. Edward Connery KohlbergTo the mind of Lawrence Kohlberg, morality takes shape in the evaluation of situations in the context of values and making decisions or taking actions. His view makes explicit the differenc
Wisconsin - FIN - 745
Finance 745 Quiz 2Name:__1. If the Euro is selling at a premium relative to the USD in the forward market, is the forward price of USD /EUR larger or smaller than the spot price of the USD /EUR? a. b. c. d. larger smaller indeterminate the same
Wisconsin - SOC - 674
Spatial Data: An IntroductionKatherine CurtisGuest Lecture to SOC 674: Elementary Demographic Techniques November 25th, 2008WhatWhyWhoHow What are spatial data?Data where, in addition to attribute values relating to the primary phenome
Wisconsin - ECE - 532
ECE 532 Crystallography Project Final Goals and ObjectivesDue Sunday, May 1, 2005The nal project consists of two challenge problems. Challenge 1. Two-Class Problem Class 0 = crystal data types 1,2,3 Class 1 = crystal data types 7,8,9 Design a cla
Wisconsin - JK - 15
Formal/Semantics Non-veridical uses of Japanese expressions of temporal precedence This paper discusses two Japanese expressions for asserting that an eventuality a precedes another eventuality b: B mae ni A and B-nai uchi ni A (where A and B are cla
Wisconsin - JK - 15
&quot;Functional/syntax and semantics.&quot; A Contrastive Study of Resultative Constructions in Korean and Japanese This paper investigates a contrastive study of both mono- and bi-clausal resultative constructions (&quot;RC&quot;) in Korean and Japanese. Resultative c
Wisconsin - JK - 15
JK15 Pre-conference Workshop October 6th, 2005Japanese Data 2: Interview[Homestay30105](The interviewer, a graduate assistant, is asking a Japanese woman who has hosted many international students, about her experience of being a host mother.)1
Wisconsin - JK - 15
Functional/ Phonology &amp; Phonetics &quot;Acoustic study of Korean vowel devoicing depending on the preceding consonants and intrinsic/ extrinsic vowel durations&quot; A well-known characteristic of Japanese in many dialects is the devoicing of high vowels, /i,
Wisconsin - JK - 15
Formal/Syntax Scrambling, resumption and scope of Neg It has been observed that the scope relation between Neg and QP is ambiguous (Kuno 1980) (1). The ambiguity continues to obtain in the 'scrambled' counterparts (2). However, the ambiguity disappea
Wisconsin - JK - 15
Functional/Discourse The Korean topic marker nun revisited: nun as a tying devicePrevious research on `topic' has touched on a variety of functional and interactional properties of topicality which shed light on the discourse function of the Korean
Wisconsin - JK - 15
Formal/Semantics-PragmaticsTemporal Order in Japanese Toki-ni Sentences: An Event-Structural AccountThis is an exploratory study of a proper characterization of temporal inferences of toki-ni &quot;when&quot; (lit. &quot;time-at&quot;) in Japanese. To capture the dis
Wisconsin - JK - 15
Formal/phonology,phonetics On neutral vowels in Korean vowel harmony Korean exhibits an interesting vowel harmony as in (1) (Sohn 1999). It is a (nonautomatic) assimilatory process whereby one vowel becomes harmonious with another one in the neighbor
Wisconsin - JK - 15
Psycholinguistics/Sentence Processing Gap-filling vs. filling gaps: Event-related brain indices of subject and object relative clauses in Japanese Using event-related brain potentials (ERPs), we investigated the processing of Japanese subject versus
Wisconsin - CATJ - 2008
The 20th Conference of the Central Association of Teachers of JapaneseMay31June1,2008 UniversityofWisconsinMadisonCATJ 20Papersubmissionform1. Presenter(s)Name in English Name in Japanese Affiliation/Name of the school Mailing Address Email ad
Wisconsin - CATJ - 2008
The Style Shift between Boku &amp; OreKenji Endo University of Wisconsin - Madison1Personal E-mail Same social context Same speaker/writer Same addressee However.,Style shift between boku and ore2Research Question What do people with the st
Wisconsin - CATJ - 2008
Advanced language education in the US New media literacies and the 21st century language learnerCATJ 2008 | University of Wisconsin May 30th, 2008 Steven L. Thorne Department of Applied Linguistics Center for Advanced Language Proficiency Education
Wisconsin - CATJ - 2008
Noriko HanabusaUniversity of Notre DameNao Hayashi OtsukaOak Park and River Forest High SchoolMotivationHow can we foster learners oral proficiency towards a more advanced level?Motivation (Cont.)Limited class time - curriculum pressure
Wisconsin - JK - 15
Functional/Acquisition The acquisition of noun-modifying clauses in Japanese: A comparison with Korean Although many studies investigated the acquisition of relative clauses (RCs) of postnomial RC languages, not many studies investigated prenominal R
Wisconsin - ECON - 101
Econ 101: Prof. KellyReview List First MidtermFall 2003Review List First Midterm This handout is meant to be just an outline of the material covered for the first midterm. All the topics that are highlighted here should be in your notebook an
Wisconsin - ME - 232
ME232 CAM HandoutBackground Information: A cam is a component on which a particular profile has been machined. The profile of the cam imparts (causes) a follower to move in a particular way. This can be seen if we examine the diagram below. As the s
Wisconsin - ME - 232
ME232 Constraint ExerciseAnswer Sheet Name: Section:1) What is the total number of Degrees of Freedom (DOF) which exist for this sketch before any constraints are applied?2) What number of DOF does constraining this point account for?3) Number
Wisconsin - ME - 232
Unigraphics Wireframe Construction TutorialThis tutorial will step you through the process to construct a wireframe model of the geometry depicted above. The purpose of this exercise to is help familiarize you with the commands and menus of the Uni
Wisconsin - ME - 232
UG Exercise #6This will be a short exercise which will utilize the EXTRUDE and REVOLVE commands to create solid geometry. Start a new file and name it &quot;exercise6&quot;. Set the APPLICATION to MODELING. Go to PREFERENCES &gt; WORK PLANE and enable and displa
Wisconsin - ME - 232
ME232 Bi-Linear Surface ProblemGiven: A bi-linear surface defined by the following four points;Point AX = 4.500 Y = 0.875 Z = 0.000 X = 0.000 Y = 1.000 Z = 8.000 X = 6.500 Y = 4.375 Z = 0.000 X = 4.000 Y = 8.000 Z = 8.000Point BPoint CPoin
Wisconsin - ME - 232
ME232 Constraint AssignmentExercise Instructions: This exercise is intended to enhance your understanding of the application and effects of geometric and dimensional constraints in a sketcher, and to give you experience in the use of modeling system
Wisconsin - ME - 232
ME232 Constraint AssignmentName SectionExtruding the cross-section below created the solid shown at right. A constraint-based sketcher system was used to create the cross-section. Follow the instructions given and answer the following. 1) What is
Wisconsin - ME - 232
ME232 Geometric Modeling for Engineering Applications Parametric Line ProblemGiven: line AB defined by end points A (2,6,0) and B (12,2,0) and line CD defined by endpoints C (1,1,0) and D (9,7,0)Line CD is to be TRIMMED with respect to line AB (i
Wisconsin - ME - 232
Me232 Constructive Solid Geometry ProblemMany components created in mechanical design include fillet and round features. These may be the result of fabrication process (casting, molding, etc.), used to reduce stress concentrations, or to enhance fl
Wisconsin - ME - 232
Transformations ExerciseThis exercise will require you to perform mathematical calculations of transformations using matrix algebra and to verify them using the Unigraphics system. If you need to review the mathematical procedures of using matrices,
Wisconsin - ME - 232
ME232 Intersection of Two Surfaces ProblemGiven: Two interesecting bi-linear surfaces P(u,v) and Q (s,t) defined by their vertices (as shown with coordinates listed below) and with parameterization directions as indicated on the figure.Surface P P
Wisconsin - ME - 232
ME 232 Visualization of Solids Through Boolean OperationsThe Boolean (regularized) operations of Union, Difference and Intersection are integral components of Set Theory and common to solid modeling. An understanding of the operations is essential t
Wisconsin - ME - 232
Wisconsin - ME - 232
ME232Assignment #1Adjustable-pitch Propeller BladeReproductions of the section profiles: Given on the following pagers are representations of the section profiles shown on the propeller blade drawing. The order of the representations are from l
Wisconsin - ME - 232
ME232 Bracket Design ProblemAs part of your bracket design you are required to detail the dependencies and relationships between features and constraints that you have created in designing this component. To do this you are to create a Feature Depen
Wisconsin - ME - 232
ME232 Cam Design ProblemThe motion (opening and closing) of a valve is to be controlled by a cam and knife-edge follower. The cam is rotating at 1 revolution per minute. The total displacement of the valve is 1.5 inches. The base diameter of the cam
Wisconsin - ME - 232
ME232 Assignment #1 Surface Model of an Adjustable Pitch PropellerAssignment Suggestions Creating the Curves Create the curves in the absolute CS and oriented to absolute X. The axis of the blade will then extend in the Z-axis. Rotate the curves to
Wisconsin - PCW - 2007
Signed ClassAds and Restricted DelegationI an D. Alde an rm C pute S nce De om r cie s partm nt e Unive rsity of Wisconsin-Madison alde an@ rm cs.wisc.e du http:/www.cs.wisc.e du/condorC ondor We k 2007 ewww.cs.wisc.edu/condor2Security Issue
Wisconsin - ENGR - 397
Just a collection, no particular order. http:/www.civilproject.com/ http:/www.nsf.gov/home/grants/grants_prep.htm http:/www.pprc.org/pprc/rfp/archives/epasocio.html http:/fdncenter.org/pnd/rfp/ http:/www.pprc.org/pprc/rfp/rfp.html http:/www.dot.state
Wisconsin - ENGR - 397
Workplace Communication Presentation (WCP) JobsheetAssignment: You and your partner(s) will deliver a 10-15 minute interactive presentation on an approved topic related to a workplace communication or writing development issue. All partners should p