Complete line (blow room, carding and drawing machines) 完美的流水线(飞纱间、梳理和抽丝机)
* BLOW ROOM LINE – SPECIFTIONS OF BLOW ROOM MACHINES飞纱区域线—飞纱间清单。
Using 100% cotton or blending with man – made fibers, 用100%的棉纱或人工纤维混合纱。
Stable length 22-40 mm稳定长度22-40 mm。
The line consist of :-流水线包括:
1- Automatic bale opener 自动包装捆开启机。
2- Inclined cleaner ( 5) rollers with condensers配有电容器的倾斜清洁器(5) 滚筒。
3- Horizental opener 水平开启机。
4- Two scutchers两个打棉机。
5- Production rate for each scutcher not less than 800 kg/hr每台打棉机的生产率不低于800公斤/小时。
6- Aero dynamic heavy part separator with electronic metal(motor) separator 带有电动脱脂器的空气动力重分离脱脂机。
7- The separate safety and reliably separates foreign materials must be take in consideration during duct design 分隔保险和可靠的不同进口原料在输送管设计期间必须纳入考虑。
8- Chute feeder between blow room m/c and card m/c supplied with fire detection and protection system 手控飞纱间与手控梳理机之间的送料槽配有火警和保护系统。
9- Training three Technical for two weeks 训练机修工两周。
*CARD MACHNES 梳理机 。
Each machine supplied with:-每台机器配有:
1- Full integrated tuft feeder (direct feed)整个花色毛纱喂料机。
2 -Computer control with touch screen 带有近距离监视屏幕计算机控制。
3- Long and short term (auto leveller) .长短期自动校平机。
4- Sliver count = (0.150 – 0.300) Nm . 纱条数= (0.150 – 0.300) 纳米。
5- Production rate of each machine not less than 130kg / hr每台机器生产率不低于130kg /小时。
6- number of machines = 10 机器数=10。
7- training three technical for two weeks 训练三名机修工两周 。
DRAW FRAME MACHNES :并条机。
I stage of draw frames 并条机的等级。
II stage of draw frames并条机的等级。
SPECIFICATIONS:-说明书 。
1- Feeding ends (6-8)for each stage 每一级送料径纱((6-8))
2- The number of the delivers for each machine =2 每台机器的传送数=2。
3- Draft system 4 over 4 for each stage .每一等级的吸沙系统为4或高于4。
4- Sliver count Deliverry = 0.180 Nm – 0.40 Nm纱条传送计数= 0.180 纳米 – 0.40 纳米。
5- Delivery speed for each machine = 800m/min每台机传送速度= 800米/每秒。
6- Number of machine for each stage = 4 每一等级机器数=4。
7- the second stage must be include the following equipments 二等机必须包括以西设备。
A – Auto leveller自动校平机。
B – Micro computer for controlling the adjustment of the machine and the quality of the sliver 控制机器调节和纱条质量的微电脑。
8- Training three technical for two weeks 培训三名机修工两周。
*THE LINE (BLOW ROOM , CARD, DRAWING MACHINE)MUST BE HAVE ADDITIONAL EQUIPMENTS流水线(飞纱间、梳理和抽丝机)必须具备附加设备。
LIKE:- 流水线
Transport fan, dust fan, cans for card and draw frames machines and another accessories and spare parts for two years 传送鼓风机,梳理纱条筒和抽丝机以及其他附件机器两年的备件。
The product of this line must be not less than 1500 kg / hr in average count of sliver form II stage of draw frame 0.230 Nm. Erection , Operating and training are responsibility of supplier本流水线的产品从II级并条机0.230 纳米平均计数必须不低于1500 kg /小时,运行并训练时供货方的职责。
请仔细核对原文,打错的地方不少,用原文重新核对一下译文。
static void Main(string[] args)。
{
//输出1-100之间的质数。
for (int i = 1; i <= 100; i++)。
{
if (IsZhiShu(i))。
Console.Write("{0} ", i);。
}
Console.Read();。
}
/// <summary>。
/// 判断是否为质数。
/// </summary>。
/// <param name="n"></param>。
/// <returns></returns>。
public static bool IsZhiShu(int n)。
{
//j<=n/2改成j<n也一样。
for (int j = 2; j <= n/2; j++)。
{
if (n % j == 0)。
return false;。
}
return true;。
}
写了一点注释,这里面排版全乱了。
#include <iostream>。
#include <ctime>。
using namespace std;。
int main()
int n,t=1;
srand((unsigned int)time(NULL));。
while(t){
//ctrl+c 结束循环。
n=rand() % 100 ;//生成0-100的随机整数 。
if (n<50){ //小于50的 。
cout<<n<<" 小于"<<endl; 。
}
if (n>50){ //大于50的,标记 。
cout<<n<<" 大于"<<endl; 。
}
t=cin.get();//回车继续运行循环。
}
return 0;
using System;
using System.Collections.Generic;。
using System.Linq;。
using System.Text;。
namespace ConsoleApplication5。
class Program。
{
static void Main(string[] args)。
{
Console.Write("请输入一个整数:");。
int i = 0;。
if (int.TryParse(Console.ReadLine(), out i))。
{
i = Math.Abs(i);。
Console.WriteLine("您输入的数字为长度为" + i.ToString().Length);。
}
else。
Console.WriteLine("输入的不是整数");。
Console.ReadKey();。
}
}
using System;
using System.Collections.Generic;。
using System.Linq;。
using System.Text;。
namespace ConsoleApplication5。
class Program。
{
static void Main(string[] args)。
{
Console.WriteLine("使用While结构计算");。
int oddSum = 0,evenSum=0, i = 1;。
while (i <= 99)。
{
oddSum += i;//这里的i为奇数,从1开始,此表达式用于求奇数的和。
i += 1;//i变为了偶数。
evenSum += i;//用于求偶数和。
i += 1;//i变为了下一个奇数。
}
Console.WriteLine("从1到100的奇数和为{0},偶数和为{1}", oddSum, evenSum);。
Console.WriteLine();。
Console.WriteLine("使用do While结构计算");。
oddSum = 0;。
evenSum = 0;。
i = 1;。
do
{
oddSum += i;。
i += 1;。
evenSum += i;。
i += 1;。
} while (i <= 99);。
Console.WriteLine("从1到100的奇数和为{0},偶数和为{1}", oddSum, evenSum);。
Console.ReadKey();。
}
}