當前位置: 首頁>>代碼示例>>Python>>正文


Python EclRegion.select_islice方法代碼示例

本文整理匯總了Python中ert.ecl.EclRegion.select_islice方法的典型用法代碼示例。如果您正苦於以下問題:Python EclRegion.select_islice方法的具體用法?Python EclRegion.select_islice怎麽用?Python EclRegion.select_islice使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在ert.ecl.EclRegion的用法示例。


在下文中一共展示了EclRegion.select_islice方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_local_field

# 需要導入模塊: from ert.ecl import EclRegion [as 別名]
# 或者: from ert.ecl.EclRegion import select_islice [as 別名]
    def test_local_field(self):
        with ErtTestContext('python/enkf/data/local_config', self.field_config) as test_context:
            main = test_context.getErt()
            local_config = main.getLocalConfig()

            # Creating dataset
            data_scale = local_config.createDataset('DATA_SCALE')
            grid = local_config.getGrid()
            ecl_reg = EclRegion(grid, False)
            ecl_reg.select_islice(10, 20)
            data_scale.addField('PERMX', ecl_reg)
            self.assertEqual(1, len(data_scale))
開發者ID:Ensembles,項目名稱:ert,代碼行數:14,代碼來源:test_local_dataset.py

示例2: test_slice

# 需要導入模塊: from ert.ecl import EclRegion [as 別名]
# 或者: from ert.ecl.EclRegion import select_islice [as 別名]
    def test_slice(self):
        reg = EclRegion(self.grid, False)
        reg.select_islice(0, 5)
        OK = True

        global_list = reg.global_list
        self.assertEqual(global_list.parent(), reg)

        for gi in global_list:
            (i, j, k) = self.grid.get_ijk(global_index=gi)
            if i > 5:
                OK = False
        self.assertTrue(OK)
        self.assertTrue(self.grid.ny * self.grid.nz * 6 == len(reg.global_list))

        reg.select_jslice(7, 8, intersect=True)
        OK = True
        for gi in reg.global_list:
            (i, j, k) = self.grid.get_ijk(global_index=gi)
            if i > 5:
                OK = False

            if j < 7 or j > 8:
                OK = False

        self.assertTrue(OK)
        self.assertTrue(2 * self.grid.nz * 6 == len(reg.global_list))

        reg2 = EclRegion(self.grid, False)
        reg2.select_kslice(3, 5)
        reg &= reg2
        OK = True
        for gi in reg.global_list:
            (i, j, k) = self.grid.get_ijk(global_index=gi)
            if i > 5:
                OK = False

            if j < 7 or j > 8:
                OK = False

            if k < 3 or k > 5:
                OK = False

        self.assertTrue(OK)
        self.assertTrue(2 * 3 * 6 == len(reg.global_list))
開發者ID:YingfangZhou,項目名稱:ert,代碼行數:47,代碼來源:test_region.py

示例3: test_equal

# 需要導入模塊: from ert.ecl import EclRegion [as 別名]
# 或者: from ert.ecl.EclRegion import select_islice [as 別名]
    def test_equal(self):
        reg1 = EclRegion(self.grid , False)
        reg2 = EclRegion(self.grid , False)

        self.assertTrue( reg1 == reg2 )

        reg1.select_islice(4 , 6)
        self.assertFalse( reg1 == reg2 )
        reg2.select_islice(4,7)
        self.assertFalse( reg1 == reg2 )
        reg1.select_islice(7,7)
        self.assertTrue( reg1 == reg2 )
開發者ID:YingfangZhou,項目名稱:ert,代碼行數:14,代碼來源:test_region.py

示例4: test_index_list

# 需要導入模塊: from ert.ecl import EclRegion [as 別名]
# 或者: from ert.ecl.EclRegion import select_islice [as 別名]
 def test_index_list(self):
     reg = EclRegion(self.grid, False)
     reg.select_islice(0, 5)
     active_list = reg.active_list
     global_list = reg.global_list
開發者ID:YingfangZhou,項目名稱:ert,代碼行數:7,代碼來源:test_region.py


注:本文中的ert.ecl.EclRegion.select_islice方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。