-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathchemistry.csv
We can't make this file beautiful and searchable because it's too large.
4533 lines (4533 loc) · 756 KB
/
chemistry.csv
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
id,english,arabic,french,uri,description,vt,uatv
141330,Aufbeau principle,مبدأ البناء، مبدأ أوفباو,principe d'Aufbau,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141330,"ينص على أنه عند تعيين التركيب الالكتروني للحالة الدنيا لذرة ما, يمكننا أن نتخيل كما لو كانت الالكترونات جميعها قد نزعت عن النواة ثم صارت تعاد واحد تلو الآخر حسب المدارات المتاحة، حيث تملأ مدارات الطاقة الدنا أولا",True,True
141350,Avogadro's constant,ثابت أفوغادرو,constant d'Avogadro,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141350,رقم يدل على عدد الجزيئات في جرام جزيء من أي مادة,True,True
141351,Avogadro's hypothesis,فرضية أفوغادرو,hypothèse d'Avogadro,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141351,,True,True
141352,Avogadro's number,عدد أفوغادرو,nombre d'Avogadro,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141352,,True,True
141419,Baumé degree,درجة بوميه,degré de Baumé,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141419,,True,True
141420,Baumé scale,مقياس بوميه,aéromètre de Baume,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141420,مقياس مدّرج بطريقة خاصة للدلالة على كثافة سائل,True,True
141429,Beckmann apparatus,جهاز بكمان,appareil de Beckmann,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141429,لقياس درجات التجمد والغليان في السوائل,True,True
141430,Beckmann thermometer,مقياس حرارة بكمان، ترمومتر بكمان,thermomètre de Beckmann,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141430,ميزان حرارة زئبقي شديد الحساسية,True,True
141431,Becquerel,بيركيل,Becquerel,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141431,,True,True
141432,Becquerel rays,أشعة بيركيل,rayons de Becquerel,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141432,,True,True
141450,Bessemer process; Bessemer converter,عملية بسمر,convertisseur de Bessemer,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141450,,True,True
141488,Biuret reaction,تفاعل بيورت,réaction de Biuret,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141488,,True,True
141511,Bohr model (of the atom),نموذج بور,modèle Bohr (de l'atome),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141511,للذرة,True,True
141512,Bohr radius,نصف قطر<بور>,radius de Bohr,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141512,,True,True
141609,Boltzmann factor,عامل بولتزمان، معامل بولتزمان,facteur de Boltzmann,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141609,الذي يستخدم للحصول على نسبة الجزيئات المنشطة,True,True
141557,Bordeau mixture,مزيج بوردو، مخلوط بوردو,mélange de Bordeau,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141557,مخلوط يحتوي على مركبات النحاس ويستخدم لابادة الميكروبات والفطريات,True,True
141563,Boyle's law,قانون بويل,loi de Boyle,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141563,,True,True
141564,Bragg equation,معادلة براغ,équation de Bragg,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141564,وهي العلاقة الرئيسية لنعيين التركيب البلوري من حيود الأشعة السينية,True,True
141580,Bronsted-Lowry acide-base theory,نظرية برونستد لاوري للحموض والقواعد,théorie de Br?nsted Lowry acido-basique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141580,,True,True
141582,Brownian movement,حركة (ال...) البراونيّة,mouvement Brownien,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141582,حركة ترى بالفحص المجهري للحبيبات الغروية وما شاكلها وتنشأ نتيجة لمصادمة جزيئات الوسط مع هذه الحبيبات,True,True
141595,Bunsen-burner,مِحراق بِنسن,brûleur de Bensen,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141595,,True,True
141586,Büchner flask,قارورة بوخنير,flacon de Büchner,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141586,,True,True
141587,Büchner funnel,قمع بخنير,entonnoir de Büchner,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141587,,True,True
141712,Charle's law,قانون شارل,loi de Charle,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141712,قانون يحدد تغيير حجم الغاز مع تغيير درجة الحرارة عند ثبوت الضغط,True,True
141777,Claisen flask,دورق كلاسين,ballon de Claisen,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141777,,True,True
141962,Cottrel process,طريقة كوتريل,procédé Cottrell,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141962,طريقة كهربية لترسيب الحبيبات الدقيقة العالقة بالأبخرة في المصانع,True,True
142025,Dalton's law,قانون دالتون,loi de Dalton,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142025,,True,True
142026,Dalton's theory,نظرية دالتون,théorie de Dalton,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142026,,True,True
142029,Daniel cell,خلية دانيال,pile Daniel,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142029,,True,True
142039,Debye unit,وحدة ديباي,unité Debye,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142039,,True,True
142038,Debye-Huckel theory,نظرية ديباي - هوكل,théorie de Debye-Hückel,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142038,,True,True
142140,Dewar's vessel,إناء ديوار,vase de Dewar,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142140,,True,True
142242,Dobreiner's triads,ثلالثيات دوبرينز,triades de Dobiener,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142242,,True,True
142254,Down's cell,خلية دوان,cellule de Down,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142254,استخلاص الصوديوم صناعيا بالتحليل الكهربائي لمصهور ملح الطعام,True,True
142433,Engler distillation,تقطير<انجلر>,distillation Engler,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142433,لتحديد مدى درجات الغليان لأجزاء المزيج البترولي,True,True
142434,Engler viscosity,لزوجة <أنجلر>,viscosité Engler,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142434,,True,True
142449,Epson salt,ملح ابسوم، كبريتات المغنسيوم,sel d'Epson; sulfate de magnésie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142449,,True,True
142474,Erlenmeyer,ارلينة، كاس مخروطي,Erlenmeyer,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142474,,True,True
142475,Erlenmeyer flask,دورق مخروطي، ارلنماير,fiole d'Erlenmeyer,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142475,,True,True
142552,Faraday,فارادي,Faraday,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142552,,True,True
142561,Fehling's solution,محلول فهلنغ,solution de Fehling,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142561,,True,True
142599,Fehling's test,اختبار فهلنغ,test de Fehling,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142599,,True,True
142564,Fenton's reagent,كاشف <فنتون>,réactif de Fenton,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142564,,True,True
142607,Fittig's reaction,تفاعل فيتيغ,réaction de Fittig,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142607,,True,True
142728,Gabriel's synthesis,اصطناع غابرييل,synthèse de Gabriel,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142728,,True,True
142772,Gatterman-Koch reaction,تفاعل غاترمان-كوش,réaction de Gatterman-Koch,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142772,,True,True
142775,Gay Lussac's law,قانون <غي لوشاك>,loi de Gay-Lussac,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142775,,True,True
142776,Geiger counter,عدّاد غيجر,compteur de Geiger,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142776,للكشف عن المواد المشعة,True,True
142787,Geneva nomenclature,تسمية جنيف,nomenclature de Genève,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142787,,True,True
142788,Geneva termination,تسمية جنيف,nomenclature de Genève,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142788,,True,True
142806,Glauber's salt,ملح <غلوبر>,sel de Glauber,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142806,كبريتات الصوديوم تستعمل كمسهل,True,True
142809,Glover tower,برج <غلوفر>,tour de Glover,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142809,,True,True
142822,Goldschmidt process,عملية غولد شميدت,processus de Goldschmidt,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142822,,True,True
142823,Gouy balance,ميزان غوي,balance de Gouy,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142823,الذي يستخدم لوزن المادة البار مغناطيسية,True,True
142829,Graham's law (of gases),قانون <غراهام>,loi de Graham,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142829,في الغازات,True,True
142867,Grignard,غرينيارد,Grignard,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142867,اسم علم,True,True
142852,Grignard compounds,مركبات غرينيارد,composé de Grignard,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142852,مجموعة من المركبات العضوية الفلزية تستعمل بكثرة في التخليق الكيميائي وسميت باسم كاشفها العالم غرينيارد,True,True
142853,Grignard reaction,تفاعل غرينيارد، كاشف غرينيارد,réaction de Grignard,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142853,,True,True
142856,Grothus mechanism,حركية غروتس، جروتس,mécanisme de Grotthus,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142856,,True,True
142868,Haber process,عملية هابر، إجراء هابر,processus de Haber; procédé de Haber,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142868,,True,True
142869,Haematin; hematin,هيماتين,hématine; hématosine,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142869,,True,True
142914,Hempel burette,سحاحة <همبل>,burette de Hempel; éprouvette de Hempel,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142914,لقياس حجم الغاز,True,True
142920,Herschel demulsibility number,عدد هرشل لتفكك الاستحلاب,nombre de Herschel de démulsibilité,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142920,,True,True
142921,Hess's law of constant heat summation,قانون <هيس> للجمع الجبري الحراري الثابت,loi de Hess,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142921,ان حرارة أي تفاعل لا تتغير سواء اعتبرنا التفاعل سلسلة من التفاعلات المرحلية أو خطوة واحدة,True,True
142937,Hinsberg reaction,تفاعل هنزبرغ,réaction de Hinsberg,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142937,,True,True
142938,Hoffman reaction,تفاعل هوفمان,réaction de Hoffman,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142938,,True,True
142964,Hund's rule,قاعدة هوند,règle de Hund,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142964,التي تقول : تميل الالكترونات إلى عدم الازدواج، أو أن تكون مغازلها متوازية، أو أن يكون لها نفس عدد الكم المغزلي,True,True
142981,Hydrocol process,عملية هيدروكول,procédé de Hydrocol,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142981,طريقة لاستخراج البنزين والكيروسين من الغاز الطبيعي,True,True
142917,Hérault-Hall process,إجراء هير-هول,processus de Hérault-Hall,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=142917,لتحضير الألومنيوم,True,True
143188,I.U.P.A.C.,اتحاد (ال...) الدولي للكيمياء البحتة والتطبيقية,U.I.C.P.A,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=143188,,True,True
143193,Jahn-Teller effect,تأثير جان-تيلر، ظاهرة جان-تيلر,effet de Jahn Teller,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=143193,,True,True
143202,Jolly balance,ميزان <جولي>,balance de Jolly,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=143202,لقياس الوزن النوعي بمقارنة الوزن في الماء والهواء,True,True
143203,Jolly's apparatus,جهاز <جولي>,appareil de Jolly,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=143203,للتحليل الحجمي للهواء,True,True
143204,Joule,جول,Joule,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=143204,,True,True
143206,Joule (unit),جول,Joule,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=143206,وحدة قياس للطاقة تساوي 10 مليون ارغ,True,True
143205,Joule-Thomson effect,تأثير جول-طومسون، ظاهرة جول-طومسون,effet Joule-Thomson,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=143205,,True,True
143233,Kipp's apparatus,جهاز كب,appareil de Kipp,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=143233,لتوليد كبريتيد الهيدروجين أو أي غاز آخر,True,True
143234,Kjeldahl flask,دورق كيلدال,flacon de Kjeldahl,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=143234,,True,True
143235,Kjeldahl's method,طريقة كيلدال,méthode de Kjeldahl,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=143235,لتقدير كميات النتروجين في المركبات العضوية,True,True
143348,L-electron,ألكترون L,électron-L,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=143348,الكترون ثنائي العدد الكمي الرئيسي,True,True
143438,L-shape,شكل حرف L,forme-L,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=143438,,True,True
143347,Le Chatelier-Braun principale,مبدأ <ليشاتلييه-براون>,loi Le Chatelier,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=143347,,True,True
143346,Leblanc process,إجراء لبلان,procédé Leblanc,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=143346,طريقة تستخدم لتحضير كربونات الصوديوم من كلوريد الصوديوم وتحمل اسم مخترعها,True,True
143354,Liebig's condenser,مكثف ليبيغ,condensateur de Liebig,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=143354,,True,True
143429,Lorentz transformation,تحويل لورنتز,transformation de Lorentz,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=143429,,True,True
143428,Lorentz-Lorenz equation,معادلة لورنتز-لورنز,équation de Lorentz-Lorenz,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=143428,,True,True
143430,Loschmidt number,عدد <لوشميدات>,nombre de Loschmidt,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=143430,عدد الجزيئات في سم3 من الغاز في الظروف القياسية 2.6872 x 10أس 15,True,True
143496,Marcovinkov's rule,قاعدة مركوفينكوف,règle de Marscovinkov,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=143496,,True,True
143498,Marsh test,اختبار مارش,test de Marsh,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=143498,,True,True
143523,Mendeleiev,مندليف,Mendeleiev,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=143523,,True,True
143524,Mendeleiev's table,جدول مندليف,table de Mendeleieff (Mendéléiev); classification périodique des éléments,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=143524,لترتيب العناصر الكيميائية,True,True
143643,Molish test,اختبار موليش,essai de Molish,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=143643,,True,True
143670,Napalm,نابالم,Napalm,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=143670,هلام بترولي للقنابل المحرقة بالميتات الصوديوم,True,True
143705,Nernst equation,معادلة نرست,équation de Nernst,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=143705,تأثير التركيز على جهد الخلية,True,True
143707,Nessler's solution,محلول نِسلِر,solution de Nessler,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=143707,,True,True
143818,Nylander solution; Nylander reagent,محلول نايلندر، كاشف نيلندر,réactif de Nylander,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=143818,,True,True
143849,Ohm's law,قانون أوم,loi d'Ohm,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=143849,,True,True
143866,Onsager's conductance theory,نظرية أنساجر للتوصيل,théorie d'Onsager pour la conductance,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=143866,,True,True
143911,Ostwald process,إجراء اوستوالد، عملية اوستوالد,processus d'Ostwald,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=143911,,True,True
143956,Pall ring (column),حلقة بال، عمود بال,anneau de Pall,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=143956,,True,True
143969,Paris green,أخضر باريس,vert de Paris,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=143969,مركب من النحاس والزرنج,True,True
143979,Paschen series,سلسلة باشن,série de Paschen,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=143979,,True,True
143991,Pauli exclusion principle,مبدأ الاستثناء لباولي,principe d'exclusion de Pauli,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=143991,وينص على أن أي الكترونين في ذرة ما، لا يمكن أن يكون لها نفس المجموعة من إعداد الكم الأربعة,True,True
143992,Pauli principle,مبدأ باولي,principe de Pauli,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=143992,,True,True
144272,Q-electron,ألكترون Q,électron-Q,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=144272,,True,True
144273,Q-shell,طبقة(ال...) Q,couche-Q,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=144273,الغلاف الالكتروني السباعي مجموعة الالكترونات السباعية,True,True
144485,R?entgen rays,أشعة روتنجن، أشعة x,rayons R?entgen,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=144485,,True,True
144323,Radii,أنصاف القطر,Radii,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=144323,,True,True
144346,Raney's alloy,إشابة راني، خليطة راني,alliage de Raney,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=144346,سبيكة مختزلة للنترات بها 30% نيكل و 70% ألومنيوم,True,True
144348,Raoult's law,قانون راؤول,loi tonométrique de Raoult,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=144348,الانخفاض النسبي في الضغط البخاري يساوي الكسر المولي للمذيب في محلول مخفف,True,True
144351,Rashig rings,حلقات راشغ,anneau Rashing,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=144351,,True,True
144416,Reimer's reaction,تفاعل رايمر,réaction de Reimer,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=144416,,True,True
144466,Rf-value (retention factor),قيمة R.F,valeur du facteur de rétention,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=144466,قيمة عامل الاستبقاء,True,True
144484,Roler reaction,تفاعل رولر، تفاعل أوكسو,synthèse oxo (hydroformulation),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=144484,,True,True
144488,Rose's crucible,بوتقة <روز>,creuset de Rose,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=144488,,True,True
144506,Rutherford,رذرفورد,Rutherford,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=144506,,True,True
144530,Sandmeyer's reaction,تفاعل ساندماير,réaction de Sandmeyer,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=144530,,True,True
144545,Schr?dinger equation,معادلة شرودنغر,équation de Schr?dinger,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=144545,تضفى على الالكترون الطبيعية الموجبة، والدقيقة معا، فهي تحتوي على الكتلة وطول الموجة المناسبة لها,True,True
144653,Solvay tower,برج سولفاي,tour de Solvay,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=144653,,True,True
144948,T- piece,أنبوب على شكل T، وصلة على شكل T، وصلة T,tube en T,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=144948,,True,True
144835,T-connection,وصلة قائمة ثلاثية (على شكل T)، أنبوب على شكل T، وصلة T,tube à forme T; tube en T,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=144835,,True,True
145018,Tyndall effect,تأثير تندال، ظاهرة تندال,effet de Tyndall,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=145018,وهي ظاهرة تشتت الضوء في المادة الغروانية في جميع الاتجاهات,True,True
145080,U-tube,أنبوب على شكل U، أنبوب U,tube à forme U; tube en U; tube-U,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=145080,,True,True
145194,VSEPR Theory,نظرية دفع الأزواج الالكترونية في طبقة التكافؤ,théorie de répulsion d'électron-paire à la couche de Valence,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=145194,,True,True
145107,Van der Waalls equations (law),معادلة فان ديرفال (قانون),équation de Van der Waals,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=145107,,True,True
145108,Van't Hoff's law,قانون <فانت هوف>,loi de Van't Hoof,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=145108,للضغط الأزموزي,True,True
145197,Walden optical inversion,تعاكس <ولدن> البصري، انقلاب <ولدن> البصري,inversion optique de Walden,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=145197,,True,True
145255,Werner's theory,نظرية فرنر,théorie de Werner,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=145255,,True,True
145262,Wheatstone bridge,حسر هويتستون,pont de Wheatstone,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=145262,,True,True
145269,Wien effect,تأثير فين,effet Wien,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=145269,تدرج الكمون، توصيلية الالكتروليت عند تدرج كمون عال جدا,True,True
145270,Wien's distribution law,قانون التوزيع ل<فين>,loi de distribution de Wein,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=145270,,True,True
145273,Wilson cloud chamber,غرفة الغيم لويلسن، غرفة السحاب لولسن,chambre de Wilson,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=145273,,True,True
145288,Wurtz synthesis,اصطناع فورتس، تخليق <فورتس>,synthèse de Wurtz,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=145288,,True,True
140829,aberration,زيغ,aberration,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140829,,True,True
140830,ability,قدرة,pouvoir; capacité,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140830,,True,True
140832,abnormal molecular weights,أوزان جزئية شاذة,poids moléculaires anormaux,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140832,,True,True
140831,abnormality,شذوذ، حالة شاذة,anormalité,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140831,,True,True
140833,abolish (to),أبطل,abolir,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140833,,True,True
140834,abraison tester,جهاز اختبار السحج، رائز السحج,appareil vérificateur d'abrasion,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140834,جهاز تختبر به مقاومة المواد للاحتكاك,True,True
140835,absolute,مطلق، صرف,absolu,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140835,,True,True
140836,absolute alcohol,غول صرف، كحول صرف,alcool absolu,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140836,الكحول الخالي من الماء والشوائب,True,True
140837,absolute density,كثافة مطلقة,densité absolue,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140837,,True,True
140838,absolute entropie,أنتروبيا مطلقة، اعتلاج مطلق,entropie absolue,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140838,,True,True
140839,absolute error,خطأ مطلق,erreur absolue,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140839,,True,True
140840,absolute humidity,رطوبة مطلقة,humidité absolue,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140840,,True,True
140841,absolute potential,كمون مطلق، جهد مطلق,potentiel absolu,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140841,,True,True
140842,absolute pressure,ضغط مطلق,pression absolue,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140842,,True,True
140843,absolute temperature,درجة الحرارة المطلقة,température absolue,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140843,تقدير لدرجة الحرارة يعتمد على القياس الحراري الذي يبدأ بالصفر المطلق,True,True
140844,absolute weight,وزن مطلق,poids absolu,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140844,في الفراغ,True,True
140845,absolute zero,صفر (ال...) المطلق,zéro absolu,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140845,درجة الحرارة التي تتوقف عندها حركة الجزيئات وتساوي 273 م,True,True
140846,absorb (to),مصّ، امتصّ,absorber,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140846,,True,True
140847,absorbent,ماصّ، ممتصّ,absorbant,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140847,المادة القابلة لتغلغل سائل أو غاز داخلها,True,True
140848,absorber,ممصّ,absorbeur,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140848,,True,True
140849,absorptiometer,مقياس الامتصاص، ممصاص,absorptiomètre,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140849,,True,True
140850,absorption,مصّ، امتصاص,absorption,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140850,,True,True
140851,absorption band,حزمة امتصاص,bande d'absorption,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140851,مجموعة من الموجات الضوئية تم امتصاصها بواسطة الجزيئات,True,True
140852,absorption coefficient,معامل امتصاص,coefficient d'absorption,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140852,,True,True
140853,absorption mass,كتلة الامتصاص,masse d'absorption,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140853,,True,True
140854,absorption spectrometry,قياس مطيافة الامتصاص,spectrométrie d'absorption,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140854,,True,True
140855,absorption spectrum,طيف الامتصاص,spectre d'absorption,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140855,طيف ينتج عن امتصاص أمواج ذات أطوال معينة من الأمواج الكهرومغناطيسية,True,True
140856,absorption tower,برج امتصاص,tour d'absorption,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140856,,True,True
140857,absorption tube,أنبوب امتصاص,tube d'absorption,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140857,,True,True
140858,absorptive,امتصاصي,absorptif,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140858,,True,True
140859,absorptivity,امتصاصيّة,absorptivité,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140859,قدرة المادة على الامتصاص,True,True
140860,abstract,مستخلص، تلخيص,extrait; sommaire,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140860,,True,True
140861,abstraction,استخلاص، تلخيص,abstraction,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140861,,True,True
140862,abundance,وفرة,abondance,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140862,,True,True
140863,abundance curve,منحنى الوفرة,courbe d'abondance,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140863,,True,True
140864,accelerate (to),سرّع، عجّل,accélérer,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140864,,True,True
140867,accelerate the reaction,سرّع التفاعل,accélérer la réaction,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140867,زاد في سرعة التفاعل,True,True
140865,accelerated filtration,ترشيح مسرّع,filtration accélérée,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140865,,True,True
140866,accelerated reaction,تفاعل مسرَّع,réaction accélérée,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140866,,True,True
140868,accelerator (particles),مسرّع، معجّل,accélérateur,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140868,,True,True
140869,acceptable,مقبول,acceptable,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140869,,True,True
140870,acceptor,مُتَقَبِّل,accepteur,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140870,وصف للذرة أو الجزيء الذي يتقبل الالكترونات من ذرة أو جزيء آخر لتكوين آصرة بينهما,True,True
140871,acceptor atom,ذرّة متقبلة,atome accepteur,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140871,,True,True
140872,accession,مرور,passage,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140872,مرور النواة إلى السلسلة أو العكس والسلسلة هي توالي ذرات الكربون المترابطة,True,True
140873,accessory,إضافي، ملحق,accessoire,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140873,,True,True
140874,accidental proprety,خاصة عشوائية,propriété accidentelle,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140874,,True,True
140875,accidents (laboratory..),حوادث المختبر,accidents de laboratoire,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140875,,True,True
140876,accumulate (to),تراكَم,accumuler (s'); amasser (s'),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140876,,True,True
140877,accumulation,تراكُم,accumulation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140877,,True,True
140878,accumulator,مركِّم، مِركم,accumulateur,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140878,,True,True
140879,accuracy,دقة، ضبط,précision,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140879,,True,True
140880,accuracy test,اختبار ضبط,essai de précision,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140880,,True,True
140881,accurate,دقيق,précis,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140881,,True,True
140882,accurate balance,ميزان دقيق,balance de précision,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140882,الميزان الذي تصح عليه الأوزان,True,True
140883,acetal,أسيتال، خلاّل,acétal,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140883,سائل عضوي عديم اللون يحضر بتفاعل خليط من الكحول والأسيتالدهيد في وجود كلوريد الهيدروجين,True,True
140884,acetaldehyde,أسيت الدهيد، اسيتالدهيد، الألسيدهيد الخلي,acétaldéhyde,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140884,سائل عضوي عديم اللون له رائحة عطرية نفاذة,True,True
140885,acetamide,أسيتاميد، أميد (ال...) الخلي,acétamide,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140885,مركب عضوي لا لون له وهو أميد حمض الخل,True,True
140886,acetamidine,أسيتاميدين، أميدين (ال...) الخلي,acétamidine,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140886,مشتق أميني للأسيتاميد,True,True
140887,acetanilide,أسيتانيليد، أنيليد (ال...) الخلي,acétanilide,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140887,مركب بلوري عديم اللون يتكون باستلة الأنيلين,True,True
140888,acetate,أسيتيات، خلاّت,acétate,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140888,أملاح حمض الخل (الأستيك) واستراته,True,True
140889,acetic acid,حمض الخلّ، حمض الأسيتيك,acide acétique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140889,,True,True
140890,acetic acid,حمض الخل الجليدي، حمض الأسيتيك الجليدي,acide acétique glacial,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140890,السائل الذي يحتوي على مائت في المائة من حمض الخل,True,True
140891,acetic anhydride,لامائي حمض الأسيتيك، لامائي حمض الخل، انهيدريك اسيتيك,anhydride acétique; انهيدريد أسيتيك; أندريد أسيتيك,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140891,مركب يتكون بإزالة جزىء ماء من كل جزيئين من حمض الخل,True,True
140892,acetification,أستلة، تخليل,acétification,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140892,استعمال حمض الخل في تحميض محلول ما,True,True
140893,acetify (to),أستَلَ، خَلَّل,acétifier,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140893,,True,True
140894,aceto-acétic acid,حمض الأسيتوأسيتيك، حمض خلاّل الخل، حمض الأسيتيلاسيتيك,acide acéto-acétique; acide acétylacétique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140894,,True,True
140895,acetolysis,تحليل أستيلي,acetolyse,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140895,تفكيك مركب عضوي بفعل حامض الخليك,True,True
140896,acetometer,مقياس الخل، أسيتومتر,acétomètre,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140896,,True,True
140897,acetonate (to),أَستَنَ، خَلوَنَ,convertir en combinaison acétonique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140897,,True,True
140898,acetone,أسيتون، خلّون,acétone,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140898,سائل طيار عديم اللون له رائحة مميّزة يغلي عند درجة 56 م,True,True
140899,acetyl,أستيل، خليل,acétyle,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140899,مجموعة حمض الخل,True,True
140903,acetyl number,عدد الأستيل,indice d'acétyle,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140903,الرقم الاستدلالي للأستيل,True,True
140901,acetyl value,قيمة أستيلية,valeur d'acétyle,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140901,مقدار ما في المركب من مجموعة أو أكثر من المجموعات الأستيلية مقدرة بالوزن منسوبة إلى وزن المادة الأصلي,True,True
140902,acetylation,أستلة,acétylation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140902,إدخال مجموعة الأستيل ‘لى المركبات العضوية,True,True
140900,acetylene,أسيتيلين,acétylène,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140900,غاز عديم اللون يشتعل في وجود الأكسجين معطيا درجة حرارة عالية ويستخدم في عملية اللحام,True,True
140904,achromatic,لا لوني,achromatique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140904,,True,True
140905,acid,حمْض,acide,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140905,مادة لاذعة المذاق وسبب هذه الخاصية وجود أيونات هيدروجينية أثرها واضح في المحلول,True,True
140906,acid (anhydrides),لا مائيات الحموض، أنهيدريدات الأحماض، أندريدات الأحماض,acide anhydrides,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140906,المركبات التي تنتج من انتزاع جزىء الماء من الأحماض,True,True
140911,acid (hypobromous…),حمض تحت البرومي، حمض تحت البرموز,acide hypobromeux,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140911,مركب غير ثابت يستخدم كعامل مؤكسد,True,True
140928,acid (strength of…),قوة الحمض,teneur d'acide; titre d'acide,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140928,,True,True
140908,acid derivative,مشتقات حمضية، مشتق حمضي,dérivé d'acide,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140908,,True,True
140909,acid dye,صبغة حمضيّة,colorant acide,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140909,,True,True
140910,acid hydrolysis,حلمأة، حلمهة بالحمض,hydrolyse d'acide; تحلل مائي حمضي,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140910,تفكيك مركب إلى مكوناته في وسط مائي حمضي مثل تفكك الاسترات والأميدات,True,True
140917,acid inhibitor,مانع تآكل بالحمض,inhibiteur d'acide,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140917,,True,True
140919,acid milling,تلبيد بالحمض,foulage par acide,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140919,إحدى عمليات تجهيز المنسوجات الصوفية وفيه بعالج النسيج في وسط حمضي فيتلبد كعملية تلبيد القبعات والطرابيش وبعض أنواع المنسوجات الصوفية كالجوخ,True,True
140920,acid number,عدد (ال...) الحمضي,nombre d'acide,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140920,اصطلح عليه ليدل على نسبة ما في جسم ما من حموضة,True,True
140922,acid proof,مقاوم الحمض,anti-acide,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140922,,True,True
140923,acid radical,جذر حمضي,radical acide,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140923,,True,True
140924,acid resisting,مقاوم الحمض,résistant à l'acide; antiacide,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140924,,True,True
140925,acid salt,ملح حمضي,sursel,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140925,,True,True
140926,acid sludge,ثقل الحمض,résidu d'acide,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140926,,True,True
140927,acid spotting,تبقيع بالحمض,repiquage par acide,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140927,عملية اختبار درجة ثبات صبغة نسيج بتطبيعة بحمض له درجة تركيز معيّنة تحت ضروف محدّدة,True,True
140930,acid value,قيمة (ال...) الحمضية,valeur d'acide,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140930,عدد المليغرامات من البوتاس الكاوية اللازمة لمعادلة الأحماض الدهنية الموجودة في غرام واحد من زيت أو دهن نباتي أو حيواني ويستخدم هذا المصطلح في تحليل الدهن والزيوت,True,True
140907,acid-base indicators,مشعرات الحموض، قواعد (ال...),indicateurs acide-base,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140907,,True,True
140912,acidic,حمضي,acide,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140912,صفة تطلق على المحاليل التي عددها الهيدروجيني أقل من سبعة وأمثال هذه المحاليل تغير ورق عباد الشمس إلى اللون الأحمر,True,True
140913,acidic medium,وسط حمضي,milieu acide,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140913,,True,True
140914,acidification,تحميض,acidification,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140914,إضافة حمض إلى محلول ما حتى يصبح عدده الهيدروجيني أقل من سبعة,True,True
140915,acidify (to),حمَّض,acidifier,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140915,,True,True
140943,acidimeter,مقياس لحموضة المحلول، مِحماض,acidomètre; acidimètre (pèse-acide),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140943,,True,True
140916,acidimetry,قياس الحموضية، محماضية,acidimétrie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140916,تعيين كمية الحمض الموجودة في محلول بمعادلته بمحلول قاعدي معروف القوة,True,True
140918,acidity,حمضية,acidité,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140918,ابتعاد العدد الهيدوجيني لمحلول ما عن رقم التعادل إلى ماهو دون هذا الرقم,True,True
140921,acidolysis,تحلل حمضي,acidolyse,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140921,,True,True
140929,acidulated water,ماء محمَّض,eau acidulée,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140929,,True,True
140931,acorn oil,زيت البلوط,huile de gland,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140931,,True,True
140932,acorn sugar,سكر البلّوط,quercite; quercitol,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140932,,True,True
140933,acrylan,أكريلان,acrylan,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140933,من الجزئيات العملاقة ينتج عن بلمرة الألكريلونيتريل,True,True
140934,actinides,اكتينيدات,actinides,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140934,,True,True
140935,actinism,أكتينية,actinisme,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140935,فعالية الضوء الكيميائية,True,True
140936,actinium,أكتينيوم,actinium,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140936,,True,True
140937,actinometer,مقياس الأكتينيوم، أكتينومتر,actinomètre,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140937,جهاز لقياس كمية الأشعة الأكتينية بمقدار ما تحته من أثر في التفاعلات الكيميائية,True,True
140938,action,فعل,action,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140938,,True,True
140939,activate (to),نَشَطَ,activer,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140939,,True,True
140940,activated,منشَط,activé,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140940,,True,True
140941,activated adsorption,امتزاز، منشَّط,adsorption activée,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140941,,True,True
140942,activated atom,ذرة منشَّطة,atome activé,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140942,,True,True
140944,activated charcoal,فحم منشَّط,charbon activé,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140944,فحم نباتي زيد نشاطه بمعالجة سطوحه ما ضهر منها وما خفي بحيث تصبح لها القدرة على امتزاز المواد,True,True
140946,activation,تنشيط,activation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140946,تحويل أية مادة فسيولوجية كالأنزيمات أو أي عامل مساعد من حالة الركود إلى حالة النشاط,True,True
140947,activation energy,طاقة تنشيط,énergie d'activation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140947,,True,True
140948,activator,منشِّط,activateur,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140948,,True,True
140949,active,نشيط، فعّاّل,actif,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140949,,True,True
140950,active concentration,تركيز نَشِط، تركيز فعّال,concentration active,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140950,,True,True
140951,active deposit,متوضِّع نشط، متوضِّع فعّأل,dépôt actif,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140951,,True,True
140952,active hydrogen determination,تعيين الهيدروجين النّشط,détermination de l'hydrogène actif,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140952,,True,True
140953,active mass,كتلة نشطة، كتلة فعّالة,masse active,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140953,,True,True
140954,active molecules,جزيئات نشطة، جزيئات فعّالة,molécules actives,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140954,,True,True
140945,activited molecule,جزىء منشَّط,molécule activée,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140945,,True,True
140955,activity,نشاط، فعّاليّة,activité,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140955,,True,True
140956,activity coefficient,معامل النشاط، معامل الفعالية,coefficient de l'activité,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140956,,True,True
140957,activity of molecule,نشاط الجزىء,activité de la molécule,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140957,,True,True
140958,acyclic,لاحلقي,acyclique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140958,,True,True
140959,acyclic compound,مركب لاحلقي,composé acyclique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140959,,True,True
140963,acyl group,مجموعة أسيلية، مجموعة حمضيلية,groupe acyle,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140963,المجموعة أحادية التكافؤ الناتجة من إزالة مجموعة الهيدروكسيل من حزىء حمض عضوي,True,True
140960,acylate (to),اسَّل، حمضل,acyler,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140960,,True,True
140961,acylating agent,عامل مؤسّل، عامل محمضل,agent d'acylation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140961,عميل يستعمل لادخال مجموعة الأسيل في المركبات العضوية,True,True
140962,acylation,أَسْيَلة، حمضلة,acylation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140962,,True,True
140964,adapter; adaptor,مئلاف، وصلية,adaptateur,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140964,أنبوب زجاجية ملتوية توصل بنهاية المكثّف لتوجيه السائل المقطر إلى قنينة الاستقبال أو أية وصلة بين أنبوبتين مختلفتين في القطر,True,True
140965,addition,إضافة، ضم,addition,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140965,,True,True
140966,addition compound,مركّب بالاضافة,composé d'addition,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140966,,True,True
140967,addition plymer,بلمرٌ بالاضافة,polymère par addition,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140967,المركب الناتج من اتحاد عدد من الجزيئات لتكون جزئيا أكبر بدون انفصال مركب آخر,True,True
140968,addition reaction,تفاعل بالإضافة، تفاعل ضم,réaction d'addition,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140968,,True,True
140969,additive compound,مركّب بالإضافة,composé additif,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140969,,True,True
140970,additive property,خاصية إضافية,propriété additive,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140970,,True,True
140971,additivity,إضافية، جمعية,additivité,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140971,,True,True
140972,adenine,أدنين,adénine,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140972,من الأحماض التيوكليدية التي تدخل في تركيب البرتين وإنتاجه,True,True
140973,adenosine triphosphate (A.T.P),ثلاثي فوسفات الأدينوسين,triphosphate d'adénosine,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140973,وفي جزيئات هذا المركب تحبس الطاقة الكامنة المشتقة من الوقود وعند تحللها تنطلق الطاقة الكامنة على صورة حرارة تعادل 10 كيلو كالوري/مول,True,True
140974,adhesion,التصاق,adhésion,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140974,,True,True
140975,adhesive,لصوق,adhésif,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140975,,True,True
140976,adiabatic calorimeter,مسعر كضيم,calorimètre adiabatique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140976,جهاز لدراسة التفاعلات الكيميائية بأقل خسارة في الحرارة,True,True
140977,adiabatic expansion,تمدد مكظوم,expansion adiabatique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140977,,True,True
140978,adiabatic process,عملية كظيمة، إجراء كظيم,transformation adiabatique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140978,,True,True
140979,adipose cell,خلية شحمية، خلية دهنية,cellule adipeuse,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140979,خلية تفرز مواد شحمية,True,True
140980,adjacent charge rule,قاعدة شحنة مجاورة,règle de la charge adjacente,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140980,,True,True
140982,adjust (to) the balance,ضَبَط الميزان,régler une balance,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140982,,True,True
140981,adjustment,تضبيط، تعديل,ajustage; ajustement,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140981,,True,True
140983,admixture,مزْج، مزيج، شائبة,mélange,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140983,,True,True
140984,adsorb (to),امتزَّ,adsorber,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140984,,True,True
140985,adsorbate (substance),ممتزّة (مادة)، مزازة (مادة),adsorbat,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140985,,True,True
140986,adsorbent,مازّ,adsorbant,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140986,,True,True
140987,adsorption,امتزاز,adsorption,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140987,,True,True
140988,adsorption chromatography,كروماتوغرافيا امتزازية,chromatographie d'adsorption,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140988,,True,True
140989,adsorption indicator,مشعر امتزاز، دليل امتزاز,indicateur d'absorption,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140989,,True,True
140990,adsorption substance,مادة امتزازية,absorbant,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140990,,True,True
140991,adulterant,ماذق,adultérant,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140991,,True,True
140992,adulterate (to),مَذَق,adultérer; frauder,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140992,,True,True
140993,adulterated,مذيق,adultéré,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140993,,True,True
140994,adulteration,مَذْق,adultération,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140994,أن يذهب بنقاوة مادة ما بأن يضاف إليها مادة أو مواد أخس منها بقصد الغش غالبا,True,True
140995,aerate (to),هوّى,aérer,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140995,عرّض للهواء,True,True
140996,aeration,تهوية,aération,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140996,,True,True
140997,aerobic-aerobiotic,حيهوائي- هوائي,aérobie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140997,صفة للبكتريا التي لا تنمو في غير وجود الهواء أو الأكسيجين,True,True
140998,aerosol,ضبيبة، ايروسول، رذيذة، جلالة هوائية,aérosol,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140998,وهو نوع خاص من المواد الغروانية,True,True
140999,affinity,ألفة,affinité,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=140999,كيميائية,True,True
141000,agar,أغار، أجار,agar,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141000,نوع من الهلاميات ينتج عن انتشار دقائق صلبة في سائل بشكل شبكي. وفي المورد 'الاغرة مادة هلامية تستخلص من الطحالب البحرية',True,True
141001,agate,عقيق,agate,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141001,,True,True
141003,agent (catalytic),عميل حفّاز,agent catalyseur,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141003,,True,True
141002,agent (oxiding),عميل,agent,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141002,,True,True
141004,agglomerate,متكتّل,agglomérat,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141004,,True,True
141005,agglomerate (to),تَكَتَل,agglomérer (s'),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141005,,True,True
141006,agglomeration,تكتّل,agglomération,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141006,تجمع مواد مختلفة في كتلة واحدة,True,True
141007,agglutinate (to),غرى، لزن,agglutiner,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141007,,True,True
141008,agglutination,تغرية,agglutination,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141008,,True,True
141009,agglutinative,مغرّ، ملزِن,agglutinant,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141009,,True,True
141010,aggreagate,تجمع، جماعة,agrégat,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141010,,True,True
141011,aggregation,تجمُّع,agrégation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141011,,True,True
141012,aging; ageing,تعتيق,vieillissement,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141012,,True,True
141013,agitate (to),حرَّك، خضَّ,agiter,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141013,,True,True
141014,agitation,تحريك، خضخضة,agitation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141014,,True,True
141015,agitator,محراك، خضّاذة,agitateur,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141015,,True,True
141016,agricultural chemistry,كيمياء زراعية,chimie agricole,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141016,,True,True
141017,air,هواء,air,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141017,,True,True
141019,air (composition of),تركيب الهواء,composition d'air,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141019,,True,True
141022,air (liquefaction),إسالة الهواء,liquéfaction d'air,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141022,,True,True
141023,air (liquid..),هواء سائل,air liquide,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141023,,True,True
141021,air driven,محرَّك بالهواء,actionné par l'air,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141021,,True,True
141018,air-bath,حمام هوائي,bain d'air,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141018,,True,True
141020,air-cooled,مبرَّد بالهواء,refroidi par l'air,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141020,,True,True
141024,air-pressure,ضغط الهواء,pression d'air,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141024,,True,True
141025,air-pump,مضخّة هوائية,pompe à air,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141025,,True,True
141026,air-tight,كتيم للهواء، سدود الهواء,hermétique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141026,صفة للجهاز أو الاناء المسدود بحيث لا يمكن للغازات كالهواء أو غيره أن تتسرب منه أو إليه,True,True
141027,alabandite,ألابنديت,alabandite; alabandine,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141027,خام عنصر المنغنيز، ويغلب أن يكون في تركيبه كبريتيد المنغنيز,True,True
141028,alabaster,مرمر,albâtre,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141028,,True,True
141029,alanine,ألانين,alanine,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141029,من الأحماض الأمينية التي تدخل في تركيب البروتين,True,True
141030,albumin,زلال، ألبومين,albumine,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141030,نوع من البروتينات تذوب عادة في الماء وتوجد في البيض,True,True
141031,albuminoid,شبه زلالي، زُلالاني,albuminoïde,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141031,نوع من المواد تشبه الزلاليات وهي في العادة عديمة الذوبان وكبيرة المقاومة للتفاعلات الكيميائية,True,True
141035,alcohol (monohydric..),كحول أحادي الهيدروكسيل، غول أحادي الهيدروكسيل,alcool monohydrique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141035,,True,True
141033,alcohol lamp,مصباح كحولي,lampe à alcool,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141033,,True,True
141036,alcoholysis,كحللة، غوللة,alcoolisation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141036,تفكك كحولي، تحلل كحولي، تحلل غولي,True,True
141032,alcool (dihydric..),كحول ثنائي الهيدروكسيل، غول ثنائي الهيدروكسيل,alcool bihydrique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141032,,True,True
141034,alcool (methyl..),كحول المثيل، غول المثيل,alcool méthylique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141034,,True,True
141037,aldehyde resin,راتينج الألدهيد,résine d'aldéhyde,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141037,راتينج أصفر اللون يحضر بتسخين الأسيتالدهيد مع محلول مركز من الصودا الكاوية,True,True
141038,aldehydes,آلدهيدات,aldéhydes,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141038,,True,True
141039,aldehydes and ketones,تعيين الألدهيدات و الكيتونات,détermination des aldéhydes et des cétones,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141039,,True,True
141040,aldehydic acids,حموضة ألدهيدية,acides aldéhydiques,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141040,أحماض عضوية تشتمل على مجموعة ألدهيدية بالاضافة إلى مجموعة الكربوكسيل,True,True
141041,aldol condensation,تكاثف ألدولي، ضم ألدولي، إضافة الدول,condensation aldolique; aldolisation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141041,,True,True
141042,alembic,إنبيق,alambic,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141042,جهاز كان يستعمل قديما في تقطير السوائل والزيوت الطيارة ولا يزال يستخدم في استخلاص الزيوت الطيارة بالتقطير,True,True
141043,alicyclic compounds,مركبات حلقية اليفاتية,composés alicycliques,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141043,مركبات ذات حلقات تشبه في خواصها المركبات اللاحلقية الدهنية,True,True
141044,aliphatic,أليفاتي، دهني,aliphatique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141044,,True,True
141046,aliphatic aldehydes,ألدهيدات أليفاتية,aldéhydes aliphatiques,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141046,,True,True
141047,aliphatic amides (primary…),أميدات أليفاتية أولية,amides aliphatiques primaires,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141047,,True,True
141048,aliphatic amine (primary and secondary…),أمينات أليفاتية أولية وثانوية,amines aliphatiques primaires et secondaires,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141048,,True,True
141049,aliphatic carboxylic acids,حموض كربوكسيلية، دهنية أليفاتية,acides carboxyliques aliphatiques,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141049,,True,True
141050,aliphatic compounds,مركبات أليفاتية,composés aliphatiques,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141050,,True,True
141051,aliphatic esters,استرات أليفاتية,esters aliphatiques,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141051,,True,True
141052,aliphatic hydrocarbons (saturated…),هيدروكربونات أليفاتية مشبعة,hydrocarcures aliphatiques saturés,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141052,,True,True
141053,aliphatic hydrocarbons (unsaturated…),هيدروكربونات أليفاتية غير مشبعة,hydrocarcures aliphatiques non saturés,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141053,,True,True
141054,aliphatic ketones,كيتونات أليفاتية,cétones aliphatiques,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141054,,True,True
141055,aliphatic reaction,تفاعل أليفاتي,réaction aliphatique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141055,,True,True
141045,aliphaticalcohols,كحولات أليفاتية، كحولات دهنية,alcools aliphatiques,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141045,,True,True
141056,alizarin,أليزارين,alizarine,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141056,صبغ كان يستخرج من جذور نبات الفوّة وهو يحضر كيميائياالآن ويستخدم في الصباغة,True,True
141057,alizarine yellow,أصفر الأليزارين,jaune d'alizarine,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141057,,True,True
141058,alkali,قِلي، قِلو,alcali,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141058,,True,True
141060,alkali metal,فِلّز قِلوي,alcali métal,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141060,,True,True
141072,alkali waste,نفاية (ال...) القلوية,déchet alcalin,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141072,اصطلاح خاص بالجسم المتخلف من إذابة القلوي في عملية تحضير كربونات الصوديوم,True,True
141059,alkalies,قِلويات,alcalis,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141059,,True,True
141061,alkalimeter,مقياس القِلوية,alcalimètre,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141061,,True,True
141062,alkalimetry,قياس القِلوية,alcalimétrie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141062,تقدير كمية القِلوى في سائل بمعادلته بمحلول حمض معروف القوة,True,True
141067,alkalin medium,وسَط قِلِوي,milieu alcalin,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141067,,True,True
141063,alkaline,قِلوي,alcalin,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141063,صفة,True,True
141064,alkaline buffers,صادات قِلِويّة,tampons alcalins,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141064,,True,True
141065,alkaline earth metals,فلزات قلوية ترابية,métaux de terre alcaline,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141065,,True,True
141066,alkaline error,خطأ قِلِوي,erreur alcaline,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141066,,True,True
141068,alkaline oxide,أكسيد قلوي,oxyde alcalin,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141068,,True,True
141071,alkalinity,قلوية,alcalinité,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141071,اسم للحالة التي تنشأ عن وجود قلو,True,True
141069,alkalinization,تقلية (ال...),alcalinisation; alcalisation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141069,جعل الشيء قلويا,True,True
141070,alkalinize (to); alkalize (to); alkalify (to),قلّي,alcaliniser; alcaliser,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141070,,True,True
141073,alkaloid,شبه قلوي، قلواني,alcaloïde,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141073,مجموعة من المواد من أصل نباتي بها خواص قاعدية لما تحتوي من نتروجين قاعدي وتتركب عادة من الكربون والأكسجين والهيدروجين والنتروجين وكثيرا ما تستخدم في الطب مثل الكوكاكين والكنين,True,True
141074,alkane; alkene,ألكان، ألكين,alcane; alcène,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141074,,True,True
141075,alkenes; olefins,ألكينات، أوليفينات,alcènes; olèfines,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141075,هيدروكربونات غير مشبعة,True,True
141076,alkide,ألكيد,alcoylure,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141076,,True,True
141077,alkyl,ألكيل,alcoyle,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141077,مجموعة أحادية التكافؤ تتركب من الكربون والهيدروجين,True,True
141078,alkyl group,مجموعة الألكيل,groupe alcoyle,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141078,,True,True
141083,alkyl radical,جذر ألكيل,radical d'alcoyle,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141083,,True,True
141079,alkylate (to),أَلْكَلَ,alcoyler,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141079,,True,True
141080,alkylate fuel,وقود الألكلة، وقود ألكيلاني,combustible d'alcoylation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141080,خليط من بعض البرافينات السائلة يستعمل وقودا للطائرات,True,True
141081,alkylation,أَلكلَة,alcoylation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141081,,True,True
141082,alkylene group,مجموعة الألكيلين,groupe alcoylidène,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141082,مجموعة تقل بذرة هيدروجين عن مجموعة الأكليل المناظرة وهي ثنائية التكافؤ,True,True
141084,alkynes; acetylenes,ألكاينات، استيلينات,alcine; acétylènes,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141084,هيدروكربونات غير مشبعة تعرف صيغتها العامة بالاستيليات,True,True
141085,allergen,باعث الحساسية، باعث التجاوب,allergène,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141085,,True,True
141086,allomerism,تماثل في الشكل البلوري,allomérisme,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141086,,True,True
141087,allomorphism,تعددية الشكل البلوري,allomorphisme,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141087,مع تماثل في التركيب الكيميائي,True,True
141088,allotrope,صورة متآصلة,allotrope,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141088,,True,True
141089,allotropic,متآصل,allotropique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141089,,True,True
141090,allotropic change,تغيّر متآصل,changement allotropique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141090,,True,True
141091,allotropic forms,أشكال متآصلة,formes allotropiques,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141091,,True,True
141092,allotropy; allotropism,تآصل,allotropie; allotropisme,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141092,تعدد الأشكال المتآصلة. ظاهرة وجود عنصر أو مركب كيميائي على أشكال مختلفة مع عدم تغيّر جوهرها وإن اختلفت خواصها الطبيعية مثل صور الكبريت والكربون المختلفة,True,True
141093,alloy,أشابة، سبيكة,alliage,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141093,,True,True
141094,alloy (to),أشبَ، سبكَ,allier,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141094,أن يضع المرء اشابة,True,True
141095,alloy content,محتوى الاشابة، محتوى السبيكة,teneur d'alliage,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141095,,True,True
141096,allyl alcohol,غول أليلي، كحول أليلي,alcool allylique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141096,كحول غير مشبع,True,True
141097,almond,لَوْزٌ,amande,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141097,,True,True
141098,almond (bitter…),لوز مرّ,amande amère,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141098,,True,True
141099,alnico,ألنيكو,alnico,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141099,نوع من السبائك ينتج عن مزج الألمنيوم زالنيكل والكوبالت والنحاس، يستخدم في صنع المغناطيس,True,True
141100,alpha,ألفا,alpha,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141100,الحرف الأول من حروف الهجاء اليونانية,True,True
141102,alpha particles,دقائق ألفا,particules alpha,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141102,,True,True
141101,alpha-amino acids,حموض ألفا أمينو,alpha-amino acides,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141101,حموض تحتوي على مجموعة الأمين NH2 ومجموعة الكاربوكسيل COOH,True,True
141103,alpha-rays,أشعة ألفا,rayons alpha,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141103,وهي سيل سريع من ايونات الهيليوم,True,True
141104,alternating current,تيار متناوب، تيار متردد,courant alternatif,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141104,التيار الكهربائي الذي يسير في اتجاه ثم ينعكس سيره في الاتجاه المضاد ثم يعود إلى اتجاهه الأول وهلم جرا في تذبذب منتظم,True,True
141105,alternation,تناوب,alternance,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141105,,True,True
141106,alternator,منوِّب,alternateur,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141106,,True,True
141107,alum,شب (ال...),alum,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141107,,True,True
141108,alumina,ألومينا، ألومين,alumine; oxyde d'alluminium,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141108,أكسيد الألومنيوم ويوجد في الطبيعة ويعرف بأسماء مختلفة,True,True
141109,aluminates,ألومينات,aluminates,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141109,مركّبات تنتج عن اتحاد أكسيد الألومنيوم مع هيدروكسيدات القلويات مثل ألومينات الصوديوم,True,True
141110,aluminium,ألومنيوم,aluminium,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141110,,True,True
141111,alundum,ألاندم,alundum,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141111,نوع من أكسيد الألومنيوم المتبلّر النقي يستعمل مادة حرارية تقاوم الحرارة وتصنع منه بواتق للترشيح,True,True
141112,alunite,ألونيت,alunite,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141112,,True,True
141113,amalgam,ملغم,amalgame,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141113,,True,True
141114,amalgamation,ملغمة,amalgamation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141114,,True,True
141115,amatol,أماتول,amatol,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141115,,True,True
141116,amber,عنبر، كهربا,ambre,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141116,,True,True
141117,americium,أمرسيوم,americium,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141117,,True,True
141118,amethyst,أماتيست,améthyste,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141118,نوع من أكسيد السّليكون المتبلور أرجواني اللون أو بنفسجي يميل إلى الزرقة ويعد من الأحجار الكريمة ومنه نوع يعرف بالجمشت الشرقي ولونه أرجواني وهو نوع من أكسيد الألومنيوم,True,True
141119,amiante,أميانت,amiante,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141119,,True,True
141120,amicro,دون الميكرون,inframicron,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141120,,True,True
141121,amides,أميدات,amides,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141121,وهي مركبات عضوية تنتج من تفاعل الحوامض الكربوكسيلية مع الأمونيا أو الأمنيات,True,True
141122,aminate (to),أمْيَنَ,aminer,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141122,,True,True
141123,amine group,مجموعة آمينية,groupe d'amine,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141123,مجموعة أحادية التكافؤ تتكون من النتروجين والهيدروجين ولا توجد على حالة انفراد,True,True
141124,amines,أمينات,amines,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141124,المركبات التي تحتوي على مجموعة الأمين أو الأمينو وهي NH2,True,True
141125,amino-acid,حمض أميني,amino-acide,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141125,مركب عضوي فيه مجموعة أو أكثر من كل من المجموعتين الكربوكسيلية والأمينية,True,True
141126,ammeter,مقياس الأمبير، أمبيتر,ampèremètre,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141126,,True,True
141127,ammonia,أمونيا، نشادر,ammoniac,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141127,,True,True
141131,ammonia molecule,جزيء الأمونيا,molécule d'ammoniaque,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141131,,True,True
141132,ammonia soda process,عملية الأمونيا-صودا,procédé d'ammonia-soda,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141132,طريقة تحضير كربونات الصوديوم بإمرار النشادر وغاز الكربونيك في محلول كلوريج الصوديوم,True,True
141129,ammoniacal salt,ملح الأمونيا,sel ammoniacal,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141129,,True,True
141130,ammoniacal silver nitrate solution,محلول نترات الفضة الأمونية,solution de nitrate d'argent ammoniacal,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141130,,True,True
141128,ammonical nitrogen,نيتروجين الأمونيا، أزوت الأمونيا,azote ammoniacal,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141128,,True,True
141133,ammonium,أمونيوم,ammonium,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141133,,True,True
141134,ammonium acetate,أسيتات الأمونيوم، خلاّت الأمونيوم,acétate d'ammonium,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141134,,True,True
141135,ammonium bicarbonate,بيكربونات الأمونيوم، ثنائي كربونات الأمونيوم,bicarbonate d'ammonium,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141135,,True,True
141151,ammonium carbonate,كربونات الأمونيوم,carbonate d'ammonium,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141151,,True,True
141136,ammonium chloride,كلوريد الأمونيوم، كلورور الأمونيوم,chlorure d'ammonium,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141136,,True,True
141137,ammonium chromate,كرومات الأمونيوم,chromate d'ammonium,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141137,,True,True
141138,ammonium compounds,مركّبات الأمونيوم,composés d'ammonium,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141138,,True,True
141139,ammonium cyanate,سيانات الأمونيوم,cyanate d'ammonium,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141139,,True,True
141140,ammonium ion,ايون الأمونيوم، شاردة الأمونيوم,ion d'ammonium,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141140,,True,True
141141,ammonium nitrate,نترات الأمونيوم,nitrate d'ammonium,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141141,,True,True
141142,ammonium oxalate,أكسلات الأمونيوم، حماضات الأمونيوم,oxalate d'ammonium,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141142,,True,True
141143,ammonium phosphate,فوسفات الأمونيوم,phosphate d'ammonium,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141143,,True,True
141144,ammonium sulphate,كبريتات الأمونيوم,sulfate d'ammonium,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141144,,True,True
141145,ammonolysis,نشدرة,ammonolyse,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141145,تحليل بالأمونيا,True,True
141146,amorphism,لا بلورية,amorphisme,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141146,,True,True
141147,amorphous,لا بلوري، لاشكلي,amorphe,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141147,صفة للمادة التي لا تكون جزيئاتها مرتبة في وضع خاص وهي تنصهر في درجة حرارة غير محددة,True,True
141148,ampere,أمبير,ampère,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141148,عند مرور كولونب واحد عبر موصل لمدة ثانية واحدة ينتج تيار شدته أمبيرا واحدا,True,True
141149,amperometry,مقياسية أمبيرية,ampérométrie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141149,,True,True
141150,amphiprotic substance,مواد مذبذبة البروتون,substance amphiprotique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141150,المواد التي لها القدرة على فقد أو اكتساب البروتونات في آن واحد كالماء,True,True
141152,ampholyte,أمفوليت,ampholyte,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141152,,True,True
141153,amphoteric,مذبذب، أمفوتيري,amphotère,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141153,,True,True
141154,amplification,تضخيم,amplification,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141154,,True,True
141155,amplifier,مضخم,amplificateur,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141155,,True,True
141156,amplitude,سَعَة,amplitude,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141156,,True,True
141157,amygdaline,لوزين، أمجدلين,amygdalin,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141157,مادة بيضاء توجد في اللوز المرّ أحيانا وفي نوى المشمش والخوخ. يمكن تحليلها مائيا فينتج عن ذلك بنزالدهيد وحمض الهيدرسيانيك والغلوكوز,True,True
141158,amyl acetate,أسيتات الأميل، خلاّت الأميل,acétate d'amyle,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141158,سائل ذو رائحة يحضر بتفاعل كحول الأميل مع حمض الخل,True,True
141159,amyl alcohol,غول أميلي، كحول أميلي,alcool amylique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141159,,True,True
141162,amylo process,عملية أميليّة,méthode amylique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141162,,True,True
141160,amyloid,شبه النشا، نشواتي,amyloïde,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141160,,True,True
141161,amylopectin,أميلوبكتين,amylopectine,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141161,نوع من النشا ينتج عن ارتباط جزيئات الغلوكوز بحيث تشمل روابط من نوه نهاية إلى نهاية وروابط أخرى من نوع ارتباطات سلاسلية جانبية,True,True
141163,amylose,أميلوز,polyglucoside,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141163,,True,True
141164,anaerobic,لاهوائي,anaérobie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141164,البكتريا التي تنمو بدون الهواء أوالأكسجين,True,True
141165,analar,نقي,pur pour analyse,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141165,من أجل التحليل,True,True
141166,analogue,متشابه,analogue,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141166,,True,True
141169,analysis,تحليل,analyse,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141169,أن يرد المرء الجسيم إلى مكوناته أو عناصره، ولما كان هذا يعين على تحقيق هويته فقد شاع إطلاق هذا المصطلح على الطرق االكيميائية والفيزيائية التي تؤدي إلى الكشف عن كنه هذا الجسم سواء انحل الى عناصره أو لم ينحلّ,True,True
141170,analytic,تحليلي,analytique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141170,,True,True
141171,analytical balance,ميزان تحليل,balance d'analyse,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141171,,True,True
141172,analytical chemistry,كيمياء تحليلية,chimie analytique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141172,,True,True
141173,analytical error,خطأ تحليلي,erreur d'analyse,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141173,,True,True
141174,analytical method,عملية تحليلية,méthode analytique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141174,,True,True
141175,analytical weights,أوزان تحليلية,poids analytiques,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141175,,True,True
141167,analyze (to),حلَّلَ,analyser,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141167,,True,True
141168,analyzer,محلَّل,analyseur,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141168,,True,True
141176,anaphoresis,ترحّل أنودي,anaphorèse,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141176,حركة الدقائق الغروية، أو الجزيئات الكبيرة إلى القطب الموجب بفعل المجال الكهربائي,True,True
141177,angstrom unit,وحدة أنغستروم، وحدة أنغشتروم,unité d'Angstrom,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141177,,True,True
141180,angular momentum,كمية الحركة الزاوية، عزم حركي زاوي، رقم زاوي,moment angulaire,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141180,,True,True
141178,anhydride,لاهدريد,anhydride,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141178,يستعمل للدلالة على أن المادة قد نزعت منها عناصر الماء بطريقة كيميائية كما في انهدريد حمض الخل. لامائي في حمض الخل,True,True
141179,anhydrous,لامائي,anhydre,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141179,يستعمل للدلالة على أن المادة قد نزعت منها عناصر الماء بطريقة فيزيائية كما يحدث عند تسخين كبريتات النحاس المائية فتتحول إلى كبريتات النحاس اللامائية,True,True
141181,aniline,أنيلين,aniline,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141181,مركب أميني ينتج من إحلال مجموعة أمين محلّ ذرّة هيدروجين في جزىء البنزين,True,True
141182,aniline blue,أزرق الأنيلين,bleu d'aniline,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141182,مادة زرقاء وهي واحدة من أصباغ الثلاثي فينيل ميثان,True,True
141183,animal charcoal,فحم حيواني,charbon animal,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141183,,True,True
141184,anion,أيون سالب، أنيون,anion,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141184,,True,True
141185,anionotropy,أنيونتروبية,anionotropie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141185,انفصال أو تكسر الأيون السالب من جزيء مع بقاء الأيون الموجب في حالة توازن ديناميكي,True,True
141186,anisomerism,تباينية الخواص,anisomerisme,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141186,في التركيب,True,True
141187,anisotropy,تباينية الخواص,anisotropie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141187,في الشكل,True,True
141188,anode,أنود، مصعد (ال...),anode,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141188,المسرى الذي يحمل عليه التأكسد,True,True
141189,anode battery,بطارية الأنود,batterie d'anode,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141189,,True,True
141190,anodic,أنودي، مصعدي,anodique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141190,,True,True
141191,anodic oxidation,أكسدة أنودية,oxydation anodique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141191,,True,True
141192,anolyte,أنوليت,anolyte,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141192,جزء الالكتروليت الذي يتحول إلى مركب على الأنود أو الكاثود,True,True
141193,anthracite,أنتراسيت,anthracite,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141193,,True,True
141194,anthranilic acid,حمض الانَثرانيليك,acide anthranilique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141194,مركب ينتج من إحلال مجموعة أمينية ومجموعة كربوكسيلية محل ذرّتي هيدروجين في جزيء البنزين,True,True
141195,anti-,مضاد,anti-,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141195,,True,True
141203,anti-electron-positron,مضاد للالكترون-بوزترون,anti-électron-positron,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141203,,True,True
141204,anti-ferment,مضاد للتخمر,antiferment,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141204,,True,True
141206,anti-freeze,مضاد للتجمد,antigel,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141206,,True,True
141209,anti-knock substance,مادة مانعة للخبط، مادة مضادة للدق,antidétonant,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141209,مادة تمنع الخبط في المحرك الداخلي للاحتراق,True,True
141217,anti-neutron,مضاد نيوترون,antineutron,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141217,,True,True
141218,anti-proton,مضاد البروتون,antiproton,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141218,,True,True
141196,antibiotic,مضاد حيوي,antibiotique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141196,مادة مضادة لحياة الميكروبات,True,True
141197,antibodies,أجسام مضادة,anticorps,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141197,مواد بروتينية تقاوم مفعول العوامل الخطرة للخلية,True,True
141198,antibonding molecular orbital,مدار جزيئي مضاد للربط، فلك جزيئي مضاد للربط,orbitale moléculaire antiliante,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141198,,True,True
141199,antibonding orbitals,مدارات مضادة للربط، أفلاك مضادة للربط,orbitales antiliantes,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141199,عندما تكون الشحنة السالبة ضعيفة لا تقدر على ربطهما مما يسبب التنافر بينهما فلا يتكون الجزيء,True,True
141200,anticathode,مضاد الكاثود، مضاد المهبط,anticathode,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141200,,True,True
141201,antichlor,مضاد الكلور,antichlore,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141201,المادة المستخدمة لازالة الكلور من الألياف السيليولوزية مثل فوق أكسيد الهيدروجين,True,True
141202,antidetonator,مانع الفرقعة، مضاد الصاعق,antidétonateur,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141202,,True,True
141205,antiflourite,مضاد للفلوريت,antiflourite,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141205,,True,True
141207,antifuncal agent,مبيد الفطريات,forgicide,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141207,,True,True
141208,antiknock,مضاد للخبط، مضاد للفرقعة، مضاد للدّق,antidétonant,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141208,,True,True
141210,antimatter,مادة مضادة,antimatière,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141210,,True,True
141211,antimicrobial,مبيد الجراثيم,bactéricide,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141211,,True,True
141212,antimonial lead,رصاص أنتيموني,plomb d'antimoine; plomb antimonial,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141212,أشابة تتركب من الرصاص والأنتيمون بنسبة 85% من الأول و 15% من الثاني وتستخدم في صناعة الصنابير المستعملة في أحواض حمض الكبريت,True,True
141213,antimoniate,أنتيمونيات,antimoniate,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141213,,True,True
141214,antimonide,أنتيمونيد، أنتيمونيور,antimoniure,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141214,,True,True
141215,antimony,أنتيمون,antimoine,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141215,,True,True
141216,antimony (golden) sulphide,كبريتيد الأنتيمون الذهبي، كبريتور الأنتيمون الذهبي,sulfure doré d'antimoine,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141216,,True,True
141219,antiseptic,مطهّر,antiseptique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141219,المادة التي تمنع توالد الكائنات الدقيقة فتوقف التعفن أو التخمر أو التلقيح,True,True
141220,apatite,أباتيت,apatite,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141220,,True,True
141221,aperiodic,لادوري,apériodique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141221,,True,True
141222,apex; top; peak,قمّة,apex; sommet; pointe,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141222,أعلى نقطة في جسم كقمة الجبل أو المخروط أو الهرم,True,True
141223,apparatus,جهاز,appareil,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141223,ما يستخدم في إجراء التجارب الكيميائية وغيرها,True,True
141224,apparatus error,خطأ الجهاز,erreur instrumentale,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141224,,True,True
141225,apparent density,كثافة ظاهرية,densité apparente,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141225,,True,True
141226,apparent weight,وزن ظاهري,poids apparent,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141226,,True,True
141227,appearance,مَظْهَر,apparence,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141227,,True,True
141228,applied chemistry,كيمياء تطبيقية,chimie appliquée,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141228,,True,True
141229,approximation,تقريب,approximation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141229,,True,True
141230,aqua fortis,ماء النار,eau forte,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141230,اصطلاح يطلق على حمض النتريك المركز,True,True
141232,aqua regia,ماء (ال...) الملكي,eau régale,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141232,,True,True
141231,aquametry,مقياسية الماء,aquamétrie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141231,قياس وجود الماء في المواد,True,True
141233,aqueous,مائي,acqueux,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141233,,True,True
141234,aqueous alcoholic; aquo-alcoholic,مائي غولي، مائي كحولي,hydroalcoolique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141234,,True,True
141235,aqueous solutions,محاليل مائية,solutions aqueuses,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141235,,True,True
141236,arabic gum,صمغ عربي,gomme arabique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141236,,True,True
141237,aragonite,أراغونيت، أراجونيت,aragonite,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141237,,True,True
141238,arc,قَوْس,arc,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141238,,True,True
141240,arc spectrum,هندسة الجزيئات، بنيان الجزيئات,spectre d'arc,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141240,,True,True
141239,architecture of molecules,طيْفُ القوس,architecture de molécules,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141239,,True,True
141241,areometer,مكثاف السوائل، مقياس كثافة السوائل,aréomètre,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141241,آلة لقياس كثافة السوائل,True,True
141242,argentite,أرجنتيت,argentite; argyrose,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141242,معدن من أهم معادن الفضة,True,True
141243,argentum,فضة,argent,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141243,,True,True
141244,argon,أراغون,argon,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141244,,True,True
141245,armature,دِرْع، حافظة,armature,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141245,,True,True
141246,aroma,عطْر، شذى، عبير، نكهة,aromaticité; arôme,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141246,,True,True
141247,aromatic,عطري,aromatique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141247,أروماتي,True,True
141248,aromatic aldehydes,ألدهيدات عطرية,aldéhydes aromatiques,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141248,,True,True
141249,aromatic compounds,مركبات عطرية,composés aromatiques,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141249,مركبات حلقية غير مشبعة كالبنزين ومشتقاته,True,True
141250,aromatic hydrocarbons,هيدروكربونات عطرية,hydrocarbures aromatiques,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141250,تمتاز برائحتها العطرية,True,True
141251,aromatization,تعطير,aromatisation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141251,,True,True
141252,aromatize (to),عطَّر,aromatiser,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141252,,True,True
141253,arrangement,ترتيب,arrangement,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141253,,True,True
141254,arrhenius theory; of acids and bases,نظرية أرينيوس,théorie d'Arrhenius,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141254,للحموض والقواعد,True,True
141255,arsenates,زرنيخات، أرسينات,arsénates; arseniates,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141255,,True,True
141256,arsenic,زرنيخ، أرسينيك,arsenic,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141256,,True,True
141257,arsenic acid,حمض الزرنيخ، حمض الزرنيخيك، حمض الأرسينيك,acide arsénique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141257,,True,True
141258,arsenide,أرسينيد، زرنيخيد، زرنيخوز,arséniure,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141258,,True,True
141259,arsenious acid,حمض الأرسينوز، حمض الزرنيخي، حمض الزرنيخوز,acide arsénieux,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141259,,True,True
141260,arsenite,أرسينيت، زرنيخيت,arsénite,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141260,,True,True
141261,arsine,أرسين، هيدريد الزرنيخ,arsine,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141261,,True,True
141262,artificial,اصطناعي,artificiel,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141262,,True,True
141263,aryl,عطريل، آريل,aryle,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141263,,True,True
141264,aryl group,مجموعة عطريلية، مجموعة أريلية,groupe d'aryle,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141264,مجموعة هيدروكربونية أروماتية تحوي ذرة هيدروجين أقل من جزيء الهيدروكربون المشتقة منه,True,True
141265,asbestos,أسبيستوس، أمينت,asbeste; amiante,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141265,معدن يوجد في الطبيعة على شكل ألياف يمكن غزلها أو نسجها أو تشكيلها ويستخدم مقاوما للحريق أو عازلا حراريا,True,True
141266,asbestos boar,ورق أسبستوس مقوى,carton d'asbeste,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141266,,True,True
141267,asbestos gauze,شبكة أسبستوس,toile d'asbeste,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141267,,True,True
141268,asbestos milk,لبن أسبستوس,lait d'asbeste,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141268,,True,True
141269,asbestos paper,ورق أسبستوس,papier d'asbeste,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141269,,True,True
141270,asbestos tray,طبق أسبستوس، صينية أسبست,plaque d'amiante,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141270,,True,True
141271,asbestos wool,صوف أسبستوس، صوف أميانت,filament d'amiante,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141271,,True,True
141272,ash,رماد,cendre,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141272,,True,True
141273,ashing,ترميد,réduire en cendres,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141273,,True,True
141274,asparagine,أسبرجين,asparagine,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141274,أحد الحموض الأمينية التي تدخل في تركيب البروتين,True,True
141275,asphalt,أسفلت، قار,asphalte,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141275,أحد المنتجات الثقيلة التي تتخلف من تقطير البترول الخام، وهو جسم صلب في درجة الحرارة المعتادة ولونه أسود ويوجد كذلك في الطبيعة متشربة به الصخور كالحجر الجيري ونحوه وعلى هذه الصورة وجد من قديم الزمان,True,True
141276,asphyxiant gas,غاز خانق,gaz asphyxiant,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141276,,True,True
141277,aspiration,سفْط,aspiration,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141277,سحب النفس، سحب الهواء أو الغاز من إناء خلال سائل,True,True
141278,aspirator,مسفطة,aspirateur,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141278,,True,True
141279,aspirin,أسبيرين,aspirine,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141279,أستيل حمض الساليسيليك ويستعمل طبيا لعلاج الصداع والروماتيزم,True,True
141280,assimilation,تمثُّل، تمثيل,assimilation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141280,,True,True
141281,association,تجمُّع، اقتران,association,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141281,,True,True
141282,astatin,أستاتين,astatine,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141282,واحد من الهالوجينات وهو مشع عدده الذري 85 ووزنه 310,True,True
141283,astringent,قابض,constipant,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141283,مادة تسبب انقباض الأنسجة العضوية أو توقف النزف أو الاسهال,True,True
141284,asymmetric atom,ذرة لامتناظرة، ذرة لامتماثلة,atome asymétrique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141284,,True,True
141285,asymmetric carbon atom,ذرة كربون لا متناظرة، ذرة كربون لا متماثلة,atome de carbone asymétrique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141285,,True,True
141286,asymmetric synthesis,تخليق لا تناظري، تركيب لا تماثلي,synthèse asymétrique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141286,تخليق يؤدي إلى تكوين مركبات غير متماثلة,True,True
141287,asymmetry,لا تناظر، لاتماثل,asymétrie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141287,,True,True
141288,asymmetry effect,تأثير لا تناظري، تأثير عدم التماثل، فعل عدم التماثل,effet d'asymétrie; phénomène d'asymétrie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141288,,True,True
141289,athermic,لاحراري,antithermique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141289,,True,True
141290,atmolysis,تفريق غشائي للغازات,atmolyse,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141290,المتفاوتة في سرعة الانتشار,True,True
141291,atmosphere,جو,atmosphère,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141291,,True,True
141292,atom,ذرّة,atome,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141292,أصغر جزء من مادة عنصرية يدخل في التفاعلات الكيميائية,True,True
141325,atom-nucleus,نواة الذّرة,noyau de l'atome,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141325,,True,True
141293,atomic,ذري,atomique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141293,,True,True
141294,atomic absortion spectrometry,مقياسية مطيافية الامتصاص الذري,spectrométrie d'absorption atomique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141294,,True,True
141295,atomic bomb,قنبلة ذرية,bombe atomique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141295,,True,True
141296,atomic core,قلب ذري، لب ذري,cœur atomique; tronc de l'atome,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141296,,True,True
141297,atomic crystals,بلورات ذرية,cristales atomiques,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141297,,True,True
141300,atomic desintegration,تحلل ذري ذاتي,désintégration atomique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141300,,True,True
141298,atomic destruction,تهدم ذري,destruction atomique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141298,اصطلاح يطلق على التحلل التلقائي أو الذاتي لنواة العناصر المشعة عندما تفقد جسيمات ألفا وبيتا,True,True
141299,atomic diameter,قطر ذري,diamètre de l'atome,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141299,,True,True
141301,atomic energy,طاقة ذرية,énergie atomique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141301,,True,True
141302,atomic explosion,انفجار ذري,explosion atomique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141302,,True,True
141303,atomic fission,انشطار ذري,fission atomique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141303,,True,True
141304,atomic fusion,انصهار ذري,fusion atomique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141304,,True,True
141305,atomic heat,حرارة ذرية,chaleur atomique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141305,,True,True
141306,atomic hypothesis,فرضية ذرية,hypothèse atomique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141306,,True,True
141308,atomic mass,كتلة ذرية,masse atomique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141308,,True,True
141309,atomic mass unit,وحدة كتلة ذرية,unité de masse atomique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141309,,True,True
141310,atomic model,نموذج ذري,modèle atomique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141310,,True,True
141311,atomic number,عدد ذري,nombre atomique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141311,,True,True
141312,atomic orbit,مدار ذري,orbite atomique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141312,,True,True
141313,atomic pile,مفاعل ذري,pile atomique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141313,,True,True
141314,atomic radiation,إشعاع ذري,radiation atomique; rayonnement atomique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141314,,True,True
141315,atomic radius,نصف قطر ذري,rayon atomique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141315,ويعرف بأنه نصف المسافة بين ذرتين متماثلتين في رابطة كيميائية,True,True
141316,atomic reactor,مفاعل ذري,réacteur atomique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141316,,True,True
141317,atomic refraction,انكسار ذري,réfraction atomique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141317,,True,True
141318,atomic spectrum,طيف ذري,spectre atomique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141318,,True,True
141319,atomic structure,بنية ذري,structure atomique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141319,,True,True
141320,atomic theory,نظرية ذرية,théorie atomique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141320,نظرية تفسر تكوين العناصر من وحدات صغيرة جدا تدعى الذّرات,True,True
141321,atomic volume,حجم ذري,volume atomique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141321,,True,True
141322,atomic weight,وزن ذري,poids atomique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141322,,True,True
141307,atomicity,ذرية,atomicité,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141307,,True,True
141324,atomization,ترذيذ، تذرية,atomisation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141324,,True,True
141323,atomizer,مذرار، مرذاذ,atomiseur; pulvérisateur,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141323,,True,True
141326,attenuation,توهين، تخفيف، تلطيف,atténuation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141326,تقليل الطاقة الإشعاعية عند مرورها بالمادة,True,True
141327,attraction,جذْب,attraction,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141327,,True,True
141328,attraction forces,قوى التجاذب,forces d'attraction,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141328,,True,True
141329,attrition,تآكل بالاحتكاك,usure par frottement,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141329,,True,True
141331,auric chloride,كلوريد الذهب، كلوريد الذهبيك,chlorure aurique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141331,,True,True
141332,auric oxide,أكسيد الذهب,oxyde aurique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141332,,True,True
141333,aurous cloride,كلوريد الذهبي، كلوريد الذهبوز,chlorure aureux,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141333,,True,True
141334,aurous oxide,أكسيد الذهبي، أكسيد الذهبوز,oxyde aureux,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141334,,True,True
141335,aurum,ذَهَبٌ,or,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141335,,True,True
141336,auto-catalysis,حفز ذاتي,auto-catalyse,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141336,الحالة التي تعمل فيها بعض منتجات التفاعل كحافز لهذا التفاعل,True,True
141338,auto-ionization,تأين ذاتي,auto-ionisation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141338,,True,True
141337,autoclave,محم موصد، فرن معقم، قدر كاتمة,autoclave,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141337,,True,True
141339,autolysis,تحلل ذاتي,autolyse,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141339,,True,True
141340,automatic,ذاتي الحركة,automatique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141340,أوتوماتيكي,True,True
141341,automatically,ذاتيا، اتوماتيكيا,automatiquement,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141341,,True,True
141342,automation,أتمتة,automatisation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141342,,True,True
141343,autoprotolysis,تحلل بروتوني ذاتي,autoprotolyse,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141343,انتقال البروتون من جُزْئِيَةٍ إلى أخرى من نفس المادة,True,True
141344,autoxidation,أكسد ذاتي,autoxydation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141344,,True,True
141345,auxillary,مساعد، ملحق,auxiliaire,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141345,,True,True
141346,auxochromes,مساعدات صباغية,auxochromes,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141346,أية مجموعة كيميائية مثل NH2 - أو OH التي تحفز الكروموجين ليعمل كصباغ,True,True
141347,available chlorine,كلور فعّال، كلور مفيد,chlore actif,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141347,,True,True
141348,average,متوسِّط، معدَّل، وسَطٌ,moyenne,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141348,,True,True
141349,average velocity,سرعة (ال...) المتوسطة,vitesse moyenne,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141349,,True,True
141353,axial bond,رابطة محورية,liaison axiale,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141353,,True,True
141354,axis,مِحْوَر,axe,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141354,,True,True
141355,azeotrope,أزيوتروب,azéotrope,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141355,,True,True
141356,azide,أزيد,azide,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141356,,True,True
141357,azo-dyes,أصباغ آزية,colorant azoïques,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141357,مجموعة كبيرة من مواد الصباغة يحوي جزيء كل منها مجموعة آزية أو أكثر,True,True
141358,azotate,آزوتات، نترات,azotate (nitrate),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141358,,True,True
141359,azote,آزوت,azote,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141359,نيتروجين,True,True
141360,azotic acid,حمض الآزوت، حمض النتريك,acide azotique (nitrique),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141360,,True,True
141361,azotobacter,بكتريا التأزت,azotobacter,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141361,مجموعة من البكتريا الهوائية توجد في التربة وفي أحواض المياه الراكدة تعمل على تثبيت آزوت الهواء في التربة,True,True
141362,azotometer,مقياس الأزوت، آزوتمتر,azotimètre,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141362,,True,True
141363,azurite,أزوريت,azurite,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141363,معدن من خامات النحاس يمكن اعتباره كربونات النحاس القاعدية,True,True
141364,back emission,إصدار، انبعاث مرتد,émission inverse,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141364,,True,True
141366,back pressure,ضغط مرتد، ضغط خلفي,pression en arrière,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141366,,True,True
141368,back titration,معايرة ردية,titrage inverse,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141368,,True,True
141367,back-reaction,تفاعل مرتدّ,réaction inverse; réaction révérsible,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141367,,True,True
141365,backing-up,ارتداد,retour en arrière (d'un gaz),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141365,,True,True
141369,bacterial,بكتيري,bactériel; bactérien,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141369,,True,True
141370,bactericide,مبيد بكتيري,bactéricide,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141370,,True,True
141371,bactericidin,بكتيريسيدين، مبيد بكتيري,bactéricidin,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141371,مادة تعمل على قتل البكتريا دون أن تحللها,True,True
141372,bacteriolysis,تحلل الجراثيم، حَلُّ الجراثيم,bactériolyse,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141372,,True,True
141373,bacteriophage,ملتهم الجراتيم، لاقم البكتيريا,bactériophage,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141373,,True,True
141374,bacteriostat,موقف بكتيري، موقف الجراتيم,bactériostatique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141374,عامل يوقف أو يعيق نمو البكتيريا دون إبادتها,True,True
141375,bacterium,بكتريا,bactérie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141375,,True,True
141376,bacterium (acetic…),بكتريا الخلّ,bactérie acétique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141376,,True,True
141377,bakelite,باكليت,bakélite,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141377,ينتج عن بلمرة كحول الساليسسليك حيث يتكون بوطر خطي يستمر بالبلمرة معطيا مركبا ذا ثلاثة أبعاد يعرف بالباكليت,True,True
141378,baking powder; baking soda,مسحوق الخبز، مسحوق التحمير,sel de Vichy; bicarbonate de sodium,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141378,,True,True
141379,balance,ميزان,balance,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141379,,True,True
141380,balance action,فعل موزون,action balancée,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141380,,True,True
141381,balance equation,معادلة موزونة,équation balancée,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141381,,True,True
141383,balance sensibility,حساسية الميزان,sensibilité de balance,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141383,,True,True
141382,balance-room,غرفة ميزان,salle de balance,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141382,,True,True
141384,balancing,موازنة,balancement,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141384,,True,True
141385,balancing of the equation,موازنة المعادلة,balancement de l'équation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141385,,True,True
141387,balm oil,زيت البلسم,essence de mélisse,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141387,,True,True
141386,balm; Balsam,بلسمٌ,baume,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141386,,True,True
141388,band,عصبة، عصابة، حزام، شريط,bande,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141388,,True,True
141389,band model,نموذج عصابي، نموذج حزمة,modèle de bande,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141389,,True,True
141390,band spectrum,طيف شريطي,spectre de bande,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141390,,True,True
141391,bar (magnet),قضيب (مغناطيسي),barre magnétique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141391,,True,True
141393,barely sugar; maltose,سكر الشعير، مالتوز,sucre d'orge; maltose,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141393,سكر ثنائي يحضر من الشعير,True,True
141392,barium,باريوم,baryum,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141392,,True,True
141394,barometer,مقياس الضغط الجوي، بارومتر,baromètre,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141394,,True,True
141395,baryta,باريتا، أكسيد الباريوم,baryte,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141395,,True,True
141396,barytes,باريت، باريتين,barytine,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141396,من خامات الباريوم ويغلب في تركيبه كبريتات الباريوم,True,True
141397,base,قاعدة، أساس,base,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141397,,True,True
141398,base (alkaline earth…),قاعدة,base alcalino-terreuse,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141398,أرضية قلوية، أساس ترابي قلوي,True,True
141399,base board,قاعدة (جهاز),socle (d'un appareil),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141399,,True,True
141400,base catalysis,حفز قاعدي,catalyse basique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141400,هو الحفز الذي يحدثه أيون الهيدروكسيد,True,True
141401,basic,قاعدي، أساسي,basique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141401,,True,True
141402,basic compounds,مركبات قاعدية، مركبات أساسية,composés basiques,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141402,,True,True
141406,basic metals,فلزات قاعدية، فلزات أساسية,métaux basiques,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141406,,True,True
141407,basic oxides,أكاسيد قاعدية، أكاسيد أساسية,oxydes basiques,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141407,,True,True
141408,basic slag,خبث قاعدي، خبث أساسي,scories basiques,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141408,,True,True
141409,basic structure,بنية قاعدية، بنية أساسية,structure basique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141409,,True,True
141403,basicity,قاعدية، أساسية,basicité,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141403,صفة لتحديد مدى اتحاد الأحماض بالقلويات وتقدر بعدد ذرات هيدروجين الحمض التي يمكن إحلال فلز أو شق قاعدي محلها,True,True
141404,basicity constant,ثابت القاعدية,constant de la basicité,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141404,,True,True
141405,basicity of acids,قاعدية الحموض، أساسية الحموض,basicité des acides,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141405,,True,True
141410,basil,روح الحبق، حبق، ركان,essence de basilic,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141410,زيت الحلوى,True,True
141411,basin,حوض,bassin; cuvette,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141411,,True,True
141412,basis,قاعدة,base,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141412,,True,True
141413,batch,دفعة، وجبة,groupe,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141413,,True,True
141414,batch distillation,تقطير على دفعات,distillation discontinue,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141414,,True,True
141415,batch number,عدد الدفعة,numéro du lot,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141415,عدد يستخدم للدلالة على مجموعة مواد محضرة في وقت واحد وظروف واحدة,True,True
141416,bate,قابض، مرسّخ,mordant,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141416,,True,True
141417,baths,حمامات,bains,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141417,,True,True
141418,battery,مدّخرة، بطارية,batterie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141418,,True,True
141421,bauxite,بوكسيت,bauxite,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141421,من معادن الألومنيوم ومنه يستخلص فلز الألومينيوم في الصناعة وهو أكسيد الألومنيوم المائي,True,True
141422,bauxite cement,اسمنت البوكسيت,ciment-bauxite,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141422,نوع من الاسمنت مجهر بالتسخين الشديد لأوزان متساوية تقريبا من البوكسيت والجير ويمتاز بمقاومته لماء البحر,True,True
141423,beads test,اختبار الخرز، تجربة الخرز,essai à la perle,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141423,,True,True
141424,beads tube,أنبوب الخرز,tube aux perles,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141424,,True,True
141425,beaker,كأس,bêcher,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141425,,True,True
141427,beam (of light),حزمة (ضوئية),faisceau (de lumière),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141427,,True,True
141426,beam of balance,عاتق الميزان,fléau de la balance,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141426,ساق معدنية يعلق في طرفيهاكفتا ميزان ويكون محور ارتكازها منتصف المسافة بينهما,True,True
141428,bearing axes,محاور مفصلية,axes articulés,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141428,,True,True
141433,beet sugar,سكر الشمندر,sucre de betterave,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141433,البنجر,True,True
141434,bell jar,ناقوس زجاجي,cloche de verre,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141434,,True,True
141435,bellows,منفاخ,soufflet,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141435,,True,True
141436,bending,ثني، حني,pliage; courbure,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141436,,True,True
141437,benedict's solution,محلول بنديكت,solution de Benoît,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141437,,True,True
141440,benzene (derivatives of..),مشتقات البنزن,dérivés de benzène,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141440,,True,True
141442,benzene (nucleus of..),نواة البنزن,noyau de benzène,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141442,,True,True
141439,benzene cycle,حلقة البنزن,noyau benzénique; cycle benzénique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141439,,True,True
141441,benzene hexacloride; gamaxane,سداسي كلوريد البنزن,hexachlorure de benzène,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141441,مركب يحضر بإضافة الكلور للبنزول في درجات الحرارة المعتادة في ضوء الشمس المباشر ويستعمل مبيدا للحشرات,True,True
141443,benzene ring,حلقة البنزن,noyau benzénique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141443,,True,True
141438,benzene; benzol,بنزَنٌ، بنزول,benzène; benzine,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141438,,True,True
141444,benzoates,بنزوات,benzoates,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141444,أملاح واسترات حمض البنزويك,True,True
141445,benzoic acid,حمض البنزويك، حمض البنزوئي,acide benzoïque,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141445,حمض عضوي ذو رائحة عطرية خفيفة يمكن استخلاصه من الصمغ الجاوي وكان معروفا عند الكيميائين العرب,True,True
141446,benzoin,بنزوين,benjoin; benzoïne,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141446,,True,True
141447,berthollide,برثوليد,berthollide,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141447,,True,True
141448,beryl,بريل,baryl; béril,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141448,أحد معادن البريليوم,True,True
141449,beryllium,بريليوم,béryllium; glucinium,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141449,عنصر فلزي عدده 4,True,True
141451,beta,بيتا,bêta,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141451,,True,True
141452,beta particle,دقيقة بيتا,particule bêta,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141452,,True,True
141453,beta rays,أشعة بيتا,rayons bêta,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141453,,True,True
141518,beta-iron,حديد بيتا,fer bêta,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141518,,True,True
141454,bicarbonate,ثنائي كربونات، بيركربونات,bicarbonate,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141454,,True,True
141455,bichromate,ثنائي كرومات، بيكرومات,bichromate,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141455,,True,True
141456,bicyclic,ثنائي الحلقة,bicyclique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141456,,True,True
141457,bidental,ثنائي السن,bidenté,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141457,,True,True
141458,bile,صفراء,bile,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141458,سائل يختزن في كيس المرارة,True,True
141459,bile acid,حمض الصفراء,acide billiaire,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141459,,True,True
141460,bile pigment,خضاب الصفراء,pigment de bile,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141460,مجموعة مواد ملونة توجد في سائل المرارة,True,True
141461,bile salts,أملاح الصفراء,sels de bile,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141461,,True,True
141462,bimolecular,ثنائي الجزيء,bimoléculaire,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141462,,True,True
141463,bimolecular reaction,تفاعل ثنائي الجزيء,réaction bimoléculaire,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141463,,True,True
141464,binary,ثنائي,binaire,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141464,,True,True
141465,binary compounds,مركبات ثنائية (الحد),composés binaire,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141465,,True,True
141466,binary solution,محلول ثنائي,solution binaire,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141466,,True,True
141467,bind (to),ربَط,lier,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141467,,True,True
141468,binder,رابط,liant,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141468,,True,True
141469,binding,ربْط,liaison,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141469,,True,True
141470,binding energy,طاقة الربط,énergie de liaison,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141470,,True,True
141471,binomial,ثنائي التسمية,binôme,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141471,,True,True
141472,biochemical oxygen deman (BOD),حاجة حيوية كيميائية للأكسجين,demande biochimique d'oxygène,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141472,,True,True
141473,biochemistry,كيمياء حيوية,biochimie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141473,,True,True
141474,biodegradation,خسف حيوي,biodégradation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141474,,True,True
141475,biosphere,محيط حيوي، غلاف جوي,biosphère,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141475,,True,True
141476,bioxide,ثاني أكسيد,bioxyde,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141476,الأكسيد الذي يحتوي على ذرتين من الأكسجين بشرط ألا يعطي فوق أكسيد الهيدروجين إذا عولج بالأحماض المخففة,True,True
141477,biphenyl,ثاني الفنيل,biphenyl,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141477,,True,True
141478,bipolar,ثنائي القطب,bipolaire,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141478,,True,True
141479,biradical,ثنائي الجذر,biradical,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141479,,True,True
141480,bismuth,بزموت,bismuth,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141480,,True,True
141481,bisulphate,ثنائي كبريتات، بيكبريتات,bisulfate,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141481,,True,True
141482,bisulphide,ثنائي كبريتيد، ثنائي كبريتور,bisulfure,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141482,,True,True
141483,bisulphite,ثنائي كبريتيت، بيكبريتيت,bisulfite,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141483,,True,True
141484,bitumen,حمّرٌ,bitume,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141484,,True,True
141485,bitumen,حمّري,bitumineux,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141485,,True,True
141486,bitumenous,حمّري، قاري,bitumineux,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141486,,True,True
141487,bitumenous plastics,لدائن قارية، لدائن حمّرية,plastiques bitumineuses,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141487,,True,True
141489,bivalence,ثنائية التكافؤ,bivalence,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141489,,True,True
141490,bivalent,ثنائي التكافؤ,bivalent,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141490,,True,True
141491,bivalent radical,جذر ثنائي التكافؤ، شق ثنائي التكافؤ,radical bivalent,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141491,,True,True
141492,black (ivory); lamp,سناج,noir de fumée; noire d'ivoire,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141492,,True,True
141494,black (platinum…),أسود البلاتين,noir de platine,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141494,,True,True
141493,black lead,رصاص الكتابة,mine de plomb; plombagine,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141493,,True,True
141495,blast dust,غبار الفرن,poussière de fourneau,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141495,,True,True
141496,blast furnace,فرن لافح، فرن عالٍ,haut-fourneau,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141496,فرن يستعمل لاستخلاص الفلزّات من معادنها مثل استخلاص الحديد من خاماته,True,True
141497,blast-pump,مضخّة لافحة، مضخّة نفاحة,trompe soufflante,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141497,,True,True
141498,bleaching,قصر الألوان,blanchiment,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141498,إزالة الألوان أو التبيض بواسطة المواد الكيميائية أو بالتعريض لضوء الشمس,True,True
141499,bleaching powder,مسحوق قصر الألوان، مسحوق القصر,poudre à blanchir,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141499,,True,True
141500,blend (to),مزَج، خلَط,mélanger,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141500,,True,True
141501,blooming,تزهُّر,efflorescence,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141501,,True,True
141502,blooming of sulphure,تزهُّر الكبريت,efflorescence de soufre,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141502,,True,True
141503,blotter,نشافة,buvard,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141503,,True,True
141504,blotting paper,ورقة نشّاف,papier buvard,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141504,,True,True
141505,blow (to),نفَخَ,souffler,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141505,,True,True
141506,blowpipe,أنبوب النفخ، بوري,chalumeau,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141506,,True,True
141507,blue gas,غاز الماء,gaz à l'eau,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141507,,True,True
141509,blue litmus paper,ورق عباد الشمس الأزرق,papier tournesol bleu,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141509,,True,True
141508,blue-John,أزرق جون، فليورين,fluorine bleue; violette,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141508,الفلور سبار الأزرق ويستعمل في الزينة,True,True
141510,body-centered cubic crystals,بلورات مكعبة متمركزة الجسم,cristaux cubiques à corps centré,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141510,,True,True
141513,boil down,ركزّ بالغليان,réduire (par ébullition),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141513,,True,True
141524,boil off (to),طرد بالغليان,chasser par ébullition,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141524,,True,True
141525,boil out (to),استخلص بالغليان,puiser par ébullition; extraire,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141525,,True,True
141514,boiler,مِرْجَل,chaudière,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141514,,True,True
141516,boiling point,نقطة الغليان,point d'ébullition,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141516,,True,True
141521,boiling point (maximum..),نقطة الغليان القصوى,point maximum d'ébullition,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141521,,True,True
141522,boiling point (minimum..),نقطة الغليان الدنيا,point minimum d'ébullition,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141522,,True,True
141523,boiling point (normal...),نقطة الغليان العادية,point normal d'ébullition,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141523,,True,True
141519,boiling point elevation,ارتفاع نقطة الغليان,élévation du point d'ébullition,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141519,,True,True
141520,boiling point elevation constant,ثابت ارتفاع نقطة الغليان,constant d'élévation du point d'ébullition,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141520,,True,True
141515,boiling-over,طفوح بالغليان,débordement par ébullition,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141515,,True,True
141517,boiling-point determination,تعيين نقطة الغليان,détermination du point d'ébullition,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141517,,True,True
141526,bom (to…),قَذَفّ، قَصَفَ,bombarder,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141526,,True,True
141527,bombardment,قَصْف، قَذْف,bombardement,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141527,,True,True
141528,bond,رابطة,liaison,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141528,,True,True
141548,bond (Van der Waals..),رابطة فان درفالس، رابطة فان ديرفالز,liaison de Van der waals,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141548,,True,True
141532,bond (coordinate..),رابطة تساندية,liaison de coordination,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141532,,True,True
141610,bond (covalent),رابطة تساهمية، رابطة تكافؤية مشتركة,liaison covalent,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141610,,True,True
141533,bond (double..),رابطة ثنائية,liaison double,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141533,,True,True
141534,bond (electrostatic..),رابطة كهراكدة، رابطة كهرستاتيكية,liaison électrostatique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141534,,True,True
141539,bond (ionic..),رابطة أيونية,liaison ionique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141539,,True,True
141542,bond (metallic…),رابطة فلزية,liaison métallique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141542,,True,True
141544,bond (polar…),رابطة قطبية,liaison polaire,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141544,,True,True
141545,bond (single…),رابطة أحادية,liaison simple,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141545,,True,True
141529,bond angle,زاوية الربط، زاوية رابطة,angle de liaison,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141529,,True,True
141530,bond breaking,فصْم الرابطة,rupture de liaison,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141530,,True,True
141531,bond cleavage,فصْم الرابطة,rupture de liaison,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141531,,True,True
141535,bond energy,طاقة الربط,énergie de liaison,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141535,,True,True
141540,bond length,طول الرابطة,longueur de liaison,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141540,,True,True
141541,bond making,تكوين الرابطة,formation de liaison,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141541,,True,True
141543,bond order,رتبة الرابطة,ordre d'une liaison,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141543,,True,True
141546,bond strength,قوة الرابطة,force de liaison,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141546,,True,True
141547,bond triple,رابطة ثلالثية,liaison triple,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141547,,True,True
141536,bonding,رَبْط,liaison,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141536,,True,True
141537,bonding (hydrogen..),ترابط هيدروجيني,enchaînement par la liaison d'hydrogène,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141537,,True,True
141538,bonding orbital,مدار رابط، فلك رابط,orbite de liaison,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141538,,True,True
141549,bone ash,رماد العظام,cendre d'os,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141549,,True,True
141550,bone black,فحم العضام، فحم (ال...) الحيواني,noir d'os; noir animal,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141550,المادة الكربونية الناتجة عن تفحّم العضام وتستخدم في إزالة الألوان كما في تكرير السكر,True,True
141551,bone charcoal,فحم العظام، فحم حيواني,charbon d'os; charbon animal,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141551,,True,True
141552,booster pump,مضخة تقوية، مضخة تعزيز,pompe de suralimentation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141552,,True,True
141553,boracite,بوارسيت,boracite,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141553,,True,True
141554,borate,بورات,borate,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141554,,True,True
141555,borax,بورق، بوراكس,borax,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141555,ملح بورات الصوديوم,True,True
141556,borax bead reaction,تفاعل خرزة البورق، تفاعل خرزة البوراكس,réaction de la goutte de borax,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141556,تفاعل كيميائي يستخدم فيه قليل من البورق المنصهرللكشف عن بعض الفلزّات,True,True
141558,borer (of cork),ثقابة (فلين)، مثقب,perce-bouchon,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141558,,True,True
141559,boric acid,حمض البوريك,acide borique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141559,,True,True
141560,boron,بورون، بور,bore,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141560,عنصر لافلزّي وزنه الذّري 10.83 وعدد الذرّي 5,True,True
141561,bottle,قارورة,bouteille,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141561,,True,True
141562,bottom,قَعْر,fond,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141562,,True,True
141565,branched-chains reaction,تفاعل سلسلي متفرع، تفاعل متسلسل متفرع,réaction à chaînes ramifiées,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141565,,True,True
141566,brass,شَبَه,laiton,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141566,,True,True
141567,brass wire,سلك شَبَه,fil de laiton,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141567,,True,True
141568,breaking,تكسير,cassage,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141568,,True,True
141569,bridge,جَسْرٌ,pont,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141569,,True,True
141570,brine,أجاج,saumure; eau salée,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141570,محلول مشبع تقريبا من ملح الطعام,True,True
141571,brittle,قَصِفٌ,fragile,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141571,,True,True
141572,brittleness; fragility,قَصَافة,fragilité,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141572,خاصية للمادة تجعلها قابلة للكسر بسهولة,True,True
141573,bromate,برومات,bromate,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141573,,True,True
141574,bromic acid,حمض البروميك، حمض البروم,acide bromique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141574,,True,True
141575,bromide,بروميد، برومور,bromure,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141575,,True,True
141576,brominate (to),بَرْوَمَ,bromer,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141576,أدخل عنصر البروم في تركيب مركب ما,True,True
141577,bromination,برومة,bromation; bromuration,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141577,معالجة بالبروم,True,True
141578,bromine,بروم,brome,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141578,,True,True
141579,bromine water,ماء البروم,eau de brome,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141579,,True,True
141581,bronze,برونز,bronze,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141581,أشابة النحاس والقصدير تستخدم في سكّ العملة وصناعة التماثيل وغيرها,True,True
141583,brown ring test,اختبار الحلقة البنية,test de l'anneau brun,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141583,,True,True
141584,brush,فرشاة,brosse,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141584,,True,True
141585,bubble,فقاعة,bulle,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141585,,True,True
141588,buff colour,لون أديمي، لون الأدمة,couleur chamois,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141588,,True,True
141589,buffer,واق، صادّ,tampon,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141589,,True,True
141590,buffer mixture,مزيج مُنَظِّم، مخلوط مُنَظِم,mélange-tampon,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141590,,True,True
141591,buffer solution,محلول واق,solution-tampon,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141591,يتكون عادة من قاعدة ضعيفة وملح هذه القاعدة، أو من حمض ضعيف وملح هذا الحمض مثل HCN و NACN,True,True
141592,bulb,بصلة,bulbe,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141592,,True,True
141593,bulb holder,ممساك البصلة,porte-ampoule,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141593,,True,True
141594,bumping of a liquid,طفور سائل,débordement d'un liquide,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141594,غليان السائل غير المنتظم إذ يحدث أحيانا أن يسخن السائل فوق درجة غليانه فلا يغلي ثم يحدث له أن يغلي محدثا صوتا نتيجة لاندفاع البخار من جوف السائل,True,True
141596,buoyancy,طَفوة,poussé (d'un liquide),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141596,,True,True
141597,burette,سَحَّاحة,burette; éprouvette graduée,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141597,أنبوبة زجاجية مدّرجة تنتهي من أسفل بصنبور نحصل بواسطتها على حجوم معلومة من السوائل وتستخدم في التحليل الكمّي,True,True
141598,burette-stand,حامل السحاحة,support de burette,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141598,,True,True
141599,burn,حَرْق,brûlure,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141599,,True,True
141600,burn (to..),أَحْرَق,brûler,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141600,,True,True
141601,burner,حرّاق,brûleur,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141601,,True,True
141602,burning,إحراق، احتراق,brûlement,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141602,,True,True
141603,butane,بوتان، بيوتان,butane,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141603,,True,True
141604,butyl,بوتيل,butyle,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141604,مجموعة عضوية من مجموعات الالكيل,True,True
141605,butylene,بيوتيلين، بوتيلين,butylène,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141605,,True,True
141606,butyrate,بوتيرات,butyrate,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141606,,True,True
141607,butyric acid,حمض الزبدة، حمض البيوتيريك,acide butyrique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141607,أحد الحموض الدهنية يوجد في الزبد على هيئة استر مع الغليسرين,True,True
141608,by-products,منتجات ثانوية,sous produits,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141608,,True,True
141611,cadmium,كاديوم,cadmium,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141611,,True,True
141612,caesium,سيزيوم,césium; caesium,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141612,,True,True
141613,caffeine,كافيين,caféine,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141613,,True,True
141614,calcarous,كلسي، جيري,calcaire,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141614,,True,True
141615,calcification,تكلّس,calcification,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141615,ترسيب أملاح الكالسيوم غير القابلة للذوبان,True,True
141616,calcination,تكليس,calcination,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141616,,True,True
141617,calcine (to),كلَّسَ,calciner,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141617,,True,True
141618,calcite,كالسيت,calcite,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141618,,True,True
141619,calcium,كالسيوم,calcium,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141619,,True,True
141620,calculations,حسابات، إجراء الحسابات,calculations,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141620,,True,True
141621,calibrate (to),عيّر، درّج، عاير,calibrer; graduer,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141621,,True,True
141622,calibration of thermometers,تدريج المحارير، تدريج الترمومترات، تدريج مقاييس الحرارة,calibrage des thermomètres,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141622,,True,True
141623,californium,كاليفورنيوم,californium,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141623,,True,True
141624,calomel,كالوميل، كلوريد الزئبقور، كلورور الزئبقي,calomel; mercure doux,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141624,,True,True
141625,"calomel electrode; calomel half-cell, calomel",ألكترود كالوميل، مسرى الكالوميل,référence électrode; électrode au calomel,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141625,,True,True
141626,caloric; calorific,سَعري,calorique; calorifique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141626,,True,True
141627,calorific value,قيمة (ال...) السُّعرية، قيمة (ال...) الحرارية,valeur calorifique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141627,كمية الحرارة الناتجة من احتراق غرام واحد من المادة احتراقا تاما,True,True
141628,calorimeter,مسعر,calorimétre,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141628,مقياس كمية الحرارة,True,True
141629,calorimetry,قياس كمية الحرارة، مسعرية,calorimétrie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141629,قياس الحرارة النوعية وما يتصل بها,True,True
141630,calory,سُعر، حريرة,calorie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141630,وحدة كمية الحرارة وهي ما يلزم لرفع درجة حرارة غرام واحد من الماء درجة مئوية واحدة في حدود درجات معلومة,True,True
141631,camphor,كافور,camphre,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141631,,True,True
141632,candle,شمعة,bougie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141632,,True,True
141633,cane sugar,سكّر القصب,sucre de cane,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141633,,True,True
141634,cap,ذروة طاقية، قبعة,couvercle; chapeau,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141634,,True,True
141635,capacity,سَعَة,capacité,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141635,,True,True
141636,capillary,شعري,capillaire,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141636,,True,True
141637,capillary action,فعل شعري، خاصة شعرية,action capillaire,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141637,,True,True
141638,capillary tube,أنبوب شعري,tube capillaire,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141638,,True,True
141639,capric acid,حمض الكبريك,acide caprique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141639,,True,True
141640,caproic acid,حمض الكبرويك,acide caproïque,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141640,,True,True
141641,caprylic acid,حمض الكبريليك,acide caprylique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141641,,True,True
141642,capsule,كبسولة,capsule,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141642,,True,True
141643,caramel,كراميل,caramel,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141643,,True,True
141644,carat,قيراط,carat,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141644,وحدة تستخدم في تقدير أوزان الذهب والماس والأحجار الكريمة الأخرى,True,True
141645,carbamic acid,حمض الكرباميك,acide carbamique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141645,,True,True
141646,carbene,كاربين,carbène,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141646,مركب كربوني تبدو فيه ذرة الكاربون بتكافؤين ويكون فيه الكترونا التكافؤ موزعين بنفس التكافؤ مثلCH2,True,True
141647,carbide,كربيد,carbure,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141647,,True,True
141648,carbohydrate,كربوهيدرات,hydrate de carbone,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141648,,True,True
141649,carbolic acid,حمض الكربوليك، حمض الفينيك,acide carbolique; acide phénique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141649,,True,True
141650,carbon,كربون,carbone,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141650,عنصر لافلزّي يوجد على صور مختلفة بعضها غير متبلّركالسناج ولبفحم وبعضها متبلّر كالماس والغرافيت,True,True
141651,carbon (amorphous..),كربون لابلّوري,carbone amorphe,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141651,,True,True
141653,carbon dioxide,ثنائي أكسيد الكربون,bioxyde de carbone; anhydride carbonique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141653,,True,True
141656,carbon monoxide,أحادي أكسيد الكربون,oxyde de carbone,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141656,,True,True
141657,carbon tetrachloride,رباعي كلوريد الكربون,tétrachlorure de carbone,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141657,,True,True
141652,carbonate,كربونات,carbonate,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141652,,True,True
141654,carbonic acid,حمض الكربونيك، حمض الكربون,acide carbonique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141654,,True,True
141655,carbonium,كربونيوم,carbénium; carbonium,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141655,,True,True
141658,carbonyl,كربونيل,carbonyle,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141658,مجموعة ثنائية التكافؤ يرتبط فيها الأكسجين برابطة ثنائية مع الكربون,True,True
141659,carborundum,كربورندوم,carborundum,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141659,,True,True
141660,carboxylation,تفحمل,carboxylation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141660,إضافة مجموعة الكاربوكسيل إلى جزيء,True,True
141661,carboxyle group,مجموعة كربوكسيلية,groupe carboxyle,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141661,مجموعة أحادية التكافؤ تتكون من الكربون والأكسجين والهيدروجين وهي أهم ما يميز الحموض العضوية,True,True
141662,carboy,دمجانة,tourie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141662,قنينة مقششة لحفظ السوائل,True,True
141663,carburation,كربنة، تفحيم,carburation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141663,,True,True
141664,carrier,حامل,porteur; entraîneur,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141664,,True,True
141665,carrier catalyst,حافز حامل، وسيط حامل,catalyseur porteur,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141665,,True,True
141666,casein,كازيين,caséine,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141666,,True,True
141669,cast (to),صبَّ,couler; fondre,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141669,,True,True
141667,cast iron,حديد صبّ، حديد زهر,fonte (de fer),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141667,,True,True
141668,castor iron,زيت الخروع,huile de ricin,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141668,,True,True
141670,catalyse (to),حفَز,catalyser,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141670,,True,True
141671,catalysis,حفْز، وساطة,catalyse,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141671,,True,True
141672,catalysis (negative..),وساطة سالبة,catalyse négative,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141672,,True,True
141673,catalyst,حافز، وسيط,catalyseur,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141673,,True,True
141674,catalyst carrier,حامل الحفز، حامل الوسيط,porteur du catalyseur,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141674,,True,True
141675,catalytic agent,عميل حافز، عامل حفّاز,agent catalytique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141675,,True,True
141676,catalytic combustion,احتراق حفزي، احراق حفزي,combustion catalytique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141676,عملية احتراق تحدث باستخدام عميل حافز كاحتراق بخار الغول المثيلي في الهواء في وجود سلك بلاتيني متوهج,True,True
141677,catalytic hydrogenation,هدرجة حفزية,hydrogénation catalytique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141677,,True,True
141678,catalytic reaction,تفاعل حفزي,réaction catalytique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141678,,True,True
141679,cataphoresis; electrophoresis,تهجير كهربائي,cataphorèse,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141679,عملية كهروكيميائية يتم فيها تهجير الجزيئات الكبيرة في محلول بفعل تأثير تيار كهربائي,True,True
141680,cathode,كاتود، مهبط,cathode,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141680,المسرى الذي يحصل عليه الاختزال,True,True
141681,cathode rays,أشعة الكاتود، أشعة المهبط,rayons cathodiques,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141681,,True,True
141682,cation,كاتيون، أيون موجب، شاردة موجبة,cation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141682,,True,True
141683,cationtrophy,كاتيونتروفية، نمو كاتيوني,cationtrophie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141683,انفعال أو تكسير الأيون الموجب مع بقايا الأيون السالب في حالة التوازن,True,True
141684,caustic,كاو,caustique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141684,,True,True
141685,caustic potash,بوتاس كاوية,potasse caustique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141685,,True,True
141686,caustic soda,صودا كاوية,soude caustique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141686,,True,True
141687,cell,خليّة,cellule,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141687,,True,True
141688,cellophane,سلّوفان,cellophane,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141688,,True,True
141689,celluloid,سيلولويد,celluloïde,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141689,,True,True
141690,cellulose,سلولوز,cellulose,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141690,,True,True
141691,celsius sclae,سلّم سلسيوس,échelle celsius,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141691,,True,True
141692,cement,اسمنت,ciment,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141692,,True,True
141693,center of symmetry,مركز التناظر، مركز التماثل,centre de symétrie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141693,,True,True
141695,central,مركزي,central,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141695,,True,True
141696,centrifuge,نباذة,centrifugeuse; centrifuge; centrifugeur; séparateur,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141696,,True,True
141694,centrigrade scale,سلم مئوي,échelle centésimale,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141694,,True,True
141697,ceramic,خزفي,céramique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141697,,True,True
141698,ceramics,خزفيات، خِزافة,la céramique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141698,,True,True
141699,cerium,سريوم,cérium,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141699,عنص فلزي من العناصر النادرة وزنه الذري 140.3 كثافته 7 ينصهر في درجة 640,True,True
141700,chadwick,شدويك,chadwique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141700,,True,True
141701,chain,سلسلة,chaîne,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141701,,True,True
141702,chain compounds,مركبات سلسلية,composées en chaînes,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141702,مركبات تتألف من عدد من الذرات كالكربون يتصل بعضها ببعض على هيئة سلسلة,True,True
141703,chain reactions,تفاعلات سلسلية,réactions en chaîne,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141703,,True,True
141704,chair-shaped,بنية مقعدية,structure en chaise,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141704,,True,True
141705,chalk,طباشير,craie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141705,حجر الجير الذي يبني به وهو عبارة عن كربونات الكلسيوم غير كاملة النقاء,True,True
141706,chamber process,طريقة الحجرات,procédé des chambres,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141706,,True,True
141707,change (chemical),تغير كيميائي,changement chimique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141707,,True,True
141708,characteristics,مميزات,caractéristiques,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141708,,True,True
141709,characterization,تمييز,caractérisation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141709,,True,True
141710,charcoal,فحم,charbon,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141710,فحم يستحضر بتفحيم المواد العضوية بالنار مثل الخشب والدم والعظام وغيرها,True,True
141711,charge,شحنة,charge,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141711,,True,True
141713,charring of wood,تفحيم الخشب,carbonisation du bois,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141713,,True,True
141714,chart (periodic…) of elements,جدول دوري للعناصر,tableau périodique des éléments,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141714,,True,True
141715,check (to),حقَّقَ,vérifier; contrôler,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141715,,True,True
141716,chelate,مُتَمَخْلِبٌ,chélate,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141716,,True,True
141717,chelation,تَمَخْلُب، تَمَكْلُب,chélation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141717,,True,True
141733,chemi-luminescence,تألق كيميائي، ضيائية كيميائية,chimiluminescence,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=141733,انبعاث الضوء نتيجة لتفاعل كيميائي دون تغيرات واضحة في درجة الحرارة,True,True