bar
压强单位1巴(bar)=100,000帕(Pa)=10牛顿/平方厘米=0.1MPa
是压强的单位,早先气象学中常用毫巴,现在改用等值的国际单位百帕。
1帕是1帕斯卡的简称,就是一平方米受到一牛顿的压力。
在工程上仍在沿用公斤力这个单位,1公斤力等于9.80665牛顿,由此得到工程大气压:
1工程大气压=1公斤力/平方厘米=0.967841大气压=98066.5帕斯卡
毫米汞柱也是一种常用的压强单位,由1毫米汞柱产生的压力定义的压强单位为托(torr)。
1托=1毫米汞柱=133.32帕斯卡
1大气压=760托
场所昵称“bar”是英语单词,通常中文叫做‘吧’,进入汉语后,把“wine bar”翻译成“酒吧”, 又把“coffee bar”翻译成“咖啡吧”, 现在又出现了“网吧、陶吧”等新词。 如: 酒吧(beer bar),书吧(book bar),英语吧(English bar)……
枪械简称勃朗宁自动步枪(Browning Automatic Rifle 英文简称:BAR)。
中文翻译 [HELP]
n. 条, 棒(常用作栅栏,扣栓物), 横木, 酒吧间, 栅, 障碍物
vt. 禁止, 阻挡, 妨碍, 把门关住, 除...之外, (Bar)律师业
函数名: bar功 能: 画一个二维条形图
用 法: void far bar(int left, int top, int right, int bottom);
程序例:
#include <graphics.h>
#include <stdlib.h>
#include <stdio.h>
#include <conio.h>
int main(void)
{
/* request auto detection */
int gdriver = DETECT, gmode, errorcode;
int midx, midy, i;
/* initialize graphics and local variables */
initgraph(&gdriver, &gmode, "");
/* read result of initialization */
errorcode = graphresult();
if (errorcode != grOk) /* an error occurred */
{
printf("Graphics error: %s
", grapherrormsg(errorcode));
printf("Press any key to halt:");
getch();
exit(1); /* terminate with an error code */
}
midx = getmaxx() / 2;
midy = getmaxy() / 2;
/* loop through the fill patterns */
for (i=SOLID_FILL; i<USER_FILL; i++)
{
/* set the fill style */
setfillstyle(i, getmaxcolor());
/* draw the bar */
bar(midx-50, midy-50, midx+50,
midy+50);
getch();
}
/* clean up */
closegraph();
return 0;
}