Está en la página 1de 11

MICROELECTRONICA

ACTIVIDAD DE APRENDIZAJE
FASE 3

JORGE CARDONA QUINTERO


CC 94473399

TUTOR DEL CURSO


LUIS ALBERTO SUAREZ

UNIVERSIDAD NACIONAL ABIERTA Y A DISTANCIA


PROGRAMA DE INGENIERA EN ELECTRNICA
ESCUELA DE CIENCIAS BSICAS TECNOLOGA E INGENIERA
ECBTI
CALI, MAYO 2016
TABLA RELACIONADA AL CASO ESTUDIO:

estados de entrada al led led


sensor
ventilador 1 ventilador 2 temperatura temperatura
temperatura circuito digital diseado
promedio advertencia
10 0 0 0 0 0 0 0 0
50 0 0 0 1 1 0 1 1
15 0 0 1 0 0 1 0 0
55 0 0 1 1 0 1 1 1
20 0 1 0 0 1 0 0 0
60 0 1 0 1 1 1 1 1
25 0 1 1 0 0 1 1 0
x 0 1 1 1 x x x x
30 1 0 0 0 1 0 1 0
x 1 0 0 1 x x x x
35 1 0 1 0 1 1 1 1
x 1 0 1 1 x x x x
40 1 1 0 0 0 0 1 1
x 1 1 0 1 x x x x
45 1 1 1 0 0 1 0 1
x 1 1 1 1 x x x x

Las x indican condiciones libres.

Mapa de karnaugh del ventilador 1:


S1= (A+B+D)*(~A+~B)*(A+~C)
Mapa de karnaugh del ventilador 2:
S2= (C+D)*(B+C)

Led de temperatura promedio:


S3= (A+C+D)*(A+B+D)*(~A+~B+~C)

Led de temperatura de advertencia:


S4= (A+D)*(B+C+D)
CIRCUITO COMBINACIONAL:
SENSOR ESTADO
TEMPERATURA C

10

15
20

25
30

35
40

45
50

55
60

module MICRO3_FSE3( A,B,C,D,out3,out2,out1,out4);


input A,B,C,D;
output out3,out2,out1,out4;
wire w7,w8,w11,w12,w13,w14,w15,w16;
wire w17,w18,w19,w20,w22,w23;
not #(17) inv_1(w7,A);
not #(17) inv_2(w8,B);
or #(16) or2_3(w11,A,D);
and #(16) and3_4(out3,w12,w13,w14);
or #(19) or3_5(w14,w7,w8,w15);
or #(19) or3_6(w13,A,B,D);
or #(19) or3_7(w12,A,C,D);
and #(16) and2_8(out2,w16,w17);
or #(16) or2_9(w16,C,B);
or #(16) or2_10(w17,D,C);
or #(16) or2_11(w18,A,w15);
or #(16) or2_12(w19,w7,w8);
or #(19) or3_13(w20,B,C,D);
and #(16) and2_14(out4,w20,w11);
or #(19) or3_15(w22,A,B,D);
not #(17) inv_16(w15,C);
and #(9) and3_17(w23,w22,w19,w18);
endmodule
Circuito como lo muestra microwind:

También podría gustarte