ONGC的完整形式是什么?

ONGC:石油天然气公司 (ONGC: Oil and Natural Gas Corporation)

ONGC is an abbreviation of Oil and Natural Gas Corporation. It is an Indian multinational corporation that is one of the leading producers of crude oil and natural gas in India. Its head office is situated in Dehradun, Uttarakhand, India.

ONGC是石油和天然气公司的缩写 。 它是一家印度跨国公司,是印度原油和天然气的主要生产商之一。 其总部位于印度北阿坎德邦的德拉敦。

ONGC is a state-owned enterprise that is administered by the Ministry of Petroleum and Natural Gas. It produces around 70% of the total crude oil produced in India and around 60% of the total natural gas produced in India.

ONGC是由石油和天然气部管理的国有企业。 它生产的原油约占印度总产量的70%,天然气的产量约占印度总产量的60%。

ONGC full form


Image source: https://en.wikipedia.org/wiki/Oil_and_Natural_Gas_Corporation

图片来源:https://en.wikipedia.org/wiki/Oil_and_Natural_Gas_Corporation

ONGC产品 (Products of ONGC)

  • Crude Oil

    原油

  • Natural Gas

    天然气

  • Ethane

    乙烷

  • Motor Spirit

    运动精神

  • Superior Kerosene Oil

    高级煤油

  • High-Speed Diesel (HSD)

    高速柴油(HSD)

  • Liquefied Petroleum Gas (LPG)

    液化石油气(LPG)

  • Aromatic Rich Naptha

    芳香丰富的Naptha

ONGC简史 (Brief History of ONGC)

  • In 1948, after India achieved independence, the government of India comprehended the significance of oil and gas for the expansion and development of Indian industries; as a consequence, it considered and planned to grow and expand the hydrocarbon industry.

    1948年,印度获得独立后,印度政府领悟了石油和天然气对印度工业扩张和发展的重要性; 因此,它考虑并计划发展和扩大碳氢化合物产业。

  • In 1955, under the Ministry of Natural Resources and Scientific Research, an Oil and Natural Gas Directorate was established to grow and expand the oil and natural gas resources in the country.

    1955年,在自然资源和科学研究部的领导下,成立了石油和天然气管理局,以发展和扩大该国的石油和天然气资源。

  • In 1956, the Indian Parliament approved the Industrial Policy Resolution and listed the oil and gas industry along with the Schedule 'A' industries. Oil and Natural Gas Directorate was also promoted and advanced to the Oil and Natural Gas Commission.

    1956年,印度议会批准了《工业政策决议》,将石油和天然气行业与附表A行业一起列出。 石油和天然气管理局也已晋升并晋升为石油和天然气委员会。

  • In February 1994, ONGC was restructured as a limited corporation under the Company's Act, 1956. It turned out to be a state-owned enterprise and its name was changed to Oil and Natural Gas Corporation (ONGC).

    1994年2月,根据1956年《公司法》,ONGC改组为有限责任公司。它原来是国有企业,并且更名为石油和天然气公司(ONGC)。

  • In 1999, ONGC and Indian Oil Corporation (IOC) discussed and then accepted to pay money for each other's stock to develop and expand their businesses at domestic and international levels.

    在1999年,ONGC和印度石油公司(IOC)进行了讨论,然后接受了对方的股票付款,以发展和扩展其在国内外的业务。

  • In the year 2002-03, ONGC founded ONGC Videsh Ltd. (OVL) as its subordinate corporation to come into the global market.

    在2002-03年度,ONGC成立了ONGC Videsh Ltd.(OVL)作为其下属公司,进入全球市场。

  • In 2010, ONGC obtained the "Maharatna" standing, a "Maharatna" PSU.

    ONGC在2010年获得了“ Maharatna”资格,即“ Maharatna” PSU。

  • In January 2014, OVL and Oil India fulfilled the acquirement of Videocon Group's ten percent stake in a Mozambican gas field for a total of $2.47 billion.

    2014年1月,OVL和印度石油公司以总价24.7亿美元的价格完成了Videocon Group在莫桑比克气田10%股权的收购。

  • In June 2015, Oil and Natural Gas Corporation (ONGC) gave a Rs 27 billion ($427m) offshore contract for the Bassein development project to Larsen & Toubro (L&T).

    2015年6月,石油和天然气公司(ONGC)向Larsen&Toubro(L&T)授予了Bassein开发项目的270亿卢比(4.27亿美元)离岸合同。

  • On 19 July 2017, the Government of India accepted and officially permitted the acquirement of Hindustan Petroleum Corporation by ONGC.

    2017年7月19日,印度政府接受并正式允许ONGC收购Hindustan石油公司。

