返回列表 发帖
像你这种出去过的人,才能感觉到国内的好与不好吧
我们呢,时间长了,已经麻木了,呵呵
所以,出去转转也不是坏事
心情不好时就来这里发发牢骚也挺好的
孤标傲视谐谁隐,一样花开为底迟!

TOP

在韩国的最后一次旅游结束了。
很没意思,连最起码的饭都没吃饱。
待到你智慧 都酝酿成红酒
仍可一醉自救

TOP

如果一切顺利的话,两个月后的22号就是回家的那一天。
从昨天晚上开始,下了一整天的秋雨,很有可能是最后一场雨了吧。
刚来这下的第一场雨的时候,是生活最困难的时候,无论是物质还是精神上的,心很凉,没人去说说,也没什么好说的,所以下雨的时候莫名奇妙地感到凄凉,在qq签名里写了 韩国的第一场雨 一个这里的留学生回复,你还会迎来第一场雪的,终于感到一点温暖,虽然我连她的名字都不清楚,当时却觉得似一根稻草,明知抓了没用,还是抓了,安慰自己等到第一场雪来的时候,一切都会好起来的。
雪还没有来,我却在不知不觉中改变,为了适应,不得不变得更坚强冷静,或者说变得更自闭。
现在已经习惯,习惯上课囫囵抄笔记,下课在阅览室一坐就是半天,困得时候趴一趴,闷的时候看看金庸小说,看看教材,然后再去教室或者食堂。习惯饥饿,习惯自娱自乐,习惯这日复一日被这狗日的生活日的生活。
在一个没有朋友,没有依靠的城市里,我会微笑行走。
待到你智慧 都酝酿成红酒
仍可一醉自救

TOP

回路理论的报告今天发表了,我们组的不是我上去说,但是我的部分是英文的,比较特殊,当然内容也比较突出,基本是对他们秒杀,哈哈,嚣张一下。
这周五有个小旅游,就一天,和全校的所有交换生一起,在忠北道内游荡一下。
课程好难啊,不会就靠猜,或者叫做假设,大胆假设,科学验证,我只做到前半部了。
明天交一下网费。
待到你智慧 都酝酿成红酒
仍可一醉自救

TOP

考完了两科 月末还有两科。
好想早点回去啊,天天总是饿,除了面包饼干也没有什么肉夹馍之类的买,实在是不乐吃了,午饭晚饭却总是定量供给,别说不好吃,根本就吃不饱,常年饥饿,唉。
过得好辛苦,想回家了。
待到你智慧 都酝酿成红酒
仍可一醉自救

TOP

平常也是12点多 为什么学习到12点多就那么困呢?? 惭愧得很啊。
报告写的差不多了,四个人的活,我觉得我做到这份上,和我一个人做差不多了,不过吃亏就是占便宜
我做了不少工作 最少熟练了两个软件,还练习了英语编纂论文的两下子,总归也是不错的啊。
最近越来越馋了,一个大老爷们怎么还没事惦记吃什么? 怪丢人的,要控制控制再控制,软炸里脊不好吃~~ 哈哈。
饿了,吃两块饼干,然后接着写报告吧~ A ZA~~~~
待到你智慧 都酝酿成红酒
仍可一醉自救

TOP

期中了,忙了很多。
发现周末总是起不来,吃得也是得过且过,吃饱就好了,反正也是过的糊里糊涂。
飞机票还没定完,不过也应该没什么意外了。
下个礼拜考试,过了下个礼拜,就算是过完了期中了。
不知道什么时候开始,喜怒哀乐已经变的不那么明显了,这一年还没过完,就感觉变了很多。
不过一切都在向好的方向发展~~
待到你智慧 都酝酿成红酒
仍可一醉自救

TOP

报告备份
P2-24
A)
LIBRARY IEEE;
USE IEEE.STD_LOGIC_1164.ALL;

ENTITY four_input_and_gate is
port( w,x,y,z: in std_logic;
f: out std_logic);
end four_input_and_gate;

architecture dataflow of four_input_and_gate is

signal p: std_logic_vector(1 downto 0);
begin p(0)<=w and x;
p(1)<=p(0) and y;
f<=p(1) and z;
end dataflow;




B)
LIBRARY IEEE;
USE IEEE.STD_LOGIC_1164.ALL;

ENTITY four_input_nand_gate is
port( w,x,y,z: in std_logic;
f: out std_logic);
end four_input_nand_gate;

architecture dataflow of four_input_nand_gate is

signal p: std_logic_vector(2 downto 0);
begin p(0)<=w and x;
p(1)<=p(0) and y;
p(2)<=p(1) and z;
f<=not p(2);

end dataflow;

C)
LIBRARY IEEE;
USE IEEE.STD_LOGIC_1164.ALL;

ENTITY four_input_nor_gate is
port( w,x,y,z: in std_logic;
f: out std_logic);
end entity;

architecture dataflow of four_input_nor_gate is

signal p: std_logic_vector(2 downto 0);
begin p(0)<=w or x;
p(1)<=p(0) or y;
p(2)<=p(1) or z;
f<=not p(2);
end dataflow;

D)
LIBRARY IEEE;
USE IEEE.STD_LOGIC_1164.ALL;

ENTITY four_input_xor_gate is
port( w,x,y,z: in std_logic;
f: out std_logic);
end entity;

architecture dataflow of four_input_xor_gate is

signal p: std_logic_vector(1 downto 0);
begin p(0)<=w xor x;
p(1)<=p(0) xor y;
f<=p(1) xor z;

end dataflow;

E)
LIBRARY IEEE;
USE IEEE.STD_LOGIC_1164.ALL;

ENTITY four_input_xnor_gate is
port( w,x,y,z: in std_logic;
f: out std_logic);
end entity;

