CN113779129A - Software development system and method facing simulated city construction - Google Patents

Software development system and method facing simulated city construction Download PDF

Info

Publication number
CN113779129A
CN113779129A CN202111058805.8A CN202111058805A CN113779129A CN 113779129 A CN113779129 A CN 113779129A CN 202111058805 A CN202111058805 A CN 202111058805A CN 113779129 A CN113779129 A CN 113779129A
Authority
CN
China
Prior art keywords
software
data
development
module
software development
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Pending
Application number
CN202111058805.8A
Other languages
Chinese (zh)
Inventor
王善勤
赵卫东
刘青
贾红雯
李云松
金鑫
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Chuzhou Vocational and Technical College
Original Assignee
Chuzhou Vocational and Technical College
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Chuzhou Vocational and Technical College filed Critical Chuzhou Vocational and Technical College
Priority to CN202111058805.8A priority Critical patent/CN113779129A/en
Publication of CN113779129A publication Critical patent/CN113779129A/en
Pending legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/20Information retrieval; Database structures therefor; File system structures therefor of structured data, e.g. relational data
    • G06F16/25Integrating or interfacing systems involving database management systems
    • G06F16/252Integrating or interfacing systems involving database management systems between a Database Management System and a front-end application
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/20Software design
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/70Software maintenance or management

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • General Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • Databases & Information Systems (AREA)
  • Physics & Mathematics (AREA)
  • General Physics & Mathematics (AREA)
  • Data Mining & Analysis (AREA)
  • Stored Programmes (AREA)

Abstract

The invention relates to the technical field of software development, in particular to a software development system and a method facing simulated city construction. The development system designed by the invention has a simple structure, is convenient for workers to quickly design the development system, has a more perfect structure, and can reduce software development errors and bugs, thereby reducing the uncontrollable property in the software development process and improving the software development efficiency.

Description