翻译自: https://www.includehelp.com/dictionary/ongc-full-form.aspx

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/377504.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

C/C++代码优化方法

目录优化概述_O0优化_O1优化_O2优化_O3优化volatile关键字避免优化优化概述 如果将未经优化的C语言程序直接运行会发现运行效率较低,并且产生的代码较大,而通过优化可以较好地解决这些问题。 优化的作用是对循环进行化简,重新组织表达式和声…

大学生应当趁早谋划未来(二)--给表弟的建议

背景表弟,大四,湖北某二本院校,计算机相关专业。大学期间,对Java等编程没有兴趣,几乎没怎么学习。平时,课程比较多,每天6节左右。课外,自己去挣点生活费,父亲生病了。困境最近在找工…

UVa 490 - Rotating Sentences

把输入的字符顺时针旋转90度。 1 #include<stdio.h>2 #include<string.h>3 4 int main()5 {6 int i, j, max, n, m;7 char s[105][105];8 max0;9 memset(s, \0, sizeof(s)); 10 for (i0; gets(s[i]); i) 11 { 12 nstrlen(s[i]); 1…

node 大写_大写Node.js模块

node 大写Today, lets see a third party module that helps us in working with upper-case letters without necessarily typing them in upper-case in our source code. 今天&#xff0c;让我们看一个第三方模块&#xff0c;它可以帮助我们处理大写字母&#xff0c;而不必在…

1704:baoge的洗漱难题[黄]

baoge的洗漱难题[黄] Time Limit: 5000 ms Memory Limit: 65536 KB Total Submit: 79 Accepted: 21 Description众所周知&#xff0c;地大19楼的盥洗室非常小&#xff0c;所以经常会非常拥挤&#xff0c;很多时候去洗漱的时候不得不排很长的队。有时候baoge会排上半小时…

HDU嵌入式实验课程大作业分析报告

目录作业要求设计原理与思路扩展任务说明课程感受友情链接工程链接作业要求 体能测试记录仪设计 基于课程发放的实验板&#xff0c;设计一个带有计时和数据采集功能的体能测试记录仪。 基本设计内容 功能1&#xff1a;对应1000米体测场景&#xff0c;使用充电宝供电&#x…

COJ 1030 素数槽

http://acm.csu.edu.cn/OnlineJudge/problem.php?id1030 用线性筛素数果然快多了。 #include<cstdio> #include<cstring> #include<cstdlib> #define MAXN 1300000 bool is_p[MAXN];void calc() {for( int i 1; i < MAXN; i )is_p[i] true;is_p[1] fa…

html注释引用公共头部_HTML注释和引用

html注释引用公共头部HTML注释 (HTML Comments) To insert a comment in an HTML document, the comment tags are used. The comments are used to provide some information that could be useful for anyone who views the code of the webpage. The comments can be insert…

java连接oracle数据库 -- jdbc连接

a. 倒入oracle的jar包 b. 编写java文件 package com.sp; import java.sql.*; //使用jdbc连接oracle public class MyOra2 {/*** param args*/public static void main(String[] args) {// TODO Auto-generated method stubtry {Class.forName("oracle.jdbc.dri…

HDB3码的编码

