期刊文献+
共找到20,442篇文章
< 1 2 250 >
每页显示 20 50 100
An Efficient Memory Management for Mobile Operating Systems Based on Prediction of Relaunch Distance
1
作者 Jaehwan Lee Sangoh Park 《Computer Systems Science & Engineering》 SCIE EI 2023年第10期171-186,共16页
Recently,various mobile apps have included more features to improve user convenience.Mobile operating systems load as many apps into memory for faster app launching and execution.The least recently used(LRU)-based ter... Recently,various mobile apps have included more features to improve user convenience.Mobile operating systems load as many apps into memory for faster app launching and execution.The least recently used(LRU)-based termination of cached apps is a widely adopted approach when free space of the main memory is running low.However,the LRUbased cached app termination does not distinguish between frequently or infrequently used apps.The app launch performance degrades if LRU terminates frequently used apps.Recent studies have suggested the potential of using users’app usage patterns to predict the next app launch and address the limitations of the current least recently used(LRU)approach.However,existing methods only focus on predicting the probability of the next launch and do not consider how soon the app will launch again.In this paper,we present a new approach for predicting future app launches by utilizing the relaunch distance.We define the relaunch distance as the interval between two consecutive launches of an app and propose a memory management based on app relaunch prediction(M2ARP).M2ARP utilizes past app usage patterns to predict the relaunch distance.It uses the predicted relaunch distance to determine which apps are least likely to be launched soon and terminate them to improve the efficiency of the main memory. 展开更多
关键词 Mobile operating systems memory management background app caching relaunch distance neural networks
下载PDF
Characterization of Memory Access in Deep Learning and Its Implications in Memory Management
2
作者 Jeongha Lee Hyokyung Bahn 《Computers, Materials & Continua》 SCIE EI 2023年第7期607-629,共23页
Due to the recent trend of software intelligence in the Fourth Industrial Revolution,deep learning has become a mainstream workload for modern computer systems.Since the data size of deep learning increasingly grows,m... Due to the recent trend of software intelligence in the Fourth Industrial Revolution,deep learning has become a mainstream workload for modern computer systems.Since the data size of deep learning increasingly grows,managing the limited memory capacity efficiently for deep learning workloads becomes important.In this paper,we analyze memory accesses in deep learning workloads and find out some unique characteristics differentiated from traditional workloads.First,when comparing instruction and data accesses,data access accounts for 96%–99%of total memory accesses in deep learning workloads,which is quite different from traditional workloads.Second,when comparing read and write accesses,write access dominates,accounting for 64%–80%of total memory accesses.Third,although write access makes up the majority of memory accesses,it shows a low access bias of 0.3 in the Zipf parameter.Fourth,in predicting re-access,recency is important in read access,but frequency provides more accurate information in write access.Based on these observations,we introduce a Non-Volatile Random Access Memory(NVRAM)-accelerated memory architecture for deep learning workloads,and present a new memory management policy for this architecture.By considering the memory access characteristics of deep learning workloads,the proposed policy improves memory performance by 64.3%on average compared to the CLOCK policy. 展开更多
关键词 memory access deep learning machine learning memory access memory management CLOCK
下载PDF
Mobile Memory Management System Based on User’s Application Usage Patterns
3
作者 Jaehwan Lee Sangoh Park 《Computers, Materials & Continua》 SCIE EI 2021年第9期4031-4050,共20页
Currently,the number of functions to improve user convenience in smartphone applications is increasing.In addition,more mobile applications are being loaded into mobile operating system memory for faster launches,thus... Currently,the number of functions to improve user convenience in smartphone applications is increasing.In addition,more mobile applications are being loaded into mobile operating system memory for faster launches,thus increasing the memory requirements for smartphones.The memory used by applications in mobile operating systems is managed using software;allocated memory is freed up by either considering the usage state of the application or terminating the least recently used(LRU)application.As LRU-based memory management schemes do not consider the application launch frequency in a low memory situation,currently used mobile operating systems can lead to the termination of a frequently executed application,thereby increasing its relaunch time.This study proposes a memory management system that can efficiently utilize the main memory space by analyzing the application usage information.The proposed system reduces the application launch time by leaving the most frequently used or likely to be run applications in the main memory for as long as possible.The performance evaluation conducted utilizing actual smartphone usage records showed that the proposed memory management system increases the number of times the applications resume from the main memory compared with the conventional memory management system,and that the average application execution time is reduced by approximately 17%. 展开更多
关键词 Mobile environment memory management machine learning neural nets user-centered design
下载PDF
Key-Value Store Coupled with an Operating System for Storing Large-Scale Values
4
作者 Jeonghwan Im Hyuk-Yoon Kwon 《Computers, Materials & Continua》 SCIE EI 2022年第11期3333-3350,共18页
The key-value store can provide flexibility of data types because it does not need to specify the data types to be stored in advance and can store any types of data as the value of the key-value pair.Various types of ... The key-value store can provide flexibility of data types because it does not need to specify the data types to be stored in advance and can store any types of data as the value of the key-value pair.Various types of studies have been conducted to improve the performance of the key-value store while maintaining its flexibility.However,the research efforts storing the large-scale values such as multimedia data files(e.g.,images or videos)in the key-value store were limited.In this study,we propose a new key-value store,WR-Store++aiming to store the large-scale values stably.Specifically,it provides a new design of separating data and index by working with the built-in data structure of the Windows operating system and the file system.The utilization of the built-in data structure of the Windows operating system achieves the efficiency of the key-value store and that of the file system extends the limited space of the storage significantly.We also present chunk-based memory management and parallel processing of WR-Store++to further improve its performance in the GET operation.Through the experiments,we show that WR-Store++can store at least 32.74 times larger datasets than the existing baseline key-value store,WR-Store,which has the limitation in storing large-scale data sets.Furthermore,in terms of processing efficiency,we show that WR-Store++outperforms not only WR-Store but also the other state-ofthe-art key-value stores,LevelDB,RocksDB,and BerkeleyDB,for individual key-value operations and mixed workloads. 展开更多
关键词 Key-value stores large-scale values chunk-based memory management parallel processing
下载PDF
A survey of operating system support for persistent memory 被引量:2
5
作者 Miao CAI Hao HUANG 《Frontiers of Computer Science》 SCIE EI CSCD 2021年第4期29-48,共20页
Emerging persistent memory technologies,like PCM and 3D XPoint,offer numerous advantages,such as higher density,larger capacity,and better energy efficiency,compared with the DRAM.However,they also have some drawbacks... Emerging persistent memory technologies,like PCM and 3D XPoint,offer numerous advantages,such as higher density,larger capacity,and better energy efficiency,compared with the DRAM.However,they also have some drawbacks,e.g.,slower access speed,limited write endurance,and unbalanced read/write latency.Persistent memory technologies provide both great opportunities and challenges for operating systems.As a result,a large number of solutions have been proposed.With the increasing number and complexity of problems and approaches,we believe this is the right moment to investigate and analyze these works systematically.To this end,we perform a comprehensive and in-depth study on operating system support for persistent memory within three steps.First,we present an overview of how to build the operating system on persistent memory from three perspectives:system abstraction,crash consistency,and system reliability.Then,we classify the existing research works into three categories:storage stack,memory manager,and OS-bypassing library.For each category,we summarize the major research topics and discuss these topics deeply.Specifically,we present the challenges and opportunities in each topic,describe the contributions and limitations of proposed approaches,and compare these solutions in different dimensions.Finally,we also envision the future operating system based on this study. 展开更多
关键词 persistent memory operating system SURVEY
原文传递
MEBS: Uncovering Memory Life-Cycle Bugs in Operating System Kernels
6
作者 Gen Zhang Peng-Fei Wang +2 位作者 Tai Yue Xu Zhou Kai Lu 《Journal of Computer Science & Technology》 SCIE EI CSCD 2021年第6期1248-1268,共21页
Allocation,dereferencing,and freeing of memory data in kernels are coherently linked.There widely exist real cases where the correctness of memory is compromised.This incorrectness in kernel memory brings about signif... Allocation,dereferencing,and freeing of memory data in kernels are coherently linked.There widely exist real cases where the correctness of memory is compromised.This incorrectness in kernel memory brings about significant security issues,e.g.,information leaking.Though memory allocation,dereferencing,and freeing are closely related,previous work failed to realize they are closely related.In this paper,we study the life-cycle of kernel memory,which consists of allocation,dereferencing,and freeing.Errors in them are called memory life-cycle(MLC)bugs.We propose an in-depth study of MLC bugs and implement a memory life-cycle bug sanitizer(MEBS)for MLC bug detection.Utilizing an interprocedural global call graph and novel identification approaches,MEBS can reveal memory allocation,dereferencing,and freeing sites in kernels.By constructing a modified define-use chain and examining the errors in the life-cycle,MLC bugs can be identified.Moreover,the experimental results on the latest kernels demonstrate that MEBS can effectively detect MLC bugs,and MEBS can be scaled to different kernels.More than 100 new bugs are exposed in Linux and FreeBSD,and 12 common vulnerabilities and exposures(CVE)are assigned. 展开更多
关键词 software security operating system memory life-cycle static analysis vulnerability detection
原文传递
Global Memory Net and the development of digital image information management system: Experience and practice 被引量:4
7
作者 ZHANG Sheng-qiang CHEN Ching-chih 《Journal of Zhejiang University-Science A(Applied Physics & Engineering)》 SCIE EI CAS CSCD 2005年第11期1216-1220,共5页
Global Memory Net (GMNet) is intended to be an effective gateway to the world cultural, historical, and heritage image collections from selected academic educational and research partners in the world. Much of these u... Global Memory Net (GMNet) is intended to be an effective gateway to the world cultural, historical, and heritage image collections from selected academic educational and research partners in the world. Much of these unique collections of great value to education and research are not currently accessible due to distance, form, and technical barriers. This project is to find new ways to enable users to access and exploit these significant research collections via global network. As GMNet is ending its first 5-year phase in October 2005, it has contributed substantially to the community building in digital library development by ac- commodating numerous collaborators and technical staff from various parts of the world to spend 3 to 5 months as a full-member of the GMNet team in Boston. They have come from different parts of China—such as Sichuan, Hainan, Shanghai and Xi’an; Croatia; and Hanoi, Vietnam. In addition to contribute to the overall system development and enhancement of system function- alities, they have brought valuable sample image collections of their own institutions/countries, and actually developed prototype collections as a part of GMNet. This paper describes the exciting and productive experience of the first of this visiting research group in developing the GMNet’s Version 2.0 PHP-based system under Prof. Chen’s overall supervision. It also describes both the system’s technical level structure—user/Web-based application/data, and complex functionalities with multi-collection, multi-lingual, multi-modal searching capabilities; system management capabilities; as well as provisions for user uploads and retrieval for our own projects. This Version 2.0 system is built on the Linux/Apache/PHP/MySQL platform. What is described in this paper is an actual case which has formed a base for further new development by others in the research group. It demonstrates fully the value of the synergistic collaboration among global partners for universal digital library development. More information can be found in http://www.memorynet.org/. 展开更多
关键词 Global memory Net (GMNet) Collaboration Digital image library system development management system Cultural Historical Heritage collections
下载PDF
Energy Management and Capacity Optimization of Photovoltaic, Energy Storage System, Flexible Building Power System Considering Combined Benefit
8
作者 Chang Liu Bo Luo +5 位作者 Wei Wang Hongyuan Gao Zhixun Wang Hongfa Ding Mengqi Yu Yongquan Peng 《Energy Engineering》 EI 2023年第2期541-559,共19页
Building structures themselves are one of the key areas of urban energy consumption,therefore,are a major source of greenhouse gas emissions.With this understood,the carbon trading market is gradually expanding to the... Building structures themselves are one of the key areas of urban energy consumption,therefore,are a major source of greenhouse gas emissions.With this understood,the carbon trading market is gradually expanding to the building sector to control greenhouse gas emissions.Hence,to balance the interests of the environment and the building users,this paper proposes an optimal operation scheme for the photovoltaic,energy storage system,and flexible building power system(PEFB),considering the combined benefit of building.Based on the model of conventional photovoltaic(PV)and energy storage system(ESS),the mathematical optimization model of the system is proposed by taking the combined benefit of the building to the economy,society,and environment as the optimization objective,taking the near-zero energy consumption and carbon emission limitation of the building as the main constraints.The optimized operation strategy in this paper can give optimal results by making a trade-off between the users’costs and the combined benefits of the building.The efficiency and effectiveness of the proposed methods are verified by simulated experiments. 展开更多
关键词 PHOTOVOLTAIC energy storage system energy management PEFB optimization operation
下载PDF
Energy Management of Networked Smart Railway Stations Considering Regenerative Braking, Energy Storage System, and Photovoltaic Units
9
作者 Saeed Akbari Seyed Saeed Fazel Hamed Hashemi-Dezaki 《Energy Engineering》 EI 2023年第1期69-86,共18页
The networking of microgrids has received significant attention in the form of a smart grid.In this paper,a set of smart railway stations,which is assumed as microgrids,is connected together.It has been tried to manag... The networking of microgrids has received significant attention in the form of a smart grid.In this paper,a set of smart railway stations,which is assumed as microgrids,is connected together.It has been tried to manage the energy exchanged between the networked microgrids to reduce received energy from the utility grid.Also,the operational costs of stations under various conditions decrease by applying the proposed method.The smart railway stations are studied in the presence of photovoltaic(PV)units,energy storage systems(ESSs),and regenerative braking strategies.Studying regenerative braking is one of the essential contributions.Moreover,the stochastic behaviors of the ESS’s initial state of energy and the uncertainty of PV power generation are taken into account through a scenario-based method.The networked microgrid scheme of railway stations(based on coordinated operation and scheduling)and independent operation of railway stations are studied.The proposed method is applied to realistic case studies,including three stations of Line 3 of Tehran Urban and Suburban Railway Operation Company(TUSROC).The rolling stock is simulated in the MATLAB environment.Thus,the coordinated operation of networked microgrids and independent operation of railway stations are optimized in the GAMS environment utilizing mixed-integer linear programming(MILP). 展开更多
关键词 Energy management system(EMS) smart railway stations coordinated operation photovoltaic generation regenerative braking uncertainty scenario-based model mixed-integer linear programming(MILP)
下载PDF
Management System Activities of the Operation and Utilization of GHARR-1
10
作者 Edward Shitsi Henry Cecil Odoi +10 位作者 Kwame Gyamfi Philip Dordoh-Gasu Isaac Kwasi Baidoo Edward Oscar Amponsah-Abu Emmanuel Kwesi Boafo Samuel Yao Ganyaglo Samuel Boakye Dampare Henry Kwame Obeng William Osei-Mensah Wilfred Sedofia Massiasta Robert Ekow Quagraine 《World Journal of Engineering and Technology》 2023年第4期807-826,共20页
The Ghana Research Reactor-1 (GHARR-1) is a 34 kW low enriched uranium (LEU) Miniature Neutron Source Reactor (MNSR), tank-in-pool type and cooled by natural circulation under atmospheric pressure operating conditions... The Ghana Research Reactor-1 (GHARR-1) is a 34 kW low enriched uranium (LEU) Miniature Neutron Source Reactor (MNSR), tank-in-pool type and cooled by natural circulation under atmospheric pressure operating conditions. GHARR-1 is owned by Ghana Atomic Energy Commission (GAEC) and operated by National Nuclear Research Institute (NNRI), one of the institutes of GAEC. GHARR-1 is housed by Nuclear Reactors Research Centre (NRRC), one of the Centres of NNRI. Management/Administration, Radiation protection, Reactor operation and maintenance, Reactor utilization and Physical protection are the various systems/units that integrate to manage the activities of operation and utilization of GHARR-1 in addition to the quality assurance and quality control management system of the research reactor facility. The GHARR-1 which is currently in operation follows a robust maintenance culture adopted by the management system and this has made it possible to keep the reactor in operation with minimal interruption. The management system activities adopted at the Centre to ensure safety of the workers, public and the research reactor facility include authorization of the operation of the reactor for any experiments/modifications;providing material and financial resources for maintaining the research reactor facility;following standard procedures while carrying out Neutron Activation Analysis;participation in IAEA proficiency test;irradiation sites/positions characterization;following standard procedures while carrying out reactor operation and maintenance including reactor and pool water purification and other related activities;monitoring radiation levels in the controlled, supervised and uncontrolled areas of the research reactor facility as well as during reactor operation and maintenance;controlling the physical entry of the workers and public into the research reactor facility;and ensuring that the security structures provided to protect the reactor facility are functioning properly. The thorough knowledge on the functions of the various components that make up the electrical/electronic and control systems of the reactor has been observed to be important for continuous successful maintenance of the research reactor to keep the reactor in operation. This work provides some management system activities adopted to monitor the activities of the research reactor operation and utilization to guarantee safety of workers, public and the environment as well as to safeguard a continuous operation of the research reactor. These management system activities adopted among others, are in the form of Monitoring Forms provided for monitoring the activities of the research reactor operation and utilization in order to ensure standard procedures and specifications are followed and quality services are rendered to the public. 展开更多
关键词 management systems Quality Assurance and Quality Control Research Re-actor Operation and Utilization Monitoring Forms Ghana Research Reactor-1 (GHARR-1)
下载PDF
Application of Specialized Group Management in the Quality Control of Perioperative Nursing 被引量:2
11
作者 Cong Fu Xuefei Li +4 位作者 Li Wang Yuanyuan Jiang Xinrong Qi Chen Ding Shanshan Tang 《Journal of Clinical and Nursing Research》 2024年第2期70-75,共6页
Objective:To explore the role of specialized group management in the quality control of perioperative nursing.Methods:45 surgical nurses from our hospital were selected as the research subjects.Traditional operating r... Objective:To explore the role of specialized group management in the quality control of perioperative nursing.Methods:45 surgical nurses from our hospital were selected as the research subjects.Traditional operating room management was adopted from July 2019 to June 2020,and specialized group management was adopted from July 2020 to June 2021.The surgeon’s satisfaction,surgical nurses’core professional competence,and surgical patients’satisfaction were obtained through surveys and the results were analyzed.Results:Surgeon satisfaction before the implementation of specialized group management was significantly lower than after its implementation(P<0.05).Besides,surgical nurses’core professional competency scores before the implementation of specialized group management were significantly lower than after its implementation(P<0.05).Lastly,surgical patients’satisfaction before the implementation of specialized group management was significantly lower than after its implementation(P<0.05).Conclusion:Specialized group management helps to improve the quality of perioperative care and should be applied in clinical practice. 展开更多
关键词 Specialized group management operating room Quality of care CONTROL
下载PDF
Vehicle Operating, Accident and User Time Costs in Pavement Management Systems: Approach for Portuguese Conditions 被引量:1
12
作者 Bertha Maria Batista dos Santos Luis Guilherme de Picado Santos Victor Manuel Pissarra Cavaleiro 《Journal of Civil Engineering and Architecture》 2011年第8期723-731,共9页
This paper presents a description and analysis of the most important models to predict each of the Road User Costs components (Vehicle Operating Costs, Accident Costs and Value of Time) and proposes a model for esti... This paper presents a description and analysis of the most important models to predict each of the Road User Costs components (Vehicle Operating Costs, Accident Costs and Value of Time) and proposes a model for estimating RUC components suitable for the Portuguese road network. These results are part of a research which aimed to obtain a Road User Cost Model to be used as a tool in road management systems. This model is different from other models by the fact that it includes a simple formulation that allows calibration and calculation of cost parameters, for any year, in a simple and fast way, providing trustworthy results. The required data is already available in Portuguese institutions, allowing periodic revision of cost parameters to insure accuracy. 展开更多
关键词 COSTS pavement management systems time traffic accidents vehicle operations.
下载PDF
Market Operation of Energy Storage System in Smart Grid:A Review
13
作者 Li Deng Jiafei Huan +7 位作者 Wei Wang Weitao Zhang Liangbin Xie Lun Dong Jingrong Guo Zhongping Li Yuan Huang Yue Xiang 《Energy Engineering》 EI 2024年第6期1403-1437,共35页
As a flexible resource,energy storage plays an increasingly significant role in stabilizing and supporting the power system,while providing auxiliary services.Still,the current high demand for energy storage contrasts... As a flexible resource,energy storage plays an increasingly significant role in stabilizing and supporting the power system,while providing auxiliary services.Still,the current high demand for energy storage contrasts with the fuzzy lack of market-oriented mechanisms for energy storage,the principle of market-oriented operation has not been embodied,and there is no unified and systematic analytical framework for the business model.However,the dispatch management model of energy storage in actual power system operation is not clear.Still,the specific scheduling process and energy storage strategy on the source-load-network side could be more specific,and there needs to be a greater understanding of the collaborative scheduling process of the multilevel scheduling center.On this basis,this paper reviews the energy storage operation model and market-based incentive mechanism,For different functional types and installation locations of energy storage within the power system,the operational models and existing policies for energy storage participation in the market that are adapted to multiple operating states are summarized.From the point of view of the actual scheduling and operation management of energy storage in China,an energy storage regulation and operation management model based on“national,provincial,and local”multilevel coordination is proposed,as well as key technologies in the interactive scenarios of source-load,network and storage. 展开更多
关键词 Energy storage operation MARKETIZATION scheduling management national-branch-provincial local dispatch
下载PDF
Non-steroidal anti-inflammatory drugs in postoperative hand fracture management:Do they positively or negatively impact recovery?
14
作者 Andrew Gorgy Jacqueline Dalfen +1 位作者 Natasha Barone Johnny Ionut Efanov 《World Journal of Clinical Cases》 SCIE 2024年第21期4856-4858,共3页
This editorial explores the impact of non-steroidal anti-inflammatory drugs(NSAIDs)on postoperative recovery in hand fracture patients,amidst shifting pain management strategies away from opioids due to their adverse ... This editorial explores the impact of non-steroidal anti-inflammatory drugs(NSAIDs)on postoperative recovery in hand fracture patients,amidst shifting pain management strategies away from opioids due to their adverse effects.With hand fractures being significantly common and postoperative pain management crucial for recovery,the potential of NSAIDs offers a non-addictive pain control alternative.However,the controversy over NSAIDs'effects on bone healing—stemming from their Cyclooxygenase-2 inhibition and associated risks of fracture non-union or delayed union—necessitates further investigation.Despite a comprehensive literature search,the study finds a lack of specific research on NSAIDs in postoperative hand fracture management,highlighting an urgent need for future studies to balance their benefits against possible risks. 展开更多
关键词 Hand fracture Post operative management Non-steroidal anti-inflammatory drugs NON-UNION Bone healing Cyclooxygenase-2 inhibitors Opioid alternatives
下载PDF
Research on the origin and evolution of technical management regulations for railway
15
作者 Lei Tian Yuming Sun Yonggang Jia 《Railway Sciences》 2024年第6期779-787,共9页
Purpose–To facilitate technical managers and field workers to master and understand the provisions of Technical Management Regulations for Railway more accurately,so as to better serve the comprehensive revision of t... Purpose–To facilitate technical managers and field workers to master and understand the provisions of Technical Management Regulations for Railway more accurately,so as to better serve the comprehensive revision of the Regulations,this paper carries out the research on the traceability and evolution of the provisions of the Regulations.Design/methodology/approach–This paper studies and analyzes the evolution of the 11th edition of the Regulations by analyzing the relevance of clauses and summarizes the historical background of the development of calendar editions of the Regulations.The basic research on the traceability and evolution of the Regulations is carried out from four aspects:the continuity of the development of the Regulations,the authority of contents,the relevance of clauses and the richness of historical materials.Findings–From the first edition of the Regulations issued by the former Ministry of Railways in 1950 to the 11th edition,there have been ten comprehensive revisions.There is a strong correlation and continuity between the calendar editions of the Regulations in terms of chapter structure and clauses.Studying the context of the terms of the Regulations is an important way to understand and master the current clauses of the Regulations.Originality/value–Through the research on the traceability and evolution of the clauses of the Regulations,one is to explore the context of the development of railway technical equipment in China,the other is to clarify the historical background when the provisions were formulated and the third is to trace the development and evolution of the provisions.The revision of the Regulations is based on an accurate grasp of the context of the provisions,which can effectively judge the possible security risks caused by the revision of the provisions and avoid the possible risks in field implementation from the source. 展开更多
关键词 Technical management regulations for railway Origin and evolution REVISION Technical regulation Organization of train operation
下载PDF
Practical Experience of Management of Urban Parks at Home and Abroad
16
作者 Wenqian LING Yong ZHU Qinhuai XU 《Meteorological and Environmental Research》 2024年第1期30-37,共8页
By systematically reviewing the practical experience of management of urban parks at home and abroad,the advanced experience in organization,management system,operation mechanism and social participation were summariz... By systematically reviewing the practical experience of management of urban parks at home and abroad,the advanced experience in organization,management system,operation mechanism and social participation were summarized,and the optimization and improvement measures for the construction and management of urban parks in Chengdu were proposed to provide reference for the high-level construction,high-quality experience and efficient management of urban parks in the construction of park city demonstration zone in Chengdu. 展开更多
关键词 Urban parks management and operation Domestic and foreign experience Chengdu Park city
下载PDF
Drugs used for pain management in gastrointestinal surgery and their implications
17
作者 Ankit Shukla Rajesh Chaudhary +1 位作者 Nishant Nayyar Bhanu Gupta 《World Journal of Gastrointestinal Pharmacology and Therapeutics》 2024年第5期15-23,共9页
Pain is the predominant symptom troubling patients.Pain management is one of the most important aspects in the management of surgical patients leading to early recovery from surgical procedures or in patients with chr... Pain is the predominant symptom troubling patients.Pain management is one of the most important aspects in the management of surgical patients leading to early recovery from surgical procedures or in patients with chronic diseases or malignancy.Various groups of drugs are used for dealing with this;however,they have their own implications in the form of adverse effects and dependence.In this article,we review the concerns of different pain-relieving medicines used postoperatively in gastrointestinal surgery and for malignant and chronic diseases. 展开更多
关键词 Acute pain Acute post operative pain Pain score Pain after GI surgery ANALGESIA Spinal anaesthesia Epidural anaesthesia Intravenous anaesthesia Regional anaesthesia Pain management
下载PDF
Operation and Management of Electrical Equipment in Iron and Steel Enterprises
18
作者 Wen Liao Kenan Yang 《Frontiers of Metallurgical Industry》 2024年第1期5-8,共4页
How to ensure the reliable operation of the complex and huge electrical system composed of a large number of electrical equipment in iron and steel enterprises?Combined with working experience,the author introduces fo... How to ensure the reliable operation of the complex and huge electrical system composed of a large number of electrical equipment in iron and steel enterprises?Combined with working experience,the author introduces four main factors affecting the normal operation of equipment,analyzes five main problems existing in the operation and management of electrical equipment,and puts forward corresponding improvement measures,so as to improve the management level of electrical equipment in iron and steel enterprises. 展开更多
关键词 iron and steel enterprises electrical equipment operation management
下载PDF
Analysis of Internal Control Management Problems in Hospital Finance and Accounting
19
作者 Yan Wang 《Proceedings of Business and Economic Studies》 2024年第3期133-139,共7页
This paper outlines the internal control management of hospital accounting and finance,introducing its concept,importance,and objectives.It then analyzes the problems existing in the internal control management of hos... This paper outlines the internal control management of hospital accounting and finance,introducing its concept,importance,and objectives.It then analyzes the problems existing in the internal control management of hospital accounting and finance,including an unsound management system,insufficient system implementation,inadequate risk assessment and control capabilities,poor information communication,weak internal supervision,and uneven personnel quality.The reasons for these problems are also analyzed,including outdated management concepts,irrational organizational structures,imperfect training and incentive mechanisms,low levels of information technology,and changes in the external environment.This paper proposes improvement measures for the internal control management of hospital accounting,including enhancing the management system,strengthening system implementation,improving risk assessment and control capabilities,enhancing the information communication mechanism,strengthening internal supervision,improving personnel quality,advancing information technology,and adapting to changes in the external environment. 展开更多
关键词 Hospital accounting Internal control management Medical system reform Financial security Operational efficiency
下载PDF
Smart City Rail Transit Operation and Management Information Construction Strategy
20
作者 Jing Sun 《Journal of World Architecture》 2024年第2期7-11,共5页
Rail transit is considered one of the safest and most efficient modes of transportation.Ticketing,vehicle dispatching,and passenger flow control during rail transit operations in China have been improving over the yea... Rail transit is considered one of the safest and most efficient modes of transportation.Ticketing,vehicle dispatching,and passenger flow control during rail transit operations in China have been improving over the years.Smart city construction and intelligent management models has also been increasingly emphasized with the rapid development of information and internet technology.Therefore,it is essential to conduct relevant research and discussions to improve the overall efficiency and quality of urban rail transit operation and management.This article provides an overview of smart city rail transit operation and management informatization,the principles of construction,and the functions of smart city rail transit operation and management informatization.Additionally,it discusses the strategies for the construction of smart city rail transit operation and management information and its development prospects. 展开更多
关键词 Smart city Rail transit operation and management Information construction
下载PDF
上一页 1 2 250 下一页 到第
使用帮助 返回顶部