Software development system and method facing simulated city construction
Technical Field
The invention relates to the technical field of software development, in particular to a software development system and a software development method facing simulated city construction.
Background
Cities, also known as urban gatherings, are large residential areas formed by a collection of non-agricultural industrial and non-agricultural populations, typically including residential, industrial, and commercial areas and having administrative jurisdictions. The administrative administration function of the urban area simulation system relates to areas wider than the urban area management system, and comprises public facilities such as residential areas, streets, hospitals, schools, public greenbelts, office buildings, commercial stores, squares and parks.
Chinese patent No. CN109144492A provides an object-oriented software development system, which includes a development tool, a memory, and a processor; the development tool is used for finishing the program editing work, forming an executable program code and storing the executable program code in the memory; the processor is configured to execute the program code; the development tool includes: the component module is used for providing a component for building a software interface, and the component is an object called by the function module; the function module is used for providing functions required by calling objects, and the functions are used for writing events for the components; and the editing module is used for editing the event codes and setting the attributes of the components to form executable program codes.
At present, the development efficiency of the development system of the existing simulation city simulation software is low, a simulation program cannot be established quickly, the development of the software is influenced, meanwhile, when the simulation software is developed or used, improper data storage is caused, data loss is easy to cause, and repair is influenced when subsequent software has bugs, so that the development system and the development method of the software facing the simulation city construction are urgently needed.
Disclosure of Invention
The invention aims to provide a software development system and a software development method facing simulated city construction, so as to solve the problems that the existing simulated city software development efficiency is low and the data is not properly stored during software development or use in the background technology.
The technical scheme of the invention is as follows: the utility model provides a software development system towards simulation city construction, includes development system, development system includes storage component, processing module, interface module, collection subassembly and maintains the subassembly, processing module includes contrast module, network module, calculation module, structure module and classification module, it includes optimization module, repair module, detection module and record module to maintain the subassembly, storage component includes local database and cloud database, local database includes major database and minor database.
Further, interface module includes display screen, audio amplifier, keyboard, mouse and projection equipment, gather the subassembly and shoot the collection through equipment such as city street camera, satellite real shooting machine, unmanned aerial vehicle to the urban structure.
Further, the data collected by the collecting component comprise data such as urban street distribution, urban water conservancy distribution, business area distribution, cultural area distribution, suburban area distribution, central business area distribution, industrial area distribution, residential area distribution, garden area distribution and the like.
Furthermore, the detection module comprises a system hardware device circuit detection function, a system data detection function and a system software detection function, and the recording module is used for recording information detected by the detection module, information optimized by the optimization module, information repaired by the repair module, and time and place during detection.
Further, the primary database stores information stored in the local database prior to the secondary database, the secondary database is used for storing data classified by the primary database, the secondary database carries out polling judgment through a judgment program when inheriting the primary database, and the judgment program is used for judging whether a loop exists between a parent classification and a child classification, wherein the judgment program comprises the following steps:
bool hasCycle(struct ListNode *head) {
if(head == NULL){
return false;
}
struct ListNode *pre = head->next;
struct ListNode *lag = head;
while(pre){
if(lag == pre){
return true;
}
lag = lag->next;
pre = pre->next;
if(pre){
pre = pre->next;
}
}
return false;
}。
a software development method facing simulated city construction comprises the following steps:
s1, collecting data: collecting required data through a collection assembly, storing useful data into a computer, putting software development and requirements together for discussion, and then determining the development target and feasibility of the software;
s2, analysis and comparison: classifying the obtained data, analyzing the data to obtain practical data, and collecting relevant information through a network for comparison and supplement to perfect the collected data;
s3, software definition: defining a system to be developed through the data analysis, determining the feasibility of software development, and simultaneously configuring required resources through the data analysis;
s4, software design: designing the whole software system according to known information so as to establish a system framework, then releasing each development process to hands of different designers according to a block diagram, and simultaneously selecting a proper programming language for programming;
s5, program coding: firstly, establishing an initial modeling structural layer through a programming language, then formulating a detailed modeling structural layer of software development on the basis of the initial modeling structural layer according to known information, and carrying out detailed design on a software development system;
s6, software testing: after programming is finished, testing the software, simultaneously, modeling by inputting actual data during testing so as to detect the software, detecting a model by the programmed system program so as to judge whether the software can normally run, and then repeating the steps to input different data values for testing;
s7, software delivery: and after the software testing of the last step is finished, the developed system is delivered to the client, and the client is trained during delivery.
Further, the software design in S4 includes an overall design and a detailed design, the programming language in S4 is one of C #, C + +, JAVA, and Python languages, the software test in S6 is divided into three stages, namely a structural layer test, an assembly test, and a system test, and the test method mainly includes a white box test and a black box test.
Further, the initialization modeling structure layer comprises a basic processing flow of the system, an organization structure of the system, module division, function allocation, interface design, operation design, data structure design, error processing design and the like, and the initialization modeling structure layer is used for providing a basis for detailed design of software.
Further, the detailed modeling structural layer comprises a main algorithm, a data structure, a class hierarchical structure, a calling relation and programming designs of all functional modules, and is used for programming a software system and ensuring that the requirements of software are completely distributed to the whole software.
Further, the data information in the processes of initializing the modeling structural layer, detailing the modeling structural layer, programming, testing the software and delivering the software generates a log structural layer, and the log structural layer is sent to the database, so that the development data information of the software system is stored in real time.
The invention provides a software development system and a method facing simulated city construction by improving, compared with the prior art, the system has the following improvements and advantages:
(1) the development system designed by the invention has a simple structure, is convenient for workers to rapidly develop the simulation software, has a more perfect structure, can reduce the generation of simulation software development errors and bugs, can reduce the uncontrollable property in the software development process, and improves the software development efficiency.
(2) When the storage component is used for developing software, the storage component can store various information generated in the development process in real time, meanwhile, the information generated in the development process can be backed up, and when the data is stored, the data can be judged, so that the phenomenon that a loop exists between a main database and a secondary database, the memory of a system is increased, and the operation of the system is influenced is avoided.
(3) When the system is used for developing software, the maintenance component can perform self-check on the running of the system, so that the loopholes generated during the running of the system are recorded, and the loopholes can be repaired during the self-check, so that the running errors of the system can be found in time.
(4) According to the acquisition assembly designed by the invention, during software development, the acquisition assembly can acquire data of a city through better technologies such as satellite technology and the like, and when the system runs, the data acquired by the acquisition assembly in real time is convenient for the system to modify the model in time.
(5) The invention improves the coordination efficiency of the software development system, expands the development field and development breadth of the software development system, reduces the entry difficulty of the software development system, improves the efficiency of the software development, and can better meet the requirements of the existing industrial application on the software development.
Drawings
The invention is further explained below with reference to the figures and examples:
FIG. 1 is a schematic diagram of a development system of the present invention;
FIG. 2 is a schematic view of a processing assembly of the present invention;
FIG. 3 is a schematic view of a maintenance assembly of the present invention;
FIG. 4 is a schematic view of a storage assembly of the present invention;
FIG. 5 is a flow chart of the method of the present invention:
FIG. 6 is a software design flow diagram of the present invention.
Detailed Description
The present invention will be described in detail below with reference to fig. 1 to 6, and the technical solutions in the embodiments of the present invention will be clearly and completely described, and it is obvious that the described embodiments are only a part of the embodiments of the present invention, and not all embodiments. All other embodiments, which can be derived by a person skilled in the art from the embodiments given herein without making any creative effort, shall fall within the protection scope of the present invention.
Unless defined otherwise, all technical and scientific terms used herein have the same meaning as commonly understood by one of ordinary skill in the art to which this invention belongs. The terminology used in the description of the invention herein is for the purpose of describing particular embodiments only and is not intended to be limiting of the invention. As used herein, the term "and/or" includes any and all combinations of one or more of the associated listed items.
The invention provides a software development system facing simulated city construction by improvement, as shown in fig. 1-4, the software development system comprises a development system, the development system comprises a storage component, a processing component, an interface component, an acquisition component and a maintenance component, the processing component comprises a comparison module, a network module, a calculation module, a construction module and a classification module, the maintenance component comprises an optimization module, a repair module, a detection module and a recording module, the storage component comprises a local database and a cloud database, and the local database comprises a primary database and a secondary database.
Further, interface module includes display screen, audio amplifier, keyboard, mouse and projection equipment, and the collection subassembly is shot the collection through equipment such as city street camera, satellite real shooting machine, unmanned aerial vehicle to the city structure.
Further, the data collected by the collecting component comprises data such as urban street distribution, urban water conservancy distribution, business area distribution, cultural area distribution, suburban area distribution, central business area distribution, industrial area distribution, residential area distribution, garden area distribution and the like.
Furthermore, the detection module comprises a system hardware device circuit detection function, a system data detection function and a system software detection function, and the recording module is used for recording information detected by the detection module, information optimized by the optimization module, information repaired by the repair module, and time and place during detection.
1. Further, the primary database stores information stored in the local database prior to the secondary database, the secondary database is used for storing data classified by the primary database, the secondary database performs polling judgment through a judgment program when inheriting the primary database, and the judgment program is used for judging whether a loop exists between a parent classification and a child classification, wherein the judgment program comprises the following steps:
bool hasCycle(struct ListNode *head) {
if(head == NULL){
return false;
}
struct ListNode *pre = head->next;
struct ListNode *lag = head;
while(pre){
if(lag == pre){
return true;
}
lag = lag->next;
pre = pre->next;
if(pre){
pre = pre->next;
}。
a software development method facing simulated urban construction, as shown in fig. 5-6, comprising the steps of:
s1, collecting data: the method comprises the steps that required data are collected through a collection assembly, then useful data are stored in a storage assembly, software development and requirements are put together to be discussed together with a writer, and then the development target and the feasibility of the software are determined;
s2, analysis and comparison: classifying the obtained data by using a processing component, analyzing the data simultaneously to obtain practical data, storing the practical data in a storage component, and then collecting related information through a network for comparison and supplement so as to perfect the collected data;
s3, software definition: the data analysis is performed on the system to be developed through the processing component, the feasibility of software development is determined, and meanwhile, required resources are configured through the data analysis result of the processing component;
s4, software design: designing the whole software system according to known information so as to establish a system framework, and then releasing each development process to hands of different designers according to a block diagram, so that the designers can design software by processing the development system and select a proper programming language for programming;
s5, program coding: programming through a programming program on a development system, establishing an initial modeling structural layer through a programming language at the moment, then formulating a detailed modeling structural layer for simulating software development on the basis of the initial modeling structural layer according to known information, and carrying out detailed design on the software development system;
s6, software testing: after programming is finished, testing the software through the maintenance assembly, modeling through inputting actual data during testing, detecting the software again, detecting a model through the programmed system program, judging whether the simulation software can normally run, and then repeating the steps to input different data values to perform repeated testing;
s7, software delivery: after the software testing of the last step is finished, the simulation program compiled in the development system is delivered to the client, and the client is trained during delivery.
Further, the software design in S4 includes overall design and detailed design, the programming language in S4 is C, the software test in S6 is performed in three stages of structural layer test, assembly test and system test, and the test method mainly includes white box test and black box test.
Further, the initialization modeling structure layer comprises a basic processing flow of the system, an organization structure of the system, module division, function allocation, interface design, operation design, data structure design, error processing design and the like, and the initialization modeling structure layer is used for providing a basis for detailed design of software.
Further, the detailed modeling structural layer comprises a main algorithm, a data structure, a class hierarchical structure, a calling relation and programming design of each functional module, and is used for programming a software system and ensuring that the requirement of the software is completely distributed to the whole software.
Further, a log structure layer is generated by data information in the processes of initializing the modeling structure layer, detailing the modeling structure layer, programming, testing the software and delivering the software, and the log structure layer is sent to a database, so that the development data information of the software system is stored in real time.
Example one
A software development method facing simulated city construction comprises the following steps:
s1, collecting data: the method comprises the steps that required data are collected through a collection assembly, then useful data are stored in a storage assembly, software development and requirements are put together to be discussed together with a writer, and then the development target and the feasibility of the software are determined;
s2, analysis and comparison: classifying the obtained data by using a processing component, analyzing the data simultaneously to obtain practical data, storing the practical data in a storage component, and then collecting related information through a network for comparison and supplement so as to perfect the collected data;
s3, software definition: the data analysis is performed on the system to be developed through the processing component, the feasibility of software development is determined, and meanwhile, required resources are configured through the data analysis result of the processing component;
s4, software design: designing the whole software system according to known information so as to establish a system framework, and then releasing each development process to hands of different designers according to a block diagram, so that the designers can design software by processing the development system and select a proper programming language for programming;
s5, program coding: programming through a programming program on a development system, establishing an initial modeling structural layer through a programming language at the moment, then formulating a detailed modeling structural layer for simulating software development on the basis of the initial modeling structural layer according to known information, and carrying out detailed design on the software development system;
s6, software testing: after programming is finished, testing the software through the maintenance assembly, modeling through inputting actual data during testing, detecting the software again, detecting a model through the programmed system program, judging whether the simulation software can normally run, and then repeating the steps to input different data values to perform repeated testing;
s7, software delivery: after the software testing of the last step is finished, the simulation program compiled in the development system is delivered to the client, and the client is trained during delivery.
Example two
A software development method facing simulated city construction comprises the following steps:
s1, collecting data: the method comprises the steps that required data are collected through a collection assembly, then useful data are stored in a storage assembly, software development and requirements are put together to be discussed together with a writer, and then the development target and the feasibility of the software are determined;
s2, analysis and comparison: classifying the obtained data by using a processing component, analyzing the data simultaneously to obtain practical data, storing the practical data in a storage component, and then collecting related information through a network for comparison and supplement so as to perfect the collected data;
s3, software definition: the data analysis is performed on the system to be developed through the processing component, the feasibility of software development is determined, and meanwhile, required resources are configured through the data analysis result of the processing component;
s4, software design: designing the whole software system according to known information so as to establish a system framework, and then releasing each development process to hands of different designers according to a block diagram, so that the designers can design software by processing the development system and select a proper programming language for programming;
s5, program coding: programming through a programming program on a development system, establishing an initial modeling structural layer through a programming language at the moment, then formulating a detailed modeling structural layer for simulating software development on the basis of the initial modeling structural layer according to known information, and carrying out detailed design on the software development system;
s6, software testing: after programming is finished, testing the software through the maintenance assembly, modeling through inputting actual data during testing, detecting the software again, detecting a model through the programmed system program, judging whether the simulation software can normally run, and then repeating the steps to input different data values to perform repeated testing;
s7, software delivery: after the software testing of the last step is finished, the simulation program compiled in the development system is delivered to the client, and the client is trained during delivery.
The working principle is as follows: s1, collecting data: collecting required data through a collection assembly, storing useful data into a computer, putting software development and requirements together for discussion, and then determining the development target and feasibility of the software; s2, analysis and comparison: classifying the obtained data, analyzing the data to obtain practical data, and collecting relevant information through a network for comparison and supplement to perfect the collected data; s3, software definition: defining a system to be developed through the data analysis, determining the feasibility of software development, and simultaneously configuring required resources through the data analysis; s4, software design: designing the whole software system according to known information so as to establish a system framework, then releasing each development process to hands of different designers according to a block diagram, and simultaneously selecting a proper programming language for programming; s5, program coding: firstly, establishing an initial modeling structural layer through a programming language, then formulating a detailed modeling structural layer of software development on the basis of the initial modeling structural layer according to known information, and carrying out detailed design on a software development system; s6, software testing: after programming is finished, testing the software, simultaneously, modeling by inputting actual data during testing so as to detect the software, detecting a model by the programmed system program so as to judge whether the software can normally run, and then repeating the steps to input different data values for testing; s7, software delivery: and after the software testing of the last step is finished, the developed system is delivered to the client, and the client is trained during delivery.
The previous description of the disclosed embodiments is provided to enable any person skilled in the art to make or use the present invention. Various modifications to these embodiments will be readily apparent to those skilled in the art, and the generic principles defined herein may be applied to other embodiments without departing from the spirit or scope of the invention. Thus, the present invention is not intended to be limited to the embodiments shown herein but is to be accorded the widest scope consistent with the principles and novel features disclosed herein.

Claims (10)

1. A software development system facing simulated city construction is characterized in that: the system comprises a development system, wherein the development system comprises a storage assembly, a processing assembly, an interface assembly, a collection assembly and a maintenance assembly, the processing assembly comprises a comparison module, a network module, a calculation module, a construction module and a classification module, the maintenance assembly comprises an optimization module, a repair module, a detection module and a recording module, the storage assembly comprises a local database and a cloud database, and the local database comprises a main database and an auxiliary database.
2. A software development system faced with simulated urban construction according to claim 1, characterized in that: the interface component comprises a display screen, a sound box, a keyboard, a mouse and projection equipment, and the acquisition component shoots and acquires the urban structure through equipment such as an urban street camera, a satellite real-time shooting machine and an unmanned aerial vehicle.
3. A software development system faced with simulated urban construction according to claim 1, characterized in that: the data collected by the collection assembly comprise urban street distribution, urban water conservancy distribution, commercial district distribution, cultural district distribution, suburban distribution, central business district distribution, industrial district distribution, residential district distribution, garden district distribution and the like.
4. A software development system faced with simulated urban construction according to claim 1, characterized in that: the detection module comprises a system hardware device circuit detection function, a system data detection function and a system software detection function, and the recording module is used for recording information detected by the detection module, information optimized by the optimization module, information repaired by the repair module, and time and place during detection.
5. A software development system faced with simulated urban construction according to claim 1, characterized in that: the main database stores information stored in a local database prior to the auxiliary database, the auxiliary database is used for storing data classified by the main database, the auxiliary database carries out polling judgment through a judgment program when inheriting the main database, and the judgment program is used for judging whether a loop exists between a parent classification and a child classification, wherein the judgment program comprises the following steps:
bool hasCycle(struct ListNode *head) {
if(head == NULL){
return false;
}
struct ListNode *pre = head->next;
struct ListNode *lag = head;
while(pre){
if(lag == pre){
return true;
}
lag = lag->next;
pre = pre->next;
if(pre){
pre = pre->next;
}
}
return false;
}。
6. a software development method facing simulated city construction is characterized in that: the method comprises the following steps:
s1, collecting data: the method comprises the steps that required data are collected through a collection assembly, then useful data are stored in a storage assembly, software development and requirements are put together to be discussed together with a writer, and then the development target and the feasibility of the software are determined;
s2, analysis and comparison: classifying the obtained data by using a processing component, analyzing the data simultaneously to obtain practical data, storing the practical data in a storage component, and then collecting related information through a network for comparison and supplement so as to perfect the collected data;
s3, software definition: the data analysis is performed on the system to be developed through the processing component, the feasibility of software development is determined, and meanwhile, required resources are configured through the data analysis result of the processing component;
s4, software design: designing the whole software system according to known information so as to establish a system framework, and then releasing each development process to hands of different designers according to a block diagram, so that the designers can design software by processing the development system and select a proper programming language for programming;
s5, program coding: programming through a programming program on a development system, establishing an initial modeling structural layer through a programming language at the moment, then formulating a detailed modeling structural layer for simulating software development on the basis of the initial modeling structural layer according to known information, and carrying out detailed design on the software development system;
s6, software testing: after programming is finished, testing the software through the maintenance assembly, modeling through inputting actual data during testing, detecting the software again, detecting a model through the programmed system program, judging whether the simulation software can normally run, and then repeating the steps to input different data values to perform repeated testing;
s7, software delivery: after the software testing of the last step is finished, the simulation program compiled in the development system is delivered to the client, and the client is trained during delivery.
7. The software development method facing simulated urban construction according to claim 6, characterized in that: the software design in the S4 includes an overall design and a detailed design, the programming language in the S4 is one of C #, C + +, JAVA, and Python languages, the software test in the S6 is performed in three stages, namely, a structural layer test, an assembly test, and a system test, and the test method mainly includes a white box test and a black box test.
8. The software development method facing simulated urban construction according to claim 6, characterized in that: the initial modeling structure layer comprises a basic processing flow of the system, an organization structure of the system, module division, function distribution, interface design, operation design, data structure design, error processing design and the like, and is used for providing a basis for detailed design of software.
9. The software development method facing simulated urban construction according to claim 6, characterized in that: the detailed modeling structure layer comprises a main algorithm, a data structure, a class hierarchical structure, a calling relation and programming designs of all functional modules, and is used for programming a software system and ensuring that the requirements of software are completely distributed to the whole software.
10. The software development method facing simulated urban construction according to claim 6, characterized in that: the data information in the processes of initializing the modeling structural layer, detailing the modeling structural layer, programming, testing the software and delivering the software can generate a log structural layer, and the log structural layer is sent to a database, so that the development data information of the software system is stored in real time.
CN202111058805.8A 2021-09-10 2021-09-10 Software development system and method facing simulated city construction Pending CN113779129A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202111058805.8A CN113779129A (en) 2021-09-10 2021-09-10 Software development system and method facing simulated city construction

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202111058805.8A CN113779129A (en) 2021-09-10 2021-09-10 Software development system and method facing simulated city construction

Publications (1)

Publication Number Publication Date
CN113779129A true CN113779129A (en) 2021-12-10

Family

ID=78842185

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202111058805.8A Pending CN113779129A (en) 2021-09-10 2021-09-10 Software development system and method facing simulated city construction

Country Status (1)

Country Link
CN (1) CN113779129A (en)

Citations (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JP2007317102A (en) * 2006-05-29 2007-12-06 Toshiba Corp Simulation device
CN103218225A (en) * 2013-03-29 2013-07-24 北京宇航系统工程研究所 Unified measurement and development control software development system
CN108733368A (en) * 2017-05-16 2018-11-02 研祥智能科技股份有限公司 Machine vision general software development system
CN110262786A (en) * 2019-06-12 2019-09-20 安徽嘉亨软件开发有限公司 A kind of software development system and method based on internet information
CN110427208A (en) * 2019-06-21 2019-11-08 安徽嘉亨软件开发有限公司 A kind of software development methodology and software development system
CN110795073A (en) * 2019-10-28 2020-02-14 浙江天空信息科技有限公司 Computer software development method
CN112230902A (en) * 2020-09-16 2021-01-15 四川天翼网络服务有限公司 Software development method and system based on nail customization

Patent Citations (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JP2007317102A (en) * 2006-05-29 2007-12-06 Toshiba Corp Simulation device
CN103218225A (en) * 2013-03-29 2013-07-24 北京宇航系统工程研究所 Unified measurement and development control software development system
CN108733368A (en) * 2017-05-16 2018-11-02 研祥智能科技股份有限公司 Machine vision general software development system
CN110262786A (en) * 2019-06-12 2019-09-20 安徽嘉亨软件开发有限公司 A kind of software development system and method based on internet information
CN110427208A (en) * 2019-06-21 2019-11-08 安徽嘉亨软件开发有限公司 A kind of software development methodology and software development system
CN110795073A (en) * 2019-10-28 2020-02-14 浙江天空信息科技有限公司 Computer software development method
CN112230902A (en) * 2020-09-16 2021-01-15 四川天翼网络服务有限公司 Software development method and system based on nail customization

Similar Documents

Publication Publication Date Title
Kopsida et al. Real-time volume-to-plane comparison for mixed reality–based progress monitoring
US20220075908A1 (en) Device and a method for accurately mapping the building information modeling and the Internet of Things monitoring item
CN109978249A (en) Population spatial distribution method, system and medium based on two-zone model
CN103049620B (en) Ship simulating system and ship simulating method used during shipbuilding
KR20200066762A (en) Simulation method for building construction using building information modeling, computer readable medium and system for performing the method
CN110929319B (en) Decoration design case information processing method and system
CN111738485B (en) Engineering project cost data management system and method
CN113326028B (en) Micro-service decomposition method based on domain-driven design and service panoramic event storm
KR101723630B1 (en) A Building Management System Using BIM and Management Method
CN113111487A (en) Smart city planning simulation dynamic simulation system and operation method thereof
CN113642906A (en) BIM-based construction progress management method
CN113779129A (en) Software development system and method facing simulated city construction
CN110896361B (en) Information physical system visualization and fault location method based on augmented reality
CN107766033A (en) A kind of quick demand method for splitting based on problem framework
CN111401789A (en) Building construction intelligent supervision system based on BIM
CN108959707B (en) Unity-based BIM model texture material visualization method
Croitoru et al. Monocular right-angle building hypothesis generation in regularized urban areas by pose clustering
CN115344914A (en) Model generation method suitable for city planning design
CN114170377A (en) BIM-based historical building characteristic component family library construction method and system
TUDublin et al. The potential impact of BIM on early design stages of Residential Apartment Construction in Ireland: A Computational Design Approach
Li et al. Research on equipment maintenance guidance technology based on mr and digital twin
Yu et al. Evaluation of model recognition for grammar-based automatic 3D building model reconstruction
CN113706712B (en) Method and system for quickly constructing transformer substation scene based on AR technology
Nopachinda et al. Challenges in Converting Building Information Models into Virtual Worlds for FM Operations and User Studies in the Built Environment
KR100507238B1 (en) Method for processing construction information by using combination of cost/schedule/space system

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
RJ01 Rejection of invention patent application after publication

Application publication date: 20211210

RJ01 Rejection of invention patent application after publication