编码规则 1、源码是1时&#xff0c;暂时不变&#xff1b; 2、连0不超过3个时不变&#xff0c;有4个或以上连0时把每4个0换为取代节&#xff0c;即B00V&#xff1b; 3、确定B是0还是1&#xff1a;第一个B一般取0&#xff0c;若两个取代节之间1的个数为偶&#xff0c;易推得后者…

地图加载(安全沙箱问题及解决方案)

基于Flash开发的软件浏览器插件会受到应用沙盒限制&#xff0c;譬如说在本机发布了地图服务&#xff0c;在flex中使用localhost获取地图时一切正常&#xff0c;但改成IP地址后就会报安全沙箱错误。 Flash Player对访问外部资源有比较严格的限制&#xff0c;因此如果需要访问…

批量去除文件空格

import osfilepath r"G:\picture" # 文件目录名 allfilepath os.listdir(filepath)for file in allfilepath: # 改目录下的文件名oldpath filepath \\ filenewname file.replace( , ) # 在原先文件名中去除空格&#xff0c;也就是用null替代空格newpath fil…

python 初始化 元组_在Python中重新初始化元组

python 初始化 元组Python | 重新初始化元组 (Python | Reinitializing tuple) In this tutorial, we will learn how can we reinitialize a tuple with a new set of elements/objects? 在本教程中&#xff0c;我们将学习如何使用一组新的元素/对象重新初始化元组&#xff1…

【DSP复习主要知识点】(大概)

目录第一章1、数字系统对比模拟系统2、冯诺依曼、哈佛架构3、CISC、RISC4、DSP特点5、cpu流水线作用6、DSP芯片优点第二章&#xff1a;DSP芯片结构原理1、ALU&#xff08;算数逻辑运算单元&#xff09;2、累加器A和B3、桶形移位器的功能4、乘法/加法单元5、CPU状态与控制寄存器…

PHP CURL POST无法获取响应内容的问题

现象&#xff1a; 使用PHP的CURL相关函数进行POST&#xff0c;当要POST的参数内容长度超过1024时&#xff0c;将无法获得response的数据。 即&#xff1a; [php] view plaincopyprint?curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_POSTFIELDS,…

每天自动给自己发天气预报的脚本

需求&#xff1a; 每天早上起来可以看看天气预报&#xff0c;然后顺便当个闹钟使 思路是这样的&#xff1a; 模块一&#xff1a;采用yahoo weather api获取北京的天气 模块二&#xff1a;通过网页版飞信&#xff0c;模拟飞信登陆&#xff0c;给自己发短信 模块三&#xff1a;发…

YYSSW的完整格式是什么?

YYSSW&#xff1a;是的&#xff0c;肯定的&#xff0c;无论如何 (YYSSW: Yeah Yeah Sure Sure Whatever) YYSSW is an abbreviation of "Yeah Yeah Sure Sure Whatever". YYSSW的缩写是“ Yeah Yeah Sure Sure Whatever” 。 It is an expression, which is commonl…

Json转二值图像

Json文件通过labelme进行标识 image路径 G:\PyCharm\workspace\unet_42-master\datasets\label_bz\test\image label路径 G:\PyCharm\workspace\unet_42-master\datasets\label_bz\test\label 待转换路径 G:\PyCharm\workspace\unet_42-master\datasets\label_bz\test\mask …

矩形波傅里叶变换对以及三角波傅里叶变换

时域矩形波->频域sinc 时域三角波->频域sinc^2:

关于苹果IPhone/Ipad(IOS)开发者证书申请及安装、真机调试、发布的参考文章

这是我在申请、安装IOS开发者证书&#xff0c;真机调试时候参考的文章&#xff0c;非常有用。 1、开发证书与发布证书申请和安装步骤 http://blog.csdn.net/zougangx/article/details/6074313 2、申请IDP/真机调试/GameCenter 指南/OpenFeint指南&#xff1a; http://xiaomingh…