-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct.html
executable file
·1146 lines (949 loc) · 49.3 KB
/
product.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
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<title>Rousant International</title>
<link rel="icon" href="resources/pictures/secondry/favicon-32x32.png" type="image/x-icon">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,500,600" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,600,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Monoton" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Assistant:300,400,600,700" rel="stylesheet">
<!-- Stylesheets -->
<link rel="stylesheet" type="text/css" href="resources/css/reset.css">
<link rel="stylesheet" type="text/css" href="resources/css/products.css">
<link rel="stylesheet" href="resources/css/slick.css">
<link rel="stylesheet" href="resources/css/slick-theme.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
</head>
<body>
<!--Loader -->
<div class="cs-loader-wrapper">
<div class="cs-loader">
<div class="cs-loader-inner">
<h1>Loading</h1>
<label>●</label>
<label>●</label>
<label>●</label>
<label>●</label>
<label>●</label>
<label>●</label>
</div>
</div>
</div>
<!-- Body -->
<div class="parallax-top" data-parallax="scroll" data-image-src="resources/pictures/main/products.jpg">
<div class="para-tint-top">
<!-- Navigation -->
<div class="navigation">
<div class="nav-content">
<div class="logo">
<a href="index.html"><img class="nav-img" src="resources/pictures/secondry/logo-jean.png" alt=""></a>
</div>
<!-- navigation menu -->
<div class="menu">
<div class="item">
<a href="index.html">Home</a>
<div id="decor">
</div>
</div>
<div id="product-pad" class="item pad">
<a href="product.html">Products</a>
<div id="decor">
</div>
</div>
<div class="item">
<a href="expertise.html">Expertise</a>
<div id="decor">
</div>
</div>
<div class="item">
<a href="contracts.html">Contracts</a>
<div id="decor">
</div>
</div>
<div class="item">
<a href="turnkey.html">Construction</a>
<div id="decor">
</div>
</div>
<div class="item">
<a href="contact.html">Contact</a>
<div id="decor">
</div>
</div>
</div>
</div>
</div>
<!-- Mobile Nav -->
<div class="mobile-nav">
<div class="logo-mobile">
<a href="index.html"><img class="nav-img" src="resources/pictures/secondry/logo-jean.png" alt=""></a>
</div>
<!-- mobile menu icon -->
<div class="menu-icon">
<span></span>
<span></span>
<span></span>
</div>
</div>
<!-- Banner -->
<div class="banner">
<div class="africa">
<h2 id="illuminate" >We are the power supply</h2>
<h1 id="africa">Experts</h1>
</div>
<hr>
<p>Partnering with the world's best</p>
</div>
<!-- Mobile Nav Menu -->
<div id="mobile-menu" class="mobile-menu-container">
<div class="mobile-menu">
<div class="list-item">
<a href="index.html">Home</a>
</div>
<div class="list-item">
<a id="product-link" class="inner-link" href="product.html"> Products</a>
</div>
<div class="list-item">
<a href="expertise.html">Expertise</a>
</div>
<div class="list-item">
<a href="contracts.html">Contracts</a>
</div>
<div class="list-item">
<a href="turnkey.html">Construction</a>
</div>
<div class="list-item">
<a href="contact.html">Contact</a>
</div>
</div>
</div>
<!-- Product container -->
<section>
<div id="product-container" class="product-container">
<div class="product-tint">
<div class="product-header-container">
<!-- header -->
<div id="product-container" class="product-header">
<div class="tag">
<p id="tag-product">SUPPLY</p>
</div>
<div class="product-heading">
<h1>OUR PRODUCT RANGE INCLUDES</h1>
</div>
</div>
</div>
<!-- product list menu -->
<div class="menu-container">
<div class="product-menu">
<!-- item -->
<div class="product-item">
<div class="hovereffect-top">
</div>
<p class="l1" href="#">Aerial Bundle Products</p>
<div class="hovereffect-bottom">
</div>
</div>
<!-- item -->
<div class="product-item">
<div class="hovereffect-top">
</div>
<p class="l2" href="#">Cables and Accesories</p>
<div class="hovereffect-bottom">
</div>
</div>
<!-- item -->
<div class="product-item">
<div class="hovereffect-top">
</div>
<p class="l3" href="#">Conductors</p>
<div class="hovereffect-bottom">
</div>
</div>
<!-- item -->
<div class="product-item">
<div class="hovereffect-top">
</div>
<p class="l4" href="#">Control and Switchgear</p>
<div class="hovereffect-bottom">
</div>
</div>
<!-- item -->
<div class="product-item">
<div class="hovereffect-top">
</div>
<p class="l5" href="#">Insulators</p>
<div class="hovereffect-bottom">
</div>
</div>
<!-- item -->
<div class="product-item">
<div class="hovereffect-top">
</div>
<p class="l6" href="#">Low Voltage Products</p>
<div class="hovereffect-bottom">
</div>
</div>
<!-- item -->
<div class="product-item">
<div class="hovereffect-top">
</div>
<p class="l7" href="#">Transformers</p>
<div class="hovereffect-bottom">
</div>
</div>
<!-- item -->
<div class="product-item">
<div class="hovereffect-top">
</div>
<p class="l8" href="#">Wooden Poles</p>
<div class="hovereffect-bottom">
</div>
</div>
</div>
</div>
<!-- product display -->
<div class="product-display">
<div class="product-intro" >
<div class="intro top">
<div class="intro-cont "> <a class="l1" href=""><div class=" intro-img intro-img1"> <div class="intro-tint"> <p>VIEW</p> </div> </div> </a> </div>
<div class="intro-cont l2"> <a class="l2" href=""><div class="intro-img intro-img2"> <div class="intro-tint"><p>VIEW</p></div> </div></a> </div>
<div class="intro-cont l3 "> <a class="l3" href=""><div class="intro-img intro-img3"> <div class="intro-tint"><p>VIEW</p></div> </div></a> </div>
<div class="intro-cont l4"> <a class="l4" href=""><div class="intro-img intro-img4"> <div class="intro-tint"><p>VIEW</p></div> </div></a></div>
</div>
<div class="intro bottom">
<div class="intro-cont l5"> <a class="l5" href=""><div class="intro-img intro-img5"> <div class="intro-tint"><p>VIEW</p></div> </div></a> </div>
<div class="intro-cont l6"> <a class="l6" href=""><div class="intro-img intro-img6"> <div class="intro-tint"><p>VIEW</p></div> </div></a> </div>
<div class="intro-cont l7"> <a class="l7" href=""><div class="intro-img intro-img7"> <div class="intro-tint"><p>VIEW</p></div> </div></a> </div>
<div class="intro-cont l8"> <a class="l8" href=""><div class="intro-img intro-img8"> <div class="intro-tint"><p>VIEW</p></div> </div></a> </div>
</div>
</div>
<!-- Product 1 -->
<div id="product1" class="product ">
<div class="picture">
<img src="resources/pictures/secondry/Aerial Bundle.jpg" alt="">
</div>
<div class="content">
<h1>AERIAL BUNDLE CABLE AND ACCESORIES</h1>
<h3>Aerial Bundle Conductor (ABC) Systems for Distribution and Transmission Products</h3>
<h4>ABC Cable:</h4>
<ul>
<li> <p>⚬ </p><p>Insulated and Bare Neutral Aerial Bundled Conductors</p> </li>
<li> <p>⚬ </p><p>25mm <sup>2</sup> up to 150 mm<sup>2</sup> Conductors with 54.6 mm<sup>2</sup> up to 95 mm<sup>2</sup> support core</p> </li>
<li> <p>⚬ </p><p>All ABC can be supplied with Street Lighting core</p> </li>
</ul>
<h4>ABC Accessories:</h4>
<ul>
<li> <p>⚬ </p><p>Insulated Piercing Connectors (IPC)</p> </li>
<li> <p>⚬ </p><p>Tension Clamps</p> </li>
<li> <p>⚬ </p><p>Strain Clamps</p> </li>
<li> <p>⚬ </p><p> Suspension Clamps</p> </li>
<li> <p>⚬ </p><p>Stainless Steel Strapping and Buckles</p> </li>
<li> <p>⚬ </p><p>Associated Bolts and Nuts (eye/pigtail)</p> </li>
<li> <p>⚬ </p><p> Pre-insulated Joints</p> </li>
<li> <p>⚬ </p><p>Pre-insulated Lugs</p> </li>
<li> <p>⚬ </p><p>Compression Fittings</p> </li>
<li> <p>⚬ </p><p>Cable Ties</p> </li>
<li> <p>⚬ </p><p>End Caps</p> </li>
</ul>
</div>
</div>
<!-- Products 2 -->
<div id="product2" class="product">
<div class="picture">
<img src="resources/pictures/secondry/CablesandAccessories.jpg" alt="">
</div>
<div class="content">
<h1>CABLES AND ACCESORIES</h1>
<h3>Cable accessories & Copper and Aluminium Cables for various applications</h3>
<ul>
<li> <p>⚬ </p><p>Single core up to 4 core power cables from 2.5 mm<sup>2</sup> up to 1,000 mm<sup>2</sup></p> </li>
<li> <p>⚬ </p><p>Cross linked polyethylene insulated power cables 1,000 volt up to 245kV</p> </li>
<li> <p>⚬ </p><p>Various PVC and rubber insulated cables</p> </li>
<li> <p>⚬ </p><p>All cables can be supplied with steel or aluminium wire armour</p> </li>
<li><p>⚬ </p><p>Heat shrink and other types of joints and terminations</p> </li>
<li> <p>⚬ </p><p>Cable clamps, cable lugs, glands, ferrules, terminals etc</p> </li>
</ul>
<h3>Certification:</h3>
<ul>
<li> <p>⚬ </p><p>ISO 9001</p> </li>
<li> <p>⚬ </p><p>Type Test Report</p> </li>
<li> <p>⚬ </p><p>Relevant Supply Records</p> </li>
<li> <p>⚬ </p><p>Sufficient Production Capacity</p> </li>
</ul>
</div>
</div>
<!-- Products 3 -->
<div id="product3" class="product ">
<div class="picture">
<img src="resources/pictures/secondry/Conducter.jpeg" alt="">
</div>
<div class="content">
<h1>CONDUCTORS</h1>
<h3>Conductors ACSR / AACSR / ACAR / AAA/ACSR-AW Conductors for Overhead Power Transmission & Distribution</h3>
<ul>
<li> <p>⚬ </p><p>AAC (All Aluminium Conductors)</p> </li>
<li> <p>⚬ </p><p>ACSR (Aluminium Conductor Steel Reinforced)</p> </li>
<li> <p>⚬ </p><p>ACSR/AW (Aluminium Conductor Aluminium Clad Steel Reinforced)</p> </li>
<li> <p>⚬ </p><p>AACSR (Aluminium Alloy Conductor Steel Reinforced)</p> </li>
<li> <p>⚬ </p><p>AACSR/AW (Aluminium Alloy Conductor Clad Steel Reinforced)</p> </li>
<li> <p>⚬ </p><p>AAAC (All Aluminium Alloy Conductors)</p> </li>
<li> <p>⚬ </p><p>ACAR (Aluminium Conductor Alloy Reinforced)</p> </li>
</ul>
<h3>Certification:</h3>
<ul>
<li> <p>⚬ </p><p>ISO 9001</p> </li>
<li> <p>⚬ </p><p>Type Test Report</p> </li>
<li> <p>⚬ </p><p>Relevant Supply Records</p> </li>
<li> <p>⚬ </p><p>Sufficient Production Capacity</p> </li>
</ul>
</div>
</div>
<!-- Products 4 -->
<div id="product4" class="product">
<div class="picture">
<img src="resources/pictures/secondry/SwitchGear.jpg" alt="">
</div>
<div class="content">
<h1>CONTROL AND SWITCHGEAR</h1>
<h3>Rousant supplies a wide range of products for use in substations, as well as on Transmission and Distribution Lines to measure, control and switch power. The products we supply include Air, Oil and Gas (e.g. SF6) insulated products and spans a wide range of voltages.</h3>
<h4>The products we supply include :</h4>
<ul>
<li> <p>⚬ </p><p>Mobile and automated substation solutions and products</p> </li>
<li> <p>⚬ </p><p>SCADA and measurement solutions and products</p></li>
<br>
<li> <p>⚭ </p><p>Products for outdoor application - mainly on transmission and distribution lines</p> </li>
<li class="sub-li"> <p>⚐ </p><p>Circuit Breakers 11 kV up to 1,200 kV</p> </li>
<li class="sub-li"> <p>⚐ </p><p>HV and UHV Gas insulated switchgear</p> </li>
<li class="sub-li"> <p>⚐ </p><p></p> Autoreclosers for 11, 33 and 66 kV lines</li>
<li class="sub-li"> <p>⚐ </p><p></p> Current and Voltage transformers</li>
<li class="sub-li"> <p>⚐ </p><p> Isolators and Line Switches of various configurations</p> </li>
</ul>
<ul>
<li> <p>⚭ </p><p>Products for indoor substation application</p> </li>
<li class="sub-li"> <p>⚐ </p><p>11 kV and 33 kV metal enclosed air insulated switchgear</p> </li>
<li class="sub-li"> <p>⚐ </p><p>Metering and Control panels</p> </li>
<li class="sub-li"> <p>⚐ </p><p>Current and voltage transformers</p> </li>
<li class="sub-li"> <p>⚐ </p><p>Substation automation</p> </li>
<h4>Switch Gear</h4>
<ul>
<li> <p>⚬ </p> <p> Low Voltage up to 1,000 Volt, Medium Voltage 1 kV to 33 kV and High Voltage 66 kV up
to 675 kV switchgear with Manual or Automatic operation for various applications</p>
</li>
<li> <p>⚬ </p><p>Indoor switchgear</p> </li>
<li> <p>⚬ </p><p>Outdoor switchgear</p> </li>
<li> <p>⚬ </p><p>Motorised and manual Isolators</p> </li>
<br>
<li> <p>⚬ </p><p>Disconnectors</p> </li>
<li> <p>⚬ </p><p>Load break switches and Tri-Link switches</p> </li>
<li> <p>⚬ </p><p>Auto Re-closers</p> </li>
<li> <p>⚬ </p><p>Metering and Control Panels</p> </li>
<br>
<li> <p>⚭ </p><p>Circuit Breakers</p> </li>
<li class="sub-li"> <p>⚐ </p><p>Vacuum</p> </li>
<li class="sub-li"> <p>⚐ </p><p>GIS and SF6</p> </li>
</ul>
</ul>
</div>
</div>
<!-- Products 5 -->
<div id="product5" class="product">
<div class="picture">
<img src="resources/pictures/secondry/Insulator.jpg" alt="">
</div>
<div class="content">
<h1>INSULATORS</h1>
<h3>Insulators Porcelain, Polymer and composite Insulators for Low Voltage < 1,000 V,
Medium Voltage 1,000 V to 33 kV, High Voltage 66 kV to 275 kV and Extra High
Voltage over 275 kV power lines, stays wires and other applications.</h3>
<h4>1. SILICONE RUBBER LONG ROD INSULATOR</h4>
<ul>
<li> <p>⚬ </p> <p>11 kV - 33 kV Silicon</p> </li>
<li> <p>⚬ </p> <p>66 kV - 750 kV Silicone Rubber Suspension Insulator for Transmission</p> </li>
</ul>
<h4>2. SILICONE RUBBER LINE POST INSULATOR</h4>
<ul>
<li> <p>⚬ </p> <p>Silicone Rubber Vertical Line Post Insulator</p> </li>
<li> <p>⚬ </p> <p>Silicone Rubber Horizontal Line Post Insulator</p> </li>
<li><p>⚬ </p> <p>11-33kV Silicone Rubber Pin Post Insulator</p> </li>
</ul>
<h4>3. SILICONE RUBBER BRACED POST INSULATOR</h4>
<ul>
<li> <p>⚬ </p> <p>Gain Base Mounting</p> </li>
<li> <p>⚬ </p> <p>Flat Base Mounting</p> </li>
<li> <p>⚬ </p> <p>Pivoting Base Mounting</p> </li>
</ul>
<h4>4. SILICONE RUBBER POST INSULATOR</h4>
<ul>
<li> <p>⚬ </p> <p>IEC Standard</p> </li>
<li> <p>⚬ </p> <p>ANSI Standard</p> </li>
</ul>
<h4>5. SILICONE RUBBER HOLLOW INSULATOR</h4>
<h4>6. PORCELAIN STATION POST INSULATOR</h4>
<h4>7. PORCELAIN HOLLOW INSULATOR</h4>
<h4>8. SILICONE RUBBER (ELECTRICAL) RAILWAY INSULATOR</h4>
<h4>9. HYBRID INSULATOR</h4>
<ul>
<li> <p>⚬ </p> <p>Hybrid Post Insulator</p> </li>
<li> <p>⚬ </p> <p>Hybrid Railway Insulator</p> </li>
<li> <p>⚬ </p> <p>Hybrid Line Post Insulator</p> </li>
</ul>
<h4> 10. COPPER CONDUCTOR DRY TYPE WALL BUSHING</h4>
<h4>11. GLASS INSULATOR WITH RTV SILICONE COATING</h4>
<h4>These insulators can be supplied in:</h4>
<ul>
<li> <p>⚬ </p> <p>Silicone or Polymer</p> </li>
<li> <p>⚬ </p> <p>Porcelain</p> </li>
<li> <p>⚬ </p> <p>Epoxy resin</p> </li>
</ul>
</div>
</div>
<!-- Products 6 -->
<div id="product6" class="product">
<div class="picture">
<img src="resources/pictures/secondry/Switchgear3.jpg" alt="">
</div>
<div class="content">
<h1>LOW VOLTAGE PRODUCTS</h1>
<h3>Rousant is able to supply a wide range of low voltage products such as distribution equipment and switchgear
- subject only to quantities being sufficient to justify the cost of freight.</h3>
<ul>
<h4>Products generally available include:</h4>
<li> <p>⚬ </p> <p>4 Way, 6 Way, 8 Way and customised Feeder Pillars</p> </li>
<li> <p>⚬ </p> <p>Distribution Boards - empty, pre-wired or customised</p> </li>
<li> <p>⚬ </p> <p>Customised Measurement and Control Panels</p> </li>
<li> <p>⚬ </p> <p>Pole Top Distribution boxes</p> </li>
<li> <p>⚬ </p> <p>Miniature Circuit Breakers</p> </li>
<li> <p>⚬ </p> <p>Air Circuit Breakers and MCCBs</p> </li>
<li> <p>⚬ </p> <p>Changeover, bypass and Time switches</p> </li>
<li> <p>⚬ </p> <p>Switch Disconnector Fuses</p> </li>
<li><p>⚬ </p> <p>HRC and other Fuses and Fuse Bases</p> </li>
<li> <p>⚬ </p> <p>Ready Boards</p> </li>
<li> <p>⚬ </p> <p>Fuse Cutouts</p> </li>
<li> <p>⚬ </p> <p>House Service Cutouts</p> </li>
<li> <p>⚬ </p> <p>Pole Mounted Cutouts</p> </li>
<li> <p>⚬ </p> <p>Street Lighting Cutouts</p> </li>
</ul>
</div>
</div>
<!-- Products 7 -->
<div id="product7" class="product">
<div class="picture">
<img src="resources/pictures/secondry/Transformers.jpg" alt="">
</div>
<div class="content">
<h1>TRANSFORMERS</h1>
<h4>Reactors and Earthing resistors</h4>
<h4>Power Capacitors and Capacitor Banks for Network Compensation</h4>
<h4>Power transformers:</h4>
<ul>
<li><p>⚬ </p> <p>11 kV to 500 kV voltage level</p> </li>
<li><p>⚬ </p><p>1 MVA to 1000 MVA power handling capacity with ONAN and/or ONAF cooling</p></li>
<li><p>⚬ </p><p>Tested up to 1000 KV lightning impulse withstand as required</p></li>
</ul>
<h4>Distribution transformers:</h4>
<ul>
<li><p>⚬ </p><p>0.2 kV to 33 kV voltage levels</p></li>
<li><p>⚬ </p><p>Single or three phase 15KVA up to 1 MVA power handling capacity</p></li>
<li><p>⚬ </p><p>Oil immersed</p></li>
<li><p>⚬ </p><p>Copper and aluminium wound</p></li>
<li><p>⚬ </p><p>Resin/dry type transformer</p></li>
<li><p>⚬ </p><p>Pole mount and ground mount</p></li>
<li><p>⚬ </p><p>Voltage and current transformers of any configuration required</p></li>
</ul>
</div>
</div>
<!-- Products 8 -->
<div id="product8" class="product">
<div class="picture">
<img src="resources/pictures/secondry/wooden poles.jpg" alt="">
</div>
<div class="content">
<h1>WOODEN POLES</h1>
<h3>Pole:</h3>
<ul>
<li><p>⚬ </p><p>Sustianably grown Eucalyptus</p></li>
</ul>
<h3> Treatments:</h3>
<ul>
<li><p>⚬ </p><p>Kiln dried</p></li>
<li><p>⚬ </p><p>Creosote</p></li>
<li><p>⚬ </p><p>CCA</p></li>
</ul>
<h3>Certification:</h3>
<ul>
<li> <p>⚬ </p><p>ISO 9001</p> </li>
<li> <p>⚬ </p><p>Type Test Report</p> </li>
<li> <p>⚬ </p><p>Relevant Supply Records</p> </li>
<li> <p>⚬ </p><p>Sufficient Production Capacity</p> </li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Product Mobile -->
<div id="mobile-products" class="mobile-products">
<div class="product-header-container">
<div id="product-container" class="product-header">
<div class="tag">
<p id="tag-product">SUPPLY</p>
</div>
<div class="mobile-product-heading">
<h1>OUR PRODUCT RANGE INCLUDES</h1>
</div>
</div>
<!--gallery -->
<div class="mobile-selection-container">
<!-- item -->
<div class="mobile-product">
<div class="mobile-img img1">
<div class="mobile-image-tint">
<a href="">View</a>
</div>
</div>
<h2>AERIAL BUNDLE CABLE AND ACCESORIES</h2>
<div class="hidden-mobile-info">
<h3>Aerial Bundle Conductor (ABC) Systems for Distribution and Transmission Products</h3>
<h4>ABC Cable:</h4>
<ul>
<li> <p>⚬ </p><p>Insulated and Bare Neutral Aerial Bundled Conductors</p> </li>
<li> <p>⚬ </p><p>25mm <sup>2</sup> up to 150 mm<sup>2</sup> Conductors with 54.6 mm<sup>2</sup> up to 95 mm<sup>2</sup> support core</p> </li>
<li> <p>⚬ </p><p>All ABC can be supplied with Street Lighting core</p> </li>
</ul>
<h4>ABC Accessories:</h4>
<ul>
<li> <p>⚬ </p><p>Insulated Piercing Connectors (IPC)</p> </li>
<li> <p>⚬ </p><p>Tension Clamps</p> </li>
<li> <p>⚬ </p><p>Strain Clamps</p> </li>
<li> <p>⚬ </p><p> Suspension Clamps</p> </li>
<li> <p>⚬ </p><p>Stainless Steel Strapping and Buckles</p> </li>
<li> <p>⚬ </p><p>Associated Bolts and Nuts (eye/pigtail)</p> </li>
<li> <p>⚬ </p><p> Pre-insulated Joints</p> </li>
<li> <p>⚬ </p><p>Pre-insulated Lugs</p> </li>
<li> <p>⚬ </p><p>Compression Fittings</p> </li>
<li> <p>⚬ </p><p>Cable Ties</p> </li>
<li> <p>⚬ </p><p>End Caps</p> </li>
</ul>
</div>
</div>
<!-- item -->
<div class="mobile-product">
<div class="mobile-img img2">
<div class="mobile-image-tint">
<a href="">View</a>
</div>
</div>
<h2>CABLES AND ACCESSORIES</h2>
<div class="hidden-mobile-info">
<h3>Cable accessories & Copper and Aluminium Cables for various applications</h3>
<ul>
<li> <p>⚬ </p><p>Single core up to 4 core power cables from 2.5 mm<sup>2</sup> up to 1,000 mm<sup>2</sup></p> </li>
<li> <p>⚬ </p><p>Cross linked polyethylene insulated power cables 1,000 volt up to 245kV</p> </li>
<li> <p>⚬ </p><p>Various PVC and rubber insulated cables</p> </li>
<li> <p>⚬ </p><p>All cables can be supplied with steel or aluminium wire armour</p> </li>
<li><p>⚬ </p><p>Heat shrink and other types of joints and terminations</p> </li>
<li> <p>⚬ </p><p>Cable clamps, cable lugs, glands, ferrules, terminals etc</p> </li>
</ul>
<h3>Certification:</h3>
<ul>
<li> <p>⚬ </p><p>ISO 9001</p> </li>
<li> <p>⚬ </p><p>Type Test Report</p> </li>
<li> <p>⚬ </p><p>Relevant Supply Records</p> </li>
<li> <p>⚬ </p><p>Sufficient Production Capacity</p> </li>
</ul>
</div>
</div>
<!-- item -->
<div class="mobile-product">
<div class="mobile-img img3">
<div class="mobile-image-tint">
<a href="">View</a>
</div>
</div>
<h2>CONDUCTORS</h2>
<div class="hidden-mobile-info">
<h3>Conductors ACSR / AACSR / ACAR / AAA/ACSR-AW Conductors for Overhead Power Transmission & Distribution</h3>
<ul>
<li> <p>⚬ </p><p>AAC (All Aluminium Conductors)</p> </li>
<li> <p>⚬ </p><p>ACSR (Aluminium Conductor Steel Reinforced)</p> </li>
<li> <p>⚬ </p><p>ACSR/AW (Aluminium Conductor Aluminium Clad Steel Reinforced)</p> </li>
<li> <p>⚬ </p><p>AACSR (Aluminium Alloy Conductor Steel Reinforced)</p> </li>
<li> <p>⚬ </p><p>AACSR/AW (Aluminium Alloy Conductor Clad Steel Reinforced)</p> </li>
<li> <p>⚬ </p><p>AAAC (All Aluminium Alloy Conductors)</p> </li>
<li> <p>⚬ </p><p>ACAR (Aluminium Conductor Alloy Reinforced)</p> </li>
</ul>
<h3>Certification:</h3>
<ul>
<li> <p>⚬ </p><p>ISO 9001</p> </li>
<li> <p>⚬ </p><p>Type Test Report</p> </li>
<li> <p>⚬ </p><p>Relevant Supply Records</p> </li>
<li> <p>⚬ </p><p>Sufficient Production Capacity</p> </li>
</ul>
</div>
</div>
<!-- item -->
<div class="mobile-product">
<div class="mobile-img img4">
<div class="mobile-image-tint">
<a href="">View</a>
</div>
</div>
<h2>CONTROL AND SWITCHGEAR</h2>
<div class="hidden-mobile-info">
<h3>Rousant supplies a wide range of products for use in substations, as well as on Transmission and Distribution Lines to measure, control and switch power. The products we supply include Air, Oil and Gas (e.g. SF6) insulated products and spans a wide range of voltages.</h3>
<h4>The products we supply include :</h4>
<ul>
<li> <p>⚬ </p><p>Mobile and automated substation solutions and products</p> </li>
<li> <p>⚬ </p><p>SCADA and measurement solutions and products</p></li>
<br>
<li> <p>⚭ </p><p>Products for outdoor application - mainly on transmission and distribution lines</p> </li>
<li class="sub-li"> <p>⚐ </p><p>Circuit Breakers 11 kV up to 1,200 kV</p> </li>
<li class="sub-li"> <p>⚐ </p><p>HV and UHV Gas insulated switchgear</p> </li>
<li class="sub-li"> <p>⚐ </p><p></p> Autoreclosers for 11, 33 and 66 kV lines</li>
<li class="sub-li"> <p>⚐ </p><p></p> Current and Voltage transformers</li>
<li class="sub-li"> <p>⚐ </p><p> Isolators and Line Switches of various configurations</p> </li>
</ul>
<ul>
<li> <p>⚭ </p><p>Products for indoor substation application</p> </li>
<li class="sub-li"> <p>⚐ </p><p>11 kV and 33 kV metal enclosed air insulated switchgear</p> </li>
<li class="sub-li"> <p>⚐ </p><p>Metering and Control panels</p> </li>
<li class="sub-li"> <p>⚐ </p><p>Current and voltage transformers</p> </li>
<li class="sub-li"> <p>⚐ </p><p>Substation automation</p> </li>
<h4>Switch Gear</h4>
<ul>
<li> <p>⚬ </p> <p> Low Voltage up to 1,000 Volt, Medium Voltage 1 kV to 33 kV and High Voltage 66 kV up
to 675 kV switchgear with Manual or Automatic operation for various applications</p>
</li>
<li> <p>⚬ </p><p>Indoor switchgear</p> </li>
<li> <p>⚬ </p><p>Outdoor switchgear</p> </li>
<li> <p>⚬ </p><p>Motorised and manual Isolators</p> </li>
<br>
<li> <p>⚬ </p><p>Disconnectors</p> </li>
<li> <p>⚬ </p><p>Load break switches and Tri-Link switches</p> </li>
<li> <p>⚬ </p><p>Auto Re-closers</p> </li>
<li> <p>⚬ </p><p>Metering and Control Panels</p> </li>
<br>
<li> <p>⚭ </p><p>Circuit Breakers</p> </li>
<li class="sub-li"> <p>⚐ </p><p>Vacuum</p> </li>
<li class="sub-li"> <p>⚐ </p><p>GIS and SF6</p> </li>
</ul>
</ul>
</div>
</div>
<!-- item -->
<div class="mobile-product">
<div class="mobile-img img5">
<div class="mobile-image-tint">
<a href="">View</a>
</div>
</div>
<h2>INSULATORS</h2>
<div class="hidden-mobile-info">
<h3>Insulators Porcelain, Polymer and composite Insulators for Low Voltage < 1,000 V,
Medium Voltage 1,000 V to 33 kV, High Voltage 66 kV to 275 kV and Extra High
Voltage over 275 kV power lines, stays wires and other applications.</h3>
<h4>1. SILICONE RUBBER LONG ROD INSULATOR</h4>
<ul>
<li> <p>⚬ </p> <p>11 kV - 33 kV Silicon</p> </li>
<li> <p>⚬ </p> <p>66 kV - 750 kV Silicone Rubber Suspension Insulator for Transmission</p> </li>
</ul>
<h4>2. SILICONE RUBBER LINE POST INSULATOR</h4>
<ul>
<li> <p>⚬ </p> <p>Silicone Rubber Vertical Line Post Insulator</p> </li>
<li> <p>⚬ </p> <p>Silicone Rubber Horizontal Line Post Insulator</p> </li>
<li><p>⚬ </p> <p>11-33kV Silicone Rubber Pin Post Insulator</p> </li>
</ul>
<h4>3. SILICONE RUBBER BRACED POST INSULATOR</h4>
<ul>
<li> <p>⚬ </p> <p>Gain Base Mounting</p> </li>
<li> <p>⚬ </p> <p>Flat Base Mounting</p> </li>
<li> <p>⚬ </p> <p>Pivoting Base Mounting</p> </li>
</ul>
<h4>4. SILICONE RUBBER POST INSULATOR</h4>
<ul>
<li> <p>⚬ </p> <p>IEC Standard</p> </li>
<li> <p>⚬ </p> <p>ANSI Standard</p> </li>
</ul>
<h4>5. SILICONE RUBBER HOLLOW INSULATOR</h4>
<h4>6. PORCELAIN STATION POST INSULATOR</h4>
<h4>7. PORCELAIN HOLLOW INSULATOR</h4>
<h4>8. SILICONE RUBBER (ELECTRICAL) RAILWAY INSULATOR</h4>
<h4>9. HYBRID INSULATOR</h4>
<ul>
<li> <p>⚬ </p> <p>Hybrid Post Insulator</p> </li>
<li> <p>⚬ </p> <p>Hybrid Railway Insulator</p> </li>
<li> <p>⚬ </p> <p>Hybrid Line Post Insulator</p> </li>
</ul>
<h4> 10. COPPER CONDUCTOR DRY TYPE WALL BUSHING</h4>
<h4>11. GLASS INSULATOR WITH RTV SILICONE COATING</h4>
<h4>These insulators can be supplied in:</h4>
<ul>
<li> <p>⚬ </p> <p>Silicone or Polymer</p> </li>
<li> <p>⚬ </p> <p>Porcelain</p> </li>
<li> <p>⚬ </p> <p>Epoxy resin</p> </li>
</ul>
</div>
</div>
<!-- Product 6 -->
<div class="mobile-product">
<div class="mobile-img img6">
<div class="mobile-image-tint">
<a href="">View</a>
</div>
</div>
<h2>LOW VOLTAGE PRODUCTS</h2>
<div class="hidden-mobile-info">
<h3>Rousant is able to supply a wide range of low voltage products such as distribution equipment and switchgear
- subject only to quantities being sufficient to justify the cost of freight.</h3>
<h4>Some products may be available in smaller quantities from Rousant's warehouse facilities in Dar Es Salaam,
Lusaka or Kampala – please enquire from our local representative in your country.</h4>
<ul>
<h4>Products generally available include:</h4>
<li> <p>⚬ </p> <p>4 Way, 6 Way, 8 Way and customised Feeder Pillars</p> </li>
<li> <p>⚬ </p> <p>Distribution Boards – empty, pre-wired or customised</p> </li>
<li> <p>⚬ </p> <p>Customised Measurement and Control Panels</p> </li>
<li> <p>⚬ </p> <p>Pole Top Distribution boxes</p> </li>
<li> <p>⚬ </p> <p>Miniature Circuit Breakers</p> </li>
<li> <p>⚬ </p> <p>Air Circuit Breakers and MCCBs</p> </li>
<li> <p>⚬ </p> <p>Changeover, bypass and Time switches</p> </li>
<li> <p>⚬ </p> <p>Switch Disconnector Fuses</p> </li>
<li><p>⚬ </p> <p>HRC and other Fuses and Fuse Bases</p> </li>
<li> <p>⚬ </p> <p>Ready Boards</p> </li>
<li> <p>⚬ </p> <p>Fuse Cutouts</p> </li>
<li> <p>⚬ </p> <p>House Service Cutouts</p> </li>
<li> <p>⚬ </p> <p>Pole Mounted Cutouts</p> </li>
<li> <p>⚬ </p> <p>Street Lighting Cutouts</p> </li>
</ul>
</div>
</div>
<!-- Product 7 -->
<div class="mobile-product">
<div class="mobile-img img7">
<div class="mobile-image-tint">
<a href="">View</a>
</div>
</div>
<h2>TRANSFORMERS</h2>
<div class="hidden-mobile-info">
<h4>Reactors and Earthing resistors</h4>
<h4>Power Capacitors and Capacitor Banks for Network Compensation</h4>
<h4>Power transformers:</h4>
<ul>
<li><p>⚬ </p> <p>11 kV to 500 kV voltage level</p> </li>
<li><p>⚬ </p><p>1 MVA to 1000 MVA power handling capacity with ONAN and/or ONAF cooling</p></li>
<li><p>⚬ </p><p>Tested up to 1000 KV lightning impulse withstand as required</p></li>
</ul>
<h4>Distribution transformers:</h4>
<ul>
<li><p>⚬ </p><p>0.2 kV to 33 kV voltage levels</p></li>
<li><p>⚬ </p><p>Single or three phase 15KVA up to 1 MVA power handling capacity</p></li>
<li><p>⚬ </p><p>Oil immersed</p></li>
<li><p>⚬ </p><p>Copper and aluminium wound</p></li>
<li><p>⚬ </p><p>Resin/dry type transformer</p></li>
<li><p>⚬ </p><p>Pole mount and ground mount</p></li>
<li><p>⚬ </p><p>Voltage and current transformers of any configuration required</p></li>
</ul>
</div>
</div>
<!-- Product 8 -->
<div class="mobile-product">
<div class="mobile-img img8">
<div class="mobile-image-tint">
<a href="">View</a>
</div>
</div>
<h2>WOODEN POLES</h2>
<div class="hidden-mobile-info">
<h3>Pole:</h3>
<ul>
<li><p>⚬ </p><p>Sustianably grown Eucalyptus</p></li>
</ul>
<h3> Treatments:</h3>
<ul>
<li><p>⚬ </p><p>Kiln dried</p></li>
<li><p>⚬ </p><p>Creosote</p></li>
<li><p>⚬ </p><p>CCA</p></li>
</ul>
<h3>Certification:</h3>
<ul>
<li> <p>⚬ </p><p>ISO 9001</p> </li>
<li> <p>⚬ </p><p>Type Test Report</p> </li>
<li> <p>⚬ </p><p>Relevant Supply Records</p> </li>
<li> <p>⚬ </p><p>Sufficient Production Capacity</p> </li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<div class="top-footer-container">
<div class="top-footer-tint">
<!-- top -->
<div class="top-footer">
<!-- headings -->
<div id="foot-box" class="top-footer-right">
<h1> Representatives</h1>
<div class="">
<img src="resources/pictures/secondry/africa-512.png" alt="">
<h4>Africa</h4>
</div>
<div class="">
<img src="resources/pictures/secondry/asia-512.png" alt="">
<h4>Asia</h4>
</div>
<div class="">
<img src="resources/pictures/secondry/england-512.png" alt="">
<h4>United Kingdom</h4>
</div>
</div>
<!-- links -->
<div id="foot-box" class="top-footer-lefts">
<h1> <a href="#">Quick Links</a> </h1>
<div class="quick-links">
<h4> <a href="index.html">Home</a> </h4>
</div>
<div class="quick-links">
<h4> <a href="product.html">Products</a></h4>
</div>
<div class="quick-links">
<h4> <a href="expertise.html">Expertise</a></h4>
</div>
<div class="quick-links">
<h4> <a href="contracts.html">Completed Contracts</a></h4>
</div>
<div class="quick-links">
<h4> <a href="turnkey.html">Construction Projects</a></h4>
</div>
</div>
<!-- contact -->
<div id="foot-box" class="top-footer-lefts">
<h1>Contact Us</h1>
<div class="">
<h4> <a class=" mailtoui" href="mailto:info@rousant.com"> <span>✉</span> info@rousant.com</a> </h4>
</div>
</div>
</div>
</div>
</div>