My first blog in 优快云

    This is my first blog in 优快云.I will write something about Internet and Computer.

    I am interested in Computer Programming.I am learning high-level language like C/C++/java.So my character is tend to be conscientious and careful. My dream is to become a super man who is expert in Computer and Programming.  

本 PPT 介绍了制药厂房中供配电系统的总体概念与设计要点,内容包括: 洁净厂房的特点及其对供配电系统的特殊要求; 供配电设计的一般原则与依据的国家/行业标准; 从上级电网到工厂变电所、终端配电的总体结构与模块化设计思路; 供配电范围:动力配电、照明、通讯、接地、防雷与消防等; 动力配电中电压等级、接地系统形式(如 TN-S)、负荷等级与可靠性、UPS 配置等; 照明的电源方式、光源选择、安装方式、应急与备用照明要求; 通讯系统、监控系统在生产管理与消防中的作用; 接地与等电位连接、防雷等级与防雷措施; 消防设施及其专用供电(消防泵、排烟风机、消防控制室、应急照明等); 常见高压柜、动力柜、照明箱等配电设备案例及部分设计图纸示意; 公司已完成的典型项目案例。 1. 工程背景与总体框架 所属领域:制药厂房工程的公用工程系统,其中本 PPT 聚焦于供配电系统。 放在整个公用工程中的位置:与给排水、纯化水/注射用水、气体与热力、暖通空调、自动化控制等系统并列。 2. Part 01 供配电概述 2.1 洁净厂房的特点 空间密闭,结构复杂、走向曲折; 单相设备、仪器种类多,工艺设备昂贵、精密; 装修材料与工艺材料种类多,对尘埃、静电等更敏感。 这些特点决定了:供配电系统要安全可靠、减少积尘、便于清洁和维护。 2.2 供配电总则 供配电设计应满足: 可靠、经济、适用; 保障人身与财产安全; 便于安装与维护; 采用技术先进的设备与方案。 2.3 设计依据与规范 引用了大量俄语标准(ГОСТ、СНиП、SanPiN 等)以及国家、行业和地方规范,作为设计的法规基础文件,包括: 电气设备、接线、接地、电气安全; 建筑物电气装置、照明标准; 卫生与安全相关规范等。 3. Part 02 供配电总览 从电源系统整体结构进行总览: 上级:地方电网; 工厂变电所(10kV 配电装置、变压
--------------------------------------------------------------------------- PackageNotFoundError Traceback (most recent call last) Cell In[1], line 30 27 new_prs.save(output_path) 29 # 使用示例 ---> 30 keep_first_slide("原始文件.pptx", "仅第一页.pptx") Cell In[1], line 5, in keep_first_slide(input_path, output_path) 3 def keep_first_slide(input_path, output_path): 4 # 打开原始PPT ----> 5 prs = Presentation(input_path) 7 # 创建新演示文稿 8 new_prs = Presentation() File ~\AppData\Local\Programs\Python\Python311\Lib\site-packages\pptx\api.py:31, in Presentation(pptx) 28 if pptx is None: 29 pptx = _default_pptx_path() ---> 31 presentation_part = Package.open(pptx).main_document_part 33 if not _is_pptx_package(presentation_part): 34 tmpl = "file '%s' is not a PowerPoint file, content type is '%s'" File ~\AppData\Local\Programs\Python\Python311\Lib\site-packages\pptx\opc\package.py:82, in OpcPackage.open(cls, pkg_file) 79 @classmethod 80 def open(cls, pkg_file: str | IO[bytes]) -> Self: 81 """Return an |OpcPackage| instance loaded with the contents of `pkg_file`.""" ---> 82 return cls(pkg_file)._load() File ~\AppData\Local\Programs\Python\Python311\Lib\site-packages\pptx\opc\package.py:160, in OpcPackage._load(self) 158 def _load(self) -> Self: 159 """Return the package after loading all parts and relationships.""" --> 160 pkg_xml_rels, parts = _PackageLoader.load(self._pkg_file, cast("Package", self)) 161 self._rels.load_from_xml(PACKAGE_URI, pkg_xml_rels, parts) 162 return self File ~\AppData\Local\Programs\Python\Python311\Lib\site-packages\pptx\opc\package.py:190, in _PackageLoader.load(cls, pkg_file, package) 177 @classmethod 178 def load( 179 cls, pkg_file: str | IO[bytes], package: Package 180 ) -> tuple[CT_Relationships, dict[PackURI, Part]]: 181 """Return (pkg_xml_rels, parts) pair resulting from loading `pkg_file`. 182 183 The returned `parts` value is a {partname: part} mapping with each part in the package (...) 188 those relationships into its |_Relationships| object. 189 """ --> 190 return cls(pkg_file, package)._load() File ~\AppData\Local\Programs\Python\Python311\Lib\site-packages\pptx\opc\package.py:194, in _PackageLoader._load(self) 192 def _load(self) -> tuple[CT_Relationships, dict[PackURI, Part]]: 193 """Return (pkg_xml_rels, parts) pair resulting from loading pkg_file.""" --> 194 parts, xml_rels = self._parts, self._xml_rels 196 for partname, part in parts.items(): 197 part.load_rels_from_xml(xml_rels[partname], parts) File ~\AppData\Local\Programs\Python\Python311\Lib\site-packages\pptx\util.py:191, in lazyproperty.__get__(self, obj, type) 186 value = obj.__dict__.get(self._name) 187 if value is None: 188 # --- on first access, the __dict__ item will be absent. Evaluate fget() 189 # --- and store that value in the (otherwise unused) host-object 190 # --- __dict__ value of same name ('fget' nominally) --> 191 value = self._fget(obj) 192 obj.__dict__[self._name] = value 193 return cast(_T, value) File ~\AppData\Local\Programs\Python\Python311\Lib\site-packages\pptx\opc\package.py:222, in _PackageLoader._parts(self) 214 @lazyproperty 215 def _parts(self) -> dict[PackURI, Part]: 216 """dict {partname: Part} populated with parts loading from package. 217 218 Among other duties, this collection is passed to each relationships collection so each 219 relationship can resolve a reference to its target part when required. This reference can 220 only be reliably carried out once the all parts have been loaded. 221 """ --> 222 content_types = self._content_types 223 package = self._package 224 package_reader = self._package_reader File ~\AppData\Local\Programs\Python\Python311\Lib\site-packages\pptx\util.py:191, in lazyproperty.__get__(self, obj, type) 186 value = obj.__dict__.get(self._name) 187 if value is None: 188 # --- on first access, the __dict__ item will be absent. Evaluate fget() 189 # --- and store that value in the (otherwise unused) host-object 190 # --- __dict__ value of same name ('fget' nominally) --> 191 value = self._fget(obj) 192 obj.__dict__[self._name] = value 193 return cast(_T, value) File ~\AppData\Local\Programs\Python\Python311\Lib\site-packages\pptx\opc\package.py:207, in _PackageLoader._content_types(self) 201 @lazyproperty 202 def _content_types(self) -> _ContentTypeMap: 203 """|_ContentTypeMap| object providing content-types for items of this package. 204 205 Provides a content-type (MIME-type) for any given partname. 206 """ --> 207 return _ContentTypeMap.from_xml(self._package_reader[CONTENT_TYPES_URI]) File ~\AppData\Local\Programs\Python\Python311\Lib\site-packages\pptx\opc\serialized.py:38, in PackageReader.__getitem__(self, pack_uri) 36 def __getitem__(self, pack_uri: PackURI) -> bytes: 37 """Return bytes for part corresponding to `pack_uri`.""" ---> 38 return self._blob_reader[pack_uri] File ~\AppData\Local\Programs\Python\Python311\Lib\site-packages\pptx\util.py:191, in lazyproperty.__get__(self, obj, type) 186 value = obj.__dict__.get(self._name) 187 if value is None: 188 # --- on first access, the __dict__ item will be absent. Evaluate fget() 189 # --- and store that value in the (otherwise unused) host-object 190 # --- __dict__ value of same name ('fget' nominally) --> 191 value = self._fget(obj) 192 obj.__dict__[self._name] = value 193 return cast(_T, value) File ~\AppData\Local\Programs\Python\Python311\Lib\site-packages\pptx\opc\serialized.py:52, in PackageReader._blob_reader(self) 49 @lazyproperty 50 def _blob_reader(self) -> _PhysPkgReader: 51 """|_PhysPkgReader| subtype providing read access to the package file.""" ---> 52 return _PhysPkgReader.factory(self._pkg_file) File ~\AppData\Local\Programs\Python\Python311\Lib\site-packages\pptx\opc\serialized.py:144, in _PhysPkgReader.factory(cls, pkg_file) 141 if zipfile.is_zipfile(pkg_file): 142 return _ZipPkgReader(pkg_file) --> 144 raise PackageNotFoundError("Package not found at '%s'" % pkg_file) PackageNotFoundError: Package not found at '原始文件.pptx'
07-22
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值