Abstract
USPEX is a world-leading software for computational material design. In essence, USPEX splits simulation into a large number of workunits that can be processed independently. This scheme ideally fits the desktop grid architecture. Workunit processing is done by a simulation package aimed at energy minimization. Many of such packages are proprietary and should be protected from unauthorized access when running on a volunteer PC. In this paper we present an original approach based on virtualization. In a nutshell, the proprietary code and input files are stored in an encrypted folder and run inside a virtual machine image that is also password protected. The paper describes this approach in detail and discusses its application in USPEX@home volunteer project.
1 Introduction
Due to the rapid progress in the computational power and optimization algorithms in the last 10-15 years, it became possible to predict new materials in-silico [1]. This allows one to partially substitute the expensive experimental screening with computational simulation, and thereby speed up and reduce the cost of developing new materials.
Nevertheless, NP-complexity of the problems in this field of research drastically complicates method development. That is why the prediction of new materials by random search is impossible. An effective global optimization algorithm can help to overcome this problem. Evolutionary algorithms, particle swarm optimization, random sampling, simulated annealing, and metadynamics are the most popular methods for this purpose [1].
In the current study, an adaptation of the USPEX software [2] to the BOINC [3, 4] distributed computing system interface is considered. USPEX is a well-known and widely used application, originally developed for the crystal structure prediction and is now capable of predicting structures of surfaces [6], two-dimensional crystals [7], nanoclusters [8] and polymers [9]. One of the reasons of the efficiency of USPEX is the combination of global and local optimization [10], which makes it possible to perform reliable global optimization even for quite complex systems.
However, for rigorous local optimization, a reliable method of structure relaxation and calculation of their energy (or any other property as a fitness parameter) is required. For these purposes, we have already interfaced the GULP code [11] with the BOINC system. Unfortunately, such calculations are of low accuracy and are only suitable as a crude approximation, because they are based not on quantum-mechanical methods, but on empirical force fields.
Because of this, most calculations using the USPEX algorithm are carried out using the Vienna Ab initio Simulation Package (VASP) [12], using density functional theory (DFT) [13, 14]. This software package allows performing abinitio modeling of materials by approximate solution of the Schrödinger equation for periodic systems.
In VASP, the electronic wave functions are expanded in plane waves. Interactions between electrons and ions are described using ultrasoft pseudopotentials [15] or projector-augmented wave method [16, 17]. To determine the electronic ground state, VASP uses effective iterative matrix diagonalization methods such as residual minimization with direct inversion in the iterative subspace (RMM-DIIS) or a Davidson block iteration scheme. They are interconnected with highly efficient density mixing schemes of Broyden and Pulay to accelerate the selfconsistency cycle.
The effective work of USPEX involves searching over a large number of crystal structures. With the help of the VASP software package adapted for work with the BOINC system, unique opportunities for computational materials design were opened.
The use of VASP requires a special license. The data files used by the VASP are also subject to intellectual property. Thus, it is necessary to protect the software and the data from unauthorized access.
When a BOINC-user connects his/her computer to the BOINC-project, the computer downloads the executable job file and the data files from the server. This approach assumes storing the application executable file and the data files on the file system of the volunteer computer. Thus, a user has instant access to this information and can obtain a pirate copy of the software. This is a great risk, which we have resolved in this work.
2 Related Work
There is an approach to virtualization provided by BOINC called VirtualBox-wrapper [18]. This approach assumes that the application is located inside the virtual machine image that runs on a volunteer computer. At the beginning of computations, the operating system is booted. With this approach, the operating system is not password protected. Thus one can extract the VASP executable from the virtual machine, thereby compromising the software privacy. A possible approach to protect the files is to store them in an encrypted folder. However this approach is impossible with the standard VirtualBox-wrapper which loads the OS each time the BOINC client is initialized. It implies that, each time the folder password should be supplied to the OS and therefore, it should be stored inside the image. Thus, the password and hence the executable file can be easily obtained.
A noteworthy approach is based on the use of partition encryption. This approach uses dm-crypt utility for Linux OS. The article [19] describes the application of the approach to hypervisors Xen and VMware. But BOINC is compatible only with VirtualBox hypervisor. Thus the approach is not compatible with BOINC.
Another important solution in the field of data concealment is steganography [20]. Steganography allows hiding data inside files of a different format. This approach involves deception of the user. Thus, it is unacceptable within volunteer computing.
The security mechanisms implemented in the hypervisor is considered in [21, 22]. This approach involves the modification of the VirtualBox engine. Thus, volunteers would have to install a modified VirtualBox software which seems to be hardly feasible.
3 Description of the proposed approach
In order to protect the information reliably, we developed a special wrapper. Our approach approved by VASP developers combines the capabilities of the BOINC-wrapper and of the VirtualBox-wrapper.
The main features of the proposed approach are as follows:
The VM starts on the volunteer’s computer from the saved state. Thus, application contains a paused virtual machine. Login to the system is not performed.
The virtual hard disk image contains an encrypted partition. We use the AES symmetric encryption scheme. VASP executable is located inside this partition. A similar approach is described in [19]. The password or hash of the encrypted partition is stored into the RAM of the Virtual Machine. To enable the virtual machine, user does not need a password.
The VASP data files are located inside the encrypted zip-archive. The zip-archive is located on the portable Virtual Disk Image (VDI) that is stored inside BOINC workunits. The password of the zip-archive is stored into the encrypted partition.
The application consists of several files:
the vdi-disk with the operating system and the encrypted partition;
the snapshot of the virtual machine;
the vm-producer control script;
BOINC-wrapper and the job.xml file for it.
USPEX algorithm generates input data and processes the output. For transportation to the client, the VASP input files are placed inside the encrypted archive. The archive is stored in data.vdi disk image that is sent to the volunteer computer where the workunit’s processing begins.
Figure 1 shows the sequence of the following actions:

Workunit’s processing
The BOINC-wrapper application launches the control script vm-producer.cmd.
The control script performs the following actions:
creates and registers new VirtualBox VM;
attaches main.vdi to the VM;
adopts state of the VM from the snapshot.sav;
launches the VM from the saved state;
attaches data.vdi to the VM;
waits while the VM is running;
unregisters the VM after it is turned off;
terminates and transfers control to the BOINC-wrapper.
The BOINC-wrapper application exits thereby terminating the BOINC-task.
The data.vdi image with VASP output data is transferred to the server.
Running VASP is managed by the vasp-producer.sh script which takes the following actions:
waits until data.vdi is registered as an external SATA hard drive (“data-drive” in the sequel);
mounts the data-drive;
copies zip-file with VASP input files from data-drive to the encrypted disk;
decrypts zip-file;
launches the VASP application;
encrypts results and copies them to the data-drive;
vasp-producer.sh shutdowns the operating system after VASP is done.
USPEX server splits the problem into many jobs. Each job undergoes the complex sequence of transformations shown in Figure 2 and described below.

Computational infrastructure and the way of the USPEX task
USPEX-server aggregates several tasks into one archive. Then USPEX-server encrypts the archive and submits it to the BOINC-server.
BOINC server gets the archive from the USPEX-server, then BOINC-server submits it to the server of VDI-conversion. VDI-server puts the encrypted archive to the VDI-file. Then the job is returned to the BOINC-server.
Then the BOINC-server submits the task to the computational node.
The task is performed on the compute node. Workunit’s processing on the computing node is described above. After completing the calculations the result is submitted to the BOINC-server. Result of the computation is located into the encrypted zip-file. This file is located into vdi-image.
The BOINC-server submits the job to the VDI-server to extract zip from VDI-file.
After VDI-conversion the BOINC server returns the job to the USPEX-server.
The USPEX-server decrypts the result and uses it.
4 Conclusions
We proposed a new approach to use proprietary software in a volunteer computing framework. The approach is based on the VirtualBox virtualization technology. The protection is provided by using encrypted folders and password protected archives. The implementation of the approach makes it possible to provide the necessary level of security applicable to this particular case. Security mechanisms can be modified to fit a wide range of problems. It should be noted that the proposed approach involves some overhead due to the virtualization. However, experiments showed that this overhead is not significant. The implementation of the approach was successfully applied in USPEX@home project [23] aimed at computational materials discovery.
Acknowledgement
A.R.O. thanks Russian Science Foundation (grant 16-13-10459) for financial support. Mikhail Posypkin and Nikolay Khrapov were funded by the NSH- 8860.2016.1 project of the governmental program for supporting leading scientific schools and RFBR project 16-07-00873 A.
References
[1] Oganov A.R. (Editor). Modern Methods of Crystal Structure Prediction. Berlin: Wiley-VCH. ISBN: 978-3-527-40939-6. (2010).10.1002/9783527632831Suche in Google Scholar
[2] Oganov A.R., Glass C.W., Crystal structure prediction using ab initio evolutionary techniques: principles and applications. J. Chem. Phys, 2006, 124, art. 244704.10.1063/1.2210932Suche in Google Scholar PubMed
[3] Anderson D.P., BOINC: A System for Public-Resource Computing and Storage, Proceedings of the 5th IEEE/ACM International Workshop on Grid Computing, IEEE Computer Society, Washington, DC, USA, 2004, 4–11, 10.1109/GRID.2004.14.Suche in Google Scholar
[4] Ivashko E.E., Nikitina N.N., Web service of access to computing resources of BOINC based desktopgrid. International Conference on Parallel Computing Technologies, Springer Berlin Heidelberg, 2011, 437-443.10.1007/978-3-642-23178-0_38Suche in Google Scholar
[5] Zhang W.W., Oganov A.R., Goncharov A.F., Zhu Q., Boulfelfel S.E., Lyakhov A.O., Stavrou E., Somayazulu M., Prakapenka V.B., Konopkova Z., Unexpected stoichiometries of stable sodium chlorides, Science, 2013, 342, 1502-1505.10.1126/science.1244989Suche in Google Scholar PubMed
[6] Zhu Q., Li L., Oganov A.R., Allen P.B., Evolutionary method for prediction of surface reconstructions with variable stoichiometry. Phys. Rev., 2013, B87, 195317.10.1103/PhysRevB.87.195317Suche in Google Scholar
[7] Zhou X.F., Dong X., Oganov A.R., Zhu Q., Tian Y., Wang H.T., Semimetallic two-dimensional boron allotrope with massless Dirac fermions, Phys. Rev. Lett., 2014, 112, 085502.10.1103/PhysRevLett.112.085502Suche in Google Scholar
[8] Matsko N. L., Tikhonov E. V., Baturin V. S., Lepeshkin S. V., Oganov A. R., The impact of electron correlations on the energetics and stability of silicon nanoclusters, J. Chem. Phys., 2016, 145, 074313.10.1063/1.4960675Suche in Google Scholar PubMed
[9] Sharma V., Wang C., Lorenzini R.G., Ma R., Zhu Q., Sinkovits D. W., Pilania G., Oganov A.R., Kumar S., Sotzing G.A., Boggs S.A., Ramprasad R., Rational design of all organic polymer dielectrics, Nat. Commun., 2014, 5, art. 4845.10.1038/ncomms5845Suche in Google Scholar PubMed
[10] Oganov A.R., Lyakhov A.O., Valle M., How evolutionary crystal structure prediction works - and why. Acc. Chem. Res., 2011, 44, 227-237.10.1021/ar1001318Suche in Google Scholar PubMed
[11] Gale J.D., Rohl, A.L., The General Utility Lattice Program (GULP). Mol. Simul., 2003, 29, 291–341.10.1080/0892702031000104887Suche in Google Scholar
[12] Kresse G., Furthmüller J., Phys. Rev., 1996, B 54 11169.10.1103/PhysRevB.54.11169Suche in Google Scholar PubMed
[13] Hohenberg P., Kohn, W., Inhomogeneous Electron Gas, Phys. Rev., 1964, 136 B864.10.1103/PhysRev.136.B864Suche in Google Scholar
[14] Kohn W., Sham L.J., Self-Consistent Equations Including Exchange and Correlation Effects, Phys. Rev. 1965, 140, A1133.10.1103/PhysRev.140.A1133Suche in Google Scholar
[15] Vanderbilt D., Soft self-consistent pseudopotentials in a generalized eigenvalue formalism. Phys. Rev., 1990, B 41, 7892(R).10.1103/PhysRevB.41.7892Suche in Google Scholar PubMed
[16] Blöchl P.E., Jepsen O., Andersen O. K., Improved tetrahedron method for Brillouin-zone integrations, Phys. Rev., 1994, B 49, 16223.10.1103/PhysRevB.49.16223Suche in Google Scholar PubMed
[17] Kresse G., Joubert D., From ultrasoft pseudopotentials to the projector augmented-wave method. Phys. Rev., 1999, B 59, 1758.10.1103/PhysRevB.59.1758Suche in Google Scholar
[18] VirtualBox Applications, https://boinc.berkeley.edu/trac/wiki/VboxApps, last accessed 2017/01/30.].Suche in Google Scholar
[19] Chunxiao Li, Anand Raghunathan, Niraj K. Jha. Secure Virtual Machine Execution under an Untrusted Management OS. IEEE 3rd International Conference on Cloud Computing. 2010. pp. 172-179.Suche in Google Scholar
[20] Steganography project, https://www.openstego.com/.Suche in Google Scholar
[21] D. Rangegowda, R.M. Fries, November 2009, Corralling virtual machines with encryption keys, U.S. patent 20090282266 A1.Suche in Google Scholar
[22] Xinbao Liu, July 2013, Host virtual machine assisting booting of a fully-encrypted user virtual machine on a cloud environment, U.S. patent 20130173900 A1.Suche in Google Scholar
[23] USPEX@HOME homepage, http://uspex-at-home.ru/, last accessed 2017/10/Suche in Google Scholar
© 2018 N. P. Khrapov et al.
This work is licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 License.
Artikel in diesem Heft
- Regular Article
- Real-scale comparison between simple and composite raw sewage sampling
- 10.1515/eng-2018-0017
- The risks associated with falling parts of glazed facades in case of fire
- Implementation of high speed machining in thin-walled aircraft integral elements
- Evaluating structural crashworthiness and progressive failure of double hull tanker under accidental grounding: bottom raking case
- Influence of Silica (SiO2) Loading on the Thermal and Swelling Properties of Hydrogenated-Nitrile-Butadiene-Rubber/Silica (HNBR/Silica) Composites
- Statistical Variations and New Correlation Models to Predict the Mechanical Behavior and Ultimate Shear Strength of Gypsum Rock
- Analytic approximate solutions to the chemically reactive solute transfer problem with partial slip in the flow of a viscous fluid over an exponentially stretching sheet with suction/blowing
- Thermo-mechanical behavior simulation coupled with the hydrostatic-pressure-dependent grain-scale fission gas swelling calculation for a monolithic UMo fuel plate under heterogeneous neutron irradiation
- Optimal Auxiliary Functions Method for viscous flow due to a stretching surface with partial slip
- Vibrations Analysis of Rectangular Plates with Clamped Corners
- Evaluating Lean Performance of Indian Small and Medium Sized Enterprises in Automotive Sector
- FPGA–implementation of PID-controller by differential evolution optimization
- Thermal properties and morphology of polypropylene based on exfoliated graphite nanoplatelets/nanomagnesium oxide
- A computer-based renewable resource management system for a construction company
- Hygrothermal Aging of Amine Epoxy: Reversible Static and Fatigue Properties
- The selected roof covering technologies in the aspect of their life cycle costs
- Influence of insulated glass units thickness and weight reduction on their functional properties
- Structural analysis of conditions determining the selection of construction technology for structures in the centres of urban agglomerations
- Selection of the optimal solution of acoustic screens in a graphical interpretation of biplot and radar charts method
- Subsidy Risk Related to Construction Projects: Seeking Causes
- Multidimensional sensitivity study of the fuzzy risk assessment module in the life cycle of building objects
- Planning repetitive construction projects considering technological constraints
- Identification of risk investment using the risk matrix on railway facilities
- Comparison of energy parameters of a centrifugal pump with a multi-piped impeller in cooperation either with an annular channel and a spiral channel
- Influence of the contractor’s payment method on the economic effectiveness of the construction project from the contractor’s point of view
- Special Issue Automation in Finland
- Diagnostics and Identification of Injection Duration of Common Rail Diesel Injectors
- An advanced teaching scheme for integrating problem-based learning in control education
- A survey of telerobotic surface finishing
- Wireless Light-Weight IEC 61850 Based Loss of Mains Protection for Smart Grid
- Smart Adaptive Big Data Analysis with Advanced Deep Learning
- Topical Issue Desktop Grids for High Performance Computing
- A Bitslice Implementation of Anderson’s Attack on A5/1
- Efficient Redundancy Techniques in Cloud and Desktop Grid Systems using MAP/G/c-type Queues
- Templet Web: the use of volunteer computing approach in PaaS-style cloud
- Using virtualization to protect the proprietary material science applications in volunteer computing
- Parallel Processing of Images in Mobile Devices using BOINC
- “XANSONS for COD”: a new small BOINC project in crystallography
- Special Issue on Sustainable Energy, Engineering, Materials and Environment
- An experimental study on premixed CNG/H2/CO2 mixture flames
- Tidal current energy potential of Nalón river estuary assessment using a high precision flow model
- Special Spring Issue 2017
- Context Analysis of Customer Requests using a Hybrid Adaptive Neuro Fuzzy Inference System and Hidden Markov Models in the Natural Language Call Routing Problem
- Special Issue on Non-ferrous metals and minerals
- Study of strength properties of semi-finished products from economically alloyed high-strength aluminium-scandium alloys for application in automobile transport and shipbuilding
- Use of Humic Sorbent from Sapropel for Extraction of Palladium Ions from Chloride Solutions
- Topical Issue on Mathematical Modelling in Applied Sciences, II
- Numerical simulation of two-phase filtration in the near well bore zone
- Calculation of 3D Coordinates of a Point on the Basis of a Stereoscopic System
- The model of encryption algorithm based on non-positional polynomial notations and constructed on an SP-network
- A computational algorithm and the method of determining the temperature field along the length of the rod of variable cross section
- ICEUBI2017 - International Congress on Engineering-A Vision for the Future
- Use of condensed water from air conditioning systems
- Development of a 4 stroke spark ignition opposed piston engine
- Development of a Coreless Permanent Magnet Synchronous Motor for a Battery Electric Shell Eco Marathon Prototype Vehicle
- Removal of Cr, Cu and Zn from liquid effluents using the fine component of granitic residual soils
- A fuzzy reasoning approach to assess innovation risk in ecosystems
- Special Issue SEALCONF 2018
- Brush seal with thermo-regulating bimetal elements
- The CFD simulation of the flow structure in the sewage pump
- The investigation of the cavitation processes in the radial labyrinth pump
- Testing of the gaskets at liquid nitrogen and ambient temperature
- Probabilistic Approach to Determination of Dynamic Characteristics of Automatic Balancing Device
- The design method of rubber-metallic expansion joint
- The Specific Features of High-Velocity Magnetic Fluid Sealing Complexes
- Effect of contact pressure and sliding speed on the friction of polyurethane elastomer (EPUR) during sliding on steel under water wetting conditions
- Special Issue on Advance Material
- Effect of thermo-mechanical parameters on the mechanical properties of Eurofer97 steel for nuclear applications
- Failure prediction of axi-symmetric cup in deep drawing and expansion processes
- Characterization of cement composites based on recycled cellulosic waste paper fibres
- Innovative Soft Magnetic Composite Materials: Evaluation of magnetic and mechanical properties
- Statistical modelling of recrystallization and grain growth phenomena in stainless steels: effect of initial grain size distribution
- Annealing effect on microstructure and mechanical properties of Cu-Al alloy subjected to Cryo-ECAP
- Influence of heat treatment on corrosion resistance of Mg-Al-Zn alloy processed by severe plastic deformation
- The mechanical properties of OFHC copper and CuCrZr alloys after asymmetric rolling at ambient and cryogenic temperatures
Artikel in diesem Heft
- Regular Article
- Real-scale comparison between simple and composite raw sewage sampling
- 10.1515/eng-2018-0017
- The risks associated with falling parts of glazed facades in case of fire
- Implementation of high speed machining in thin-walled aircraft integral elements
- Evaluating structural crashworthiness and progressive failure of double hull tanker under accidental grounding: bottom raking case
- Influence of Silica (SiO2) Loading on the Thermal and Swelling Properties of Hydrogenated-Nitrile-Butadiene-Rubber/Silica (HNBR/Silica) Composites
- Statistical Variations and New Correlation Models to Predict the Mechanical Behavior and Ultimate Shear Strength of Gypsum Rock
- Analytic approximate solutions to the chemically reactive solute transfer problem with partial slip in the flow of a viscous fluid over an exponentially stretching sheet with suction/blowing
- Thermo-mechanical behavior simulation coupled with the hydrostatic-pressure-dependent grain-scale fission gas swelling calculation for a monolithic UMo fuel plate under heterogeneous neutron irradiation
- Optimal Auxiliary Functions Method for viscous flow due to a stretching surface with partial slip
- Vibrations Analysis of Rectangular Plates with Clamped Corners
- Evaluating Lean Performance of Indian Small and Medium Sized Enterprises in Automotive Sector
- FPGA–implementation of PID-controller by differential evolution optimization
- Thermal properties and morphology of polypropylene based on exfoliated graphite nanoplatelets/nanomagnesium oxide
- A computer-based renewable resource management system for a construction company
- Hygrothermal Aging of Amine Epoxy: Reversible Static and Fatigue Properties
- The selected roof covering technologies in the aspect of their life cycle costs
- Influence of insulated glass units thickness and weight reduction on their functional properties
- Structural analysis of conditions determining the selection of construction technology for structures in the centres of urban agglomerations
- Selection of the optimal solution of acoustic screens in a graphical interpretation of biplot and radar charts method
- Subsidy Risk Related to Construction Projects: Seeking Causes
- Multidimensional sensitivity study of the fuzzy risk assessment module in the life cycle of building objects
- Planning repetitive construction projects considering technological constraints
- Identification of risk investment using the risk matrix on railway facilities
- Comparison of energy parameters of a centrifugal pump with a multi-piped impeller in cooperation either with an annular channel and a spiral channel
- Influence of the contractor’s payment method on the economic effectiveness of the construction project from the contractor’s point of view
- Special Issue Automation in Finland
- Diagnostics and Identification of Injection Duration of Common Rail Diesel Injectors
- An advanced teaching scheme for integrating problem-based learning in control education
- A survey of telerobotic surface finishing
- Wireless Light-Weight IEC 61850 Based Loss of Mains Protection for Smart Grid
- Smart Adaptive Big Data Analysis with Advanced Deep Learning
- Topical Issue Desktop Grids for High Performance Computing
- A Bitslice Implementation of Anderson’s Attack on A5/1
- Efficient Redundancy Techniques in Cloud and Desktop Grid Systems using MAP/G/c-type Queues
- Templet Web: the use of volunteer computing approach in PaaS-style cloud
- Using virtualization to protect the proprietary material science applications in volunteer computing
- Parallel Processing of Images in Mobile Devices using BOINC
- “XANSONS for COD”: a new small BOINC project in crystallography
- Special Issue on Sustainable Energy, Engineering, Materials and Environment
- An experimental study on premixed CNG/H2/CO2 mixture flames
- Tidal current energy potential of Nalón river estuary assessment using a high precision flow model
- Special Spring Issue 2017
- Context Analysis of Customer Requests using a Hybrid Adaptive Neuro Fuzzy Inference System and Hidden Markov Models in the Natural Language Call Routing Problem
- Special Issue on Non-ferrous metals and minerals
- Study of strength properties of semi-finished products from economically alloyed high-strength aluminium-scandium alloys for application in automobile transport and shipbuilding
- Use of Humic Sorbent from Sapropel for Extraction of Palladium Ions from Chloride Solutions
- Topical Issue on Mathematical Modelling in Applied Sciences, II
- Numerical simulation of two-phase filtration in the near well bore zone
- Calculation of 3D Coordinates of a Point on the Basis of a Stereoscopic System
- The model of encryption algorithm based on non-positional polynomial notations and constructed on an SP-network
- A computational algorithm and the method of determining the temperature field along the length of the rod of variable cross section
- ICEUBI2017 - International Congress on Engineering-A Vision for the Future
- Use of condensed water from air conditioning systems
- Development of a 4 stroke spark ignition opposed piston engine
- Development of a Coreless Permanent Magnet Synchronous Motor for a Battery Electric Shell Eco Marathon Prototype Vehicle
- Removal of Cr, Cu and Zn from liquid effluents using the fine component of granitic residual soils
- A fuzzy reasoning approach to assess innovation risk in ecosystems
- Special Issue SEALCONF 2018
- Brush seal with thermo-regulating bimetal elements
- The CFD simulation of the flow structure in the sewage pump
- The investigation of the cavitation processes in the radial labyrinth pump
- Testing of the gaskets at liquid nitrogen and ambient temperature
- Probabilistic Approach to Determination of Dynamic Characteristics of Automatic Balancing Device
- The design method of rubber-metallic expansion joint
- The Specific Features of High-Velocity Magnetic Fluid Sealing Complexes
- Effect of contact pressure and sliding speed on the friction of polyurethane elastomer (EPUR) during sliding on steel under water wetting conditions
- Special Issue on Advance Material
- Effect of thermo-mechanical parameters on the mechanical properties of Eurofer97 steel for nuclear applications
- Failure prediction of axi-symmetric cup in deep drawing and expansion processes
- Characterization of cement composites based on recycled cellulosic waste paper fibres
- Innovative Soft Magnetic Composite Materials: Evaluation of magnetic and mechanical properties
- Statistical modelling of recrystallization and grain growth phenomena in stainless steels: effect of initial grain size distribution
- Annealing effect on microstructure and mechanical properties of Cu-Al alloy subjected to Cryo-ECAP
- Influence of heat treatment on corrosion resistance of Mg-Al-Zn alloy processed by severe plastic deformation
- The mechanical properties of OFHC copper and CuCrZr alloys after asymmetric rolling at ambient and cryogenic temperatures