The success rate% and average number of function calls (in parentheses) for GenSA, DEoptim, and rgenoud.
\r\n\tThe properties of metamaterials are designed not from the properties of their base materials, but rather from the metamaterial's newly designed structures. The precise shapes, geometries, sizes, orientations, and arrangements of metamaterial composing elements render metamaterials versatile ‘smart’ properties related to manipulating electromagnetic waves, by blocking, absorbing, enhancing, or bending waves of specific wavelengths. This allows achieving benefits extending far beyond what could be achieved by employing conventional materials.
\r\n\tMetamaterials have broad and diverse potential applications including optical filters, medical devices, remote aerospace devices and materials, sensors, infrastructure monitoring, highly effective management of solar power, high-frequency battlefield communication, lenses for high-gain antennas, shielding structures to prevent earthquake damage, acoustic materials, etc. Metamaterial research area is highly interdisciplinary: it involves electrical engineering, electromagnetics, classical optics, studies in the solid-state physics field, antenna engineering, optoelectronics, material science, nanoscience and nanotechnology, semiconductor design, and even can involve computational chemistry.
Determining the global minimum of a multidimensional function is the focus of many problems in statistics, biology, physics, applied mathematics, economics, and chemistry [1–6]. Although there is a wide spectrum of problems, computing the global minimum remains a challenging task, because, for example, modern problem dimensionality is increasing.
\nThe optimization of convex functions is usually reasonably conducted using standard optimization approaches, such as simplex optimization, the steepest descent method, and the quasi‐Newton method. These methods can also provide reasonable results for the study of simple non‐convex functions with only a few dimensions and well‐separated local minima.
\nDeterministic methods are usually faster than stochastic methods although they tend to be trapped into a local minimum. To overcome this particular issue, stochastic methods have been widely developed and can determine a good approximation of the global minimum with a modest computational cost. Among stochastic methods, genetic algorithms [7], evolution algorithms [8], simulated annealing (SA) [9], and taboo search [10–12] have been successfully applied.
\nAmong popular approaches, genetic algorithms [7] mimic the process of natural DNA evolution. In this approach, a population of randomly generated solutions is generated. The solutions are encoded as strings and evolve over many iterations toward better solutions. In each generation, the fitness of each individual in the population is evaluated, and in the next generation, strings are generated by crossover, mutation, and selection, based on their fitness. Differential evolution belongs to such genetic algorithms.
\nAnt colony optimization (ACO) [13] is another set of stochastic optimization methods, which is inspired by ants wandering to find food for the colony. An ant starts wandering randomly while laying down pheromone trails that will influence other ants because they will be attracted (increase in probability) by the trail, and if they eventually locate food, will return and reinforce the trail. To avoid the algorithm converging to local minima, the pheromone trail is set to evaporate proportionally to the time it takes to traverse the trail to decrease its attractiveness. As a consequence, the pheromone density of short paths becomes higher than that of longer paths. The design of ACO perfectly matches graph‐based optimization (e.g., traveling salesman problem), but it can be adapted to determine the global minimum of real‐valued functions [14] by allowing local random moves in the neighborhood of the current states of the ant.
\nThe SA algorithm was inspired by the annealing process that takes place in metallurgy, whereby annealing a molten metal causes it to achieve its global minimum in terms of thermodynamic energy (crystalline state) [9]. In the SA algorithm, the objective function is treated as the energy function of a molten metal, and one or more artificial temperatures are introduced and gradually cooled, which is analogous to the annealing technique, to attempt to achieve the global minimum. To escape from local minima, this artificial temperature (or set of temperatures) acts as a source of stochasticity. Following the metallurgy analogy, at the end of the process, the system is foreseen to reside inside the attractive basin of the global minimum (or in one of the global minima if more than one global minimum exists). In classical simulated annealing (CSA), the visiting distribution is a Gaussian function (a local search distribution) for each temperature. It has been observed that this distribution is not optimal for moving across the entire search space [5]. Generalized simulated annealing (GSA) was developed to overcome this issue by using a distorted Cauchy‐Lorentz distribution.
\nFor a more extensive review of stochastic optimization algorithms, see the review provided by Fouskakis and Draper [15].
\nThe R language and environment for statistical computing will be the language of choice in this chapter because it enables a fast implementation of algorithms, access to a variety of statistical modeling packages, and easy‐to‐use plotting functionalities. These advantages make the use of R preferable in many situations to other programming languages, such as Java, C++, Fortran, and Pascal [16].
\nIn this chapter, we elaborate further on the background and improvements of GSA and the use of the R package GenSA [17], which is an implementation of a modified GSA. We will also discuss the performance of GenSA and show that it outperforms the genetic algorithm (R package rgenoud) and differential evolution (R package DEoptim) in an extensive testbed comprising 134 testing functions based on the success rate and number of function calls. The core function of GenSA is written in C++ to ensure that the package runs as efficiently as possible. The utility of this R package and its use will be presented by way of several applications, such as the famous Thomson problem in physics, non‐convex portfolio optimization in finance, and kinetic modeling of pesticide degradation in environmental science.
\nAs mentioned above, SA methods attempt to determine the global minimum of any objective function by simulating the annealing process of a molten metal. Given an objective function \n
Generate an initial state \n
For step \n
The temperature \n
Generate a new state \n
Calculate the probability \n
Output the final state \n
We provide more details of SA methods as follows.
\nAccording to the process of cooling and the visiting distribution, SA methods can be classified into several categories, amongwhich CSA [9], fast simulated annealing (FSA) [18], and the GSA [19] are the most common.
\nIn CSA, proposed by Kirkpatrick et al., the visiting distribution is a Gaussian function, which is a local search distribution [5, 19]:
where \n
Geman and Geman [21] showed that for the classical case, a necessary and sufficient condition for having probability 1 of ending at the global minimum is that the temperature decreases logarithmically with the simulation time, which is impossible in practice because this would dramatically increase the computational time.
\nIn 1987, Szu and Hartley proposed a method called FSA [18], in which the Cauchy‐Lorentz visiting distribution, that is, a semi‐local search distribution, is introduced:
where
A generalization of classical statistical mechanics was proposed by Tsallis and Stariolo [19]. In the Tsallis formalism, a generalized statistic is built from generalized entropy:
where \n
when \n
where \n
where \n
The GSA algorithm [19] refers to the generalization of both CSA and FSA according to Tsallis statistics. It uses the Tsallis‐Stariolo form of the Cauchy‐Lorentz visiting distribution, whose shape is controlled by the parameter \n
Please note that \n
where \n
where \n
It has been shown in a few instances that GSA is superior to FSA and CSA. Xiang et al. established that a pronounced reduction in the fluctuation of energy and a faster convergence to the global minimum are achieved in the optimization of the Thomson problem and Nickel cluster structure [4–6]. Lemes et al. [22] observed a similar trend when optimizing the structure of a silicon cluster.
\nA simple technique to accelerate convergence is as follows:
where \n
The performance of GSA can be further improved by combining GSA with a local search method, large‐scale bound‐constrained Broyden‐Fletcher‐Goldfarb‐Shanno (BFGS) method [23] for a smooth function, or Nelder‐Mead [24] for a non‐smooth function. A local search is performed at the end of each Markov chain for GSA.
\nThe GenSA R package has been developed and added to the toolkit for solving optimization problems in the Comprehensive R Archive Network (CRAN) R packages repository. The package GenSA has proven to be a useful tool for solving global optimization problems [17].
\nThe GenSA R package provides a unique function called GenSA whose arguments were described in the associated help [25]:
\n
\n
\n
\n
...: Allows the user to pass additional arguments into fn.
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
The default values of the control components are set for a complicated optimization problem. For typical optimization problems with medium complexity, GenSA can determine a reasonable solution quickly; thus,using the variable
An extensive performance comparison of currently available R packages for continuous global optimization problems has been published [26]. In this comparison, 48 benchmark functions were used to compare 18 R packages for continuous global optimization. Performance was measured in terms of the quality of the solutions determined and speed. The author concluded that GenSA and rgenoud are recommended in general for continuous global optimization [26]. Based on this conclusion, we set out to perform a more extensive performance test by including more benchmark functions and the additional algorithm DEoptim. The SciPy Python scientific toolkit provides an extensive set of 196 benchmark functions. Because these 196 benchmark functions are coded in Python, we had to convert the Python code to R code. As a result, a subset containing 134 functions was available for this test. One hundred runs using a random initial starting point were performed for every combination of the 134 benchmark functions and the aforementioned three methods. We used a local search method to further refine the best solution provided by Deoptim, because this technique provides a more accurate final result [17]. The default values of the parameters of every package were used in this comparison. A tolerance of 1e-8 was used to establish whether the algorithm determines the global minimum value.
\nThe reliability of a method can be measured by the success rate%, which is defined as the number of successful runs over 100 runs. For each testing function, the number of function calls required to achieve the global minimum was recorded for every method, and we refer to this as the number of function calls. Please note that rgenoud required a longer time to complete 100 runs compared with GenSA and DEoptim. \nTable 1\n shows the success rate% and the average number of function calls (in parentheses).
\nFunction name | \nGenSA | \nDEoptim‐LBFGS | \nrgenoud | \n
---|---|---|---|
AMGM | \n100% (93.0) | \n100% (62.6) | \n100.0% (88.8) | \n
Ackley01 | \n100% (746.2) | \n100% (1710.0) | \n100.0% (1840.1) | \n
Ackley02 | \n100% (182.9) | \n100% (1703.6) | \n100.0% (2341.6) | \n
Ackley03 | \n100% (352.5) | \n100% (1420.2) | \n100.0% (1860.9) | \n
Adjiman | \n100% (33.3) | \n100% (1133.9) | \n100.0% (1677.5) | \n
Alpine01 | \n100% (756.0) | \n70% (2756.8) | \n95.0% (46852.2) | \n
Alpine02 | \n100% (56.4) | \n100% (913.6) | \n100.0% (1688.0) | \n
BartelsConn | \n100% (263.1) | \n100% (1539.8) | \n100.0% (2343.5) | \n
Beale | \n100% (145.6) | \n100% (1311.8) | \n100.0% (1711.0) | \n
BiggsExp02 | \n100% (85.6) | \n100% (763.3) | \n100.0% (1710.5) | \n
BiggsExp03 | \n100% (190.7) | \n100% (2614.4) | \n100.0% (1975.9) | \n
BiggsExp04 | \n100% (3498.8) | \n88% (8182.5) | \n100.0% (4234.5) | \n
BiggsExp05 | \n98% (40117.8) | \n14% (10864.2) | \n17.0% (13871.5) | \n
Bird | \n100% (112.3) | \n100% (1777.3) | \n100.0% (1702.9) | \n
Bohachevsky1 | \n100% (875.1) | \n100% (1107.5) | \n100.0% (2673.1) | \n
Bohachevsky2 | \n100% (1372.9) | \n100% (1155.2) | \n76.0% (2554.5) | \n
Bohachevsky3 | \n100% (623.4) | \n100% (1342.4) | \n96.0% (2596.9) | \n
BoxBetts | \n100% (129.2) | \n100% (1866.3) | \n100.0% (2018.8) | \n
Branin01 | \n100% (42.2) | \n100% (1747.6) | \n100.0% (1694.9) | \n
Branin02 | \n100% (1495.7) | \n28% (2830.9) | \n96.0% (1752.3) | \n
Brent | \n100% (11.0) | \n100% (987.5) | \n100.0% (1687.9) | \n
Bukin02 | \n100% (39.9) | \n100% (1477.4) | \n100.0% (1679.7) | \n
Bukin04 | \n100% (217.9) | \n100% (1029.4) | \n100.0% (1744.2) | \n
Bukin06 | \n0% (NA) | \n0% (NA) | \n0.0% (NA) | \n
CarromTable | \n100% (119.5) | \n100% (2040.9) | \n100.0% (1729.6) | \n
Chichinadze | \n100% (517.4) | \n100% (1063.9) | \n92.0% (2219.8) | \n
Colville | \n100% (4515.8) | \n100% (8230.9) | \n100.0% (2996.1) | \n
CosineMixture | \n100% (22.0) | \n100% (3875.3) | \n100.0% (1670.6) | \n
CrossInTray | \n100% (70.8) | \n100% (1512.8) | \n100.0% (1772.1) | \n
CrossLegTable | \n0% (NA) | \n0% (NA) | \n2.0% (51829.0) | \n
CrownedCross | \n0% (NA) | \n0% (NA) | \n2.0% (16045.0) | \n
Cube | \n100% (1717.2) | \n100% (2030.3) | \n52.0% (21649.8) | \n
DeVilliersGlasser01 | \n100% (2343.8) | \n0% (NA) | \n1.0% (43919.0) | \n
DeVilliersGlasser02 | \n2% (173501.0) | \n0% (NA) | \n0.0% (NA) | \n
Deb01 | \n100% (57.1) | \n100% (4000.0) | \n100.0% (1700.8) | \n
Deb03 | \n100% (78.8) | \n100% (4028.9) | \n100.0% (1708.1) | \n
Decanomial | \n100% (1519.3) | \n100% (741.4) | \n100.0% (2050.8) | \n
DeckkersAarts | \n100% (74.6) | \n100% (1525.0) | \n100.0% (1988.7) | \n
Dolan | \n100% (2504.7) | \n1% (10293.0) | \n82.0% (25067.4) | \n
DropWave | \n100% (3768.7) | \n85% (4009.8) | \n83.0% (2973.3) | \n
Easom | \n97% (5077.5) | \n100% (1343.0) | \n100.0% (1875.7) | \n
EggCrate | \n100% (122.9) | \n100% (912.2) | \n100.0% (1697.2) | \n
ElAttarVidyasagarDutta | \n100% (675.7) | \n93% (1625.9) | \n100.0% (2115.7) | \n
Exp2 | \n100% (85.3) | \n100% (781.2) | \n100.0% (1707.7) | \n
Exponential | \n100% (20.6) | \n100% (580.3) | \n100.0% (1682.5) | \n
FreudensteinRoth | \n100% (395.4) | \n83% (2620.7) | \n100.0% (1700.9) | \n
Gear | \n100% (2225.8) | \n100% (1118.0) | \n93.0% (1609.6) | \n
Giunta | \n100% (39.6) | \n100% (592.3) | \n100.0% (1686.6) | \n
GoldsteinPrice | \n100% (158.7) | \n100% (1023.0) | \n100.0% (1703.5) | \n
Gulf | \n100% (1739.0) | \n100% (4076.4) | \n1.0% (1810.0) | \n
Hansen | \n100% (149.7) | \n100% (104.0) | \n100.0% (132.0) | \n
HimmelBlau | \n100% (53.7) | \n100% (2384.8) | \n100.0% (1698.7) | \n
HolderTable | \n100% (138.0) | \n100% (2010.3) | \n100.0% (1701.7) | \n
Hosaki | \n100% (49.8) | \n100% (583.2) | \n100.0% (1699.5) | \n
Infinity | \n100% (225.8) | \n100% (113.4) | \n100.0% (492.0) | \n
JennrichSampson | \n0% (NA) | \n0% (NA) | \n0.0% (NA) | \n
Keane | \n100% (21.4) | \n100% (679.1) | \n100.0% (629.5) | \n
Leon | \n100% (128.0) | \n100% (1338.2) | \n35.0% (2156.5) | \n
Levy05 | \n100% (152.8) | \n100% (144.7) | \n100.0% (224.6) | \n
Levy13 | \n100% (867.3) | \n100% (1138.5) | \n100.0% (1771.7) | \n
Matyas | \n100% (33.8) | \n100% (967.7) | \n100.0% (1702.4) | \n
McCormick | \n100% (42.2) | \n100% (747.8) | \n100.0% (1705.4) | \n
Michalewicz | \n100% (97.3) | \n100% (69.0) | \n100.0% (157.3) | \n
MieleCantrell | \n100% (2935.1) | \n100% (1942.7) | \n100.0% (3438.9) | \n
Mishra03 | \n81% (138334.7) | \n0% (NA) | \n24.0% (5745.0) | \n
Mishra04 | \n0% (NA) | \n0% (NA) | \n13.0% (1833.2) | \n
Mishra05 | \n100% (1289.1) | \n77% (1396.9) | \n100.0% (1680.0) | \n
Mishra06 | \n0% (NA) | \n0% (NA) | \n0.0% (NA) | \n
Mishra07 | \n100% (38.9) | \n100% (3055.9) | \n100.0% (1679.7) | \n
Mishra08 | \n100% (1519.3) | \n100% (741.4) | \n100.0% (1900.8) | \n
Mishra09 | \n100% (80.0) | \n85% (4832.0) | \n99.0% (12356.0) | \n
Mishra11 | \n100% (30.9) | \n100% (3152.2) | \n100.0% (1613.1) | \n
MultiModal | \n100% (134.5) | \n100% (481.8) | \n100.0% (1691.6) | \n
NewFunction01 | \n1% (243864.0) | \n0% (NA) | \n27.0% (9823.3) | \n
NewFunction02 | \n0% (NA) | \n0% (NA) | \n33.0% (12260.0) | \n
Parsopoulos | \n100% (29.9) | \n100% (3267.7) | \n100.0% (1683.9) | \n
Paviani | \n100% (423.3) | \n100% (18764.2) | \n100.0% (2168.7) | \n
PenHolder | \n100% (94.3) | \n100% (1391.3) | \n100.0% (1701.6) | \n
Plateau | \n100% (35.5) | \n100% (22.4) | \n100.0% (27.6) | \n
Powell | \n100% (692.4) | \n100% (6501.1) | \n100.0% (2052.4) | \n
Price01 | \n100% (27.4) | \n100% (2107.0) | \n100.0% (1686.6) | \n
Price02 | \n100% (1242.4) | \n92% (4031.3) | \n85.0% (2087.7) | \n
Price03 | \n100% (3840.5) | \n64% (2574.6) | \n56.0% (1855.1) | \n
Price04 | \n100% (440.1) | \n100% (1075.4) | \n94.0% (6413.9) | \n
Qing | \n0% (NA) | \n0% (NA) | \n0.0% (NA) | \n
Quadratic | \n100% (26.0) | \n100% (872.2) | \n100.0% (1695.8) | \n
Quintic | \n100% (928.2) | \n76% (2694.1) | \n36.0% (42496.5) | \n
Rastrigin | \n100% (482.4) | \n98% (3753.6) | \n100.0% (1840.2) | \n
Ripple01 | \n100% (5742.4) | \n71% (4053.3) | \n99.0% (4758.6) | \n
Ripple25 | \n100% (414.7) | \n99% (3165.8) | \n100.0% (1771.5) | \n
RosenbrockModified | \n100% (1343.5) | \n24% (3625.6) | \n95.0% (2329.0) | \n
RotatedEllipse01 | \n100% (26.0) | \n100% (1345.8) | \n100.0% (1699.9) | \n
RotatedEllipse02 | \n100% (28.0) | \n100% (1218.1) | \n100.0% (1700.8) | \n
Salomon | \n95% (9790.3) | \n86% (4050.4) | \n21.0% (3143.1) | \n
Schaffer01 | \n99% (7105.6) | \n92% (3092.8) | \n59.0% (4520.3) | \n
Schaffer02 | \n100% (2078.9) | \n100% (2125.2) | \n100.0% (2677.8) | \n
Schaffer03 | \n100% (2786.3) | \n91% (4096.2) | \n99.0% (3236.3) | \n
Schaffer04 | \n100% (2920.9) | \n98% (4063.5) | \n86.0% (6505.1) | \n
Schwefel01 | \n100% (131.2) | \n100% (651.8) | \n100.0% (1734.5) | \n
Schwefel04 | \n100% (63.9) | \n100% (842.8) | \n100.0% (1698.8) | \n
Schwefel06 | \n100% (3536.0) | \n100% (2302.3) | \n100.0% (1790.4) | \n
Schwefel20 | \n100% (2079.8) | \n100% (1670.2) | \n100.0% (1779.1) | \n
Schwefel21 | \n100% (2158.6) | \n100% (1853.2) | \n100.0% (1774.8) | \n
Schwefel22 | \n100% (2772.0) | \n100% (1678.6) | \n100.0% (1775.0) | \n
Schwefel26 | \n100% (131.3) | \n100% (1648.2) | \n100.0% (1687.5) | \n
Schwefel36 | \n100% (361.3) | \n100% (1298.7) | \n100.0% (1930.6) | \n
SixHumpCamel | \n100% (83.3) | \n100% (909.2) | \n100.0% (1695.7) | \n
Sodp | \n100% (64.3) | \n100% (477.7) | \n100.0% (1697.5) | \n
Sphere | \n100% (17.4) | \n100% (730.2) | \n100.0% (1683.2) | \n
Step | \n100% (471.0) | \n100% (219.3) | \n100.0% (1131.5) | \n
Step2 | \n100% (433.4) | \n100% (222.0) | \n100.0% (1177.1) | \n
StyblinskiTang | \n100% (94.7) | \n100% (861.4) | \n100.0% (1824.2) | \n
TestTubeHolder | \n100% (839.0) | \n98% (3957.5) | \n100.0% (2088.5) | \n
ThreeHumpCamel | \n100% (86.3) | \n100% (817.5) | \n100.0% (1699.0) | \n
Treccani | \n100% (49.1) | \n100% (1015.2) | \n100.0% (1696.4) | \n
Trefethen | \n64% (20972.8) | \n0% (NA) | \n46.0% (29439.5) | \n
Trigonometric02 | \n100% (1766.2) | \n100% (1319.6) | \n99.0% (4809.6) | \n
Ursem01 | \n100% (47.7) | \n100% (682.1) | \n100.0% (1753.8) | \n
Ursem03 | \n100% (584.0) | \n100% (1645.7) | \n100.0% (1777.7) | \n
Ursem04 | \n100% (210.2) | \n100% (1372.3) | \n100.0% (1847.3) | \n
UrsemWaves | \n100% (2565.0) | \n26% (4025.8) | \n50.0% (1674.8) | \n
VenterSobiezcczanskiSobieski | \n100% (698.3) | \n100% (1748.0) | \n100.0% (2004.8) | \n
Vincent | \n100% (41.4) | \n100% (3013.4) | \n100.0% (1703.5) | \n
Wavy | \n100% (535.1) | \n100% (3110.8) | \n100.0% (1745.0) | \n
WayburnSeader01 | \n100% (156.1) | \n96% (2258.3) | \n93.0% (16665.5) | \n
WayburnSeader02 | \n100% (262.8) | \n100% (1772.3) | \n100.0% (1826.0) | \n
Wolfe | \n100% (50.3) | \n100% (3252.9) | \n100.0% (1720.7) | \n
XinSheYang02 | \n100% (1048.0) | \n87% (2284.5) | \n100.0% (1768.5) | \n
XinSheYang04 | \n100% (457.0) | \n88% (3329.7) | \n100.0% (1777.5) | \n
Xor | \n100% (26204.2) | \n48% (18245.1) | \n100.0% (1852.9) | \n
YaoLiu09 | \n100% (482.3) | \n98% (3753.6) | \n100.0% (1824.3) | \n
Zacharov | \n100% (59.7) | \n100% (944.3) | \n100.0% (1696.6) | \n
Zettl | \n100% (123.4) | \n100% (846.8) | \n100.0% (1712.5) | \n
Zirilli | \n100% (131.0) | \n99% (702.3) | \n100.0% (1695.1) | \n
The success rate% and average number of function calls (in parentheses) for GenSA, DEoptim, and rgenoud.
The mean of the success rate% over all the benchmark functions is 92, 85, and 86% for GenSA, DEoptim, and rgenoud, respectively. Because the number of function calls changes dramatically, the median rather than the mean of the number of function calls is provided: 244.3 for GenSA, 1625.9 for Deoptim, and 1772.1 for rgenoud.
\nA heatmap of the success rate% for GenSA, DEoptim, and rgenoud is displayed in \nFigure 1\n. The color scaling from red to green represents the success rate% from 0 to 100. Clearly, GenSA has a larger green region (high success rate%) than DEoptim and rgenoud.
\nHeat map of the success rate% for GenSA, DEoptim, and rgenoud.
Both the success rate% and number of function calls show that GenSA performed better than DEoptim and rgenoud in the testbed composed of 134 benchmark functions.
\nThe physicist J.J. Thomson posed the famous Thomson problem after proposing his plum pudding atomic model, based on his knowledge of the existence of negatively charged electrons within neutrally charged atoms [27]. The objective of the Thomson problem is to determine the minimum electrostatic potential energy configuration of
The number of metastable structures (local minima) of the Thomson problem grows exponentially with
We can define an R function for the Thomson problem as follows: >Thomson.fn<‐ function(x) { fn.call<<‐ fn.call + 1 x <‐ matrix(x, ncol = 2) y <‐ t(apply(x, 1, function(z) { sin(z [1]) * sin(z [2]), cos(z [1])) })) n <‐ nrow(x) tmp<‐ matrix(NA, nrow = n, ncol = n) index<‐ cbind(as.vector(row(tmp)), as.vector(col(tmp))) index<‐ index [index [, 1] < index [, 2],, drop=F] rdist<‐ apply(index, 1, function(z) { tmp<‐ 1/sqrt(sum((y [z [1],] ‐ y [z [2],])^2)) }) res<‐ sum(rdist) return(res) }
In this example, we chose six point charges because our purpose is only to show how to use our package GenSA. The global energy minimum of six equal point charges on a unit sphere is 9.98528137 [28].
\nWe applied GenSA with default settings to the Thomson problem. As the number of point charges is small, GenSA can determine the global minimum easily. We set the maximum number of function calls allowed, max.call, to 600: >n.particles<‐ 6 # regular octahedron with global minimum 9.98528137 >lower.T<‐ rep(0, 2 * n.particles) >upper.T<‐ c(rep(pi, n.particles), rep(2 * pi, n.particles)) >require(GenSA) >options(digits = 9) >set.seed(1234) >fn.call<<‐ 0 >out.GenSA<‐ GenSA(par = NULL, lower = lower.T, upper = upper.T, fn = Thomson.fn, control = list(max.call=600)) >print(out.GenSA[c(“value”, “counts”)]) $value [1] 9.98528137 $counts [5] 600 >cat(“GenSA call function”, fn.call, “times.\\n”) GenSA call function 600 times.
The global minimum 9.98528137 for six point charges is determined within 600 function calls.
\nVarious types of pesticides have been widely used in modern agriculture. It is important to calculate the concentration of a pesticide in groundwater and surface water. We will show how GenSA can be used to fit a degradation model for a parent compound with one transformation product. All the data and models are from the R packages mkin [34] and FOCUS (2006) [35].
\nAfter loading the library, we obtain the data (FOCUS Example Dataset D). The observed concentrations are in the column named “value” at the time specified in column “time” for the two observed variables named “parent” and “m1.” >require(mkin) >require(GenSA) >require(deSolve) >options(digits = 9) >set.seed(1234) >str(FOCUS_2006_D) \'data.frame\':44 obs. of3 variables: $ name : Factor w/2 levels “m1”,”parent”: 2 2 2 2 2 2 2 2 2 2 ... $ time :num0 0 1 1 3 3 7 7 14 14 ... $ value: num99.5 102 93.5 92.5 63.2 ...
The measured concentration of parent and m1 change with time is displayed in the lower panel of \nFigure 2\n.
\nKinetic modeling of pesticide degradation. Upper panel: illustration of pesticide degradation model. Lower panel: experimental concentration data and fitting curves for parent and m1.
According to the kinetic model displayed in the upper panel of \nFigure 2\n, we define the derivative function as follows: >df<‐ function(t, y, parameters) { +d_parent<‐ ‐parameters [”k_parent_sink”] * y [”parent”] ‐ +parameters [”k_parent_m1”] * y [”parent”] +d_m1 <‐ parameters [”k_parent_m1”] * y [”parent”] ‐ +parameters [”k_m1_sink”] * y [”m1”] +return(list(c(d_parent, d_m1))) + }
There is one initial concentration, parent_0, and three kinetic parameters, k_parent_m1, k_parent_sink, and k_m1_sink, whose values need to be fitted out by fitting the concentration curves. The initial concentration of m1, m1_0, is always zero. We define the objective function, fn, as the sum of the squares of residuals (deviations predicted from observed values for both the parent and m1): >fn<‐ function(x, +names_x = c(“parent_0”, “k_parent_sink”, “k_parent_m1”, “k_m1_sink”), +names_y = c(“parent”, “m1”), +names_parameters = c(“k_parent_sink”, “k_parent_m1”, “k_m1_sink”), +tspan = if (!is.null(dat.fitting)) +sort(unique(dat.fitting [[”time”]])) else NULL, +df, dat.fitting = NULL) { +m1_0 = 0 +names(x) <‐ names_x +y0 <‐ c(x [”parent_0”], m1_0) +names(y0) <‐ names_y +parameters<‐ x [c(“k_parent_sink”, “k_parent_m1”, “k_m1_sink”)] +stopifnot(!is.null(tspan)) +out<‐ ode(y0, tspan, df, parameters) +if (is.null(dat.fitting)) { +rss<‐ out +} else { +rss<‐ sum(sapply(c(“parent”, “m1”), function(nm) { +o.time<‐ as.character(dat.fitting [dat.fitting$name == nm, ”time”]) +sum((out [, nm][match(o.time, out [, “time”])] ‐ +dat.fitting [dat.fitting$name == nm, “value”])^2, na.rm = TRUE) +})) +} +return(rss) + }
Then, we use GenSA to estimate the four parameters. As the model is not complicated, we limit the running time of GenSA to 5 seconds by setting max.time = 5: >res<‐ GenSA(fn = fn, lower = c(90, rep(0.001, 3)), +upper = c(110, rep(0.1, 3)), +control = list(max.time = 5), df = df, +dat.fitting = FOCUS_2006_D) >names(res$par) <‐ c(“parent_0”, “k_parent_sink”, “k_parent_m1”, “k_m1_sink”) >print(round(res$par, digits = 6)) parent_0 k_parent_sinkk_parent_m1k_m1_sink 99.5984910.0479200.0507780.005261
GenSA successfully determines the correct value of the initial concentration of the parent and the three kinetic parameters. The fitting curves for the parent and m1 are displayed in the lower panel of \nFigure 2\n.
\nPortfolio selection problems were addressed by mean‐risk models in the 1950s. The most popular measures of downside risk are the value‐at‐risk (VaR) and conditional VaR(CVaR). Portfolio weights for which the portfolio has the lowest CVaR and each investment can contribute at most 22.5% to the total portfolio CVaR risk were estimated using differential evolution algorithms in Mullen et al. [16] and Ardia et al. [36]. The code for the objective function in portfolio optimization is rewritten below from Ardia et al. [36]: >library(“quantmod”) > tickers <‐ c(“GE”, “IBM”, “JPM”, “MSFT”, “WMT”) >getSymbols(tickers, from = “2000‐12‐01”, to = “2010‐12‐31”) [1] “GE” “IBM” “JPM” “MSFT” “WMT” > P <‐ NULL >for(ticker in tickers) { +tmp<‐ Cl(to.monthly(eval(parse(text = ticker)))) +P <‐ cbind(P, tmp) + } >colnames(P) <‐ tickers > R <‐ diff(log(P)) > R <‐ R [‐1,] > mu <‐ colMeans(R) > sigma <‐ cov(R) >library(“PerformanceAnalytics”) >pContribCVaR<‐ ES(weights = rep(0.2, 5), +method = “gaussian”, portfolio_method = “component”, +mu = mu, sigma = sigma)$pct_contrib_ES >obj<‐ function(w) { +if (sum(w) == 0) {w <‐ w + 1e‐2 } +w <‐ w/sum(w) +CVaR<‐ ES(weights = w, +method = “gaussian”, portfolio_method = “component”, +mu = mu, sigma = sigma) +tmp1 <‐ CVaR$ES +tmp2 <‐ max(CVaR$pct_contrib_ES ‐ 0.225, 0) +out <‐ tmp1 + 1e3 * tmp2 +return(out) +}
GenSA can be used to determine the global optimum of this function using a bounded search domain from 0 to 1 values for the five parameters to be optimized: >library(GenSA) >lb<‐ rep(0, 5) # lower bounds, minimum values for all 5 parameters are 0 >ub<‐ rep(1, 5) # upper bounds, maximum values for all 5 parameters are 1 > out1.GenSA <‐ GenSA(fn = obj, lower = lb, upper = ub)
For non‐differentiable objective functions, the smooth parameter in the control argument can be set to FALSE, which means that the Nelder‐Mead method is used in the local search: > out2.GenSA <‐ GenSA(fn=obj, lower=rep(0, 5), upper=rep(1, 5), +control=list(smooth=FALSE, max.call=3000)) The max.call parameter is set to 3000 to make the algorithm stop earlier: > out2.GenSA$value [1] 0.1141484884 > out2.GenSA$counts [1] 3000 >cat(“GenSA call functions”, fn.call.GenSA, “times.\\n”) GenSA call functions 3000 times. >wstar.GenSA<‐ out2.GenSA$par >wstar.GenSA<‐ wstar.GenSA/sum(wstar.GenSA) >rbind(tickers, round(100 * wstar.GenSA, 2)) tickers “GE” “IBM” “JPM” “MSFT” “WMT” ”18.92” “21.23” “8.33” “15.92” “35.6” >100 * (sum(wstar.GenSA * mu) ‐ mean(mu)) [1] 0.03790568876
GenSA determined a minimum of 0.1141484884 within 3000 function calls.
\nThe discrete optimization problem, in particular, the feature selection problem, exists extensively. GSA can also be used for the discrete problem. Please refer to [37] for details.
\nGSA is a powerful method for the non‐convex global optimization problem. We developed an R package GenSA based on Tsallis statistics and GSA. In an extensive performance testbed composed of 134 benchmark functions, GenSA provided a higher average success rate% and a smaller median of the number of function calls compared with two widely recognized R packages: DEoptim and rgenoud. GenSA is useful and can provide a solution that is comparable with or even better than that provided by other widely used R packages for optimization.
\nR is very good for program prototype. When there is a need for heavy computation, other computational languages, such as C/C++, Fortran, Java, and Python,are recommended. Considering both speed and usability, aPython version of GSA, PyGenSA, is being developed and will be released within the SciPy scientific toolkitat the end of 2016.
\nThis work would not have been possible without the R open‐source software project. We would like to thank our colleague Julia Hoeng for inspirational discussions and support. This study was funded by Philip Morris International.
\nIn Chile vital statistics and indicators are methodically published by the bureau of vital statistics jointly with the national institute of statistics.
Chile has a mixed health system (public and private) in terms of financing, health insurance, and service delivery. Certified health professionals may work in either system. Midwives assist the vast majority of normal deliveries at the public service and in the private sector they work cooperatively with the gyn-ob.
Since 1982 until 2016 the rate of deliveries assisted by skilled health personnel, obstetricians or midwifes was 99,8% [1]. In 2016 the natality rate was 14,8% with 243.149 live newborns and the population was 18.191.000 inhabitants.
Episiotomy is the most commonly intervention practiced in obstetrics. It is recommended in order to facilitate the second stage of delivery and protect pelvic tissues from lacerations as well as the fetal head. The surgical incision was early described by Fielding (1742), Michaelis (1799) and Braun (1857) and has been widely used since then [2].
The routine practice of episiotomy has resulted in many researchers questioning the very purpose of this procedure as well as its potential benefits. Nowadays it is restricted [3] to certain deliveries because of the complications and long term outcomes such as infection, edema, pain, laceration or tearing into perineal muscles, bleeding, urinary and fecal incontinence and also esthetic defects [4, 5, 6].
If mediolateral episiotomy is practiced with an angle further than 45-60 degree it will not attain greater median levator muscle relaxation. When episiotomy is to short usually will not reduce perineal tissue stress and may provide a weak angle for uncontrolled laceration [2, 7], therefore inappropriate techniques hold greater risks of rectal sphincter injuries [8].
Medio-lateral episiotomy may prevent the recurrence of obstetric anal sphincter injuries (OASIS) specially in women with history of anal sphincter tears in previous deliveries [9], fetal macrosomia [10], nulliparity [11], first vaginal delivery with previous cesarean section, and a prolonged second stage of labour [10, 12], though discordant benefits have been reported with this procedure [13].
Even though there has been general agreement about restrictive episiotomy recommendations [14, 15, 16], available data demonstrates that professional viewpoints [17, 18], indications and individual patient conditions [19], are up until now associated with a large rate of episiotomies [20, 21, 22, 23]. Correct categorization of patients based on profesional abilities and skills [7, 24] as well as risk factors [8] are very important in order to prevent OASIS [25].
Events affecting episiotomy recovery are technique used, incision extension, and third or fourth degree tear after procedure [2].
A British study about midwifery practice describes that concealed anal sphincter tears showed a twofold increment when re-evaluated by a qualified health profesional [26]. Still, only 17% of midwives tend to perform a rectal examination [27].
This study was designed to find out the principal strengths and weakness around birth assistance and determine doctors and Midwives competencies in aspects of perineal management and episiotomy practice in Chile, with the purpose of promoting professional practice assessment and updating skills and competencies.
A questionnaire-based-cross-sectional study was conducted. We used an anonymous questionnaire sent by mail to midwives and doctors attending births at one or more public and/or private maternity units in order to identify competencies in aspects of perineal management and episiotomy practice. This study took place between October and December 2019 using the Instrument designed by Cornet et al. [28]. Fourteen close-ended questions were incorporated in relation to: profession, affiliation, number of births/year, evaluation on the knowledge of anatomy, evaluation on the knowledge of episiotomy, evaluation of the knowledge of perineal tear and competence in perineal repair, and presence of expert in perineal trauma in his/her unit. Study criteria included certified Obstetrician-Gynecologists and Midwives currently assisting births either at the public or private health system in Chile.
Initially a pilot study was applied to 18 midwives and obstetricians working at one public hospital in Santiago, during July 2019. After some question corrections, the anonymous questionnaire was sent by means of social media to certified health professionals who assisted deliveries in Chile between October and December 2019. We convoked 189 respondents.
A data base was constructed through an Excel file and data were analyzed through the statistical package STATA version 15.0®. A descriptive assessment was primarily carried out. Categorical variables were described in terms of frequencies and proportions. Chi square test was used to establish relationship between variables. Significance level was 5%.
189 surveys were returned, 97 (51,3%) from midwives and 71 (37,6%) from obstetricians. 11% did not state profession. 57% of respondents attend deliveries exclusively at the public health system, 19% at the private system and 14.3% in both (Table 1).
Entity of work | N | % |
---|---|---|
Public hospital | (109) | 57.7 |
Private maternity | (34) | 18 |
Public and private practice | (27) | 14.3 |
Home delivery | (4) | 2.1 |
Not responded | (15) | 7.9 |
Total | 189 | 100 |
Affiliation.
Source: Survey “Diagnosis and management of episiotomies” OASI.
70% of participants were trained in episiotomy practice at their undergraduate schools and 69% at medical internships.
The majority of professionals assisted between 20 and 100 deliveries per year and 2,2% of them assisted 500 or more (Figure 1).
N° of deliveries attended by the respondents per year.
Regarding episiotomy criteria, there was no homogeneity in their practice, but it is clear that the majority do not perform this procedure as a sphincter injury prevention technique when risk conditions arise (Table 2).
Condition | Performing episiotomy | Not performing episiotomy | ||
---|---|---|---|---|
N | % | N | % | |
Primigravida | (36) | 19,1 | (153) | 81 |
Foetus estimated weight > 3800 grs | (56) | 29,6 | (133) | 70,4 |
Genitals with edema | (62) | 32,8 | (127) | 67,2 |
Vulvar varicose veins | (22) | 11,6 | (167) | 88,4 |
Instrumental delivery | (169) | 89,4 | (20) | 10,6 |
Preterm birth | (27) | 14,3 | (162) | 85,7 |
Persistent occiput posterior position | (66) | 34,9 | (123) | 65,1 |
Criteria for episiotomy utilization.
Source: Survey “Diagnosis and management of episiotomies” OASI.
When data is divided by groups, professionals who assist ≤100 deliveries/year had more incorrect answers concerning prevention of deep sphincter or perineal injuries vs. those assisting 100 or more deliveries (79.4%) p <0.05 (Table 3). According to self-report questionnaire 28.4% of participants perform this procedure in a correct manner.
Condition | <100 deliveries/year | >100 deliveries/year | Total | |||
---|---|---|---|---|---|---|
N | % | N | % | N | % | |
Properly performed | 33 | 63,5 | 19 | 36,5 | 52 | 28.4 |
Improperly performed | 104 | 79.4 | 27 | 20,6 | 131 | 71.5 |
Quality of episiotomy performance/N° of deliveries per year.
N = 183 respondents to both questions.
Source: Survey “Diagnosis and management of episiotomies” OASI Test chi2 p < 0.05.
Routine rectal examination was performed by 53.3% of participants, in contrast 5.4% never practiced this type of digital exam when assessing perineal trauma (Table 4). This is an interesting figure considering that professionals assisting <100 deliveries per year performed a higher frequency of rectal examination but no significant difference was demonstrated between groups (Table 5).
n | % | |
---|---|---|
Always | (99) | 53.2 |
Tear or laceration of tissue | (71) | 38.2 |
Rectal sphincter injury (bleeding) | (3) | 1.6 |
Post instrumental delivery | (3) | 1.6 |
Never | (10) | 5.4 |
Total | 186 | 100 |
Rectal examination criteria.
Source: Survey “Diagnosis and management of episiotomies” OASI.
Delivery N | Always | Tears | Rectal bleeding | Post instrumental delivery | Never |
---|---|---|---|---|---|
<100 deliveries/year | 68 | 54 | 3 | 2 | 10 |
69.4% | 14% | 100% | 100% | 100% | |
>100 deliveries/year | 30 | 16 | 0 | 0 | 0 |
30.6% | 22,9% | 0 | 0 | 0 | |
Total | 98 | 70 | 3 | 2 | 10 |
100% | 100% | 100% | 100% | 100% |
Rectal examination/N° of deliveries.
Source: Survey “Diagnosis and management of episiotomies” OASI Test chi2 p = 0.147.
In 2007 the National Ministry of Public Health published the clinical guide for humanized care during delivery with the main objective of providing access to all pregnant women for appropriate professional assistance during labor and delivery. This assistance guideline draw attention to intra-partum fetal monitoring and other medical interventions such as episiotomy practice. In spite of the recommendation regarding this practice, few other aspects are addressed namely the competencies needed to perform this intervention in order to avoid tears and other adverse events.
Our study demonstrates that near 30% of professionals lack specific episiotomy technique training. This aspect is thoroughly relevant in light of the international evidence assuring that a correct execution of the episiotomy may have significant implications in OASIS. This is the reason why many authors endorse supervised episiotomy practice when training midwives and doctors, with a minimum number of ten before they are permitted to practice [29].
Individual interpretation of whatever particular situation for practicing episiotomies varied among participants of our study. This aspect was also observed in the study published by Gonzalez-Diaz et-al (2015) [30] therefore it is pertinent to regulate this practice and secure a uniform standard technique, also to establish a common and precise criteria with regard to specific clinical situations that need to be approached by this intervention [30].
Although there are post graduate episiotomy training opportunities, still we have professionals that do not perform this technique in a correct fashion.
Considering the international recommendations, when the third stage of labour is completed, a rectal examination should be carried out in order to correctly assess rectal sphincter injuries [30]. We point out that 46,7% of our participants did not perform this recommendation in every delivery, of these, 5.4% revealed they never practiced the examination and 1.6% performed rectal examination solely under rectal bleeding, also 1.6% respondents when assisting an instrumental delivery.
Following data analysis, it becomes evident that there is a need of a particular guideline for health professionals addressing the correct management of perineal injury prevention and a precise practice of episiotomy. Also, there is the need to promote more training at midwifery and medical schools so to secure the precise abilities and practical skills to correctly perform this technique. At the same time, we should broaden the capacity of continuous training courses for these professionals.
The majority of health professionals who attend deliveries in Chile work in public hospitals and indicated insufficient training capacities in relation to episiotomy techniques. Criteria for episiotomy utilization is diverse and heterogeneous with no agreement of absolute indications of the procedure.
National guideline for health professionals addressing the correct management of perineal injury prevention, precise practice of episiotomy, proper diagnostic techniques of severe perineal trauma and correct perineal repair.
To improve and strengthen specific formal training programs regarding OASI management and major tears repair and implementing simulation training opportunities and expertise during internships and residence years.
To increase research in this and similar topics.
First study in Chile about episiotomy practice among obstetricians and midwives.
Survey addressing delivery practices along the territory.
Anonymous survey which facilitates honest answers.
Limited number of participants in order to assess significant differences.
We thank doctors and midwives who participated in this survey.
None.
All the authors of the manuscript actively participated in the conception, design and analysis of the study and in the writing of the manuscript and approve the manuscript as submitted.
As an Open Access publisher, IntechOpen is dedicated to maintaining the highest ethical standards and principles in publishing. In addition, IntechOpen promotes the highest standards of integrity and ethical behavior in scientific research and peer-review. To maintain these principles IntechOpen has developed basic guidelines to facilitate the avoidance of Conflicts of Interest.
",metaTitle:"Conflicts of Interest Policy",metaDescription:"As an Open Access publisher, IntechOpen is dedicated to maintaining the highest ethical standards and principles in publishing. In addition, IntechOpen promotes the highest standards of integrity and ethical behavior in scientific research and peer-review.",metaKeywords:null,canonicalURL:"/page/conflicts-of-interest-policy",contentRaw:'[{"type":"htmlEditorComponent","content":"In each instance of a possible Conflict of Interest, IntechOpen aims to disclose the situation in as transparent a way as possible in order to allow readers to judge whether a particular potential Conflict of Interest has influenced the Work of any individual Author, Editor, or Reviewer. IntechOpen takes all possible Conflicts of Interest into account during the review process and ensures maximum transparency in implementing its policies.
\\n\\nA Conflict of Interest is a situation in which a person's professional judgment may be influenced by a range of factors, including financial gain, material interest, or some other personal or professional interest. For IntechOpen as a publisher, it is essential that all possible Conflicts of Interest are avoided. Each contributor, whether an Author, Editor, or Reviewer, who suspects they may have a Conflict of Interest, is obliged to declare that concern in order to make the publisher and the readership aware of any potential influence on the work being undertaken.
\\n\\nA Conflict of Interest can be identified at different phases of the publishing process.
\\n\\nIntechOpen requires:
\\n\\nCONFLICT OF INTEREST - AUTHOR
\\n\\nAll Authors are obliged to declare every existing or potential Conflict of Interest, including financial or personal factors, as well as any relationship which could influence their scientific work. Authors must declare Conflicts of Interest at the time of manuscript submission, although they may exceptionally do so at any point during manuscript review. For jointly prepared manuscripts, the corresponding Author is obliged to declare potential Conflicts of Interest of any other Authors who have contributed to the manuscript.
\\n\\nCONFLICT OF INTEREST – ACADEMIC EDITOR
\\n\\nEditors can also have Conflicts of Interest. Editors are expected to maintain the highest standards of conduct, which are outlined in our Best Practice Guidelines (templates for Best Practice Guidelines). Among other obligations, it is essential that Editors make transparent declarations of any possible Conflicts of Interest that they might have.
\\n\\nAvoidance Measures for Academic Editors of Conflicts of Interest:
\\n\\nFor manuscripts submitted by the Academic Editor (or a scientific advisor), an appropriate person will be appointed to handle and evaluate the manuscript. The appointed handling Editor's identity will not be disclosed to the Author in order to maintain impartiality and anonymity of the review.
\\n\\nIf a manuscript is submitted by an Author who is a member of an Academic Editor's family or is personally or professionally related to the Academic Editor in any way, either as a friend, colleague, student or mentor, the work will be handled by a different Academic Editor who is not in any way connected to the Author.
\\n\\nCONFLICT OF INTEREST - REVIEWER
\\n\\nAll Reviewers are required to declare possible Conflicts of Interest at the beginning of the evaluation process. If a Reviewer feels he or she might have any material, financial or any other conflict of interest with regards to the manuscript being reviewed, he or she is required to declare such concern and, if necessary, request exclusion from any further involvement in the evaluation process. A Reviewer's potential Conflicts of Interest are declared in the review report and presented to the Academic Editor, who then assesses whether or not the declared potential or actual Conflicts of Interest had, or could be perceived to have had, any significant impact on the review itself.
\\n\\nEXAMPLES OF CONFLICTS OF INTEREST:
\\n\\nFINANCIAL AND MATERIAL
\\n\\nNON-FINANCIAL
\\n\\nAuthors are required to declare all potentially relevant non-financial, financial and material Conflicts of Interest that may have had an influence on their scientific work.
\\n\\nAcademic Editors and Reviewers are required to declare any non-financial, financial and material Conflicts of Interest that could influence their fair and balanced evaluation of manuscripts. If such conflict exists with regards to a submitted manuscript, Academic Editors and Reviewers should exclude themselves from handling it.
\\n\\nAll Authors, Academic Editors, and Reviewers are required to declare all possible financial and material Conflicts of Interest in the last five years, although it is advisable to declare less recent Conflicts of Interest as well.
\\n\\nEXAMPLES:
\\n\\nAuthors should declare if they were or they still are Academic Editors of the publications in which they wish to publish their work.
\\n\\nAuthors should declare if they are board members of an organization that could benefit financially or materially from the publication of their work.
\\n\\nAcademic Editors should declare if they were coauthors or they have worked on the research project with the Author who has submitted a manuscript.
\\n\\nAcademic Editors should declare if the Author of a submitted manuscript is affiliated with the same department, faculty, institute, or company as they are.
\\n\\nPolicy last updated: 2016-06-09
\\n"}]'},components:[{type:"htmlEditorComponent",content:"In each instance of a possible Conflict of Interest, IntechOpen aims to disclose the situation in as transparent a way as possible in order to allow readers to judge whether a particular potential Conflict of Interest has influenced the Work of any individual Author, Editor, or Reviewer. IntechOpen takes all possible Conflicts of Interest into account during the review process and ensures maximum transparency in implementing its policies.
\n\nA Conflict of Interest is a situation in which a person's professional judgment may be influenced by a range of factors, including financial gain, material interest, or some other personal or professional interest. For IntechOpen as a publisher, it is essential that all possible Conflicts of Interest are avoided. Each contributor, whether an Author, Editor, or Reviewer, who suspects they may have a Conflict of Interest, is obliged to declare that concern in order to make the publisher and the readership aware of any potential influence on the work being undertaken.
\n\nA Conflict of Interest can be identified at different phases of the publishing process.
\n\nIntechOpen requires:
\n\nCONFLICT OF INTEREST - AUTHOR
\n\nAll Authors are obliged to declare every existing or potential Conflict of Interest, including financial or personal factors, as well as any relationship which could influence their scientific work. Authors must declare Conflicts of Interest at the time of manuscript submission, although they may exceptionally do so at any point during manuscript review. For jointly prepared manuscripts, the corresponding Author is obliged to declare potential Conflicts of Interest of any other Authors who have contributed to the manuscript.
\n\nCONFLICT OF INTEREST – ACADEMIC EDITOR
\n\nEditors can also have Conflicts of Interest. Editors are expected to maintain the highest standards of conduct, which are outlined in our Best Practice Guidelines (templates for Best Practice Guidelines). Among other obligations, it is essential that Editors make transparent declarations of any possible Conflicts of Interest that they might have.
\n\nAvoidance Measures for Academic Editors of Conflicts of Interest:
\n\nFor manuscripts submitted by the Academic Editor (or a scientific advisor), an appropriate person will be appointed to handle and evaluate the manuscript. The appointed handling Editor's identity will not be disclosed to the Author in order to maintain impartiality and anonymity of the review.
\n\nIf a manuscript is submitted by an Author who is a member of an Academic Editor's family or is personally or professionally related to the Academic Editor in any way, either as a friend, colleague, student or mentor, the work will be handled by a different Academic Editor who is not in any way connected to the Author.
\n\nCONFLICT OF INTEREST - REVIEWER
\n\nAll Reviewers are required to declare possible Conflicts of Interest at the beginning of the evaluation process. If a Reviewer feels he or she might have any material, financial or any other conflict of interest with regards to the manuscript being reviewed, he or she is required to declare such concern and, if necessary, request exclusion from any further involvement in the evaluation process. A Reviewer's potential Conflicts of Interest are declared in the review report and presented to the Academic Editor, who then assesses whether or not the declared potential or actual Conflicts of Interest had, or could be perceived to have had, any significant impact on the review itself.
\n\nEXAMPLES OF CONFLICTS OF INTEREST:
\n\nFINANCIAL AND MATERIAL
\n\nNON-FINANCIAL
\n\nAuthors are required to declare all potentially relevant non-financial, financial and material Conflicts of Interest that may have had an influence on their scientific work.
\n\nAcademic Editors and Reviewers are required to declare any non-financial, financial and material Conflicts of Interest that could influence their fair and balanced evaluation of manuscripts. If such conflict exists with regards to a submitted manuscript, Academic Editors and Reviewers should exclude themselves from handling it.
\n\nAll Authors, Academic Editors, and Reviewers are required to declare all possible financial and material Conflicts of Interest in the last five years, although it is advisable to declare less recent Conflicts of Interest as well.
\n\nEXAMPLES:
\n\nAuthors should declare if they were or they still are Academic Editors of the publications in which they wish to publish their work.
\n\nAuthors should declare if they are board members of an organization that could benefit financially or materially from the publication of their work.
\n\nAcademic Editors should declare if they were coauthors or they have worked on the research project with the Author who has submitted a manuscript.
\n\nAcademic Editors should declare if the Author of a submitted manuscript is affiliated with the same department, faculty, institute, or company as they are.
\n\nPolicy last updated: 2016-06-09
\n"}]},successStories:{items:[]},authorsAndEditors:{filterParams:{},profiles:[{id:"396",title:"Dr.",name:"Vedran",middleName:null,surname:"Kordic",slug:"vedran-kordic",fullName:"Vedran Kordic",position:null,profilePictureURL:"https://mts.intechopen.com/storage/users/396/images/7281_n.png",biography:"After obtaining his Master's degree in Mechanical Engineering he continued his education at the Vienna University of Technology where he obtained his PhD degree in 2004. He worked as a researcher at the Automation and Control Institute, Faculty of Electrical Engineering, Vienna University of Technology until 2008. His studies in robotics lead him not only to a PhD degree but also inspired him to co-found and build the International Journal of Advanced Robotic Systems - world's first Open Access journal in the field of robotics.",institutionString:null,institution:{name:"TU Wien",country:{name:"Austria"}}},{id:"441",title:"Ph.D.",name:"Jaekyu",middleName:null,surname:"Park",slug:"jaekyu-park",fullName:"Jaekyu Park",position:null,profilePictureURL:"https://mts.intechopen.com/storage/users/441/images/1881_n.jpg",biography:null,institutionString:null,institution:{name:"LG Corporation (South Korea)",country:{name:"Korea, South"}}},{id:"465",title:"Dr.",name:"Christian",middleName:null,surname:"Martens",slug:"christian-martens",fullName:"Christian Martens",position:null,profilePictureURL:"//cdnintech.com/web/frontend/www/assets/author.svg",biography:null,institutionString:null,institution:{name:"Rheinmetall (Germany)",country:{name:"Germany"}}},{id:"479",title:"Dr.",name:"Valentina",middleName:null,surname:"Colla",slug:"valentina-colla",fullName:"Valentina Colla",position:null,profilePictureURL:"https://mts.intechopen.com/storage/users/479/images/358_n.jpg",biography:null,institutionString:null,institution:{name:"Sant'Anna School of Advanced Studies",country:{name:"Italy"}}},{id:"494",title:"PhD",name:"Loris",middleName:null,surname:"Nanni",slug:"loris-nanni",fullName:"Loris Nanni",position:null,profilePictureURL:"https://mts.intechopen.com/storage/users/494/images/system/494.jpg",biography:"Loris Nanni received his Master Degree cum laude on June-2002 from the University of Bologna, and the April 26th 2006 he received his Ph.D. in Computer Engineering at DEIS, University of Bologna. On September, 29th 2006 he has won a post PhD fellowship from the university of Bologna (from October 2006 to October 2008), at the competitive examination he was ranked first in the industrial engineering area. He extensively served as referee for several international journals. He is author/coauthor of more than 100 research papers. He has been involved in some projects supported by MURST and European Community. His research interests include pattern recognition, bioinformatics, and biometric systems (fingerprint classification and recognition, signature verification, face recognition).",institutionString:null,institution:null},{id:"496",title:"Dr.",name:"Carlos",middleName:null,surname:"Leon",slug:"carlos-leon",fullName:"Carlos Leon",position:null,profilePictureURL:"//cdnintech.com/web/frontend/www/assets/author.svg",biography:null,institutionString:null,institution:{name:"University of Seville",country:{name:"Spain"}}},{id:"512",title:"Dr.",name:"Dayang",middleName:null,surname:"Jawawi",slug:"dayang-jawawi",fullName:"Dayang Jawawi",position:null,profilePictureURL:"//cdnintech.com/web/frontend/www/assets/author.svg",biography:null,institutionString:null,institution:{name:"University of Technology Malaysia",country:{name:"Malaysia"}}},{id:"528",title:"Dr.",name:"Kresimir",middleName:null,surname:"Delac",slug:"kresimir-delac",fullName:"Kresimir Delac",position:null,profilePictureURL:"https://mts.intechopen.com/storage/users/528/images/system/528.jpg",biography:"K. Delac received his B.Sc.E.E. degree in 2003 and is currentlypursuing a Ph.D. degree at the University of Zagreb, Faculty of Electrical Engineering andComputing. His current research interests are digital image analysis, pattern recognition andbiometrics.",institutionString:null,institution:{name:"University of Zagreb",country:{name:"Croatia"}}},{id:"557",title:"Dr.",name:"Andon",middleName:"Venelinov",surname:"Topalov",slug:"andon-topalov",fullName:"Andon Topalov",position:null,profilePictureURL:"https://mts.intechopen.com/storage/users/557/images/1927_n.jpg",biography:"Dr. Andon V. Topalov received the MSc degree in Control Engineering from the Faculty of Information Systems, Technologies, and Automation at Moscow State University of Civil Engineering (MGGU) in 1979. He then received his PhD degree in Control Engineering from the Department of Automation and Remote Control at Moscow State Mining University (MGSU), Moscow, in 1984. From 1985 to 1986, he was a Research Fellow in the Research Institute for Electronic Equipment, ZZU AD, Plovdiv, Bulgaria. In 1986, he joined the Department of Control Systems, Technical University of Sofia at the Plovdiv campus, where he is presently a Full Professor. He has held long-term visiting Professor/Scholar positions at various institutions in South Korea, Turkey, Mexico, Greece, Belgium, UK, and Germany. And he has coauthored one book and authored or coauthored more than 80 research papers in conference proceedings and journals. His current research interests are in the fields of intelligent control and robotics.",institutionString:null,institution:{name:"Technical University of Sofia",country:{name:"Bulgaria"}}},{id:"585",title:"Prof.",name:"Munir",middleName:null,surname:"Merdan",slug:"munir-merdan",fullName:"Munir Merdan",position:null,profilePictureURL:"https://mts.intechopen.com/storage/users/585/images/system/585.jpg",biography:"Munir Merdan received the M.Sc. degree in mechanical engineering from the Technical University of Sarajevo, Bosnia and Herzegovina, in 2001, and the Ph.D. degree in electrical engineering from the Vienna University of Technology, Vienna, Austria, in 2009.Since 2005, he has been at the Automation and Control Institute, Vienna University of Technology, where he is currently a Senior Researcher. His research interests include the application of agent technology for achieving agile control in the manufacturing environment.",institutionString:null,institution:null},{id:"605",title:"Prof",name:"Dil",middleName:null,surname:"Hussain",slug:"dil-hussain",fullName:"Dil Hussain",position:null,profilePictureURL:"https://mts.intechopen.com/storage/users/605/images/system/605.jpg",biography:"Dr. Dil Muhammad Akbar Hussain is a professor of Electronics Engineering & Computer Science at the Department of Energy Technology, Aalborg University Denmark. Professor Akbar has a Master degree in Digital Electronics from Govt. College University, Lahore Pakistan and a P-hD degree in Control Engineering from the School of Engineering and Applied Sciences, University of Sussex United Kingdom. Aalborg University has Two Satellite Campuses, one in Copenhagen (Aalborg University Copenhagen) and the other in Esbjerg (Aalborg University Esbjerg).\n· He is a member of prestigious IEEE (Institute of Electrical and Electronics Engineers), and IAENG (International Association of Engineers) organizations. \n· He is the chief Editor of the Journal of Software Engineering.\n· He is the member of the Editorial Board of International Journal of Computer Science and Software Technology (IJCSST) and International Journal of Computer Engineering and Information Technology. \n· He is also the Editor of Communication in Computer and Information Science CCIS-20 by Springer.\n· Reviewer For Many Conferences\nHe is the lead person in making collaboration agreements between Aalborg University and many universities of Pakistan, for which the MOU’s (Memorandum of Understanding) have been signed.\nProfessor Akbar is working in Academia since 1990, he started his career as a Lab demonstrator/TA at the University of Sussex. After finishing his P. hD degree in 1992, he served in the Industry as a Scientific Officer and continued his academic career as a visiting scholar for a number of educational institutions. In 1996 he joined National University of Science & Technology Pakistan (NUST) as an Associate Professor; NUST is one of the top few universities in Pakistan. In 1999 he joined an International Company Lineo Inc, Canada as Manager Compiler Group, where he headed the group for developing Compiler Tool Chain and Porting of Operating Systems for the BLACKfin processor. The processor development was a joint venture by Intel and Analog Devices. In 2002 Lineo Inc., was taken over by another company, so he joined Aalborg University Denmark as an Assistant Professor.\nProfessor Akbar has truly a multi-disciplined career and he continued his legacy and making progress in many areas of his interests both in teaching and research. He has contributed in stochastic estimation of control area especially, in the Multiple Target Tracking and Interactive Multiple Model (IMM) research, Ball & Beam Control Problem, Robotics, Levitation Control. He has contributed in developing Algorithms for Fingerprint Matching, Computer Vision and Face Recognition. He has been supervising Pattern Recognition, Formal Languages and Distributed Processing projects for several years. He has reviewed many books on Management, Computer Science. Currently, he is an active and permanent reviewer for many international conferences and symposia and the program committee member for many international conferences.\nIn teaching he has taught the core computer science subjects like, Digital Design, Real Time Embedded System Programming, Operating Systems, Software Engineering, Data Structures, Databases, Compiler Construction. In the Engineering side, Digital Signal Processing, Computer Architecture, Electronics Devices, Digital Filtering and Engineering Management.\nApart from his Academic Interest and activities he loves sport especially, Cricket, Football, Snooker and Squash. He plays cricket for Esbjerg city in the second division team as an opener wicket keeper batsman. He is a very good player of squash but has not played squash since his arrival in Denmark.",institutionString:null,institution:null},{id:"611",title:"Prof.",name:"T",middleName:null,surname:"Nagarajan",slug:"t-nagarajan",fullName:"T Nagarajan",position:null,profilePictureURL:"//cdnintech.com/web/frontend/www/assets/author.svg",biography:null,institutionString:null,institution:{name:"Universiti Teknologi Petronas",country:{name:"Malaysia"}}}],filtersByRegion:[{group:"region",caption:"North America",value:1,count:13389},{group:"region",caption:"Middle and South America",value:2,count:11658},{group:"region",caption:"Africa",value:3,count:4168},{group:"region",caption:"Asia",value:4,count:22334},{group:"region",caption:"Australia and Oceania",value:5,count:2019},{group:"region",caption:"Europe",value:6,count:33642}],offset:12,limit:12,total:135272},chapterEmbeded:{data:{}},editorApplication:{success:null,errors:{}},ofsBooks:{filterParams:{topicId:"6"},books:[{type:"book",id:"11643",title:"Genetic Diversity - Recent Advances and Applications",subtitle:null,isOpenForSubmission:!0,hash:"0b1e679fcacdec2448603a66df71ccc7",slug:null,bookSignature:"Prof. Mahmut Çalışkan and Dr. Sevcan Aydin",coverURL:"https://cdn.intechopen.com/books/images_new/11643.jpg",editedByType:null,editors:[{id:"51528",title:"Prof.",name:"Mahmut",surname:"Çalışkan",slug:"mahmut-caliskan",fullName:"Mahmut Çalışkan"}],productType:{id:"1",chapterContentType:"chapter",authoredCaption:"Edited by"}},{type:"book",id:"11673",title:"Stem Cell Research",subtitle:null,isOpenForSubmission:!0,hash:"13092df328080c762dd9157be18ca38c",slug:null,bookSignature:"Ph.D. Diana Kitala",coverURL:"https://cdn.intechopen.com/books/images_new/11673.jpg",editedByType:null,editors:[{id:"203598",title:"Ph.D.",name:"Diana",surname:"Kitala",slug:"diana-kitala",fullName:"Diana Kitala"}],productType:{id:"1",chapterContentType:"chapter",authoredCaption:"Edited by"}},{type:"book",id:"11676",title:"Recent Advances in Homeostasis",subtitle:null,isOpenForSubmission:!0,hash:"63eb775115bf2d6d88530b234a1cc4c2",slug:null,bookSignature:"Dr. Gaffar Sarwar Zaman",coverURL:"https://cdn.intechopen.com/books/images_new/11676.jpg",editedByType:null,editors:[{id:"203015",title:"Dr.",name:"Gaffar",surname:"Zaman",slug:"gaffar-zaman",fullName:"Gaffar Zaman"}],productType:{id:"1",chapterContentType:"chapter",authoredCaption:"Edited by"}},{type:"book",id:"11804",title:"CRISPR Technology",subtitle:null,isOpenForSubmission:!0,hash:"4051570f538bd3315e051267180abe37",slug:null,bookSignature:"Dr. Yuan-Chuan Chen",coverURL:"https://cdn.intechopen.com/books/images_new/11804.jpg",editedByType:null,editors:[{id:"185559",title:"Dr.",name:"Yuan-Chuan",surname:"Chen",slug:"yuan-chuan-chen",fullName:"Yuan-Chuan Chen"}],productType:{id:"1",chapterContentType:"chapter",authoredCaption:"Edited by"}},{type:"book",id:"12174",title:"Genetic Polymorphisms",subtitle:null,isOpenForSubmission:!0,hash:"5922df051a2033c98d2edfb31dd84f8c",slug:null,bookSignature:"",coverURL:"https://cdn.intechopen.com/books/images_new/12174.jpg",editedByType:null,editors:null,productType:{id:"1",chapterContentType:"chapter",authoredCaption:"Edited by"}},{type:"book",id:"12176",title:"Oligonucleotides - Overview and Applications",subtitle:null,isOpenForSubmission:!0,hash:"365b4a84e87d26bcb24b7183814fba04",slug:null,bookSignature:"Dr. Arghya Sett",coverURL:"https://cdn.intechopen.com/books/images_new/12176.jpg",editedByType:null,editors:[{id:"301899",title:"Dr.",name:"Arghya",surname:"Sett",slug:"arghya-sett",fullName:"Arghya Sett"}],productType:{id:"1",chapterContentType:"chapter",authoredCaption:"Edited by"}},{type:"book",id:"12177",title:"Epigenetics - Regulation and New Perspectives",subtitle:null,isOpenForSubmission:!0,hash:"ee9205fd23aa48cbcf3c9d6634db42b7",slug:null,bookSignature:"Dr. Tao Huang",coverURL:"https://cdn.intechopen.com/books/images_new/12177.jpg",editedByType:null,editors:[{id:"461341",title:"Dr.",name:"Tao",surname:"Huang",slug:"tao-huang",fullName:"Tao Huang"}],productType:{id:"1",chapterContentType:"chapter",authoredCaption:"Edited by"}},{type:"book",id:"12214",title:"Phagocytosis",subtitle:null,isOpenForSubmission:!0,hash:"79d7747d6e3aa6a3623ab710a7634588",slug:null,bookSignature:"",coverURL:"https://cdn.intechopen.com/books/images_new/12214.jpg",editedByType:null,editors:null,productType:{id:"1",chapterContentType:"chapter",authoredCaption:"Edited by"}},{type:"book",id:"12215",title:"Cell Death and Disease",subtitle:null,isOpenForSubmission:!0,hash:"dfd456a29478fccf4ebd3294137eb1e3",slug:null,bookSignature:"Dr. Ke Xu",coverURL:"https://cdn.intechopen.com/books/images_new/12215.jpg",editedByType:null,editors:[{id:"59529",title:"Dr.",name:"Ke",surname:"Xu",slug:"ke-xu",fullName:"Ke Xu"}],productType:{id:"1",chapterContentType:"chapter",authoredCaption:"Edited by"}},{type:"book",id:"12332",title:"Resveratrol - Recent Advances, Application, and Therapeutic Potential",subtitle:null,isOpenForSubmission:!0,hash:"6c796885b34b6727cb8fb36badef827f",slug:null,bookSignature:"Dr. Ali Imran",coverURL:"https://cdn.intechopen.com/books/images_new/12332.jpg",editedByType:null,editors:[{id:"235082",title:"Dr.",name:"Ali",surname:"Imran",slug:"ali-imran",fullName:"Ali Imran"}],productType:{id:"1",chapterContentType:"chapter",authoredCaption:"Edited by"}},{type:"book",id:"12424",title:"X-linked Recessive Disorders",subtitle:null,isOpenForSubmission:!0,hash:"994eb9ea3fd11da881d369c3325b0d24",slug:null,bookSignature:"",coverURL:"https://cdn.intechopen.com/books/images_new/12424.jpg",editedByType:null,editors:null,productType:{id:"1",chapterContentType:"chapter",authoredCaption:"Edited by"}}],filtersByTopic:[{group:"topic",caption:"Agricultural and Biological Sciences",value:5,count:28},{group:"topic",caption:"Biochemistry, Genetics and Molecular Biology",value:6,count:8},{group:"topic",caption:"Business, Management and Economics",value:7,count:4},{group:"topic",caption:"Chemistry",value:8,count:16},{group:"topic",caption:"Computer and Information Science",value:9,count:18},{group:"topic",caption:"Earth and Planetary Sciences",value:10,count:8},{group:"topic",caption:"Engineering",value:11,count:43},{group:"topic",caption:"Environmental Sciences",value:12,count:5},{group:"topic",caption:"Immunology and Microbiology",value:13,count:9},{group:"topic",caption:"Materials Science",value:14,count:17},{group:"topic",caption:"Mathematics",value:15,count:9},{group:"topic",caption:"Medicine",value:16,count:69},{group:"topic",caption:"Nanotechnology and Nanomaterials",value:17,count:3},{group:"topic",caption:"Neuroscience",value:18,count:3},{group:"topic",caption:"Pharmacology, Toxicology and Pharmaceutical Science",value:19,count:6},{group:"topic",caption:"Physics",value:20,count:6},{group:"topic",caption:"Psychology",value:21,count:5},{group:"topic",caption:"Robotics",value:22,count:2},{group:"topic",caption:"Social Sciences",value:23,count:7},{group:"topic",caption:"Veterinary Medicine and Science",value:25,count:2}],offset:12,limit:12,total:11},popularBooks:{featuredBooks:[{type:"book",id:"7827",title:"Interpersonal Relationships",subtitle:null,isOpenForSubmission:!1,hash:"ebf41f4d17c75010eb3294cc8cac3d47",slug:"interpersonal-relationships",bookSignature:"Martha Peaslee Levine",coverURL:"https://cdn.intechopen.com/books/images_new/7827.jpg",editors:[{id:"186919",title:"Dr.",name:"Martha",middleName:null,surname:"Peaslee Levine",slug:"martha-peaslee-levine",fullName:"Martha Peaslee Levine"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter"}},{type:"book",id:"10808",title:"Current Concepts in Dental Implantology",subtitle:"From Science to Clinical Research",isOpenForSubmission:!1,hash:"4af8830e463f89c57515c2da2b9777b0",slug:"current-concepts-in-dental-implantology-from-science-to-clinical-research",bookSignature:"Dragana Gabrić and Marko Vuletić",coverURL:"https://cdn.intechopen.com/books/images_new/10808.jpg",editors:[{id:"26946",title:"Prof.",name:"Dragana",middleName:null,surname:"Gabrić",slug:"dragana-gabric",fullName:"Dragana Gabrić"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter"}},{type:"book",id:"10908",title:"Advances in Decision Making",subtitle:null,isOpenForSubmission:!1,hash:"126486f7f91e18e2e3539a32c38be7b1",slug:"advances-in-decision-making",bookSignature:"Fausto Pedro García Márquez",coverURL:"https://cdn.intechopen.com/books/images_new/10908.jpg",editors:[{id:"22844",title:"Prof.",name:"Fausto Pedro",middleName:null,surname:"García Márquez",slug:"fausto-pedro-garcia-marquez",fullName:"Fausto Pedro García Márquez"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter"}},{type:"book",id:"10796",title:"Extracellular Vesicles",subtitle:"Role in Diseases, Pathogenesis and Therapy",isOpenForSubmission:!1,hash:"eb5407fcf93baff7bca3fae5640153a2",slug:"extracellular-vesicles-role-in-diseases-pathogenesis-and-therapy",bookSignature:"Manash K. Paul",coverURL:"https://cdn.intechopen.com/books/images_new/10796.jpg",editors:[{id:"319365",title:"Assistant Prof.",name:"Manash K.",middleName:null,surname:"Paul",slug:"manash-k.-paul",fullName:"Manash K. Paul"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter"}},{type:"book",id:"11263",title:"Supply Chain",subtitle:"Recent Advances and New Perspectives in the Industry 4.0 Era",isOpenForSubmission:!1,hash:"aab634c9c1f9a692c1e9881d18e9c9b7",slug:"supply-chain-recent-advances-and-new-perspectives-in-the-industry-4-0-era",bookSignature:"Tamás Bányai, Ágota Bányai and Ireneusz Kaczmar",coverURL:"https://cdn.intechopen.com/books/images_new/11263.jpg",editors:[{id:"201248",title:"Dr.",name:"Tamás",middleName:null,surname:"Bányai",slug:"tamas-banyai",fullName:"Tamás Bányai"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter"}},{type:"book",id:"10739",title:"Global Decline of Insects",subtitle:null,isOpenForSubmission:!1,hash:"543783652b9092962a8fa4bed38eeb17",slug:"global-decline-of-insects",bookSignature:"Hamadttu Abdel Farag El-Shafie",coverURL:"https://cdn.intechopen.com/books/images_new/10739.jpg",editors:[{id:"192142",title:"Dr.",name:"Hamadttu",middleName:null,surname:"Abdel Farag El-Shafie",slug:"hamadttu-abdel-farag-el-shafie",fullName:"Hamadttu Abdel Farag El-Shafie"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter"}},{type:"book",id:"10911",title:"Higher Education",subtitle:"New Approaches to Accreditation, Digitalization, and Globalization in the Age of Covid",isOpenForSubmission:!1,hash:"223a02337498e535e967174c1f648fbc",slug:"higher-education-new-approaches-to-accreditation-digitalization-and-globalization-in-the-age-of-covid",bookSignature:"Lee Waller and Sharon Waller",coverURL:"https://cdn.intechopen.com/books/images_new/10911.jpg",editors:[{id:"263301",title:"Dr.",name:"Lee",middleName:null,surname:"Waller",slug:"lee-waller",fullName:"Lee Waller"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter"}},{type:"book",id:"10669",title:"Corrosion",subtitle:"Fundamentals and Protection Mechanisms",isOpenForSubmission:!1,hash:"4a76d54f8a40fc2e7002a8d13fd617c1",slug:"corrosion-fundamentals-and-protection-mechanisms",bookSignature:"Fahmina Zafar, Anujit Ghosal and Eram Sharmin",coverURL:"https://cdn.intechopen.com/books/images_new/10669.jpg",editors:[{id:"89672",title:"Dr.",name:"Fahmina",middleName:null,surname:"Zafar",slug:"fahmina-zafar",fullName:"Fahmina Zafar"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter"}},{type:"book",id:"95",title:"Applications and Experiences of Quality Control",subtitle:null,isOpenForSubmission:!1,hash:"4bcb22b1eee68210a977a97d5a0f363a",slug:"applications-and-experiences-of-quality-control",bookSignature:"Ognyan Ivanov",coverURL:"https://cdn.intechopen.com/books/images_new/95.jpg",editors:[{id:"22230",title:"Prof.",name:"Ognyan",middleName:null,surname:"Ivanov",slug:"ognyan-ivanov",fullName:"Ognyan Ivanov"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter"}},{type:"book",id:"2160",title:"MATLAB",subtitle:"A Fundamental Tool for Scientific Computing and Engineering Applications - Volume 1",isOpenForSubmission:!1,hash:"dd9c658341fbd264ed4f8d9e6aa8ca29",slug:"matlab-a-fundamental-tool-for-scientific-computing-and-engineering-applications-volume-1",bookSignature:"Vasilios N. Katsikis",coverURL:"https://cdn.intechopen.com/books/images_new/2160.jpg",editors:[{id:"12289",title:"Prof.",name:"Vasilios",middleName:"N.",surname:"Katsikis",slug:"vasilios-katsikis",fullName:"Vasilios Katsikis"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter"}},{type:"book",id:"3560",title:"Advances in Landscape Architecture",subtitle:null,isOpenForSubmission:!1,hash:"a20614517ec5f7e91188fe8e42832138",slug:"advances-in-landscape-architecture",bookSignature:"Murat Özyavuz",coverURL:"https://cdn.intechopen.com/books/images_new/3560.jpg",editors:[{id:"93073",title:"Dr.",name:"Murat",middleName:null,surname:"Ozyavuz",slug:"murat-ozyavuz",fullName:"Murat Ozyavuz"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter"}},{type:"book",id:"3568",title:"Recent Advances in Plant in vitro Culture",subtitle:null,isOpenForSubmission:!1,hash:"830bbb601742c85a3fb0eeafe1454c43",slug:"recent-advances-in-plant-in-vitro-culture",bookSignature:"Annarita Leva and Laura M. R. Rinaldi",coverURL:"https://cdn.intechopen.com/books/images_new/3568.jpg",editors:[{id:"142145",title:"Dr.",name:"Annarita",middleName:null,surname:"Leva",slug:"annarita-leva",fullName:"Annarita Leva"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter"}}],offset:12,limit:12,total:4805},hotBookTopics:{hotBooks:[],offset:0,limit:12,total:null},publish:{},publishingProposal:{success:null,errors:{}},books:{featuredBooks:[{type:"book",id:"7827",title:"Interpersonal Relationships",subtitle:null,isOpenForSubmission:!1,hash:"ebf41f4d17c75010eb3294cc8cac3d47",slug:"interpersonal-relationships",bookSignature:"Martha Peaslee Levine",coverURL:"https://cdn.intechopen.com/books/images_new/7827.jpg",publishedDate:"July 27th 2022",numberOfDownloads:7107,editors:[{id:"186919",title:"Dr.",name:"Martha",middleName:null,surname:"Peaslee Levine",slug:"martha-peaslee-levine",fullName:"Martha Peaslee Levine"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter"}},{type:"book",id:"10808",title:"Current Concepts in Dental Implantology",subtitle:"From Science to Clinical Research",isOpenForSubmission:!1,hash:"4af8830e463f89c57515c2da2b9777b0",slug:"current-concepts-in-dental-implantology-from-science-to-clinical-research",bookSignature:"Dragana Gabrić and Marko Vuletić",coverURL:"https://cdn.intechopen.com/books/images_new/10808.jpg",publishedDate:"July 27th 2022",numberOfDownloads:1955,editors:[{id:"26946",title:"Prof.",name:"Dragana",middleName:null,surname:"Gabrić",slug:"dragana-gabric",fullName:"Dragana Gabrić"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter"}},{type:"book",id:"10908",title:"Advances in Decision Making",subtitle:null,isOpenForSubmission:!1,hash:"126486f7f91e18e2e3539a32c38be7b1",slug:"advances-in-decision-making",bookSignature:"Fausto Pedro García Márquez",coverURL:"https://cdn.intechopen.com/books/images_new/10908.jpg",publishedDate:"July 27th 2022",numberOfDownloads:1452,editors:[{id:"22844",title:"Prof.",name:"Fausto Pedro",middleName:null,surname:"García Márquez",slug:"fausto-pedro-garcia-marquez",fullName:"Fausto Pedro García Márquez"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter"}},{type:"book",id:"10796",title:"Extracellular Vesicles",subtitle:"Role in Diseases, Pathogenesis and Therapy",isOpenForSubmission:!1,hash:"eb5407fcf93baff7bca3fae5640153a2",slug:"extracellular-vesicles-role-in-diseases-pathogenesis-and-therapy",bookSignature:"Manash K. Paul",coverURL:"https://cdn.intechopen.com/books/images_new/10796.jpg",publishedDate:"July 20th 2022",numberOfDownloads:2289,editors:[{id:"319365",title:"Assistant Prof.",name:"Manash K.",middleName:null,surname:"Paul",slug:"manash-k.-paul",fullName:"Manash K. Paul"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter"}},{type:"book",id:"11263",title:"Supply Chain",subtitle:"Recent Advances and New Perspectives in the Industry 4.0 Era",isOpenForSubmission:!1,hash:"aab634c9c1f9a692c1e9881d18e9c9b7",slug:"supply-chain-recent-advances-and-new-perspectives-in-the-industry-4-0-era",bookSignature:"Tamás Bányai, Ágota Bányai and Ireneusz Kaczmar",coverURL:"https://cdn.intechopen.com/books/images_new/11263.jpg",publishedDate:"July 27th 2022",numberOfDownloads:888,editors:[{id:"201248",title:"Dr.",name:"Tamás",middleName:null,surname:"Bányai",slug:"tamas-banyai",fullName:"Tamás Bányai"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter"}},{type:"book",id:"10739",title:"Global Decline of Insects",subtitle:null,isOpenForSubmission:!1,hash:"543783652b9092962a8fa4bed38eeb17",slug:"global-decline-of-insects",bookSignature:"Hamadttu Abdel Farag El-Shafie",coverURL:"https://cdn.intechopen.com/books/images_new/10739.jpg",publishedDate:"July 20th 2022",numberOfDownloads:1566,editors:[{id:"192142",title:"Dr.",name:"Hamadttu",middleName:null,surname:"Abdel Farag El-Shafie",slug:"hamadttu-abdel-farag-el-shafie",fullName:"Hamadttu Abdel Farag El-Shafie"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter"}},{type:"book",id:"10911",title:"Higher Education",subtitle:"New Approaches to Accreditation, Digitalization, and Globalization in the Age of Covid",isOpenForSubmission:!1,hash:"223a02337498e535e967174c1f648fbc",slug:"higher-education-new-approaches-to-accreditation-digitalization-and-globalization-in-the-age-of-covid",bookSignature:"Lee Waller and Sharon Waller",coverURL:"https://cdn.intechopen.com/books/images_new/10911.jpg",publishedDate:"July 13th 2022",numberOfDownloads:2054,editors:[{id:"263301",title:"Dr.",name:"Lee",middleName:null,surname:"Waller",slug:"lee-waller",fullName:"Lee Waller"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter"}},{type:"book",id:"10669",title:"Corrosion",subtitle:"Fundamentals and Protection Mechanisms",isOpenForSubmission:!1,hash:"4a76d54f8a40fc2e7002a8d13fd617c1",slug:"corrosion-fundamentals-and-protection-mechanisms",bookSignature:"Fahmina Zafar, Anujit Ghosal and Eram Sharmin",coverURL:"https://cdn.intechopen.com/books/images_new/10669.jpg",publishedDate:"July 27th 2022",numberOfDownloads:780,editors:[{id:"89672",title:"Dr.",name:"Fahmina",middleName:null,surname:"Zafar",slug:"fahmina-zafar",fullName:"Fahmina Zafar"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter"}},{type:"book",id:"95",title:"Applications and Experiences of Quality Control",subtitle:null,isOpenForSubmission:!1,hash:"4bcb22b1eee68210a977a97d5a0f363a",slug:"applications-and-experiences-of-quality-control",bookSignature:"Ognyan Ivanov",coverURL:"https://cdn.intechopen.com/books/images_new/95.jpg",publishedDate:"April 26th 2011",numberOfDownloads:318480,editors:[{id:"22230",title:"Prof.",name:"Ognyan",middleName:null,surname:"Ivanov",slug:"ognyan-ivanov",fullName:"Ognyan Ivanov"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter"}},{type:"book",id:"2160",title:"MATLAB",subtitle:"A Fundamental Tool for Scientific Computing and Engineering Applications - Volume 1",isOpenForSubmission:!1,hash:"dd9c658341fbd264ed4f8d9e6aa8ca29",slug:"matlab-a-fundamental-tool-for-scientific-computing-and-engineering-applications-volume-1",bookSignature:"Vasilios N. Katsikis",coverURL:"https://cdn.intechopen.com/books/images_new/2160.jpg",publishedDate:"September 26th 2012",numberOfDownloads:271760,editors:[{id:"12289",title:"Prof.",name:"Vasilios",middleName:"N.",surname:"Katsikis",slug:"vasilios-katsikis",fullName:"Vasilios Katsikis"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter"}}],latestBooks:[{type:"book",id:"10808",title:"Current Concepts in Dental Implantology",subtitle:"From Science to Clinical Research",isOpenForSubmission:!1,hash:"4af8830e463f89c57515c2da2b9777b0",slug:"current-concepts-in-dental-implantology-from-science-to-clinical-research",bookSignature:"Dragana Gabrić and Marko Vuletić",coverURL:"https://cdn.intechopen.com/books/images_new/10808.jpg",editedByType:"Edited by",publishedDate:"July 27th 2022",editors:[{id:"26946",title:"Prof.",name:"Dragana",middleName:null,surname:"Gabrić",slug:"dragana-gabric",fullName:"Dragana Gabrić"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter",authoredCaption:"Edited by"}},{type:"book",id:"11328",title:"Botulinum Toxin",subtitle:"Recent Topics and Applications",isOpenForSubmission:!1,hash:"7dd05a316001cef143e209eda51387a7",slug:"botulinum-toxin-recent-topics-and-applications",bookSignature:"Suna Sabuncuoglu",coverURL:"https://cdn.intechopen.com/books/images_new/11328.jpg",editedByType:"Edited by",publishedDate:"July 27th 2022",editors:[{id:"270856",title:"Associate Prof.",name:"Suna",middleName:null,surname:"Sabuncuoglu",slug:"suna-sabuncuoglu",fullName:"Suna Sabuncuoglu"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter",authoredCaption:"Edited by"}},{type:"book",id:"11085",title:"Polycystic Ovary Syndrome",subtitle:"Functional Investigation and Clinical Application",isOpenForSubmission:!1,hash:"3066dd3ff29e1fac072fd60b08d4d3e7",slug:"polycystic-ovary-syndrome-functional-investigation-and-clinical-application",bookSignature:"Zhengchao Wang",coverURL:"https://cdn.intechopen.com/books/images_new/11085.jpg",editedByType:"Edited by",publishedDate:"July 27th 2022",editors:[{id:"204883",title:"Dr.",name:"Zhengchao",middleName:null,surname:"Wang",slug:"zhengchao-wang",fullName:"Zhengchao Wang"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter",authoredCaption:"Edited by"}},{type:"book",id:"10833",title:"Tumor Angiogenesis and Modulators",subtitle:null,isOpenForSubmission:!1,hash:"f29b575c46128b2da061ef7f9bd1070b",slug:"tumor-angiogenesis-and-modulators",bookSignature:"Ke Xu",coverURL:"https://cdn.intechopen.com/books/images_new/10833.jpg",editedByType:"Edited by",publishedDate:"July 27th 2022",editors:[{id:"59529",title:"Dr.",name:"Ke",middleName:null,surname:"Xu",slug:"ke-xu",fullName:"Ke Xu"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter",authoredCaption:"Edited by"}},{type:"book",id:"11356",title:"Molecular Cloning",subtitle:null,isOpenForSubmission:!1,hash:"671c629dd86e97f0fb467b9e70e92296",slug:"molecular-cloning",bookSignature:"Sadık Dincer, Hatice Aysun Mercimek Takcı and Melis Sumengen Ozdenef",coverURL:"https://cdn.intechopen.com/books/images_new/11356.jpg",editedByType:"Edited by",publishedDate:"July 27th 2022",editors:[{id:"188141",title:"Prof.",name:"Sadik",middleName:null,surname:"Dincer",slug:"sadik-dincer",fullName:"Sadik Dincer"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter",authoredCaption:"Edited by"}},{type:"book",id:"7827",title:"Interpersonal Relationships",subtitle:null,isOpenForSubmission:!1,hash:"ebf41f4d17c75010eb3294cc8cac3d47",slug:"interpersonal-relationships",bookSignature:"Martha Peaslee Levine",coverURL:"https://cdn.intechopen.com/books/images_new/7827.jpg",editedByType:"Edited by",publishedDate:"July 27th 2022",editors:[{id:"186919",title:"Dr.",name:"Martha",middleName:null,surname:"Peaslee Levine",slug:"martha-peaslee-levine",fullName:"Martha Peaslee Levine"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter",authoredCaption:"Edited by"}},{type:"book",id:"10908",title:"Advances in Decision Making",subtitle:null,isOpenForSubmission:!1,hash:"126486f7f91e18e2e3539a32c38be7b1",slug:"advances-in-decision-making",bookSignature:"Fausto Pedro García Márquez",coverURL:"https://cdn.intechopen.com/books/images_new/10908.jpg",editedByType:"Edited by",publishedDate:"July 27th 2022",editors:[{id:"22844",title:"Prof.",name:"Fausto Pedro",middleName:null,surname:"García Márquez",slug:"fausto-pedro-garcia-marquez",fullName:"Fausto Pedro García Márquez"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter",authoredCaption:"Edited by"}},{type:"book",id:"10669",title:"Corrosion",subtitle:"Fundamentals and Protection Mechanisms",isOpenForSubmission:!1,hash:"4a76d54f8a40fc2e7002a8d13fd617c1",slug:"corrosion-fundamentals-and-protection-mechanisms",bookSignature:"Fahmina Zafar, Anujit Ghosal and Eram Sharmin",coverURL:"https://cdn.intechopen.com/books/images_new/10669.jpg",editedByType:"Edited by",publishedDate:"July 27th 2022",editors:[{id:"89672",title:"Dr.",name:"Fahmina",middleName:null,surname:"Zafar",slug:"fahmina-zafar",fullName:"Fahmina Zafar"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter",authoredCaption:"Edited by"}},{type:"book",id:"10677",title:"Advanced Topics of Topology",subtitle:null,isOpenForSubmission:!1,hash:"bf964c52f9e653fac20a7fcab58070e5",slug:"advanced-topics-of-topology",bookSignature:"Francisco Bulnes",coverURL:"https://cdn.intechopen.com/books/images_new/10677.jpg",editedByType:"Edited by",publishedDate:"July 27th 2022",editors:[{id:"92918",title:"Dr.",name:"Francisco",middleName:null,surname:"Bulnes",slug:"francisco-bulnes",fullName:"Francisco Bulnes"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter",authoredCaption:"Edited by"}},{type:"book",id:"11195",title:"Recent Advances in Biometrics",subtitle:null,isOpenForSubmission:!1,hash:"2d32e33e0f499cb5241734bb75dd2a83",slug:"recent-advances-in-biometrics",bookSignature:"Muhammad Sarfraz",coverURL:"https://cdn.intechopen.com/books/images_new/11195.jpg",editedByType:"Edited by",publishedDate:"July 27th 2022",editors:[{id:"215610",title:"Prof.",name:"Muhammad",middleName:null,surname:"Sarfraz",slug:"muhammad-sarfraz",fullName:"Muhammad Sarfraz"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter",authoredCaption:"Edited by"}}]},subject:{topic:{id:"247",title:"Automation",slug:"automation",parent:{id:"22",title:"Robotics",slug:"physical-sciences-engineering-and-technology-robotics"},numberOfBooks:10,numberOfSeries:0,numberOfAuthorsAndEditors:205,numberOfWosCitations:326,numberOfCrossrefCitations:297,numberOfDimensionsCitations:531,videoUrl:null,fallbackUrl:null,description:null},booksByTopicFilter:{topicId:"247",sort:"-publishedDate",limit:12,offset:0},booksByTopicCollection:[{type:"book",id:"9902",title:"Service Robotics",subtitle:null,isOpenForSubmission:!1,hash:"9b42f533ea14906bcd1e07df74b33ac2",slug:"service-robotics",bookSignature:"Volkan Sezer, Sinan Öncü and Pınar Boyraz Baykas",coverURL:"https://cdn.intechopen.com/books/images_new/9902.jpg",editedByType:"Edited by",editors:[{id:"268170",title:"Dr.",name:"Volkan",middleName:null,surname:"Sezer",slug:"volkan-sezer",fullName:"Volkan Sezer"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter",authoredCaption:"Edited by"}},{type:"book",id:"5809",title:"Service Robots",subtitle:null,isOpenForSubmission:!1,hash:"24727d51a5f26cb52694ad979bbbc1f8",slug:"service-robots",bookSignature:"Antonio J. R. Neves",coverURL:"https://cdn.intechopen.com/books/images_new/5809.jpg",editedByType:"Edited by",editors:[{id:"1177",title:"Prof.",name:"António",middleName:"J. R.",surname:"José Ribeiro Neves",slug:"antonio-jose-ribeiro-neves",fullName:"António José Ribeiro Neves"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter",authoredCaption:"Edited by"}},{type:"book",id:"5798",title:"Surgical Robotics",subtitle:null,isOpenForSubmission:!1,hash:"0b5965ad361c21e8be05cdd6cce1293a",slug:"surgical-robotics",bookSignature:"Serdar Küçük",coverURL:"https://cdn.intechopen.com/books/images_new/5798.jpg",editedByType:"Edited by",editors:[{id:"5424",title:"Dr.",name:"Serdar",middleName:null,surname:"Küçük",slug:"serdar-kucuk",fullName:"Serdar Küçük"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter",authoredCaption:"Edited by"}},{type:"book",id:"889",title:"Robotic Systems",subtitle:"Applications, Control and Programming",isOpenForSubmission:!1,hash:"e560d53a4116a307638d95c63c1a78a3",slug:"robotic-systems-applications-control-and-programming",bookSignature:"Ashish Dutta",coverURL:"https://cdn.intechopen.com/books/images_new/889.jpg",editedByType:"Edited by",editors:[{id:"80372",title:"Dr.",name:"Ashish",middleName:null,surname:"Dutta",slug:"ashish-dutta",fullName:"Ashish Dutta"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter",authoredCaption:"Edited by"}},{type:"book",id:"152",title:"Robot Arms",subtitle:null,isOpenForSubmission:!1,hash:"ad134b214c187871a4740c54c479eccb",slug:"robot-arms",bookSignature:"Satoru Goto",coverURL:"https://cdn.intechopen.com/books/images_new/152.jpg",editedByType:"Edited by",editors:[{id:"6232",title:"Prof.",name:"Satoru",middleName:null,surname:"Goto",slug:"satoru-goto",fullName:"Satoru Goto"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter",authoredCaption:"Edited by"}},{type:"book",id:"3593",title:"Remote and Telerobotics",subtitle:null,isOpenForSubmission:!1,hash:"06ddc7871a0815453ac7c5a7463c9f87",slug:"remote-and-telerobotics",bookSignature:"Nicolas Mollet",coverURL:"https://cdn.intechopen.com/books/images_new/3593.jpg",editedByType:"Edited by",editors:[{id:"6147",title:"Dr.",name:"Nicolas",middleName:null,surname:"Mollet",slug:"nicolas-mollet",fullName:"Nicolas Mollet"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter",authoredCaption:"Edited by"}},{type:"book",id:"3694",title:"New Developments in Robotics Automation and Control",subtitle:null,isOpenForSubmission:!1,hash:null,slug:"new_developments_in_robotics_automation_and_control",bookSignature:"Aleksandar Lazinica",coverURL:"https://cdn.intechopen.com/books/images_new/3694.jpg",editedByType:"Edited by",editors:[{id:"12392",title:"Mr.",name:"Alex",middleName:null,surname:"Lazinica",slug:"alex-lazinica",fullName:"Alex Lazinica"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter",authoredCaption:"Edited by"}},{type:"book",id:"3692",title:"Frontiers in Robotics, Automation and Control",subtitle:null,isOpenForSubmission:!1,hash:null,slug:"frontiers_in_robotics_automation_and_control",bookSignature:"Alexander Zemliak",coverURL:"https://cdn.intechopen.com/books/images_new/3692.jpg",editedByType:"Edited by",editors:[{id:"3914",title:"Prof.",name:"Alexander",middleName:null,surname:"Zemliak",slug:"alexander-zemliak",fullName:"Alexander Zemliak"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter",authoredCaption:"Edited by"}},{type:"book",id:"3690",title:"Robotics and Automation in Construction",subtitle:null,isOpenForSubmission:!1,hash:null,slug:"robotics_and_automation_in_construction",bookSignature:"Carlos Balaguer and Mohamed Abderrahim",coverURL:"https://cdn.intechopen.com/books/images_new/3690.jpg",editedByType:"Edited by",editors:[{id:"81514",title:"Dr.",name:"Carlos",middleName:null,surname:"Balaguer",slug:"carlos-balaguer",fullName:"Carlos Balaguer"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter",authoredCaption:"Edited by"}},{type:"book",id:"3607",title:"Automation and Robotics",subtitle:null,isOpenForSubmission:!1,hash:null,slug:"automation_and_robotics",bookSignature:"Juan Manuel Ramos Arreguin",coverURL:"https://cdn.intechopen.com/books/images_new/3607.jpg",editedByType:"Edited by",editors:[{id:"6112",title:"Dr.",name:"Juan-Manuel",middleName:null,surname:"Ramos-Arreguin",slug:"juan-manuel-ramos-arreguin",fullName:"Juan-Manuel Ramos-Arreguin"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null,productType:{id:"1",chapterContentType:"chapter",authoredCaption:"Edited by"}}],booksByTopicTotal:10,seriesByTopicCollection:[],seriesByTopicTotal:0,mostCitedChapters:[{id:"56199",doi:"10.5772/intechopen.69874",title:"Robots in Agriculture: State of Art and Practical Experiences",slug:"robots-in-agriculture-state-of-art-and-practical-experiences",totalDownloads:3426,totalCrossrefCites:39,totalDimensionsCites:60,abstract:"The presence of robots in agriculture has grown significantly in recent years, overcoming some of the challenges and complications of this field. This chapter aims to collect a complete and recent state of the art about the application of robots in agriculture. The work addresses this topic from two perspectives. On the one hand, it involves the disciplines that lead the automation of agriculture, such as precision agriculture and greenhouse farming, and collects the proposals for automatizing tasks like planting and harvesting, environmental monitoring and crop inspection and treatment. On the other hand, it compiles and analyses the robots that are proposed to accomplish these tasks: e.g. manipulators, ground vehicles and aerial robots. Additionally, the chapter reports with more detail some practical experiences about the application of robot teams to crop inspection and treatment in outdoor agriculture, as well as to environmental monitoring in greenhouse farming.",book:{id:"5809",slug:"service-robots",title:"Service Robots",fullTitle:"Service Robots"},signatures:"Juan Jesús Roldán, Jaime del Cerro, David Garzón‐Ramos, Pablo\nGarcia‐Aunon, Mario Garzón, Jorge de León and Antonio Barrientos",authors:[{id:"130776",title:"Prof.",name:"Antonio",middleName:null,surname:"Barrientos Cruz",slug:"antonio-barrientos-cruz",fullName:"Antonio Barrientos Cruz"},{id:"162360",title:"Dr.",name:"Jaime",middleName:null,surname:"Del Cerro",slug:"jaime-del-cerro",fullName:"Jaime Del Cerro"},{id:"199008",title:"M.Sc.",name:"Juan Jesús",middleName:null,surname:"Roldán",slug:"juan-jesus-roldan",fullName:"Juan Jesús Roldán"},{id:"199515",title:"MSc.",name:"Mario",middleName:null,surname:"Garzón",slug:"mario-garzon",fullName:"Mario Garzón"},{id:"199517",title:"MSc.",name:"David",middleName:null,surname:"Garzón",slug:"david-garzon",fullName:"David Garzón"},{id:"199518",title:"MSc.",name:"Jorge",middleName:null,surname:"De León",slug:"jorge-de-leon",fullName:"Jorge De León"},{id:"199519",title:"MSc.",name:"Pablo",middleName:null,surname:"Garcia-Aunon",slug:"pablo-garcia-aunon",fullName:"Pablo Garcia-Aunon"}]},{id:"5555",doi:"10.5772/5865",title:"Trends in Robotics and Automation in Construction",slug:"trends_in_robotics_and_automation_in_construction",totalDownloads:18850,totalCrossrefCites:22,totalDimensionsCites:46,abstract:null,book:{id:"3690",slug:"robotics_and_automation_in_construction",title:"Robotics and Automation in Construction",fullTitle:"Robotics and Automation in Construction"},signatures:"Carlos Balaguer and Mohamed Abderrahim",authors:null},{id:"27402",doi:"10.5772/25756",title:"Novel Assistive Robot for Self-Feeding",slug:"novel-assistive-robot-for-self-feeding",totalDownloads:6301,totalCrossrefCites:17,totalDimensionsCites:24,abstract:null,book:{id:"889",slug:"robotic-systems-applications-control-and-programming",title:"Robotic Systems",fullTitle:"Robotic Systems - Applications, Control and Programming"},signatures:"Won-Kyung Song and Jongbae Kim",authors:[{id:"64432",title:"Dr.",name:"Won-Kyung",middleName:null,surname:"Song",slug:"won-kyung-song",fullName:"Won-Kyung Song"},{id:"72153",title:"Dr.",name:"Jongbae",middleName:null,surname:"Kim",slug:"jongbae-kim",fullName:"Jongbae Kim"}]},{id:"5692",doi:"10.5772/6332",title:"Motivation in Embodied Intelligence",slug:"motivation_in_embodied_intelligence",totalDownloads:2514,totalCrossrefCites:1,totalDimensionsCites:20,abstract:null,book:{id:"3692",slug:"frontiers_in_robotics_automation_and_control",title:"Frontiers in Robotics, Automation and Control",fullTitle:"Frontiers in Robotics, Automation and Control"},signatures:"Janusz A. Starzyk",authors:null},{id:"27422",doi:"10.5772/25896",title:"Robotic Software Systems: From Code-Driven to Model-Driven Software Development",slug:"robotic-software-systems-from-code-driven-to-model-driven-software-development",totalDownloads:3899,totalCrossrefCites:18,totalDimensionsCites:20,abstract:null,book:{id:"889",slug:"robotic-systems-applications-control-and-programming",title:"Robotic Systems",fullTitle:"Robotic Systems - Applications, Control and Programming"},signatures:"Christian Schlegel, Andreas Steck and Alex Lotz",authors:[{id:"64903",title:"Prof.",name:"Christian",middleName:null,surname:"Schlegel",slug:"christian-schlegel",fullName:"Christian Schlegel"},{id:"150649",title:"Dr.",name:"Andreas",middleName:null,surname:"Steck",slug:"andreas-steck",fullName:"Andreas Steck"},{id:"150650",title:"Dr.",name:"Alex",middleName:null,surname:"Lotz",slug:"alex-lotz",fullName:"Alex Lotz"}]}],mostDownloadedChaptersLast30Days:[{id:"15855",title:"Kinematics of AdeptThree Robot Arm",slug:"kinematics-of-adeptthree-robot-arm",totalDownloads:14668,totalCrossrefCites:1,totalDimensionsCites:2,abstract:null,book:{id:"152",slug:"robot-arms",title:"Robot Arms",fullTitle:"Robot Arms"},signatures:"Adelhard Beni Rehiara",authors:[{id:"29287",title:"Dr.",name:"Adelhard",middleName:"Beni",surname:"Rehiara",slug:"adelhard-rehiara",fullName:"Adelhard Rehiara"}]},{id:"73486",title:"Application of Artificial Intelligence (AI) in Prosthetic and Orthotic Rehabilitation",slug:"application-of-artificial-intelligence-ai-in-prosthetic-and-orthotic-rehabilitation",totalDownloads:1332,totalCrossrefCites:2,totalDimensionsCites:3,abstract:"Technological integration of Artificial Intelligence (AI) and machine learning in the Prosthetic and Orthotic industry and in the field of assistive technology has become boon for the Persons with Disabilities. The concept of neural network has been used by the leading manufacturers of rehabilitation aids for simulating various anatomical and biomechanical functions of the lost parts of the human body. The involvement of human interaction with various agents’ i.e. electronic circuitry, software, robotics, etc. has made a revolutionary impact in the rehabilitation field to develop devices like Bionic leg, mind or thought control prosthesis and exoskeletons. Application of Artificial Intelligence and robotics technology has a huge impact in achieving independent mobility and enhances the quality of life in Persons with Disabilities (PwDs).",book:{id:"9902",slug:"service-robotics",title:"Service Robotics",fullTitle:"Service Robotics"},signatures:"Smita Nayak and Rajesh Kumar Das",authors:[{id:"204704",title:"Mrs.",name:"Smita",middleName:null,surname:"Nayak",slug:"smita-nayak",fullName:"Smita Nayak"},{id:"321308",title:"Dr.",name:"Rajesh",middleName:null,surname:"Das",slug:"rajesh-das",fullName:"Rajesh Das"}]},{id:"72250",title:"Manipulating Complex Robot Behavior for Autonomous and Continuous Operations",slug:"manipulating-complex-robot-behavior-for-autonomous-and-continuous-operations",totalDownloads:666,totalCrossrefCites:1,totalDimensionsCites:1,abstract:"Service robot control faces challenges of dynamic environment and complex behavior, which mainly include eye-hand coordination and continuous operations. However, current programming scheme lacks the ability of managing such tasks. In this chapter, we propose a methodology of software development paradigm for the continuous operation of the dual-arm picking robot. First, a dual-arm robot is built for picking with the purpose of selectively harvesting in plant factory. Second, a hierarchical control software is framed by means of “Sense Plan Act” (SPA) paradigm. Third, based on the previous design, programming concept, and the ROS system, the sub-node programming of visual module, motion module, eye-hand coordination module, and task planning module are implemented with a state machine-based architecture. The experimental results show that if total number of targets within the visual field is not more than three, the average picking time is less than 35 s. The fluency of concurrent task management shows the feasibility of manipulating complex robot behavior for autonomous and continuous operations with the finite state machine model and task level architecture.",book:{id:"9902",slug:"service-robotics",title:"Service Robotics",fullTitle:"Service Robotics"},signatures:"Chengliang Liu, Liang Gong and Wei Zhang",authors:[{id:"135507",title:"Prof.",name:"Chengliang",middleName:null,surname:"Liu",slug:"chengliang-liu",fullName:"Chengliang Liu"},{id:"183226",title:"Dr.",name:"Liang",middleName:null,surname:"Gong",slug:"liang-gong",fullName:"Liang Gong"},{id:"318241",title:"Dr.",name:"Wei",middleName:null,surname:"Zhang",slug:"wei-zhang",fullName:"Wei Zhang"}]},{id:"5556",title:"Construction Automation and Robotics",slug:"construction_automation_and_robotics",totalDownloads:10486,totalCrossrefCites:10,totalDimensionsCites:18,abstract:null,book:{id:"3690",slug:"robotics_and_automation_in_construction",title:"Robotics and Automation in Construction",fullTitle:"Robotics and Automation in Construction"},signatures:"Thomas Bock",authors:null},{id:"5555",title:"Trends in Robotics and Automation in Construction",slug:"trends_in_robotics_and_automation_in_construction",totalDownloads:18855,totalCrossrefCites:22,totalDimensionsCites:46,abstract:null,book:{id:"3690",slug:"robotics_and_automation_in_construction",title:"Robotics and Automation in Construction",fullTitle:"Robotics and Automation in Construction"},signatures:"Carlos Balaguer and Mohamed Abderrahim",authors:null}],onlineFirstChaptersFilter:{topicId:"247",limit:6,offset:0},onlineFirstChaptersCollection:[],onlineFirstChaptersTotal:0},preDownload:{success:null,errors:{}},subscriptionForm:{success:null,errors:{}},aboutIntechopen:{},privacyPolicy:{},peerReviewing:{},howOpenAccessPublishingWithIntechopenWorks:{},sponsorshipBooks:{sponsorshipBooks:[],offset:8,limit:8,total:0},allSeries:{pteSeriesList:[{id:"14",title:"Artificial Intelligence",numberOfPublishedBooks:9,numberOfPublishedChapters:90,numberOfOpenTopics:6,numberOfUpcomingTopics:0,issn:"2633-1403",doi:"10.5772/intechopen.79920",isOpenForSubmission:!0},{id:"7",title:"Biomedical Engineering",numberOfPublishedBooks:12,numberOfPublishedChapters:107,numberOfOpenTopics:3,numberOfUpcomingTopics:0,issn:"2631-5343",doi:"10.5772/intechopen.71985",isOpenForSubmission:!0}],lsSeriesList:[{id:"11",title:"Biochemistry",numberOfPublishedBooks:33,numberOfPublishedChapters:330,numberOfOpenTopics:4,numberOfUpcomingTopics:0,issn:"2632-0983",doi:"10.5772/intechopen.72877",isOpenForSubmission:!0},{id:"25",title:"Environmental Sciences",numberOfPublishedBooks:1,numberOfPublishedChapters:19,numberOfOpenTopics:4,numberOfUpcomingTopics:0,issn:"2754-6713",doi:"10.5772/intechopen.100362",isOpenForSubmission:!0},{id:"10",title:"Physiology",numberOfPublishedBooks:14,numberOfPublishedChapters:145,numberOfOpenTopics:4,numberOfUpcomingTopics:0,issn:"2631-8261",doi:"10.5772/intechopen.72796",isOpenForSubmission:!0}],hsSeriesList:[{id:"3",title:"Dentistry",numberOfPublishedBooks:9,numberOfPublishedChapters:139,numberOfOpenTopics:2,numberOfUpcomingTopics:0,issn:"2631-6218",doi:"10.5772/intechopen.71199",isOpenForSubmission:!0},{id:"6",title:"Infectious Diseases",numberOfPublishedBooks:13,numberOfPublishedChapters:122,numberOfOpenTopics:4,numberOfUpcomingTopics:0,issn:"2631-6188",doi:"10.5772/intechopen.71852",isOpenForSubmission:!0},{id:"13",title:"Veterinary Medicine and Science",numberOfPublishedBooks:11,numberOfPublishedChapters:112,numberOfOpenTopics:3,numberOfUpcomingTopics:0,issn:"2632-0517",doi:"10.5772/intechopen.73681",isOpenForSubmission:!0}],sshSeriesList:[{id:"22",title:"Business, Management and Economics",numberOfPublishedBooks:1,numberOfPublishedChapters:21,numberOfOpenTopics:3,numberOfUpcomingTopics:0,issn:"2753-894X",doi:"10.5772/intechopen.100359",isOpenForSubmission:!0},{id:"23",title:"Education and Human Development",numberOfPublishedBooks:0,numberOfPublishedChapters:10,numberOfOpenTopics:1,numberOfUpcomingTopics:1,issn:null,doi:"10.5772/intechopen.100360",isOpenForSubmission:!0},{id:"24",title:"Sustainable Development",numberOfPublishedBooks:1,numberOfPublishedChapters:19,numberOfOpenTopics:5,numberOfUpcomingTopics:0,issn:"2753-6580",doi:"10.5772/intechopen.100361",isOpenForSubmission:!0}],testimonialsList:[{id:"6",text:"It is great to work with the IntechOpen to produce a worthwhile collection of research that also becomes a great educational resource and guide for future research endeavors.",author:{id:"259298",name:"Edward",surname:"Narayan",institutionString:null,profilePictureURL:"https://mts.intechopen.com/storage/users/259298/images/system/259298.jpeg",slug:"edward-narayan",institution:{id:"3",name:"University of Queensland",country:{id:null,name:"Australia"}}}},{id:"13",text:"The collaboration with and support of the technical staff of IntechOpen is fantastic. The whole process of submitting an article and editing of the submitted article goes extremely smooth and fast, the number of reads and downloads of chapters is high, and the contributions are also frequently cited.",author:{id:"55578",name:"Antonio",surname:"Jurado-Navas",institutionString:null,profilePictureURL:"https://s3.us-east-1.amazonaws.com/intech-files/0030O00002bRisIQAS/Profile_Picture_1626166543950",slug:"antonio-jurado-navas",institution:{id:"720",name:"University of Malaga",country:{id:null,name:"Spain"}}}}]},series:{item:{id:"14",title:"Artificial Intelligence",doi:"10.5772/intechopen.79920",issn:"2633-1403",scope:"Artificial Intelligence (AI) is a rapidly developing multidisciplinary research area that aims to solve increasingly complex problems. In today's highly integrated world, AI promises to become a robust and powerful means for obtaining solutions to previously unsolvable problems. This Series is intended for researchers and students alike interested in this fascinating field and its many applications.",coverUrl:"https://cdn.intechopen.com/series/covers/14.jpg",latestPublicationDate:"July 5th, 2022",hasOnlineFirst:!0,numberOfPublishedBooks:9,editor:{id:"218714",title:"Prof.",name:"Andries",middleName:null,surname:"Engelbrecht",slug:"andries-engelbrecht",fullName:"Andries Engelbrecht",profilePictureURL:"https://s3.us-east-1.amazonaws.com/intech-files/0030O00002bRNR8QAO/Profile_Picture_1622640468300",biography:"Andries Engelbrecht received the Masters and PhD degrees in Computer Science from the University of Stellenbosch, South Africa, in 1994 and 1999 respectively. He is currently appointed as the Voigt Chair in Data Science in the Department of Industrial Engineering, with a joint appointment as Professor in the Computer Science Division, Stellenbosch University. Prior to his appointment at Stellenbosch University, he has been at the University of Pretoria, Department of Computer Science (1998-2018), where he was appointed as South Africa Research Chair in Artifical Intelligence (2007-2018), the head of the Department of Computer Science (2008-2017), and Director of the Institute for Big Data and Data Science (2017-2018). In addition to a number of research articles, he has written two books, Computational Intelligence: An Introduction and Fundamentals of Computational Swarm Intelligence.",institutionString:null,institution:{name:"Stellenbosch University",institutionURL:null,country:{name:"South Africa"}}},editorTwo:null,editorThree:null},subseries:{paginationCount:6,paginationItems:[{id:"22",title:"Applied Intelligence",coverUrl:"https://cdn.intechopen.com/series_topics/covers/22.jpg",isOpenForSubmission:!0,editor:{id:"27170",title:"Prof.",name:"Carlos",middleName:"M.",surname:"Travieso-Gonzalez",slug:"carlos-travieso-gonzalez",fullName:"Carlos Travieso-Gonzalez",profilePictureURL:"https://mts.intechopen.com/storage/users/27170/images/system/27170.jpeg",biography:"Carlos M. Travieso-González received his MSc degree in Telecommunication Engineering at Polytechnic University of Catalonia (UPC), Spain in 1997, and his Ph.D. degree in 2002 at the University of Las Palmas de Gran Canaria (ULPGC-Spain). He is a full professor of signal processing and pattern recognition and is head of the Signals and Communications Department at ULPGC, teaching from 2001 on subjects on signal processing and learning theory. His research lines are biometrics, biomedical signals and images, data mining, classification system, signal and image processing, machine learning, and environmental intelligence. He has researched in 52 international and Spanish research projects, some of them as head researcher. He is co-author of 4 books, co-editor of 27 proceedings books, guest editor for 8 JCR-ISI international journals, and up to 24 book chapters. He has over 450 papers published in international journals and conferences (81 of them indexed on JCR – ISI - Web of Science). He has published seven patents in the Spanish Patent and Trademark Office. He has been a supervisor on 8 Ph.D. theses (11 more are under supervision), and 130 master theses. He is the founder of The IEEE IWOBI conference series and the president of its Steering Committee, as well as the founder of both the InnoEducaTIC and APPIS conference series. He is an evaluator of project proposals for the European Union (H2020), Medical Research Council (MRC, UK), Spanish Government (ANECA, Spain), Research National Agency (ANR, France), DAAD (Germany), Argentinian Government, and the Colombian Institutions. He has been a reviewer in different indexed international journals (<70) and conferences (<250) since 2001. He has been a member of the IASTED Technical Committee on Image Processing from 2007 and a member of the IASTED Technical Committee on Artificial Intelligence and Expert Systems from 2011. \n\nHe has held the general chair position for the following: ACM-APPIS (2020, 2021), IEEE-IWOBI (2019, 2020 and 2020), A PPIS (2018, 2019), IEEE-IWOBI (2014, 2015, 2017, 2018), InnoEducaTIC (2014, 2017), IEEE-INES (2013), NoLISP (2011), JRBP (2012), and IEEE-ICCST (2005)\n\nHe is an associate editor of the Computational Intelligence and Neuroscience Journal (Hindawi – Q2 JCR-ISI). He was vice dean from 2004 to 2010 in the Higher Technical School of Telecommunication Engineers at ULPGC and the vice dean of Graduate and Postgraduate Studies from March 2013 to November 2017. He won the “Catedra Telefonica” Awards in Modality of Knowledge Transfer, 2017, 2018, and 2019 editions, and awards in Modality of COVID Research in 2020.\n\nPublic References:\nResearcher ID http://www.researcherid.com/rid/N-5967-2014\nORCID https://orcid.org/0000-0002-4621-2768 \nScopus Author ID https://www.scopus.com/authid/detail.uri?authorId=6602376272\nScholar Google https://scholar.google.es/citations?user=G1ks9nIAAAAJ&hl=en \nResearchGate https://www.researchgate.net/profile/Carlos_Travieso",institutionString:null,institution:{name:"University of Las Palmas de Gran Canaria",institutionURL:null,country:{name:"Spain"}}},editorTwo:null,editorThree:null},{id:"23",title:"Computational Neuroscience",coverUrl:"https://cdn.intechopen.com/series_topics/covers/23.jpg",isOpenForSubmission:!0,editor:{id:"14004",title:"Dr.",name:"Magnus",middleName:null,surname:"Johnsson",slug:"magnus-johnsson",fullName:"Magnus Johnsson",profilePictureURL:"https://mts.intechopen.com/storage/users/14004/images/system/14004.png",biography:"Dr Magnus Johnsson is a cross-disciplinary scientist, lecturer, scientific editor and AI/machine learning consultant from Sweden. \n\nHe is currently at Malmö University in Sweden, but also held positions at Lund University in Sweden and at Moscow Engineering Physics Institute. \nHe holds editorial positions at several international scientific journals and has served as a scientific editor for books and special journal issues. \nHis research interests are wide and include, but are not limited to, autonomous systems, computer modeling, artificial neural networks, artificial intelligence, cognitive neuroscience, cognitive robotics, cognitive architectures, cognitive aids and the philosophy of mind. \n\nDr. Johnsson has experience from working in the industry and he has a keen interest in the application of neural networks and artificial intelligence to fields like industry, finance, and medicine. \n\nWeb page: www.magnusjohnsson.se",institutionString:null,institution:{name:"Malmö University",institutionURL:null,country:{name:"Sweden"}}},editorTwo:null,editorThree:null},{id:"24",title:"Computer Vision",coverUrl:"https://cdn.intechopen.com/series_topics/covers/24.jpg",isOpenForSubmission:!0,editor:{id:"294154",title:"Prof.",name:"George",middleName:null,surname:"Papakostas",slug:"george-papakostas",fullName:"George Papakostas",profilePictureURL:"https://s3.us-east-1.amazonaws.com/intech-files/0030O00002hYaGbQAK/Profile_Picture_1624519712088",biography:"George A. Papakostas has received a diploma in Electrical and Computer Engineering in 1999 and the M.Sc. and Ph.D. degrees in Electrical and Computer Engineering in 2002 and 2007, respectively, from the Democritus University of Thrace (DUTH), Greece. Dr. Papakostas serves as a Tenured Full Professor at the Department of Computer Science, International Hellenic University, Greece. Dr. Papakostas has 10 years of experience in large-scale systems design as a senior software engineer and technical manager, and 20 years of research experience in the field of Artificial Intelligence. Currently, he is the Head of the “Visual Computing” division of HUman-MAchines INteraction Laboratory (HUMAIN-Lab) and the Director of the MPhil program “Advanced Technologies in Informatics and Computers” hosted by the Department of Computer Science, International Hellenic University. He has (co)authored more than 150 publications in indexed journals, international conferences and book chapters, 1 book (in Greek), 3 edited books, and 5 journal special issues. His publications have more than 2100 citations with h-index 27 (GoogleScholar). His research interests include computer/machine vision, machine learning, pattern recognition, computational intelligence. \nDr. Papakostas served as a reviewer in numerous journals, as a program\ncommittee member in international conferences and he is a member of the IAENG, MIR Labs, EUCogIII, INSTICC and the Technical Chamber of Greece (TEE).",institutionString:null,institution:{name:"International Hellenic University",institutionURL:null,country:{name:"Greece"}}},editorTwo:null,editorThree:null},{id:"25",title:"Evolutionary Computation",coverUrl:"https://cdn.intechopen.com/series_topics/covers/25.jpg",isOpenForSubmission:!0,editor:{id:"136112",title:"Dr.",name:"Sebastian",middleName:null,surname:"Ventura Soto",slug:"sebastian-ventura-soto",fullName:"Sebastian Ventura Soto",profilePictureURL:"https://mts.intechopen.com/storage/users/136112/images/system/136112.png",biography:"Sebastian Ventura is a Spanish researcher, a full professor with the Department of Computer Science and Numerical Analysis, University of Córdoba. Dr Ventura also holds the positions of Affiliated Professor at Virginia Commonwealth University (Richmond, USA) and Distinguished Adjunct Professor at King Abdulaziz University (Jeddah, Saudi Arabia). Additionally, he is deputy director of the Andalusian Research Institute in Data Science and Computational Intelligence (DaSCI) and heads the Knowledge Discovery and Intelligent Systems Research Laboratory. He has published more than ten books and over 300 articles in journals and scientific conferences. Currently, his work has received over 18,000 citations according to Google Scholar, including more than 2200 citations in 2020. In the last five years, he has published more than 60 papers in international journals indexed in the JCR (around 70% of them belonging to first quartile journals) and he has edited some Springer books “Supervised Descriptive Pattern Mining” (2018), “Multiple Instance Learning - Foundations and Algorithms” (2016), and “Pattern Mining with Evolutionary Algorithms” (2016). He has also been involved in more than 20 research projects supported by the Spanish and Andalusian governments and the European Union. He currently belongs to the editorial board of PeerJ Computer Science, Information Fusion and Engineering Applications of Artificial Intelligence journals, being also associate editor of Applied Computational Intelligence and Soft Computing and IEEE Transactions on Cybernetics. Finally, he is editor-in-chief of Progress in Artificial Intelligence. He is a Senior Member of the IEEE Computer, the IEEE Computational Intelligence, and the IEEE Systems, Man, and Cybernetics Societies, and the Association of Computing Machinery (ACM). Finally, his main research interests include data science, computational intelligence, and their applications.",institutionString:null,institution:{name:"University of Córdoba",institutionURL:null,country:{name:"Spain"}}},editorTwo:null,editorThree:null},{id:"26",title:"Machine Learning and Data Mining",coverUrl:"https://cdn.intechopen.com/series_topics/covers/26.jpg",isOpenForSubmission:!0,editor:{id:"24555",title:"Dr.",name:"Marco Antonio",middleName:null,surname:"Aceves Fernandez",slug:"marco-antonio-aceves-fernandez",fullName:"Marco Antonio Aceves Fernandez",profilePictureURL:"https://mts.intechopen.com/storage/users/24555/images/system/24555.jpg",biography:"Dr. Marco Antonio Aceves Fernandez obtained his B.Sc. (Eng.) in Telematics from the Universidad de Colima, Mexico. He obtained both his M.Sc. and Ph.D. from the University of Liverpool, England, in the field of Intelligent Systems. He is a full professor at the Universidad Autonoma de Queretaro, Mexico, and a member of the National System of Researchers (SNI) since 2009. Dr. Aceves Fernandez has published more than 80 research papers as well as a number of book chapters and congress papers. He has contributed in more than 20 funded research projects, both academic and industrial, in the area of artificial intelligence, ranging from environmental, biomedical, automotive, aviation, consumer, and robotics to other applications. He is also a honorary president at the National Association of Embedded Systems (AMESE), a senior member of the IEEE, and a board member of many institutions. His research interests include intelligent and embedded systems.",institutionString:"Universidad Autonoma de Queretaro",institution:{name:"Autonomous University of Queretaro",institutionURL:null,country:{name:"Mexico"}}},editorTwo:null,editorThree:null},{id:"27",title:"Multi-Agent Systems",coverUrl:"https://cdn.intechopen.com/series_topics/covers/27.jpg",isOpenForSubmission:!0,editor:{id:"148497",title:"Dr.",name:"Mehmet",middleName:"Emin",surname:"Aydin",slug:"mehmet-aydin",fullName:"Mehmet Aydin",profilePictureURL:"https://mts.intechopen.com/storage/users/148497/images/system/148497.jpg",biography:"Dr. Mehmet Emin Aydin is a Senior Lecturer with the Department of Computer Science and Creative Technology, the University of the West of England, Bristol, UK. His research interests include swarm intelligence, parallel and distributed metaheuristics, machine learning, intelligent agents and multi-agent systems, resource planning, scheduling and optimization, combinatorial optimization. Dr. Aydin is currently a Fellow of Higher Education Academy, UK, a member of EPSRC College, a senior member of IEEE and a senior member of ACM. In addition to being a member of advisory committees of many international conferences, he is an Editorial Board Member of various peer-reviewed international journals. He has served as guest editor for a number of special issues of peer-reviewed international journals.",institutionString:null,institution:{name:"University of the West of England",institutionURL:null,country:{name:"United Kingdom"}}},editorTwo:null,editorThree:null}]},overviewPageOFChapters:{paginationCount:20,paginationItems:[{id:"82526",title:"Deep Multiagent Reinforcement Learning Methods Addressing the Scalability Challenge",doi:"10.5772/intechopen.105627",signatures:"Theocharis Kravaris and George A. Vouros",slug:"deep-multiagent-reinforcement-learning-methods-addressing-the-scalability-challenge",totalDownloads:19,totalCrossrefCites:0,totalDimensionsCites:0,authors:null,book:{title:"Multi-Agent Technologies and Machine Learning",coverURL:"https://cdn.intechopen.com/books/images_new/11445.jpg",subseries:{id:"27",title:"Multi-Agent Systems"}}},{id:"82196",title:"Multi-Features Assisted Age Invariant Face Recognition and Retrieval Using CNN with Scale Invariant Heat Kernel Signature",doi:"10.5772/intechopen.104944",signatures:"Kamarajugadda Kishore Kumar and Movva Pavani",slug:"multi-features-assisted-age-invariant-face-recognition-and-retrieval-using-cnn-with-scale-invariant-",totalDownloads:14,totalCrossrefCites:0,totalDimensionsCites:0,authors:null,book:{title:"Pattern Recognition - New Insights",coverURL:"https://cdn.intechopen.com/books/images_new/11442.jpg",subseries:{id:"26",title:"Machine Learning and Data Mining"}}},{id:"82063",title:"Evaluating Similarities and Differences between Machine Learning and Traditional Statistical Modeling in Healthcare Analytics",doi:"10.5772/intechopen.105116",signatures:"Michele Bennett, Ewa J. Kleczyk, Karin Hayes and Rajesh Mehta",slug:"evaluating-similarities-and-differences-between-machine-learning-and-traditional-statistical-modelin",totalDownloads:7,totalCrossrefCites:0,totalDimensionsCites:0,authors:null,book:{title:"Machine Learning and Data Mining - Annual Volume 2022",coverURL:"https://cdn.intechopen.com/books/images_new/11422.jpg",subseries:{id:"26",title:"Machine Learning and Data Mining"}}},{id:"81791",title:"Self-Supervised Contrastive Representation Learning in Computer Vision",doi:"10.5772/intechopen.104785",signatures:"Yalin Bastanlar and Semih Orhan",slug:"self-supervised-contrastive-representation-learning-in-computer-vision",totalDownloads:57,totalCrossrefCites:0,totalDimensionsCites:0,authors:null,book:{title:"Pattern Recognition - New Insights",coverURL:"https://cdn.intechopen.com/books/images_new/11442.jpg",subseries:{id:"26",title:"Machine Learning and Data Mining"}}}]},overviewPagePublishedBooks:{paginationCount:9,paginationItems:[{type:"book",id:"7723",title:"Artificial Intelligence",subtitle:"Applications in Medicine and Biology",coverURL:"https://cdn.intechopen.com/books/images_new/7723.jpg",slug:"artificial-intelligence-applications-in-medicine-and-biology",publishedDate:"July 31st 2019",editedByType:"Edited by",bookSignature:"Marco Antonio Aceves-Fernandez",hash:"a3852659e727f95c98c740ed98146011",volumeInSeries:1,fullTitle:"Artificial Intelligence - Applications in Medicine and Biology",editors:[{id:"24555",title:"Dr.",name:"Marco Antonio",middleName:null,surname:"Aceves Fernandez",slug:"marco-antonio-aceves-fernandez",fullName:"Marco Antonio Aceves Fernandez",profilePictureURL:"https://mts.intechopen.com/storage/users/24555/images/system/24555.jpg",biography:"Dr. Marco Antonio Aceves Fernandez obtained his B.Sc. (Eng.) in Telematics from the Universidad de Colima, Mexico. He obtained both his M.Sc. and Ph.D. from the University of Liverpool, England, in the field of Intelligent Systems. He is a full professor at the Universidad Autonoma de Queretaro, Mexico, and a member of the National System of Researchers (SNI) since 2009. Dr. Aceves Fernandez has published more than 80 research papers as well as a number of book chapters and congress papers. He has contributed in more than 20 funded research projects, both academic and industrial, in the area of artificial intelligence, ranging from environmental, biomedical, automotive, aviation, consumer, and robotics to other applications. He is also a honorary president at the National Association of Embedded Systems (AMESE), a senior member of the IEEE, and a board member of many institutions. His research interests include intelligent and embedded systems.",institutionString:"Universidad Autonoma de Queretaro",institution:{name:"Autonomous University of Queretaro",institutionURL:null,country:{name:"Mexico"}}}]},{type:"book",id:"7726",title:"Swarm Intelligence",subtitle:"Recent Advances, New Perspectives and Applications",coverURL:"https://cdn.intechopen.com/books/images_new/7726.jpg",slug:"swarm-intelligence-recent-advances-new-perspectives-and-applications",publishedDate:"December 4th 2019",editedByType:"Edited by",bookSignature:"Javier Del Ser, Esther Villar and Eneko Osaba",hash:"e7ea7e74ce7a7a8e5359629e07c68d31",volumeInSeries:2,fullTitle:"Swarm Intelligence - Recent Advances, New Perspectives and Applications",editors:[{id:"49813",title:"Dr.",name:"Javier",middleName:null,surname:"Del Ser",slug:"javier-del-ser",fullName:"Javier Del Ser",profilePictureURL:"https://mts.intechopen.com/storage/users/49813/images/system/49813.png",biography:"Prof. Dr. Javier Del Ser received his first PhD in Telecommunication Engineering (Cum Laude) from the University of Navarra, Spain, in 2006, and a second PhD in Computational Intelligence (Summa Cum Laude) from the University of Alcala, Spain, in 2013. He is currently a principal researcher in data analytics and optimisation at TECNALIA (Spain), a visiting fellow at the Basque Center for Applied Mathematics (BCAM) and a part-time lecturer at the University of the Basque Country (UPV/EHU). His research interests gravitate on the use of descriptive, prescriptive and predictive algorithms for data mining and optimization in a diverse range of application fields such as Energy, Transport, Telecommunications, Health and Industry, among others. In these fields he has published more than 240 articles, co-supervised 8 Ph.D. theses, edited 6 books, coauthored 7 patents and participated/led more than 40 research projects. He is a Senior Member of the IEEE, and a recipient of the Biscay Talent prize for his academic career.",institutionString:"Tecnalia Research & Innovation",institution:{name:"Tecnalia",institutionURL:null,country:{name:"Spain"}}}]},{type:"book",id:"7656",title:"Fuzzy Logic",subtitle:null,coverURL:"https://cdn.intechopen.com/books/images_new/7656.jpg",slug:"fuzzy-logic",publishedDate:"February 5th 2020",editedByType:"Edited by",bookSignature:"Constantin Volosencu",hash:"54f092d4ffe0abf5e4172a80025019bc",volumeInSeries:3,fullTitle:"Fuzzy Logic",editors:[{id:"1063",title:"Prof.",name:"Constantin",middleName:null,surname:"Volosencu",slug:"constantin-volosencu",fullName:"Constantin Volosencu",profilePictureURL:"https://mts.intechopen.com/storage/users/1063/images/system/1063.png",biography:"Prof. Dr. Constantin Voloşencu graduated as an engineer from\nPolitehnica University of Timișoara, Romania, where he also\nobtained a doctorate degree. He is currently a full professor in\nthe Department of Automation and Applied Informatics at the\nsame university. Dr. Voloşencu is the author of ten books, seven\nbook chapters, and more than 160 papers published in journals\nand conference proceedings. He has also edited twelve books and\nhas twenty-seven patents to his name. He is a manager of research grants, editor in\nchief and member of international journal editorial boards, a former plenary speaker, a member of scientific committees, and chair at international conferences. His\nresearch is in the fields of control systems, control of electric drives, fuzzy control\nsystems, neural network applications, fault detection and diagnosis, sensor network\napplications, monitoring of distributed parameter systems, and power ultrasound\napplications. He has developed automation equipment for machine tools, spooling\nmachines, high-power ultrasound processes, and more.",institutionString:'"Politechnica" University Timişoara',institution:null}]},{type:"book",id:"9963",title:"Advances and Applications in Deep Learning",subtitle:null,coverURL:"https://cdn.intechopen.com/books/images_new/9963.jpg",slug:"advances-and-applications-in-deep-learning",publishedDate:"December 9th 2020",editedByType:"Edited by",bookSignature:"Marco Antonio Aceves-Fernandez",hash:"0d51ba46f22e55cb89140f60d86a071e",volumeInSeries:4,fullTitle:"Advances and Applications in Deep Learning",editors:[{id:"24555",title:"Dr.",name:"Marco Antonio",middleName:null,surname:"Aceves Fernandez",slug:"marco-antonio-aceves-fernandez",fullName:"Marco Antonio Aceves Fernandez",profilePictureURL:"https://mts.intechopen.com/storage/users/24555/images/system/24555.jpg",biography:"Dr. Marco Antonio Aceves Fernandez obtained his B.Sc. (Eng.) in Telematics from the Universidad de Colima, Mexico. He obtained both his M.Sc. and Ph.D. from the University of Liverpool, England, in the field of Intelligent Systems. He is a full professor at the Universidad Autonoma de Queretaro, Mexico, and a member of the National System of Researchers (SNI) since 2009. Dr. Aceves Fernandez has published more than 80 research papers as well as a number of book chapters and congress papers. He has contributed in more than 20 funded research projects, both academic and industrial, in the area of artificial intelligence, ranging from environmental, biomedical, automotive, aviation, consumer, and robotics to other applications. He is also a honorary president at the National Association of Embedded Systems (AMESE), a senior member of the IEEE, and a board member of many institutions. His research interests include intelligent and embedded systems.",institutionString:"Universidad Autonoma de Queretaro",institution:{name:"Autonomous University of Queretaro",institutionURL:null,country:{name:"Mexico"}}}]}]},openForSubmissionBooks:{paginationCount:2,paginationItems:[{id:"12141",title:"Leadership - Advancing Great Leadership Practices and Good Leaders",coverURL:"https://cdn.intechopen.com/books/images_new/12141.jpg",hash:"85f77453916f1d80d80d88ee4fd2f2d1",secondStepPassed:!0,currentStepOfPublishingProcess:3,submissionDeadline:"July 1st 2022",isOpenForSubmission:!0,editors:[{id:"420133",title:"Dr.",name:"Joseph",surname:"Crawford",slug:"joseph-crawford",fullName:"Joseph Crawford"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null},{id:"12139",title:"Global Market and Trade",coverURL:"https://cdn.intechopen.com/books/images_new/12139.jpg",hash:"fa34af07c3a9657fa670404202f8cba5",secondStepPassed:!0,currentStepOfPublishingProcess:3,submissionDeadline:"July 21st 2022",isOpenForSubmission:!0,editors:[{id:"243649",title:"Dr.Ing.",name:"Ireneusz",surname:"Miciuła",slug:"ireneusz-miciula",fullName:"Ireneusz Miciuła"}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null}]},onlineFirstChapters:{paginationCount:19,paginationItems:[{id:"82804",title:"Psychiatric Problems in HIV Care",doi:"10.5772/intechopen.106077",signatures:"Seggane Musisi and Noeline Nakasujja",slug:"psychiatric-problems-in-hiv-care",totalDownloads:1,totalCrossrefCites:0,totalDimensionsCites:0,authors:null,book:{title:"Future Opportunities and Tools for Emerging Challenges for HIV/AIDS Control",coverURL:"https://cdn.intechopen.com/books/images_new/11575.jpg",subseries:{id:"6",title:"Viral Infectious Diseases"}}},{id:"82827",title:"Epidemiology and Control of Schistosomiasis",doi:"10.5772/intechopen.105170",signatures:"Célestin Kyambikwa Bisangamo",slug:"epidemiology-and-control-of-schistosomiasis",totalDownloads:4,totalCrossrefCites:0,totalDimensionsCites:0,authors:null,book:{title:"New Horizons for Schistosomiasis Research",coverURL:"https://cdn.intechopen.com/books/images_new/10829.jpg",subseries:{id:"5",title:"Parasitic Infectious Diseases"}}},{id:"82817",title:"Perspective Chapter: Microfluidic Technologies for On-Site Detection and Quantification of Infectious Diseases - The Experience with SARS-CoV-2/COVID-19",doi:"10.5772/intechopen.105950",signatures:"Andres Escobar and Chang-qing Xu",slug:"perspective-chapter-microfluidic-technologies-for-on-site-detection-and-quantification-of-infectious",totalDownloads:2,totalCrossrefCites:0,totalDimensionsCites:0,authors:null,book:{title:"SARS-CoV-2 Variants - Two Years After",coverURL:"https://cdn.intechopen.com/books/images_new/11573.jpg",subseries:{id:"6",title:"Viral Infectious Diseases"}}},{id:"82667",title:"Perspective Chapter: Analysis of SARS-CoV-2 Indirect Spreading Routes and Possible Countermeasures",doi:"10.5772/intechopen.105914",signatures:"Cesare Saccani, Marco Pellegrini and Alessandro Guzzini",slug:"perspective-chapter-analysis-of-sars-cov-2-indirect-spreading-routes-and-possible-countermeasures",totalDownloads:8,totalCrossrefCites:0,totalDimensionsCites:0,authors:null,book:{title:"SARS-CoV-2 Variants - Two Years After",coverURL:"https://cdn.intechopen.com/books/images_new/11573.jpg",subseries:{id:"6",title:"Viral Infectious Diseases"}}},{id:"82559",title:"Perspective Chapter: Bioinformatics Study of the Evolution of SARS-CoV-2 Spike Protein",doi:"10.5772/intechopen.105915",signatures:"Črtomir Podlipnik, Radostina Alexandrova, Sebastian Pleško, Urban Bren and Marko Jukič",slug:"perspective-chapter-bioinformatics-study-of-the-evolution-of-sars-cov-2-spike-protein",totalDownloads:14,totalCrossrefCites:0,totalDimensionsCites:0,authors:null,book:{title:"SARS-CoV-2 Variants - Two Years After",coverURL:"https://cdn.intechopen.com/books/images_new/11573.jpg",subseries:{id:"6",title:"Viral Infectious Diseases"}}},{id:"82521",title:"Challenges in Platelet Functions in HIV/AIDS Management",doi:"10.5772/intechopen.105731",signatures:"Gordon Ogweno",slug:"challenges-in-platelet-functions-in-hiv-aids-management",totalDownloads:16,totalCrossrefCites:0,totalDimensionsCites:0,authors:null,book:{title:"Future Opportunities and Tools for Emerging Challenges for HIV/AIDS Control",coverURL:"https://cdn.intechopen.com/books/images_new/11575.jpg",subseries:{id:"6",title:"Viral Infectious Diseases"}}},{id:"82701",title:"Pathology of Streptococcal Infections",doi:"10.5772/intechopen.105814",signatures:"Yutaka Tsutsumi",slug:"pathology-of-streptococcal-infections",totalDownloads:8,totalCrossrefCites:0,totalDimensionsCites:0,authors:[{name:"Yutaka",surname:"Tsutsumi"}],book:{title:"Streptococcal Infections",coverURL:"https://cdn.intechopen.com/books/images_new/10828.jpg",subseries:{id:"3",title:"Bacterial Infectious Diseases"}}},{id:"82634",title:"Bacterial Sexually Transmitted Disease",doi:"10.5772/intechopen.105747",signatures:"Lebeza Alemu Tenaw",slug:"bacterial-sexually-transmitted-disease",totalDownloads:12,totalCrossrefCites:0,totalDimensionsCites:0,authors:null,book:{title:"Bacterial Sexually Transmitted Infections - New Findings, Diagnosis, Treatment, and Prevention",coverURL:"https://cdn.intechopen.com/books/images_new/11569.jpg",subseries:{id:"3",title:"Bacterial Infectious Diseases"}}},{id:"82552",title:"Perspective Chapter: SARS-CoV-2 Variants - Two Years Post-Onset of the Pandemic",doi:"10.5772/intechopen.105913",signatures:"Adekunle Sanyaolu, Aleksandra Marinkovic, Stephanie Prakash, Chuku Okorie, Abdul Jan, Priyank Desai, Abu Fahad Abbasi, Jasmine Mangat, Zaheeda Hosein, Kareem Hamdy, Nafees Haider, Nasar Khan, Rochelle Annan, Olanrewaju Badaru, Ricardo Izurieta and Stella Smith",slug:"perspective-chapter-sars-cov-2-variants-two-years-post-onset-of-the-pandemic",totalDownloads:13,totalCrossrefCites:0,totalDimensionsCites:0,authors:null,book:{title:"SARS-CoV-2 Variants - Two Years After",coverURL:"https://cdn.intechopen.com/books/images_new/11573.jpg",subseries:{id:"6",title:"Viral Infectious Diseases"}}},{id:"82380",title:"Evolution of Parasitism and Pathogenic Adaptations in Certain Medically Important Fungi",doi:"10.5772/intechopen.105206",signatures:"Gokul Shankar Sabesan, Ranjit Singh AJA, Ranjith Mehenderkar and Basanta Kumar Mohanty",slug:"evolution-of-parasitism-and-pathogenic-adaptations-in-certain-medically-important-fungi",totalDownloads:7,totalCrossrefCites:0,totalDimensionsCites:0,authors:null,book:{title:"Fungal Infectious Diseases - Annual Volume 2022",coverURL:"https://cdn.intechopen.com/books/images_new/11400.jpg",subseries:{id:"4",title:"Fungal Infectious Diseases"}}}]},subseriesFiltersForOFChapters:[{caption:"Fungal Infectious Diseases",value:4,count:1,group:"subseries"},{caption:"Parasitic Infectious Diseases",value:5,count:3,group:"subseries"},{caption:"Bacterial Infectious Diseases",value:3,count:5,group:"subseries"},{caption:"Viral Infectious Diseases",value:6,count:10,group:"subseries"}],publishedBooks:{paginationCount:13,paginationItems:[{type:"book",id:"7102",title:"Pneumonia",subtitle:null,coverURL:"https://cdn.intechopen.com/books/images_new/7102.jpg",slug:"pneumonia",publishedDate:"May 11th 2022",editedByType:"Edited by",bookSignature:"Nima Rezaei",hash:"9fd70142814192dcec58a176749f1b60",volumeInSeries:13,fullTitle:"Pneumonia",editors:[{id:"116250",title:"Dr.",name:"Nima",middleName:null,surname:"Rezaei",slug:"nima-rezaei",fullName:"Nima Rezaei",profilePictureURL:"https://mts.intechopen.com/storage/users/116250/images/system/116250.jpg",institutionString:"Tehran University of Medical Sciences",institution:{name:"Tehran University of Medical Sciences",institutionURL:null,country:{name:"Iran"}}}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null},{type:"book",id:"9615",title:"Chikungunya Virus",subtitle:"A Growing Global Public Health Threat",coverURL:"https://cdn.intechopen.com/books/images_new/9615.jpg",slug:"chikungunya-virus-a-growing-global-public-health-threat",publishedDate:"February 9th 2022",editedByType:"Edited by",bookSignature:"Jean Engohang-Ndong",hash:"c960d94a63867dd12a8ab15176a3ff06",volumeInSeries:12,fullTitle:"Chikungunya Virus - A Growing Global Public Health Threat",editors:[{id:"180733",title:"Dr.",name:"Jean",middleName:null,surname:"Engohang-Ndong",slug:"jean-engohang-ndong",fullName:"Jean Engohang-Ndong",profilePictureURL:"https://mts.intechopen.com/storage/users/180733/images/system/180733.png",institutionString:"Kent State University",institution:{name:"Kent State University",institutionURL:null,country:{name:"United States of America"}}}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null},{type:"book",id:"9619",title:"Epstein-Barr Virus",subtitle:"New Trends",coverURL:"https://cdn.intechopen.com/books/images_new/9619.jpg",slug:"epstein-barr-virus-new-trends",publishedDate:"December 22nd 2021",editedByType:"Edited by",bookSignature:"Emmanuel Drouet",hash:"a2128c53becb6064589570cbe8d976f8",volumeInSeries:11,fullTitle:"Epstein-Barr Virus - New Trends",editors:[{id:"188773",title:"Prof.",name:"Emmanuel",middleName:null,surname:"Drouet",slug:"emmanuel-drouet",fullName:"Emmanuel Drouet",profilePictureURL:"https://mts.intechopen.com/storage/users/188773/images/system/188773.png",institutionString:null,institution:{name:"Grenoble Alpes University",institutionURL:null,country:{name:"France"}}}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null},{type:"book",id:"9525",title:"Insights Into Drug Resistance in Staphylococcus aureus",subtitle:null,coverURL:"https://cdn.intechopen.com/books/images_new/9525.jpg",slug:"insights-into-drug-resistance-in-staphylococcus-aureus",publishedDate:"December 8th 2021",editedByType:"Edited by",bookSignature:"Amjad Aqib",hash:"98bb6c1ddb067da67185c272f81c0a27",volumeInSeries:10,fullTitle:"Insights Into Drug Resistance in Staphylococcus aureus",editors:[{id:"229220",title:"Dr.",name:"Amjad",middleName:"Islam",surname:"Aqib",slug:"amjad-aqib",fullName:"Amjad Aqib",profilePictureURL:"https://mts.intechopen.com/storage/users/229220/images/system/229220.png",institutionString:"Cholistan University of Veterinary and Animal Sciences",institution:{name:"University of Agriculture Faisalabad",institutionURL:null,country:{name:"Pakistan"}}}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null},{type:"book",id:"9614",title:"Advances in Candida albicans",subtitle:null,coverURL:"https://cdn.intechopen.com/books/images_new/9614.jpg",slug:"advances-in-candida-albicans",publishedDate:"November 17th 2021",editedByType:"Edited by",bookSignature:"Xinhui Wang",hash:"31d6882518ca749b12715266eed0a018",volumeInSeries:9,fullTitle:"Advances in Candida albicans",editors:[{id:"296531",title:"Dr.",name:"Xinhui",middleName:null,surname:"Wang",slug:"xinhui-wang",fullName:"Xinhui Wang",profilePictureURL:"https://mts.intechopen.com/storage/users/296531/images/system/296531.jpg",institutionString:"Qinghai Normal University",institution:{name:"University of Luxembourg",institutionURL:null,country:{name:"Luxembourg"}}}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null},{type:"book",id:"9528",title:"Current Topics and Emerging Issues in Malaria Elimination",subtitle:null,coverURL:"https://cdn.intechopen.com/books/images_new/9528.jpg",slug:"current-topics-and-emerging-issues-in-malaria-elimination",publishedDate:"July 21st 2021",editedByType:"Edited by",bookSignature:"Alfonso J. Rodriguez-Morales",hash:"7f178329cc42e691efe226b32f14e2ea",volumeInSeries:8,fullTitle:"Current Topics and Emerging Issues in Malaria Elimination",editors:[{id:"131400",title:"Prof.",name:"Alfonso J.",middleName:null,surname:"Rodriguez-Morales",slug:"alfonso-j.-rodriguez-morales",fullName:"Alfonso J. Rodriguez-Morales",profilePictureURL:"https://mts.intechopen.com/storage/users/131400/images/system/131400.png",institutionString:"Institución Universitaria Visión de las Américas, Colombia",institution:null}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null},{type:"book",id:"9613",title:"Dengue Fever in a One Health Perspective",subtitle:null,coverURL:"https://cdn.intechopen.com/books/images_new/9613.jpg",slug:"dengue-fever-in-a-one-health-perspective",publishedDate:"October 28th 2020",editedByType:"Edited by",bookSignature:"Márcia Aparecida Sperança",hash:"77ecce8195c11092230b4156df6d83ff",volumeInSeries:7,fullTitle:"Dengue Fever in a One Health Perspective",editors:[{id:"176579",title:"Dr.",name:"Márcia Aparecida",middleName:null,surname:"Sperança",slug:"marcia-aparecida-speranca",fullName:"Márcia Aparecida Sperança",profilePictureURL:"https://mts.intechopen.com/storage/users/176579/images/system/176579.jpg",institutionString:null,institution:{name:"Universidade Federal do ABC",institutionURL:null,country:{name:"Brazil"}}}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null},{type:"book",id:"7981",title:"Overview on Echinococcosis",subtitle:null,coverURL:"https://cdn.intechopen.com/books/images_new/7981.jpg",slug:"overview-on-echinococcosis",publishedDate:"April 22nd 2020",editedByType:"Edited by",bookSignature:"Fethi Derbel and Meriem Braiki",hash:"24dee9209f3fd6b7cd28f042da0076f0",volumeInSeries:6,fullTitle:"Overview on Echinococcosis",editors:[{id:"62900",title:"Prof.",name:"Fethi",middleName:null,surname:"Derbel",slug:"fethi-derbel",fullName:"Fethi Derbel",profilePictureURL:"https://mts.intechopen.com/storage/users/62900/images/system/62900.jpeg",institutionString:"Clinique les Oliviers",institution:null}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null},{type:"book",id:"7887",title:"Hepatitis B and C",subtitle:null,coverURL:"https://cdn.intechopen.com/books/images_new/7887.jpg",slug:"hepatitis-b-and-c",publishedDate:"April 8th 2020",editedByType:"Edited by",bookSignature:"Luis Rodrigo",hash:"8dd6dab483cf505d83caddaeaf497f2c",volumeInSeries:5,fullTitle:"Hepatitis B and C",editors:[{id:"73208",title:"Prof.",name:"Luis",middleName:null,surname:"Rodrigo",slug:"luis-rodrigo",fullName:"Luis Rodrigo",profilePictureURL:"https://mts.intechopen.com/storage/users/73208/images/system/73208.jpg",institutionString:"University of Oviedo",institution:{name:"University of Oviedo",institutionURL:null,country:{name:"Spain"}}}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null},{type:"book",id:"7839",title:"Malaria",subtitle:null,coverURL:"https://cdn.intechopen.com/books/images_new/7839.jpg",slug:"malaria",publishedDate:"December 11th 2019",editedByType:"Edited by",bookSignature:"Fyson H. Kasenga",hash:"91cde4582ead884cb0f355a19b67cd56",volumeInSeries:4,fullTitle:"Malaria",editors:[{id:"86725",title:"Dr.",name:"Fyson",middleName:"Hanania",surname:"Kasenga",slug:"fyson-kasenga",fullName:"Fyson Kasenga",profilePictureURL:"https://mts.intechopen.com/storage/users/86725/images/system/86725.jpg",institutionString:"Malawi Adventist University",institution:{name:"Malawi Adventist University",institutionURL:null,country:{name:"Malawi"}}}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null},{type:"book",id:"7123",title:"Current Topics in Neglected Tropical Diseases",subtitle:null,coverURL:"https://cdn.intechopen.com/books/images_new/7123.jpg",slug:"current-topics-in-neglected-tropical-diseases",publishedDate:"December 4th 2019",editedByType:"Edited by",bookSignature:"Alfonso J. Rodriguez-Morales",hash:"61c627da05b2ace83056d11357bdf361",volumeInSeries:3,fullTitle:"Current Topics in Neglected Tropical Diseases",editors:[{id:"131400",title:"Prof.",name:"Alfonso J.",middleName:null,surname:"Rodriguez-Morales",slug:"alfonso-j.-rodriguez-morales",fullName:"Alfonso J. Rodriguez-Morales",profilePictureURL:"https://mts.intechopen.com/storage/users/131400/images/system/131400.png",institutionString:"Institución Universitaria Visión de las Américas, Colombia",institution:null}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null},{type:"book",id:"7064",title:"Current Perspectives in Human Papillomavirus",subtitle:null,coverURL:"https://cdn.intechopen.com/books/images_new/7064.jpg",slug:"current-perspectives-in-human-papillomavirus",publishedDate:"May 2nd 2019",editedByType:"Edited by",bookSignature:"Shailendra K. Saxena",hash:"d92a4085627bab25ddc7942fbf44cf05",volumeInSeries:2,fullTitle:"Current Perspectives in Human Papillomavirus",editors:[{id:"158026",title:"Prof.",name:"Shailendra K.",middleName:null,surname:"Saxena",slug:"shailendra-k.-saxena",fullName:"Shailendra K. Saxena",profilePictureURL:"https://s3.us-east-1.amazonaws.com/intech-files/0030O00002bRET3QAO/Profile_Picture_2022-05-10T10:10:26.jpeg",institutionString:"King George's Medical University",institution:{name:"King George's Medical University",institutionURL:null,country:{name:"India"}}}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null}]},subseriesFiltersForPublishedBooks:[{group:"subseries",caption:"Bacterial Infectious Diseases",value:3,count:2},{group:"subseries",caption:"Parasitic Infectious Diseases",value:5,count:4},{group:"subseries",caption:"Viral Infectious Diseases",value:6,count:7}],publicationYearFilters:[{group:"publicationYear",caption:"2022",value:2022,count:2},{group:"publicationYear",caption:"2021",value:2021,count:4},{group:"publicationYear",caption:"2020",value:2020,count:3},{group:"publicationYear",caption:"2019",value:2019,count:3},{group:"publicationYear",caption:"2018",value:2018,count:1}],authors:{paginationCount:30,paginationItems:[{id:"425474",title:"Mr.",name:"Jasper",middleName:"Okoro Godwin",surname:"Okoro Godwin Elechi",slug:"jasper-okoro-godwin-elechi",fullName:"Jasper Okoro Godwin Elechi",position:null,profilePictureURL:"https://mts.intechopen.com/storage/users/425474/images/19990_n.jpg",biography:"Mr. Elechi is an innovative and passionate food professional and educator who can collaborate across boundaries with an integrated aspiration of innovation to provide good, sustainable, and healthy food solutions that promote human health and conserve planetary health. He has a special interest in innovative food product development, nutrition, indigenous food products, biotechnology, bioeconmy, sustainable global food systems transformation, food safety Nanotechnology, and Nanomaterials. He has carried out independent research and publications in these areas. He possesses comprehensive knowledge and technical know-how on nutritional formulation and production of healthy and sustainable foods from locally available underutilized Cereal-Legume crops for combating food security and malnutrition in developing communities.",institutionString:null,institution:null},{id:"307387",title:"Dr.",name:"Cecilia",middleName:null,surname:"Camporeale",slug:"cecilia-camporeale",fullName:"Cecilia Camporeale",position:null,profilePictureURL:"//cdnintech.com/web/frontend/www/assets/author.svg",biography:null,institutionString:null,institution:{name:"National Agency For New Technologies, Energy and Sustainable Economic Development",country:{name:"Italy"}}},{id:"296882",title:"Dr.",name:"Mario",middleName:null,surname:"Jorizzo",slug:"mario-jorizzo",fullName:"Mario Jorizzo",position:null,profilePictureURL:"//cdnintech.com/web/frontend/www/assets/author.svg",biography:null,institutionString:null,institution:{name:"National Agency For New Technologies, Energy and Sustainable Economic Development",country:{name:"Italy"}}},{id:"307388",title:"Dr.",name:"ROBERTO",middleName:null,surname:"DEL CIELLO",slug:"roberto-del-ciello",fullName:"ROBERTO DEL CIELLO",position:null,profilePictureURL:"//cdnintech.com/web/frontend/www/assets/author.svg",biography:null,institutionString:null,institution:{name:"National Agency For New Technologies, Energy and Sustainable Economic Development",country:{name:"Italy"}}},{id:"437647",title:"M.Sc.",name:"Fernando",middleName:null,surname:"Teixeira",slug:"fernando-teixeira",fullName:"Fernando Teixeira",position:null,profilePictureURL:"//cdnintech.com/web/frontend/www/assets/author.svg",biography:null,institutionString:null,institution:{name:"University of Évora",country:{name:"Portugal"}}},{id:"423338",title:"Dr.",name:"Harjeet",middleName:null,surname:"Singh",slug:"harjeet-singh",fullName:"Harjeet Singh",position:null,profilePictureURL:"//cdnintech.com/web/frontend/www/assets/author.svg",biography:null,institutionString:null,institution:{name:"Chitkara University",country:{name:"India"}}},{id:"443635",title:"Dr.",name:"Suruchi",middleName:null,surname:"Jindal",slug:"suruchi-jindal",fullName:"Suruchi Jindal",position:null,profilePictureURL:"//cdnintech.com/web/frontend/www/assets/author.svg",biography:null,institutionString:null,institution:{name:"Punjab Agricultural University",country:{name:"India"}}},{id:"426265",title:"Mrs.",name:"Inonge",middleName:null,surname:"Chibua",slug:"inonge-chibua",fullName:"Inonge Chibua",position:null,profilePictureURL:"//cdnintech.com/web/frontend/www/assets/author.svg",biography:null,institutionString:null,institution:{name:"University of Botswana",country:{name:"Botswana"}}},{id:"426266",title:"Ms.",name:"Mesha",middleName:null,surname:"Mbisana",slug:"mesha-mbisana",fullName:"Mesha Mbisana",position:null,profilePictureURL:"//cdnintech.com/web/frontend/www/assets/author.svg",biography:null,institutionString:null,institution:{name:"University of Botswana",country:{name:"Botswana"}}},{id:"426264",title:"Mr.",name:"Samuel",middleName:null,surname:"Raditloko",slug:"samuel-raditloko",fullName:"Samuel Raditloko",position:null,profilePictureURL:"//cdnintech.com/web/frontend/www/assets/author.svg",biography:null,institutionString:null,institution:{name:"University of Botswana",country:{name:"Botswana"}}},{id:"426394",title:"Dr.",name:"Mags",middleName:null,surname:"Adams",slug:"mags-adams",fullName:"Mags Adams",position:null,profilePictureURL:"//cdnintech.com/web/frontend/www/assets/author.svg",biography:null,institutionString:null,institution:{name:"University of Central Lancashire",country:{name:"United Kingdom"}}},{id:"441182",title:"Dr.",name:"Neil",middleName:null,surname:"Wilson",slug:"neil-wilson",fullName:"Neil Wilson",position:null,profilePictureURL:"//cdnintech.com/web/frontend/www/assets/author.svg",biography:null,institutionString:null,institution:{name:"University of Central Lancashire",country:{name:"United Kingdom"}}},{id:"425171",title:"Ph.D. Student",name:"Tanya",middleName:null,surname:"Zerbian",slug:"tanya-zerbian",fullName:"Tanya Zerbian",position:null,profilePictureURL:"//cdnintech.com/web/frontend/www/assets/author.svg",biography:null,institutionString:null,institution:{name:"University of Central Lancashire",country:{name:"Cyprus"}}},{id:"424714",title:"Prof.",name:"Elke",middleName:null,surname:"Stedefeldt",slug:"elke-stedefeldt",fullName:"Elke Stedefeldt",position:null,profilePictureURL:"//cdnintech.com/web/frontend/www/assets/author.svg",biography:null,institutionString:null,institution:{name:"Federal University of Sao Paulo",country:{name:"Brazil"}}},{id:"425244",title:"Dr.",name:"Rayane",middleName:"Stephanie Gomes",surname:"Stephanie Gomes De Freitas",slug:"rayane-stephanie-gomes-de-freitas",fullName:"Rayane Stephanie Gomes De Freitas",position:null,profilePictureURL:"//cdnintech.com/web/frontend/www/assets/author.svg",biography:null,institutionString:null,institution:{name:"Federal University of Sao Paulo",country:{name:"Brazil"}}},{id:"424688",title:"Dr.",name:"Bart",middleName:null,surname:"de Steenhuijsen Piters",slug:"bart-de-steenhuijsen-piters",fullName:"Bart de Steenhuijsen Piters",position:null,profilePictureURL:"//cdnintech.com/web/frontend/www/assets/author.svg",biography:null,institutionString:null,institution:{name:"Wageningen University & Research",country:{name:"Netherlands"}}},{id:"429404",title:"Dr.",name:"Emma",middleName:null,surname:"Termeer",slug:"emma-termeer",fullName:"Emma Termeer",position:null,profilePictureURL:"//cdnintech.com/web/frontend/www/assets/author.svg",biography:null,institutionString:null,institution:{name:"Wageningen University & Research",country:{name:"Netherlands"}}},{id:"429407",title:"Dr.",name:"Herman",middleName:null,surname:"Brouwer",slug:"herman-brouwer",fullName:"Herman Brouwer",position:null,profilePictureURL:"//cdnintech.com/web/frontend/www/assets/author.svg",biography:null,institutionString:null,institution:{name:"Wageningen University & Research",country:{name:"Netherlands"}}},{id:"429406",title:"Dr.",name:"Hubert",middleName:null,surname:"Fonteijn",slug:"hubert-fonteijn",fullName:"Hubert Fonteijn",position:null,profilePictureURL:"//cdnintech.com/web/frontend/www/assets/author.svg",biography:null,institutionString:null,institution:{name:"Wageningen University & Research",country:{name:"Netherlands"}}},{id:"427504",title:"Dr.",name:"Kriengsak",middleName:null,surname:"Chareonwongsak",slug:"kriengsak-chareonwongsak",fullName:"Kriengsak Chareonwongsak",position:null,profilePictureURL:"//cdnintech.com/web/frontend/www/assets/author.svg",biography:null,institutionString:null,institution:null},{id:"423333",title:"Ph.D. Student",name:"Shivani",middleName:null,surname:"Sood",slug:"shivani-sood",fullName:"Shivani Sood",position:null,profilePictureURL:"//cdnintech.com/web/frontend/www/assets/author.svg",biography:null,institutionString:null,institution:null},{id:"452297",title:"Mr.",name:"Cornelius",middleName:null,surname:"Smah Adamu",slug:"cornelius-smah-adamu",fullName:"Cornelius Smah Adamu",position:null,profilePictureURL:"//cdnintech.com/web/frontend/www/assets/author.svg",biography:null,institutionString:null,institution:null},{id:"452296",title:"Mr.",name:"Ikechukwu",middleName:null,surname:"U. Nwiyi",slug:"ikechukwu-u.-nwiyi",fullName:"Ikechukwu U. Nwiyi",position:null,profilePictureURL:"//cdnintech.com/web/frontend/www/assets/author.svg",biography:null,institutionString:null,institution:null},{id:"423395",title:"Assistant Prof.",name:"Adane",middleName:null,surname:"Atara Debessa",slug:"adane-atara-debessa",fullName:"Adane Atara Debessa",position:null,profilePictureURL:"//cdnintech.com/web/frontend/www/assets/author.svg",biography:null,institutionString:null,institution:null},{id:"426267",title:"Mr.",name:"Banyaladzi",middleName:null,surname:"Paphane",slug:"banyaladzi-paphane",fullName:"Banyaladzi Paphane",position:null,profilePictureURL:"//cdnintech.com/web/frontend/www/assets/author.svg",biography:null,institutionString:null,institution:null},{id:"483388",title:"Dr.",name:"Berhanu",middleName:null,surname:"Denu",slug:"berhanu-denu",fullName:"Berhanu Denu",position:null,profilePictureURL:"//cdnintech.com/web/frontend/www/assets/author.svg",biography:null,institutionString:null,institution:null},{id:"483387",title:"Dr.",name:"Degefa",middleName:null,surname:"Tolossa",slug:"degefa-tolossa",fullName:"Degefa Tolossa",position:null,profilePictureURL:"//cdnintech.com/web/frontend/www/assets/author.svg",biography:null,institutionString:null,institution:null},{id:"426059",title:"Dr.",name:"Dikabo",middleName:null,surname:"Mogopodi",slug:"dikabo-mogopodi",fullName:"Dikabo Mogopodi",position:null,profilePictureURL:"//cdnintech.com/web/frontend/www/assets/author.svg",biography:null,institutionString:null,institution:null},{id:"422909",title:"Dr.",name:"Dorcas Stella",middleName:null,surname:"Shumba",slug:"dorcas-stella-shumba",fullName:"Dorcas Stella Shumba",position:null,profilePictureURL:"//cdnintech.com/web/frontend/www/assets/author.svg",biography:null,institutionString:null,institution:null},{id:"429405",title:"Dr.",name:"Deborah",middleName:null,surname:"Bakker",slug:"deborah-bakker",fullName:"Deborah Bakker",position:null,profilePictureURL:"//cdnintech.com/web/frontend/www/assets/author.svg",biography:null,institutionString:null,institution:null}]}},subseries:{item:{id:"14",type:"subseries",title:"Cell and Molecular Biology",keywords:"Omics (Transcriptomics; Proteomics; Metabolomics), Molecular Biology, Cell Biology, Signal Transduction and Regulation, Cell Growth and Differentiation, Apoptosis, Necroptosis, Ferroptosis, Autophagy, Cell Cycle, Macromolecules and Complexes, Gene Expression",scope:"The Cell and Molecular Biology topic within the IntechOpen Biochemistry Series aims to rapidly publish contributions on all aspects of cell and molecular biology, including aspects related to biochemical and genetic research (not only in humans but all living beings). We encourage the submission of manuscripts that provide novel and mechanistic insights that report significant advances in the fields. Topics include, but are not limited to: Advanced techniques of cellular and molecular biology (Molecular methodologies, imaging techniques, and bioinformatics); Biological activities at the molecular level; Biological processes of cell functions, cell division, senescence, maintenance, and cell death; Biomolecules interactions; Cancer; Cell biology; Chemical biology; Computational biology; Cytochemistry; Developmental biology; Disease mechanisms and therapeutics; DNA, and RNA metabolism; Gene functions, genetics, and genomics; Genetics; Immunology; Medical microbiology; Molecular biology; Molecular genetics; Molecular processes of cell and organelle dynamics; Neuroscience; Protein biosynthesis, degradation, and functions; Regulation of molecular interactions in a cell; Signalling networks and system biology; Structural biology; Virology and microbiology.",coverUrl:"https://cdn.intechopen.com/series_topics/covers/14.jpg",hasOnlineFirst:!0,hasPublishedBooks:!0,annualVolume:11410,editor:{id:"165627",title:"Dr.",name:"Rosa María",middleName:null,surname:"Martínez-Espinosa",slug:"rosa-maria-martinez-espinosa",fullName:"Rosa María Martínez-Espinosa",profilePictureURL:"https://mts.intechopen.com/storage/users/165627/images/system/165627.jpeg",biography:"Dr. Rosa María Martínez-Espinosa has been a Spanish Full Professor since 2020 (Biochemistry and Molecular Biology) and is currently Vice-President of International Relations and Cooperation development and leader of the research group 'Applied Biochemistry” (University of Alicante, Spain). Other positions she has held at the university include Vice-Dean of Master Programs, Vice-Dean of the Degree in Biology and Vice-Dean for Mobility and Enterprise and Engagement at the Faculty of Science (University of Alicante). She received her Bachelor in Biology in 1998 (University of Alicante) and her PhD in 2003 (Biochemistry, University of Alicante). She undertook post-doctoral research at the University of East Anglia (Norwich, U.K. 2004-2005; 2007-2008).\nHer multidisciplinary research focuses on investigating archaea and their potential applications in biotechnology. She has an H-index of 21. She has authored one patent and has published more than 70 indexed papers and around 60 book chapters.\nShe has contributed to more than 150 national and international meetings during the last 15 years. Her research interests include archaea metabolism, enzymes purification and characterization, gene regulation, carotenoids and bioplastics production, antioxidant\ncompounds, waste water treatments, and brines bioremediation.\nRosa María’s other roles include editorial board member for several journals related\nto biochemistry, reviewer for more than 60 journals (biochemistry, molecular biology, biotechnology, chemistry and microbiology) and president of several organizing committees in international meetings related to the N-cycle or respiratory processes.",institutionString:null,institution:{name:"University of Alicante",institutionURL:null,country:{name:"Spain"}}},editorTwo:null,editorThree:null,series:{id:"11",title:"Biochemistry",doi:"10.5772/intechopen.72877",issn:"2632-0983"},editorialBoard:[{id:"79367",title:"Dr.",name:"Ana Isabel",middleName:null,surname:"Flores",slug:"ana-isabel-flores",fullName:"Ana Isabel Flores",profilePictureURL:"https://s3.us-east-1.amazonaws.com/intech-files/0030O00002bRpIOQA0/Profile_Picture_1632418099564",institutionString:null,institution:{name:"Hospital Universitario 12 De Octubre",institutionURL:null,country:{name:"Spain"}}},{id:"328234",title:"Ph.D.",name:"Christian",middleName:null,surname:"Palavecino",slug:"christian-palavecino",fullName:"Christian Palavecino",profilePictureURL:"https://s3.us-east-1.amazonaws.com/intech-files/0033Y000030DhEhQAK/Profile_Picture_1628835318625",institutionString:null,institution:{name:"Central University of Chile",institutionURL:null,country:{name:"Chile"}}},{id:"186585",title:"Dr.",name:"Francisco Javier",middleName:null,surname:"Martin-Romero",slug:"francisco-javier-martin-romero",fullName:"Francisco Javier Martin-Romero",profilePictureURL:"https://s3.us-east-1.amazonaws.com/intech-files/0030O00002bSB3HQAW/Profile_Picture_1631258137641",institutionString:null,institution:{name:"University of Extremadura",institutionURL:null,country:{name:"Spain"}}}]},onlineFirstChapters:{paginationCount:25,paginationItems:[{id:"82654",title:"Atraumatic Restorative Treatment: More than a Minimally Invasive Approach?",doi:"10.5772/intechopen.105623",signatures:"Manal A. Ablal",slug:"atraumatic-restorative-treatment-more-than-a-minimally-invasive-approach",totalDownloads:3,totalCrossrefCites:0,totalDimensionsCites:0,authors:null,book:{title:"Dental Caries - The Selection of Restoration Methods and Restorative Materials",coverURL:"https://cdn.intechopen.com/books/images_new/11565.jpg",subseries:{id:"1",title:"Oral Health"}}},{id:"82735",title:"The Influence of Salivary pH on the Prevalence of Dental Caries",doi:"10.5772/intechopen.106154",signatures:"Laura-Cristina Rusu, Alexandra Roi, Ciprian-Ioan Roi, Codruta Victoria Tigmeanu and Lavinia Cosmina Ardelean",slug:"the-influence-of-salivary-ph-on-the-prevalence-of-dental-caries",totalDownloads:12,totalCrossrefCites:0,totalDimensionsCites:0,authors:null,book:{title:"Dental Caries - The Selection of Restoration Methods and Restorative Materials",coverURL:"https://cdn.intechopen.com/books/images_new/11565.jpg",subseries:{id:"1",title:"Oral Health"}}},{id:"82357",title:"Caries Management Aided by Fluorescence-Based Devices",doi:"10.5772/intechopen.105567",signatures:"Atena Galuscan, Daniela Jumanca and Aurora Doris Fratila",slug:"caries-management-aided-by-fluorescence-based-devices",totalDownloads:6,totalCrossrefCites:0,totalDimensionsCites:0,authors:null,book:{title:"Dental Caries - The Selection of Restoration Methods and Restorative Materials",coverURL:"https://cdn.intechopen.com/books/images_new/11565.jpg",subseries:{id:"1",title:"Oral Health"}}},{id:"81894",title:"Diet and Nutrition and Their Relationship with Early Childhood Dental Caries",doi:"10.5772/intechopen.105123",signatures:"Luanna Gonçalves Ferreira, Giuliana de Campos Chaves Lamarque and Francisco Wanderley Garcia Paula-Silva",slug:"diet-and-nutrition-and-their-relationship-with-early-childhood-dental-caries",totalDownloads:20,totalCrossrefCites:0,totalDimensionsCites:0,authors:null,book:{title:"Dental Caries - The Selection of Restoration Methods and Restorative Materials",coverURL:"https://cdn.intechopen.com/books/images_new/11565.jpg",subseries:{id:"1",title:"Oral Health"}}},{id:"80964",title:"Upper Airway Expansion in Disabled Children",doi:"10.5772/intechopen.102830",signatures:"David Andrade, Joana Andrade, Maria-João Palha, Cristina Areias, Paula Macedo, Ana Norton, Miguel Palha, Lurdes Morais, Dóris Rocha Ruiz and Sônia Groisman",slug:"upper-airway-expansion-in-disabled-children",totalDownloads:43,totalCrossrefCites:0,totalDimensionsCites:0,authors:null,book:{title:"Oral Health Care - An Important Issue of the Modern Society",coverURL:"https://cdn.intechopen.com/books/images_new/10827.jpg",subseries:{id:"1",title:"Oral Health"}}},{id:"80839",title:"Herbs and Oral Health",doi:"10.5772/intechopen.103715",signatures:"Zuhair S. Natto",slug:"herbs-and-oral-health",totalDownloads:69,totalCrossrefCites:0,totalDimensionsCites:0,authors:null,book:{title:"Oral Health Care - An Important Issue of the Modern Society",coverURL:"https://cdn.intechopen.com/books/images_new/10827.jpg",subseries:{id:"1",title:"Oral Health"}}},{id:"80441",title:"Periodontitis and Heart Disease: Current Perspectives on the Associative Relationships and Preventive Impact",doi:"10.5772/intechopen.102669",signatures:"Alexandra Roman, Andrada Soancă, Bogdan Caloian, Alexandru Bucur, Gabriela Valentina Caracostea, Andreia Paraschiva Preda, Dora Maria Popescu, Iulia Cristina Micu, Petra Șurlin, Andreea Ciurea, Diana Oneț, Mircea Viorel Ciurea, Dragoș Alexandru Țermure and Marius Negucioiu",slug:"periodontitis-and-heart-disease-current-perspectives-on-the-associative-relationships-and-preventive",totalDownloads:65,totalCrossrefCites:0,totalDimensionsCites:0,authors:null,book:{title:"Oral Health Care - An Important Issue of the Modern Society",coverURL:"https://cdn.intechopen.com/books/images_new/10827.jpg",subseries:{id:"1",title:"Oral Health"}}},{id:"79498",title:"Oral Aspects and Dental Management of Special Needs Patient",doi:"10.5772/intechopen.101067",signatures:"Pinar Kiymet Karataban",slug:"oral-aspects-and-dental-management-of-special-needs-patient",totalDownloads:108,totalCrossrefCites:0,totalDimensionsCites:0,authors:[{name:"Pinar",surname:"Karataban"}],book:{title:"Oral Health Care - An Important Issue of the Modern Society",coverURL:"https://cdn.intechopen.com/books/images_new/10827.jpg",subseries:{id:"1",title:"Oral Health"}}},{id:"79699",title:"Metabolomics Distinction of Cigarette Smokers from Non-Smokers Using Non-Stationary Benchtop Nuclear Magnetic Resonance (NMR) Analysis of Human Saliva",doi:"10.5772/intechopen.101414",signatures:"Benita C. Percival, Angela Wann, Sophie Taylor, Mark Edgar, Miles Gibson and Martin Grootveld",slug:"metabolomics-distinction-of-cigarette-smokers-from-non-smokers-using-non-stationary-benchtop-nuclear",totalDownloads:56,totalCrossrefCites:0,totalDimensionsCites:0,authors:null,book:{title:"Oral Health Care - An Important Issue of the Modern Society",coverURL:"https://cdn.intechopen.com/books/images_new/10827.jpg",subseries:{id:"1",title:"Oral Health"}}},{id:"80295",title:"Preventive Methods and Treatments of White Spot Lesions in Orthodontics",doi:"10.5772/intechopen.102064",signatures:"Elif Nadide Akay",slug:"preventive-methods-and-treatments-of-white-spot-lesions-in-orthodontics",totalDownloads:87,totalCrossrefCites:0,totalDimensionsCites:0,authors:null,book:{title:"Oral Health Care - An Important Issue of the Modern Society",coverURL:"https://cdn.intechopen.com/books/images_new/10827.jpg",subseries:{id:"1",title:"Oral Health"}}},{id:"79876",title:"Management and Prevention Strategies for Treating Dentine Hypersensitivity",doi:"10.5772/intechopen.101495",signatures:"David G. Gillam",slug:"management-and-prevention-strategies-for-treating-dentine-hypersensitivity",totalDownloads:93,totalCrossrefCites:0,totalDimensionsCites:0,authors:null,book:{title:"Oral Health Care - An Important Issue of the Modern Society",coverURL:"https://cdn.intechopen.com/books/images_new/10827.jpg",subseries:{id:"1",title:"Oral Health"}}},{id:"80020",title:"Alternative Denture Base Materials for Allergic Patients",doi:"10.5772/intechopen.101956",signatures:"Lavinia Cosmina Ardelean, Laura-Cristina Rusu and Codruta Victoria Tigmeanu",slug:"alternative-denture-base-materials-for-allergic-patients",totalDownloads:191,totalCrossrefCites:0,totalDimensionsCites:0,authors:null,book:{title:"Oral Health Care - An Important Issue of the Modern Society",coverURL:"https://cdn.intechopen.com/books/images_new/10827.jpg",subseries:{id:"1",title:"Oral Health"}}},{id:"79297",title:"Oral Health and Prevention in Older Adults",doi:"10.5772/intechopen.101043",signatures:"Irma Fabiola Díaz-García, Dinorah Munira Hernández-Santos, Julio Alberto Díaz-Ramos and Neyda Ma. Mendoza-Ruvalcaba",slug:"oral-health-and-prevention-in-older-adults",totalDownloads:111,totalCrossrefCites:0,totalDimensionsCites:0,authors:null,book:{title:"Oral Health Care - An Important Issue of the Modern Society",coverURL:"https://cdn.intechopen.com/books/images_new/10827.jpg",subseries:{id:"1",title:"Oral Health"}}},{id:"79903",title:"Molecular Docking of Phytochemicals against Streptococcus mutans Virulence Targets: A Proteomic Insight into Drug Planning",doi:"10.5772/intechopen.101506",signatures:"Diego Romário da Silva, Tahyná Duda Deps, Otavio Akira Souza Sakaguchi, Edja Maria Melo de Brito Costa, Carlus Alberto Oliveira dos Santos, Joanilda Paolla Raimundo e Silva, Bruna Dantas da Silva, Frederico Favaro Ribeiro, Francisco Jaime Bezerra Mendonça-Júnior and Andréa Cristina Barbosa da Silva",slug:"molecular-docking-of-phytochemicals-against-streptococcus-mutans-virulence-targets-a-proteomic-insig",totalDownloads:114,totalCrossrefCites:0,totalDimensionsCites:0,authors:null,book:{title:"Oral Health Care - An Important Issue of the Modern Society",coverURL:"https://cdn.intechopen.com/books/images_new/10827.jpg",subseries:{id:"1",title:"Oral Health"}}},{id:"79754",title:"Evaluation of Trans-Resveratrol as a Treatment for Periodontitis",doi:"10.5772/intechopen.101477",signatures:"Tracey Lynn Harney",slug:"evaluation-of-trans-resveratrol-as-a-treatment-for-periodontitis",totalDownloads:110,totalCrossrefCites:1,totalDimensionsCites:1,authors:null,book:{title:"Oral Health Care - An Important Issue of the Modern Society",coverURL:"https://cdn.intechopen.com/books/images_new/10827.jpg",subseries:{id:"1",title:"Oral Health"}}},{id:"79515",title:"White Spot Lesions and Remineralization",doi:"10.5772/intechopen.101372",signatures:"Monisha Khatri, Shreya Kishore, S. Nagarathinam, Suvetha Siva and Vanita Barai",slug:"white-spot-lesions-and-remineralization",totalDownloads:79,totalCrossrefCites:0,totalDimensionsCites:0,authors:null,book:{title:"Oral Health Care - An Important Issue of the Modern Society",coverURL:"https://cdn.intechopen.com/books/images_new/10827.jpg",subseries:{id:"1",title:"Oral Health"}}}]},publishedBooks:{paginationCount:1,paginationItems:[{type:"book",id:"10843",title:"Persistent Organic Pollutants (POPs)",subtitle:"Monitoring, Impact and Treatment",coverURL:"https://cdn.intechopen.com/books/images_new/10843.jpg",slug:"persistent-organic-pollutants-pops-monitoring-impact-and-treatment",publishedDate:"April 13th 2022",editedByType:"Edited by",bookSignature:"Mohamed Nageeb Rashed",hash:"f5b1589f0a990b6114fef2dadc735dd9",volumeInSeries:1,fullTitle:"Persistent Organic Pollutants (POPs) - Monitoring, Impact and Treatment",editors:[{id:"63465",title:"Prof.",name:"Mohamed Nageeb",middleName:null,surname:"Rashed",slug:"mohamed-nageeb-rashed",fullName:"Mohamed Nageeb Rashed",profilePictureURL:"https://mts.intechopen.com/storage/users/63465/images/system/63465.gif",institutionString:null,institution:{name:"Aswan University",institutionURL:null,country:{name:"Egypt"}}}],equalEditorOne:null,equalEditorTwo:null,equalEditorThree:null}]},testimonialsList:[{id:"8",text:"I work with IntechOpen for a number of reasons: their professionalism, their mission in support of Open Access publishing, and the quality of their peer-reviewed publications, but also because they believe in equality.",author:{id:"202192",name:"Catrin",surname:"Rutland",institutionString:null,profilePictureURL:"https://mts.intechopen.com/storage/users/202192/images/system/202192.png",slug:"catrin-rutland",institution:{id:"134",name:"University of Nottingham",country:{id:null,name:"United Kingdom"}}}},{id:"18",text:"It was great publishing with IntechOpen, the process was straightforward and I had support all along.",author:{id:"71579",name:"Berend",surname:"Olivier",institutionString:"Utrecht University",profilePictureURL:"https://mts.intechopen.com/storage/users/71579/images/system/71579.png",slug:"berend-olivier",institution:{id:"253",name:"Utrecht University",country:{id:null,name:"Netherlands"}}}},{id:"27",text:"The opportunity to work with a prestigious publisher allows for the possibility to collaborate with more research groups interested in animal nutrition, leading to the development of new feeding strategies and food valuation while being more sustainable with the environment, allowing more readers to learn about the subject.",author:{id:"175967",name:"Manuel",surname:"Gonzalez Ronquillo",institutionString:null,profilePictureURL:"https://mts.intechopen.com/storage/users/175967/images/system/175967.png",slug:"manuel-gonzalez-ronquillo",institution:{id:"6221",name:"Universidad Autónoma del Estado de México",country:{id:null,name:"Mexico"}}}}]},submityourwork:{pteSeriesList:[{id:"14",title:"Artificial Intelligence",numberOfPublishedBooks:9,numberOfPublishedChapters:90,numberOfOpenTopics:6,numberOfUpcomingTopics:0,issn:"2633-1403",doi:"10.5772/intechopen.79920",isOpenForSubmission:!0},{id:"7",title:"Biomedical Engineering",numberOfPublishedBooks:12,numberOfPublishedChapters:107,numberOfOpenTopics:3,numberOfUpcomingTopics:0,issn:"2631-5343",doi:"10.5772/intechopen.71985",isOpenForSubmission:!0}],lsSeriesList:[{id:"11",title:"Biochemistry",numberOfPublishedBooks:33,numberOfPublishedChapters:330,numberOfOpenTopics:4,numberOfUpcomingTopics:0,issn:"2632-0983",doi:"10.5772/intechopen.72877",isOpenForSubmission:!0},{id:"25",title:"Environmental Sciences",numberOfPublishedBooks:1,numberOfPublishedChapters:19,numberOfOpenTopics:4,numberOfUpcomingTopics:0,issn:"2754-6713",doi:"10.5772/intechopen.100362",isOpenForSubmission:!0},{id:"10",title:"Physiology",numberOfPublishedBooks:14,numberOfPublishedChapters:145,numberOfOpenTopics:4,numberOfUpcomingTopics:0,issn:"2631-8261",doi:"10.5772/intechopen.72796",isOpenForSubmission:!0}],hsSeriesList:[{id:"3",title:"Dentistry",numberOfPublishedBooks:9,numberOfPublishedChapters:139,numberOfOpenTopics:2,numberOfUpcomingTopics:0,issn:"2631-6218",doi:"10.5772/intechopen.71199",isOpenForSubmission:!0},{id:"6",title:"Infectious Diseases",numberOfPublishedBooks:13,numberOfPublishedChapters:122,numberOfOpenTopics:4,numberOfUpcomingTopics:0,issn:"2631-6188",doi:"10.5772/intechopen.71852",isOpenForSubmission:!0},{id:"13",title:"Veterinary Medicine and Science",numberOfPublishedBooks:11,numberOfPublishedChapters:112,numberOfOpenTopics:3,numberOfUpcomingTopics:0,issn:"2632-0517",doi:"10.5772/intechopen.73681",isOpenForSubmission:!0}],sshSeriesList:[{id:"22",title:"Business, Management and Economics",numberOfPublishedBooks:1,numberOfPublishedChapters:21,numberOfOpenTopics:3,numberOfUpcomingTopics:0,issn:"2753-894X",doi:"10.5772/intechopen.100359",isOpenForSubmission:!0},{id:"23",title:"Education and Human Development",numberOfPublishedBooks:0,numberOfPublishedChapters:10,numberOfOpenTopics:1,numberOfUpcomingTopics:1,issn:null,doi:"10.5772/intechopen.100360",isOpenForSubmission:!0},{id:"24",title:"Sustainable Development",numberOfPublishedBooks:1,numberOfPublishedChapters:19,numberOfOpenTopics:5,numberOfUpcomingTopics:0,issn:"2753-6580",doi:"10.5772/intechopen.100361",isOpenForSubmission:!0}],subseriesList:[],annualVolumeBook:{},thematicCollection:[],selectedSeries:null,selectedSubseries:null},seriesLanding:{item:{id:"7",title:"Biomedical Engineering",doi:"10.5772/intechopen.71985",issn:"2631-5343",scope:"Biomedical Engineering is one of the fastest-growing interdisciplinary branches of science and industry. The combination of electronics and computer science with biology and medicine has improved patient diagnosis, reduced rehabilitation time, and helped to facilitate a better quality of life. Nowadays, all medical imaging devices, medical instruments, or new laboratory techniques result from the cooperation of specialists in various fields. The series of Biomedical Engineering books covers such areas of knowledge as chemistry, physics, electronics, medicine, and biology. This series is intended for doctors, engineers, and scientists involved in biomedical engineering or those wanting to start working in this field.",coverUrl:"https://cdn.intechopen.com/series/covers/7.jpg",latestPublicationDate:"August 3rd, 2022",hasOnlineFirst:!0,numberOfOpenTopics:3,numberOfPublishedChapters:107,numberOfPublishedBooks:12,editor:{id:"50150",title:"Prof.",name:"Robert",middleName:null,surname:"Koprowski",fullName:"Robert Koprowski",profilePictureURL:"https://s3.us-east-1.amazonaws.com/intech-files/0030O00002aYTYNQA4/Profile_Picture_1630478535317",biography:"Robert Koprowski, MD (1997), PhD (2003), Habilitation (2015), is an employee of the University of Silesia, Poland, Institute of Computer Science, Department of Biomedical Computer Systems. For 20 years, he has studied the analysis and processing of biomedical images, emphasizing the full automation of measurement for a large inter-individual variability of patients. Dr. Koprowski has authored more than a hundred research papers with dozens in impact factor (IF) journals and has authored or co-authored six books. Additionally, he is the author of several national and international patents in the field of biomedical devices and imaging. Since 2011, he has been a reviewer of grants and projects (including EU projects) in biomedical engineering.",institutionString:null,institution:{name:"University of Silesia",institutionURL:null,country:{name:"Poland"}}},subseries:[{id:"7",title:"Bioinformatics and Medical Informatics",keywords:"Biomedical Data, Drug Discovery, Clinical Diagnostics, Decoding Human Genome, AI in Personalized Medicine, Disease-prevention Strategies, Big Data Analysis in Medicine",scope:"Bioinformatics aims to help understand the functioning of the mechanisms of living organisms through the construction and use of quantitative tools. The applications of this research cover many related fields, such as biotechnology and medicine, where, for example, Bioinformatics contributes to faster drug design, DNA analysis in forensics, and DNA sequence analysis in the field of personalized medicine. Personalized medicine is a type of medical care in which treatment is customized individually for each patient. Personalized medicine enables more effective therapy, reduces the costs of therapy and clinical trials, and also minimizes the risk of side effects. Nevertheless, advances in personalized medicine would not have been possible without bioinformatics, which can analyze the human genome and other vast amounts of biomedical data, especially in genetics. The rapid growth of information technology enabled the development of new tools to decode human genomes, large-scale studies of genetic variations and medical informatics. The considerable development of technology, including the computing power of computers, is also conducive to the development of bioinformatics, including personalized medicine. In an era of rapidly growing data volumes and ever lower costs of generating, storing and computing data, personalized medicine holds great promises. Modern computational methods used as bioinformatics tools can integrate multi-scale, multi-modal and longitudinal patient data to create even more effective and safer therapy and disease prevention methods. Main aspects of the topic are: Applying bioinformatics in drug discovery and development; Bioinformatics in clinical diagnostics (genetic variants that act as markers for a condition or a disease); Blockchain and Artificial Intelligence/Machine Learning in personalized medicine; Customize disease-prevention strategies in personalized medicine; Big data analysis in personalized medicine; Translating stratification algorithms into clinical practice of personalized medicine.",annualVolume:11403,isOpenForSubmission:!0,coverUrl:"https://cdn.intechopen.com/series_topics/covers/7.jpg",editor:{id:"351533",title:"Dr.",name:"Slawomir",middleName:null,surname:"Wilczynski",fullName:"Slawomir Wilczynski",profilePictureURL:"https://s3.us-east-1.amazonaws.com/intech-files/0033Y000035U1loQAC/Profile_Picture_1630074514792",institutionString:null,institution:{name:"Medical University of Silesia",institutionURL:null,country:{name:"Poland"}}},editorTwo:null,editorThree:null,editorialBoard:[{id:"5886",title:"Dr.",name:"Alexandros",middleName:"T.",surname:"Tzallas",fullName:"Alexandros Tzallas",profilePictureURL:"https://mts.intechopen.com/storage/users/5886/images/system/5886.png",institutionString:"University of Ioannina, Greece & Imperial College London",institution:{name:"University of Ioannina",institutionURL:null,country:{name:"Greece"}}},{id:"257388",title:"Distinguished Prof.",name:"Lulu",middleName:null,surname:"Wang",fullName:"Lulu Wang",profilePictureURL:"https://s3.us-east-1.amazonaws.com/intech-files/0030O00002bRX6kQAG/Profile_Picture_1630329584194",institutionString:"Shenzhen Technology University",institution:{name:"Shenzhen Technology University",institutionURL:null,country:{name:"China"}}},{id:"225387",title:"Prof.",name:"Reda R.",middleName:"R.",surname:"Gharieb",fullName:"Reda R. Gharieb",profilePictureURL:"https://mts.intechopen.com/storage/users/225387/images/system/225387.jpg",institutionString:"Assiut University",institution:{name:"Assiut University",institutionURL:null,country:{name:"Egypt"}}}]},{id:"8",title:"Bioinspired Technology and Biomechanics",keywords:"Bioinspired Systems, Biomechanics, Assistive Technology, Rehabilitation",scope:'Bioinspired technologies take advantage of understanding the actual biological system to provide solutions to problems in several areas. Recently, bioinspired systems have been successfully employing biomechanics to develop and improve assistive technology and rehabilitation devices. The research topic "Bioinspired Technology and Biomechanics" welcomes studies reporting recent advances in bioinspired technologies that contribute to individuals\' health, inclusion, and rehabilitation. Possible contributions can address (but are not limited to) the following research topics: Bioinspired design and control of exoskeletons, orthoses, and prostheses; Experimental evaluation of the effect of assistive devices (e.g., influence on gait, balance, and neuromuscular system); Bioinspired technologies for rehabilitation, including clinical studies reporting evaluations; Application of neuromuscular and biomechanical models to the development of bioinspired technology.',annualVolume:11404,isOpenForSubmission:!0,coverUrl:"https://cdn.intechopen.com/series_topics/covers/8.jpg",editor:{id:"144937",title:"Prof.",name:"Adriano",middleName:"De Oliveira",surname:"Andrade",fullName:"Adriano Andrade",profilePictureURL:"https://s3.us-east-1.amazonaws.com/intech-files/0030O00002bRC8QQAW/Profile_Picture_1625219101815",institutionString:null,institution:{name:"Federal University of Uberlândia",institutionURL:null,country:{name:"Brazil"}}},editorTwo:null,editorThree:null,editorialBoard:[{id:"49517",title:"Prof.",name:"Hitoshi",middleName:null,surname:"Tsunashima",fullName:"Hitoshi Tsunashima",profilePictureURL:"https://s3.us-east-1.amazonaws.com/intech-files/0030O00002aYTP4QAO/Profile_Picture_1625819726528",institutionString:null,institution:{name:"Nihon University",institutionURL:null,country:{name:"Japan"}}},{id:"425354",title:"Dr.",name:"Marcus",middleName:"Fraga",surname:"Vieira",fullName:"Marcus Vieira",profilePictureURL:"https://s3.us-east-1.amazonaws.com/intech-files/0033Y00003BJSgIQAX/Profile_Picture_1627904687309",institutionString:null,institution:{name:"Universidade Federal de Goiás",institutionURL:null,country:{name:"Brazil"}}},{id:"196746",title:"Dr.",name:"Ramana",middleName:null,surname:"Vinjamuri",fullName:"Ramana Vinjamuri",profilePictureURL:"https://mts.intechopen.com/storage/users/196746/images/system/196746.jpeg",institutionString:"University of Maryland, Baltimore County",institution:{name:"University of Maryland, Baltimore County",institutionURL:null,country:{name:"United States of America"}}}]},{id:"9",title:"Biotechnology - Biosensors, Biomaterials and Tissue Engineering",keywords:"Biotechnology, Biosensors, Biomaterials, Tissue Engineering",scope:"The Biotechnology - Biosensors, Biomaterials and Tissue Engineering topic within the Biomedical Engineering Series aims to rapidly publish contributions on all aspects of biotechnology, biosensors, biomaterial and tissue engineering. We encourage the submission of manuscripts that provide novel and mechanistic insights that report significant advances in the fields. Topics can include but are not limited to: Biotechnology such as biotechnological products and process engineering; Biotechnologically relevant enzymes and proteins; Bioenergy and biofuels; Applied genetics and molecular biotechnology; Genomics, transcriptomics, proteomics; Applied microbial and cell physiology; Environmental biotechnology; Methods and protocols. Moreover, topics in biosensor technology, like sensors that incorporate enzymes, antibodies, nucleic acids, whole cells, tissues and organelles, and other biological or biologically inspired components will be considered, and topics exploring transducers, including those based on electrochemical and optical piezoelectric, thermal, magnetic, and micromechanical elements. Chapters exploring biomaterial approaches such as polymer synthesis and characterization, drug and gene vector design, biocompatibility, immunology and toxicology, and self-assembly at the nanoscale, are welcome. Finally, the tissue engineering subcategory will support topics such as the fundamentals of stem cells and progenitor cells and their proliferation, differentiation, bioreactors for three-dimensional culture and studies of phenotypic changes, stem and progenitor cells, both short and long term, ex vivo and in vivo implantation both in preclinical models and also in clinical trials.",annualVolume:11405,isOpenForSubmission:!0,coverUrl:"https://cdn.intechopen.com/series_topics/covers/9.jpg",editor:{id:"126286",title:"Dr.",name:"Luis",middleName:"Jesús",surname:"Villarreal-Gómez",fullName:"Luis Villarreal-Gómez",profilePictureURL:"https://mts.intechopen.com/storage/users/126286/images/system/126286.jpg",institutionString:null,institution:{name:"Autonomous University of Baja California",institutionURL:null,country:{name:"Mexico"}}},editorTwo:null,editorThree:null,editorialBoard:[{id:"35539",title:"Dr.",name:"Cecilia",middleName:null,surname:"Cristea",fullName:"Cecilia Cristea",profilePictureURL:"https://s3.us-east-1.amazonaws.com/intech-files/0030O00002aYQ65QAG/Profile_Picture_1621007741527",institutionString:null,institution:{name:"Iuliu Hațieganu University of Medicine and Pharmacy",institutionURL:null,country:{name:"Romania"}}},{id:"40735",title:"Dr.",name:"Gil",middleName:"Alberto Batista",surname:"Gonçalves",fullName:"Gil Gonçalves",profilePictureURL:"https://s3.us-east-1.amazonaws.com/intech-files/0030O00002aYRLGQA4/Profile_Picture_1628492612759",institutionString:null,institution:{name:"University of Aveiro",institutionURL:null,country:{name:"Portugal"}}},{id:"211725",title:"Associate Prof.",name:"Johann F.",middleName:null,surname:"Osma",fullName:"Johann F. Osma",profilePictureURL:"https://s3.us-east-1.amazonaws.com/intech-files/0030O00002bSDv7QAG/Profile_Picture_1626602531691",institutionString:null,institution:{name:"Universidad de Los Andes",institutionURL:null,country:{name:"Colombia"}}},{id:"69697",title:"Dr.",name:"Mani T.",middleName:null,surname:"Valarmathi",fullName:"Mani T. Valarmathi",profilePictureURL:"https://mts.intechopen.com/storage/users/69697/images/system/69697.jpg",institutionString:"Religen Inc. | A Life Science Company, United States of America",institution:null},{id:"205081",title:"Dr.",name:"Marco",middleName:"Vinícius",surname:"Chaud",fullName:"Marco Chaud",profilePictureURL:"https://s3.us-east-1.amazonaws.com/intech-files/0030O00002bSDGeQAO/Profile_Picture_1622624307737",institutionString:null,institution:{name:"Universidade de Sorocaba",institutionURL:null,country:{name:"Brazil"}}}]}]}},libraryRecommendation:{success:null,errors:{},institutions:[]},route:{name:"chapter.detail",path:"/chapters/52820",hash:"",query:{},params:{id:"52820"},fullPath:"/chapters/52820",meta:{},from:{name:null,path:"/",hash:"",query:{},params:{},fullPath:"/",meta:{}}}},function(){var e;(e=document.currentScript||document.scripts[document.scripts.length-1]).parentNode.removeChild(e)}()