-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path8.html
660 lines (577 loc) · 19.2 KB
/
8.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>4</title>
<style>
*{
padding: 0;
margin: 0;
color: aliceblue;
}
.harvesting{
/* background-color: rgb(204, 70, 70,0.9); */
color: white;
position: center;
margin: 100px 100px 100px 100px;
/* margin-top: auto;
margin-bottom: auto; */
padding: 40px;
box-shadow: 10px 20px white;
font-size: larger;
font-family: 'Poppins', sans-serif;
background: black;
}
body{
background: var(--color-darkblue);
background-image: linear-gradient(
115deg,
rgba(58, 158, 153, 0.7),
rgba(136, 206, 203, 0.4)
),url(https://images.unsplash.com/photo-1530893609608-32a9af3aa95c?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2864&q=80);
background-color: rgba(70, 206, 188, 0.9);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.harvesting h3{
font-size:1.3rem;
}
.harvesting h4{
font-size:1.3rem;
margin-left: 20px;
margin-bottom: 20px;
margin-top: 20px;
}
.harvesting h5{
font-size: 1.3rem;
margin-left: 20px;
margin-bottom: 20px;
margin-top: 20px;
}
.harvesting img{
height: 300px;
width: 450px;
padding: 10px;
margin-left: 40px;
}
.harvesting p{
font-size: 1.3rem;
margin-left: 20px;
margin-bottom: 20px;
margin-top: 20px;
}
.ul{
font-size: 1.3rem;
}
/* .maximum-pattern table{
border: 1px solid black;
} */
.harvesting table td{
font-size: 1.3rem;
padding: 10px;
}
.harvesting li{
padding-top: 5px;
padding-bottom: 5px;
}
</style>
</head>
<body>
<div class="harvesting">
<h3>
8.0 HARVESTING EQUIPMENT </h3>
<ul>
<li>8.1.
Self-Propelled Riding Type Vertical Conveyor Reaper</li>
<li>8.2
TRACTOR MOUNTED VERTICAL CONVEYOR REAPER</li>
<li>8.3
SELF-PROPELLED COMBINE HARVESTER</li>
<li>8.4.
Self-propelled Combine Harvester for Maize</li>
<li>8.5
Self-Propelled Reaper Binder </li>
<li>8.6
Straw Baler</li>
<li>
8.7
Straw Reaper/Straw Combine
</li>
<li>
8.8
Potato digger-elevator
</li>
</ul>
<!-- 8.1 start here...... -->
<h4>8.1 SELF-PROPELLED RIDING TYPE VERTICAL CONVEYOR REAPER
</h4>
<img src="image2/8.1.png" alt="" srcset="">
<h5> Features</h5>
<p>It is an engine operated, walk behind type harvester suitable for harvesting and windrowing cereals and oilseed crops. The reaper consists of engine, power transmission box, pneumatic wheels, cutter bar, crop row dividers, conveyor belts with lugs, star wheels, operating controls and a sturdy frame. The engine power is transmitted to cutter bar and conveyor belts through belt pulleys. During forward motion of the reaper, crop row dividers divide the crop, which come in contact with cutter bar, where shearing of crop stems takes place. The cut crop is conveyed to one side of the machine by the conveyor belt fitted with lugs and is windrowed in the field. The crop is bundled manually and transported to threshing yard. There are no shattering losses due to vertical conveying of the crop</p>
<h5> Specifications:</h5>
<table>
<tr>
<td>Dimensions (LxWxH)( mm)</td>
<td>: 2450 x 1200 x 1000</td>
</tr>
<tr>
<td>Weight (kg)</td>
<td>: 145</td>
</tr>
<tr>
<td>Number of crop dividers</td>
<td>: 4</td>
</tr>
<tr>
<td>Length of cutter bar (mm)</td>
<td>: 1000</td>
</tr>
<tr>
<td>Cutter bar pitch (mm)</td>
<td>: 75</td>
</tr>
<tr>
<td> Number of strokes/min</td>
<td>: 700 (0.8 m/s average speed)</td>
</tr>
<tr>
<td> Power requirement (hp/kW) </td>
<td>: 5/3.75, diesel engine</td>
</tr>
</table>
<h5> Uses:</h5>
<p>It is suitable for harvesting rice, wheat, soybean and other cereals and oilseeds. The main advantage of this reaper is that there are no shattering losses as it does not have reel. It drops the crop in windrow and hence, it can be collected easily.</p>
<h5> Cost of Machine : Rs.80,000/-</h5>
<!-- 4.1 end here... -->
<!-- 4.2 start..... -->
<h4>
8.2 TRACTOR MOUNTED VERTICAL CONVEYOR REAPER
</h4>
<img src="image2/8.2.png" alt="" srcset="">
<h5> Features</h5>
<p>The machine consists of a 76 mm pitch reciprocating cutter bar assembly, seven crop row dividers, and two vertical conveyor belts fitted with lugs, pressure springs, pulleys and gearbox for the power transmission system. The crop row dividers are fitted in front of the cutter bar assembly and the star wheels are mounted over the crop row dividers. The machine is mounted in front of the tractor and the power to the machine is given from tractor PTO with the help of intermediate shaft running beneath the chassis of the tractor and a coupling shaft. Height of the machine above ground is controlled by tractor hydraulics with the help of pulleys and steel ropes. After the crop is cut by the cutter bar, it is held in a vertical position and crop is delivered to one side of the machine by lugged belt conveyors and fall on the ground in the form of a windrow perpendicular to the direction of movement of the machine.
</p>
<h5> Specifications:</h5>
<table>
<tr>
<td>Number of star wheels</td>
<td>: 7</td>
</tr>
<tr>
<td> Diameter of star wheel (mm) </td>
<td>: 270-282</td>
</tr>
<tr>
<td>Effective cutter bar width (mm) </td>
<td>: 2000-2210</td>
</tr>
<tr>
<td>Guard spacing (mm) </td>
<td>: 70-80</td>
</tr>
<tr>
<td>Cutter bar stroke length (mm)</td>
<td>: 75-80</td>
</tr>
<tr>
<td>Stroke per minute </td>
<td>: 388-675</td>
</tr>
<tr>
<td>Size of belt conveyer (cm)</td>
<td>: 2-3 ply </td>
</tr>
<tr>
<td>Width of belt (mm) </td>
<td>: 55-60</td>
</tr>
<tr>
<td>Diameter of conveyor pulley (mm) </td>
<td>: 118-140</td>
</tr>
<tr>
<td>Cutter bar length (mm) </td>
<td>: 1600-2010</td>
</tr>
<tr>
<td>Weight (kg) </td>
<td>: 197-350</td>
</tr>
<tr>
<td>Power source (hp/kW) </td>
<td>: 35/26.5, tractor</td>
</tr>
</table>
<h5> Uses:</h5>
<p>Vertical conveyor reaper is used for harvesting and windrowing of wheat and paddy crops.
</p>
<h5>Cost of Machine : Rs.45,000/-
</h5>
<!-- end 4.2..... -->
<!-- 4.3 start..... -->
<h4>8.3 SELF-PROPELLED COMBINE HARVESTER
</h4>
<img src="image2/8.3.png" alt="" srcset="">
<h5> Features</h5>
<p> The combine harvester consists of cutting unit, threshing unit and cleaning and grain handling units. The cutting section includes reel, cutter bar, an auger and a feeder conveyer. Threshing section has threshing cylinder, concave and cylinder beater. The cleaning section mainly consists of walker, chaffer sieve, grain collection pan. The grain handling section consists of a grain elevator and a discharge auger. The crop after being cut is delivered to the cylinder and concave assembly through feeder conveyor where it is threshed and the grains and straw is separated in different sections. The grain can be directly loaded into the trolley. These are being used in lower part of the Uttranchal.</p>
<h5> Specifications:</h5>
<table>
<tr>
<td> Cutter bar length (mm) </td>
<td>: 4300</td>
</tr>
<tr>
<td>Cutting height (mm)</td>
<td>: 550-1250</td>
</tr>
<tr>
<td>Threshing drum diameter (mm)</td>
<td>: 605</td>
</tr>
<tr>
<td>Threshing drum length (mm)</td>
<td>: 1240</td>
</tr>
<tr>
<td>Threshing drum speed (rpm)</td>
<td>: 540-1050</td>
</tr>
<tr>
<td>Length of upper sieve (mm)</td>
<td>: 1240</td>
</tr>
<tr>
<td>Width of upper sieve (mm)</td>
<td>: 1215</td>
</tr>
<tr>
<td>Length of lower sieve (mm)</td>
<td>: 1240</td>
</tr>
<tr>
<td>Width of lower sieve (mm)</td>
<td>: 1215</td>
</tr>
<tr>
<td>Grain tank capacity (cubic meter)</td>
<td>: 3.28</td>
</tr>
<tr>
<td>Road speeds (km/h)</td>
<td>: 2 -11.4</td>
</tr>
<tr>
<td>Weight (kg)</td>
<td>: 8200</td>
</tr>
<tr>
<td>Power Source (hp/kW)</td>
<td>: 90-110, tractor</td>
</tr>
</table>
<h5> Uses:</h5>
<p>Combines are used for cutting, threshing, cleaning of cereal and other crops in one operation.
</p>
<h5>Cost of Machine : Rs.14-16 lakh</h5>
<!-- end 4.3..... -->
<!-- 4.4 start..... -->
<h4>8.4 SELF-PROPELLED COMBINE HARVESTER FOR MAIZE
</h4>
<img src="image2/8.4.png" alt="" srcset="">
<h5> Features</h5>
<p> The combine harvester consists of a cutting unit, threshing unit and cleaning and grain handling units. The cutting section is specially designed to harvest maize crop and the header can be fitted to conventional grain combines. Threshing section has threshing cylinder, concave and cylinder beater. The cleaning section mainly consists of walker, chaffer sieve, grain collection pan. The grain handling section consists of a grain elevator and a discharge auger. The crop after being cut is delivered to the cylinder and concave assembly through feeder conveyor where it is threshed and the grains and straw is separated in different sections.</p>
<h5> Specifications:</h5>
<table>
<tr>
<td>Cutter Bar Width (mm)</td>
<td>: 3650 </td>
</tr>
<tr>
<td> Cutting Height (mm)</td>
<td>: 100- 1000 </td>
</tr>
<tr>
<td>No. of Rows</td>
<td>: 5/7</td>
</tr>
<tr>
<td>Row Spacing (mm)</td>
<td>: 460- 685</td>
</tr>
<tr>
<td>Size of threshing drum, Dia. x Length (mm)</td>
<td>: 600 x 1260</td>
</tr>
<tr>
<td>Type of Threshing drum</td>
<td>: Rasp Bar</td>
</tr>
<tr>
<td>Speed of threshing drum (rpm)</td>
<td>: 535 to 1210rpm</td>
</tr>
<tr>
<td>Concave Clearance (mm)</td>
<td>: 3-16</td>
</tr>
<tr>
<td>Number of Straw Walkers</td>
<td>: 5</td>
</tr>
<tr>
<td>Area of straw walkers (m2)</td>
<td>: 0.89</td>
</tr>
<tr>
<td>Cleaning area (m2)</td>
<td>: 25</td>
</tr>
<tr>
<td>Overall Dimension (L x B) (mm)</td>
<td>: 1500 x 4500</td>
</tr>
<tr>
<td>Min. Ground Clearance (mm)</td>
<td>: 460</td>
</tr>
<tr>
<td>Weight (kg).</td>
<td>: 9000</td>
</tr>
<tr>
<td>Working capacity (ha/h)</td>
<td>: 1.00</td>
</tr>
<tr>
<td> Power requirement(hp/kW)</td>
<td>: 75-110 56-82, Engine</td>
</tr>
</table>
<h5> Uses:</h5>
<p>Maize Combine is used for cutting, threshing and cleaning of maize and can be used for harvesting other cereal crops in one operation by changing the header.
</p>
<h5>Cost: Rs.12-14 lakh</h5>
<!-- end 4.4..... -->
<!-- 4.5 start..... -->
<h4>8.5 SELF- PROPELLED REAPER BINDER
</h4>
<img src="image2/8.5.png" alt="" srcset="">
<h5> Features</h5>
<p> Reaper-Binder is a unique harvesting machine that reaps the crop as well as binds it simultaneously. This Innovative Mechanical machine ensures 100% recovery of straw with negligible grain losses at a surprisingly low cost of operation. This machine is mainly used in Wheat, Paddy, Oats, Barley and other grain crops. </p>
<h5> Specifications:</h5>
<table>
<tr>
<td>Width of Cut(m) </td>
<td>: 12</td>
</tr>
<tr>
<td>Height of Cut(cm)</td>
<td>: 3 to 5</td>
</tr>
<tr>
<td>Engine(hp/kW)</td>
<td>: 10.2 7.5, Air Cooled Diesel</td>
</tr>
<tr>
<td>Gear</td>
<td>: 4 Forward & 1 Reverse</td>
</tr>
<tr>
<td>Weight of Machine(kg)</td>
<td>: 400</td>
</tr>
</table>
<h5> Uses:</h5>
<ul class="ul">
<li>Harvesting and Binding of Grain Crops in a single operation.</li>
<li>Used for Grain crops of height up to 85 to 110 cm.</li>
<li>Harvesting and Binding of 1 Acre of field in 1 Hour, with consumption of 1 Liter Diesel only.</li>
<li>Cutter Bar for Harvesting Barseem, Mentha, Lucern, Paddy Stubbles and Other Fodder Crops can also be attached to the same machine.</li>
</ul>
<h5>Cost of Machine : Rs.2,00,000/-</h5>
<!-- end 4.5..... -->
<!-- 4.6 start..... -->
<h4>8.6 STRAW BALER
</h4>
<img src="image2/8.6.png" alt="" srcset="">
<h5> Features</h5>
<p> The tractor PTO operated machine consists of reel type straw pick up assembly, and straw compaction and tying units. It automatically picks up the residue straw from field with the help of reel which is transferred into bale chamber with the help of feeder and then straw is compressed with the reciprocating ram into a compact variable length size. It also automatically ties the knots using metal wire or nylon rope.
</p>
<h5> Specifications:</h5>
<table>
<tr>
<td>Length (mm) </td>
<td>: 5550</td>
</tr>
<tr>
<td>Width (mm)</td>
<td>: 2600</td>
</tr>
<tr>
<td>Height (mm)</td>
<td>: 1950</td>
</tr>
<tr>
<td>Width of pick up reel</td>
<td>: 1540</td>
</tr>
<tr>
<td>Number of knotters</td>
<td>: 2</td>
</tr>
<tr>
<td>Cross section of the bale chamber (mm)</td>
<td>: 400 x 460</td>
</tr>
<tr>
<td>Twine box capacity</td>
<td>: Four spools</td>
</tr>
<tr>
<td>No. of plunger strokes per minute</td>
<td>: 75 at 2000 engine rpm</td>
</tr>
<tr>
<td>Plunger stroke length (mm)</td>
<td>: 764</td>
</tr>
<tr>
<td>Wheel tread (mm)</td>
<td>: 2100</td>
</tr>
<tr>
<td>Flywheel diameter (mm)</td>
<td>: 560</td>
</tr>
<tr>
<td> Power Source (hp/kW)</td>
<td>: 35/26.5 or above tractor</td>
</tr>
</table>
<h5> Uses:</h5>
<p>Straw balers are used for baling of straw into bales of rectangular cross section.
</p>
<h5>Cost of Machine : Rs.5,00,000/-</h5>
<!-- end 4.6..... -->
<!-- 4.7 start..... -->
<h4> 8.7 STRAW REAPER/ STRAW COMBINE
</h4>
<img src="image2/8.7.png" alt="" srcset="">
<h5> Features</h5>
<p> Straw combine operated by tractor PTO has cutter bar reel, feeding auger and bruising cylinder like a traditional thresher. Straw thrown and stubble left by the grain combine is collected by straw combine and delivered to the cylinder concave section, where it is cut into pieces and passed through the concave. A reciprocating cutter bar is used for reaping the standing stubbles and the portion of the straw left uncut by the combine harvester. Straw, which passes through the concave, is aspirated by a blower and fed into a trolley on rear side covered by a wire net. For recovering the left grains from the straw, a sieve system is provided below the concave</p>
<h5> Specifications:</h5>
<table>
<tr>
<td>Length (mm) </td>
<td>: 3370-5350</td>
</tr>
<tr>
<td>Width (mm)</td>
<td>: 2145-2400</td>
</tr>
<tr>
<td>Height (mm)</td>
<td>: 2210</td>
</tr>
<tr>
<td>Length of cutter bar</td>
<td>: 1830</td>
</tr>
<tr>
<td>Height of cut</td>
<td>: 60</td>
</tr>
<tr>
<td>Diameter of reel (mm)</td>
<td>: 435-485</td>
</tr>
<tr>
<td>Width of reel (mm)</td>
<td>: 1920-1935</td>
</tr>
<tr>
<td>Width/Dia. of threshing drum (mm)</td>
<td>: 1025-1250/525-625</td>
</tr>
<tr>
<td>Threshing drum speed (rpm)</td>
<td>: 650</td>
</tr>
<tr>
<td>Blower diameter (mm)</td>
<td>: 660</td>
</tr>
<tr>
<td>Blower width (mm)</td>
<td>: 230</td>
</tr>
<tr>
<td>Number of blowers</td>
<td>: 1-2</td>
</tr>
<tr>
<td>Machine capacity (ha/h)</td>
<td>: 0.40</td>
</tr>
<tr>
<td>Power requirement (hp/kW)</td>
<td>: 35/26.25 or above, tractor</td>
</tr>
</table>
<h5> Uses:</h5>
<p>Straw combines are used to recover wheat straw left standing after combine operation. It also helps in recovering about 50 kg grain per hectare.
</p>
<h5>Cost of Machine : Rs.1,25,000/-</h5>
<!-- end 4.7..... -->
<!-- 4.8 start..... -->
<h4>8.8 POTATO DIGGER ELEVATOR
</h4>
<img src="image2/8.8.png" alt="" srcset="">
<h5> Features</h5>
<p> The tractor PTO operated potato digger elevator consists of a crescent/convex triangular shape-cutting blade, elevator rollers generally made of iron bars, power transmission device and a tractor hitching system. The crescent shape blade helps in digging of potatoes, which are carried to the shaking conveyor belt and are finally dropped at the rear of the machine in windrow form. These are then collected manually. The shaking of belt helps in removal of the soil from the potatoes. These machines can also be used for harvesting onions. In some models, discs are provide in the front to cut haulm or for guiding the blade along the rows. </p>
<h5> Specifications:</h5>
<table>
<tr>
<td> Length (mm) </td>
<td>: 2060</td>
</tr>
<tr>
<td>Width (mm)</td>
<td>: 1195</td>
</tr>
<tr>
<td>Height (mm)</td>
<td>: 1070</td>
</tr>
<tr>
<td>Number of furrows</td>
<td>: 2</td>
</tr>
<tr>
<td>Working width (mm)</td>
<td>: 1070</td>
</tr>
<tr>
<td>Size of disc ( mm)</td>
<td>: 510</td>
</tr>
<tr>
<td>Weight (kg)</td>
<td>: 500-525</td>
</tr>
<tr>
<td>Power source (hp)</td>
<td>: 35 or above, tractor</td>
</tr>
</table>
<h5> Uses:</h5>
<p>Potato diggers are used for harvesting and exposing the potato tubers.
</p>
<h5>Cost of Machine : Rs.80,000/-</h5>
<!-- end 4.8..... -->
</div>
</body>
</html>