architecture dataflow of four_input_xnor_gate is

signal p: std_logic_vector(1 downto 0);
begin p(0)<=w xnor x;
p(1)<=p(0) xnor y;
f<=p(1) xnor z;

end dataflow;

F)
LIBRARY IEEE;
USE IEEE.STD_LOGIC_1164.ALL;

ENTITY five_input_xor_gate is
port( five_input: in std_logic_vector(4 downto 0);
f: out std_logic);
end entity;

architecture dataflow of five_input_xor_gate is

signal p: std_logic_vector(2 downto 0);
begin
p(0)<=five_input(0) xor five_input(1);
p(1)<=p(0) xor five_input(2);
p(2)<=p(1) xor five_input(3);
f<=p(2) xor five_input(4);

end dataflow;

G)
LIBRARY IEEE;
USE IEEE.STD_LOGIC_1164.ALL;

ENTITY five_input_xnor_gate is
port( five_input: in std_logic_vector(4 downto 0);
f: out std_logic);
end entity;

architecture dataflow of five_input_xnor_gate is

signal p: std_logic_vector(2 downto 0);
begin
p(0)<=five_input(0) xnor five_input(1);
p(1)<=p(0) xnor five_input(2);
p(2)<=p(1) xnor five_input(3);
f<=p(2) xnor five_input(4);

end dataflow;

P3_35
A)
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;

entity func is
port(s: in std_logic_vector(2 downto 0);
f: out std_logic
);
end func;

architecture behavior of func is

begin
process(s)
begin
case s is
when"000" => f<='1';
when"001" => f<='1';
when "011"=> f<='1';
when others => f<='0';
end case;
end process;
end behavior;

B)
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;

entity func is
port(s: in std_logic_vector(3 downto 0);
f: out std_logic
);
end func;

architecture behavior of func is

begin
process(s)
begin
case s is
when"0000" => f<='1';
when"0001" => f<='1';
when "0011"=> f<='1';
when others => f<='0';
end case;
end process;
end behavior;

P4_34
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;

entity multiplier is
port(m: in std_logic_vector(3 downto 0);
q: in std_logic_vector(3 downto 0);
p: out std_logic_vector(7 downto 0));
end multiplier;

architecture behavior of multiplier is
signal s1: std_logic_vector(3 downto 0);
signal s2: std_logic_vector(4 downto 0);
signal s3: std_logic_vector(5 downto 0);
signal s4: std_logic_vector(6 downto 0);
begin
s1<=m when q(0)='1' else "0000";
s2<=m&'0'when q(1)='1' else "00000";
s3<=m&'0'&'0'when q(2)='1' else "000000";
s4<=m&'0'&'0'&'0'when q(3)='1' else "0000000";
p<=s1+s2+s3+s4;

end behavior;

P4_35
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;

entity shifter is
port
(s: in std_logic_vector(1 downto 0);
four_in: in std_logic_vector(3 downto 0);
four_out: out std_logic_vector(3 downto 0)
);
end shifter;

architecture behavior of shifter is
begin
process(s,four_in)
begin
case s is
when "00"=> four_out<=four_in;
when "01"=> four_out<=four_in(0)&four_in(3 downto 1);
when "10"=> four_out<=four_in(1)&four_in(0)&four_in(3 downto 2);
when others=> four_out<=four_in(2)&four_in(1)&four_in(0)&four_in(3);
end case;
end process;
end behavior;
待到你智慧 都酝酿成红酒
仍可一醉自救

TOP

报告备份

#include <iostream>
using namespace std;
double POWER;
const double R1=26.9;
const double R2=53.8;
const double R3=134.2;
const double Vrms= 220;
signed int select;
double function_off()
{ return POWER=0;
};

double function_weak(double p,double vrms, double r1, double r2)
{ p=vrms*vrms/(r1+r2);
return p;
};

double function_normal(double p,double vrms,double r2)
{ p=vrms*vrms/r2;
return p;
};

double function_strong(double p,double vrms, double r1, double r2,double r3)
{p=vrms*vrms/((r1+r3)*r2/(r1+r2+r3));
return p;
};


int main()
{ while(select!=4)
{cout<<" Select the switch"<<endl;
  cout<<" 0. off  1. weak  2. normal  3. strong  4. close"<<endl;
cin>>select;

switch(select)
{case 0:
     cout<<"The switch is off and the power is"<<" "<<function_off()<<"w"<<endl<<endl; break;
case 1:
         cout<<"The wind is weak and the power is"<<" "<<function_weak(POWER,Vrms,R1,R2)<<"w."<<endl<<endl; break;
case 2:
         cout<<"The wind is normal and the power is"<<" "<<function_normal(POWER,Vrms,R2)<<"w."<<endl<<endl;; break;
case 3:
         cout<<"The wind is strong and the power is"<<" "<<function_strong(POWER,Vrms,R1,R2,R3)<<"w."<<endl<<endl; break;
case 4:
         cout<<"You have closed the hiredrier."<<endl<<endl; break;
default:
         cout<<"The range or select is from 0 to 4"<<endl<<endl; break;
}
}
}

电路图

[ 本帖最后由 我是愤怒! 于 2008-10-12 15:32 编辑 ]

未命名.JPG (137.66 KB)

未命名.JPG

待到你智慧 都酝酿成红酒
仍可一醉自救

TOP

通信工程有作业了,明天写一下,还有英语的作业,突然多了。
今天认识了专门帮助我的韩国人,周三准备一起吃个午饭。
不过我都开始定回家的飞机票了,才出现这种项目,比较无语,聊胜于无吧,终究不是坏消息。
预计22号的票,希望如此了。
待到你智慧 都酝酿成红酒
仍可一醉自救

TOP

返回列表