<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>particle swarm optimization &#8211; Science</title>
	<atom:link href="https://scienmag.com/tag/particle-swarm-optimization/feed/" rel="self" type="application/rss+xml" />
	<link>https://scienmag.com</link>
	<description></description>
	<lastBuildDate>Sun, 13 Sep 2026 00:18:31 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.1.1</generator>

<image>
	<url>https://scienmag.com/wp-content/uploads/2024/07/cropped-scienmag_ico-32x32.jpg</url>
	<title>particle swarm optimization &#8211; Science</title>
	<link>https://scienmag.com</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">73899611</site>	<item>
		<title>Swarm Intelligence Gives the R-Tree a Faster Way to Map the World</title>
		<link>https://scienmag.com/swarm-intelligence-gives-the-r-tree-a-faster-way-to-map-the-world/</link>
		
		<dc:creator><![CDATA[Denise Maddox]]></dc:creator>
		<pubDate>Sun, 13 Sep 2026 00:18:31 +0000</pubDate>
				<category><![CDATA[Technology and Engineering]]></category>
		<category><![CDATA[autonomous data structure adaptation]]></category>
		<category><![CDATA[computational particle algorithms in GIS]]></category>
		<category><![CDATA[dynamic R-tree restructuring methods]]></category>
		<category><![CDATA[geospatial data]]></category>
		<category><![CDATA[handling overlapping in R-trees]]></category>
		<category><![CDATA[improving query speed in spatial databases]]></category>
		<category><![CDATA[metaheuristics]]></category>
		<category><![CDATA[minimum bounding rectangles]]></category>
		<category><![CDATA[multidimensional data management]]></category>
		<category><![CDATA[node splitting]]></category>
		<category><![CDATA[OpenStreetMap]]></category>
		<category><![CDATA[optimizing spatial index performance]]></category>
		<category><![CDATA[particle swarm optimization]]></category>
		<category><![CDATA[particle swarm optimization for database structures]]></category>
		<category><![CDATA[query performance]]></category>
		<category><![CDATA[R-tree]]></category>
		<category><![CDATA[R-tree optimization techniques]]></category>
		<category><![CDATA[real-time R-tree reorganization]]></category>
		<category><![CDATA[spatial databases]]></category>
		<category><![CDATA[spatial indexing]]></category>
		<category><![CDATA[spatial object enclosure in bounding rectangles]]></category>
		<category><![CDATA[Swarm intelligence in spatial indexing]]></category>
		<category><![CDATA[TIGER dataset]]></category>
		<category><![CDATA[tree balance]]></category>
		<guid isPermaLink="false">https://scienmag.com/?p=199964</guid>

					<description><![CDATA[Researchers have combined particle swarm optimization with the R-tree spatial index, cutting query response times by up to 35.7 percent and reducing bounding rectangle overlap by 42.7 percent across synthetic and real-world datasets.]]></description>
										<content:encoded><![CDATA[<p>Every time you call a rideshare, check a weather radar, or let an autonomous vehicle find its way through city traffic, a spatial index is working behind the scenes. Among the most widely used of these structures is the R-tree, a height-balanced search tree that organizes multidimensional data by enclosing spatial objects in minimum bounding rectangles, or MBRs. The trouble is that as datasets grow and change, the R-tree&#8217;s rectangles begin to overlap, forcing queries to wander down multiple branches of the tree and slowing everything down. Now, a research team from Al Hussein Technical University and Jordan University of Science and Technology has proposed a strikingly simple fix: let a swarm of computational particles redesign the tree on the fly. Their framework, called PSO-RT, embeds the particle swarm optimization algorithm directly into the R-tree&#8217;s core operations, and the results are substantial.</p>
<p>The problem the researchers set out to solve is well known in the database community. When a new object is inserted into an R-tree and a node exceeds its capacity, the node must be split into two, and the way that split is performed determines how much the resulting rectangles overlap. Traditional splitting heuristics are static; they apply the same rules regardless of how the data are actually distributed. Over time, especially with frequent insertions and deletions, the tree becomes unbalanced, storage utilization drops, and query processing degrades. Machine learning approaches such as the R+ Learned Spatial Index and the reinforcement-learning-based RLR-tree have shown impressive gains, but they demand large training datasets, significant computational resources, and often struggle with irregular or highly skewed spatial distributions.</p>
<p>The Jordanian team, led by Rahmeh Ibrahim with co-authors Amer Al-Badarneh and Qasem Abu Al-Haija, chose a different path. Particle swarm optimization, or PSO, is a metaheuristic inspired by the collective behavior of bird flocks and fish schools. Each particle in the swarm represents a candidate solution and moves through the search space guided by its own best experience and the best solution found by the entire swarm. PSO requires no pre-training, involves few control parameters, and converges quickly, making it an attractive alternative to heavyweight machine learning models. In PSO-RT, each particle encodes a potential R-tree configuration, such as a strategy for splitting an overflowing node or merging an underutilized one.</p>
<p>The heart of the method is a fitness function that scores each candidate configuration by combining two objectives: the total overlap among minimum bounding rectangles and the height of the tree. Weighting coefficients balance the two goals, so the swarm searches for splits and merges that simultaneously minimize overlap and keep the tree shallow and balanced. When a new data point causes a node to overflow, PSO is invoked to evaluate multiple splitting strategies and select the one with the lowest fitness. When deletions leave a node below its minimum threshold, the swarm searches for the optimal merge. This dynamic integration means the index continuously adapts to the shape of the data rather than relying on fixed heuristics, a property the authors argue is essential for real-time applications such as autonomous navigation, environmental monitoring, and location-based services.</p>
<p>To test the framework, the researchers ran experiments on three datasets with very different characteristics. The first was a synthetic set of 1,000 two-dimensional points sampled uniformly within a defined bounding box, providing a controlled baseline. The second was drawn from OpenStreetMap, capturing points of interest, amenities, and landmarks whose clustered distributions mimic real urban geography. The third came from the U.S. Census Bureau&#8217;s TIGER/Line shapefiles, representing road intersections and building footprints with a mix of dense and sparse regions. All experiments were implemented in Python using the RTree, NumPy, GeoPandas, and OSMnx libraries on a standard Intel Core i7 machine with 16 gigabytes of RAM, and results were averaged over ten independent runs to ensure reliability.</p>
<p>The improvements were consistent across all three datasets. On the synthetic data, query response time fell from 15.2 milliseconds to 10.4 milliseconds, a 31.6 percent improvement, while total MBR overlap dropped from 1,500 to 870 square units, a 42.0 percent reduction. Tree height shrank from seven levels to five, and node utilization rose from 72.3 percent to 84.6 percent. The OpenStreetMap dataset, with its challenging clustered distribution, saw the largest gains: query time improved by 35.7 percent, overlap fell by 42.7 percent, tree height dropped from eight levels to six, and node utilization climbed from 68.9 percent to 82.4 percent. On the TIGER data, query response time improved by 33.3 percent and overlap by 41.7 percent, with node utilization rising from 70.2 percent to 83.7 percent.</p>
<p>There is, however, a trade-off. Because PSO must evaluate candidate configurations during structural changes, insertion and deletion times increased substantially, with overheads ranging from 67.9 percent to 75.8 percent compared with baseline R-trees. In the synthetic dataset, for example, insertion time rose from 4.5 milliseconds to 7.8 milliseconds and deletion time from 3.8 to 6.5 milliseconds. The authors argue this cost is acceptable in query-dominated workloads, where the payoff in faster spatial queries and better storage efficiency outweighs slower updates. They also note that the framework&#8217;s sensitivity to PSO parameters, such as swarm size and inertia weight, requires careful calibration, and they recommend future work on hybrid optimization techniques and adaptive parameter tuning to reduce update overhead.</p>
<p>Compared with competing approaches, PSO-RT occupies a distinctive middle ground. The R+ Learned Spatial Index excels at nearest-neighbor queries but relies on static learned patterns and does little about overlap or storage utilization. The RLR-tree, which models subtree selection and node splitting as Markov decision processes, achieves strong performance on datasets with up to 100 million objects but demands computationally intensive training and retraining. The Grid-R-tree reduces overlap through adaptive grid partitioning but struggles with the irregular distributions found in OpenStreetMap and TIGER data. PSO-RT, by contrast, requires no training, adapts in real time, and handles diverse distributions without specialized hardware or additional partitioning infrastructure.</p>
<p>The study also connects to a broader theoretical conversation. Recent research applying complex network theory to evolutionary computation has begun to explain the collective dynamics and convergence behavior of swarm-based algorithms from a network science perspective, lending theoretical weight to the empirical success of PSO in domains like spatial indexing. The authors suggest that such analytical tools could further illuminate why swarm intelligence works so well for structural optimization problems, and they point toward parallel and distributed implementations as a way to soften the update-time penalty while preserving query gains.</p>
<p>For the geospatial industry, the message is pragmatic: intelligent optimization does not have to mean expensive models. A lightweight, biologically inspired algorithm, applied at exactly the moments when an index structure changes, can deliver double-digit improvements in the metrics that matter most to spatial databases. As location data continues to explode from navigation apps, Internet of Things sensors, satellite imagery, and smart city infrastructure, techniques like PSO-RT may become essential tools for keeping the world&#8217;s spatial queries fast, scalable, and adaptive to a planet that never stops moving.</p>
<p><strong>Subject of Research:</strong> Optimizing R-tree spatial indexing with an adaptive particle swarm optimization algorithm to improve geospatial query performance.</p>
<p><strong>Article Title:</strong> Enhancing R tree spatial indexing using adaptive particle swarm optimization algorithm</p>
<p><strong>Article References:</strong> Ibrahim, R., Al-Badarneh, A., &amp; Abu Al-Haija, Q. (2026). Enhancing R tree spatial indexing using adaptive particle swarm optimization algorithm. <em>Discover Informatics, 1</em>(1), Article 4. <a href="https://doi.org/10.1007/s44564-026-00004-3" rel="noopener noreferrer">https://doi.org/10.1007/s44564-026-00004-3</a></p>
<p><strong>Image Credits:</strong> AI Generated</p>
<p><strong>DOI:</strong> <a href="https://doi.org/10.1007/s44564-026-00004-3" rel="noopener noreferrer">10.1007/s44564-026-00004-3</a></p>
<p><strong>Keywords:</strong> R-tree, spatial indexing, particle swarm optimization, geospatial data, minimum bounding rectangles, query performance, metaheuristics, spatial databases, node splitting, OpenStreetMap, TIGER dataset, tree balance</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">199964</post-id>	</item>
		<item>
		<title>AI-Inspired Algorithms Sharpen a Copper-Based Optical Sensor for Arsenic-Tainted Groundwater</title>
		<link>https://scienmag.com/ai-inspired-algorithms-sharpen-a-copper-based-optical-sensor-for-arsenic-tainted-groundwater/</link>
		
		<dc:creator><![CDATA[Denise Maddox]]></dc:creator>
		<pubDate>Sat, 12 Sep 2026 22:40:40 +0000</pubDate>
				<category><![CDATA[Technology and Engineering]]></category>
		<category><![CDATA[advancements in optical sensor sensitivity]]></category>
		<category><![CDATA[AI-driven optical sensor design]]></category>
		<category><![CDATA[AI-enhanced environmental analytical tools]]></category>
		<category><![CDATA[arsenic detection]]></category>
		<category><![CDATA[Bangladesh]]></category>
		<category><![CDATA[challenges in arsenic monitoring in rural Bangladesh]]></category>
		<category><![CDATA[computational modeling for sensor development]]></category>
		<category><![CDATA[copper plasmonics]]></category>
		<category><![CDATA[copper-based nanomaterials for arsenic sensing]]></category>
		<category><![CDATA[differential evolution]]></category>
		<category><![CDATA[environmental health impacts of arsenic contamination]]></category>
		<category><![CDATA[genetic algorithm]]></category>
		<category><![CDATA[groundwater]]></category>
		<category><![CDATA[groundwater arsenic detection]]></category>
		<category><![CDATA[Kretschmann configuration]]></category>
		<category><![CDATA[label-free arsenic detection methods]]></category>
		<category><![CDATA[low-cost solutions for water quality assessment]]></category>
		<category><![CDATA[machine learning optimization of environmental sensors]]></category>
		<category><![CDATA[metaheuristic optimization]]></category>
		<category><![CDATA[particle swarm optimization]]></category>
		<category><![CDATA[portable groundwater testing technologies]]></category>
		<category><![CDATA[refractive index sensing]]></category>
		<category><![CDATA[surface plasmon resonance]]></category>
		<category><![CDATA[water quality monitoring]]></category>
		<guid isPermaLink="false">https://scienmag.com/?p=199360</guid>

					<description><![CDATA[Researchers have combined transfer-matrix modeling, finite-element validation, and a comparative metaheuristic optimization framework to design a low-cost copper-based surface plasmon resonance sensor aimed at arsenic monitoring in Bangladesh's contaminated groundwater.]]></description>
										<content:encoded><![CDATA[<p>Arsenic in the groundwater of Bangladesh remains one of the world&#8217;s most severe environmental health crises, with naturally mobilized arsenic exceeding guideline values across large parts of the Bengal Basin. Millions of people draw their drinking water from shallow tube wells, and chronic exposure to inorganic arsenic has been linked to dermatological, cardiovascular, neurological, and carcinogenic effects even at concentrations close to regulatory thresholds. National survey data show extensive regions where concentrations surpass the World Health Organization guideline of 10 micrograms per liter. Against this backdrop, researchers have now designed and computationally optimized a compact optical sensor that could bring sensitive, label-free arsenic monitoring closer to the communities that need it most, without the centralized laboratory infrastructure that conventional testing demands.</p>
<p>Traditional arsenic quantification relies on techniques such as atomic absorption spectrometry, inductively coupled plasma mass spectrometry, and ion chromatography. These methods deliver excellent sensitivity and speciation capability, but they require sophisticated instrumentation and trained personnel, which limits routine, high-frequency surveillance across dispersed rural wells. Portable electrochemical and colorimetric assays have been deployed in national screening programs, yet they often demand chemical pre-treatment, suffer matrix-dependent interference, or lack the quantitative precision needed for long-term monitoring and remediation validation. Optical approaches such as fluorometric and colorimetric platforms respond rapidly and can be portable, but many depend on specialized reagents, complex surface functionalization, or indirect detection mechanisms that can undermine long-term stability and selectivity in the field.</p>
<p>The new study, published in Results in Optics, turns to surface plasmon resonance, a label-free optical technique with real-time response and exceptional sensitivity to refractive-index variations at a metal-dielectric interface. In the classic Kretschmann configuration, a p-polarized beam passing through a high-index prism excites a surface plasmon polariton at a thin metallic layer, and any change in the adjacent aqueous refractive index is translated into a measurable shift of the resonance angle. Surface plasmon resonance has long been applied to chemical and biomedical sensing, including prior arsenic quantification, but achieving simultaneously high sensitivity, narrow resonance linewidth, and a strong quality factor remains a major challenge when the refractive-index perturbations associated with contamination are small.</p>
<p>The research team, led by Khandoker Tauhid Imam with Masiath Ibna Jamil and Md. Aminur Rahman, addressed three gaps that persist in the literature. Most optimized multilayer plasmonic sensors target biomedical or generic water-quality scenarios rather than groundwater arsenic specifically. Comparative studies evaluating multiple optimization algorithms on the same multilayer platform are scarce, limiting insight into how different strategies trade off sensitivity, resonance sharpness, and fabrication feasibility. And few studies have explored low-cost copper-based architectures that balance a high quality factor, narrow linewidth, and manufacturability. To fill these gaps, the team designed an S-FPL53 prism/MgF2/Cu/Ni/ZnSe multilayer stack that combines dielectric-assisted coupling with bimetallic plasmonic confinement, and subjected it to a rigorous computational design pipeline.</p>
<p>The theoretical backbone of the work is the transfer matrix method, which provides an exact closed-form solution for wave propagation in stratified planar media and can rapidly evaluate reflection spectra for thousands of candidate thickness combinations. In the Kretschmann geometry, resonance occurs when the in-plane component of the incident wavevector matches the surface plasmon polariton wavevector at the metal-dielectric boundary. Sweeping the incidence angle at a fixed wavelength of 632.8 nanometers identifies the resonance minimum from which the resonance angle and full width at half maximum are extracted, feeding into standard performance metrics: angular sensitivity, detection accuracy, quality factor, figure of merit, and a refractive-index limit of detection. To guard against numerical artifacts, the team independently cross-validated all resonance characteristics with finite-element simulations in COMSOL Multiphysics, which solve the full boundary-value problem of Maxwell&#8217;s equations without assuming planar layering. The two methods agreed closely on resonance angles, linewidths, and field distributions, and the field maps revealed strong confinement at the Cu/Ni-ZnSe boundary with an evanescent penetration depth of roughly 209 nanometers into the analyte, sufficient to probe the bulk aqueous medium.</p>
<p>A critical modeling step involved estimating the refractive index of arsenic-doped water. Experimental calibration data from a photonic-crystal-fiber SPR study supplied refractive indices for arsenic concentrations between 0.1 and 0.5 percent, and the team extrapolated to 1.0 percent using linear regression, quadratic regression, and a rate-based method. The quadratic model proved most reliable, achieving a coefficient of determination of 0.9975 and a root mean square error of 4.81 by 10 to the minus 6, predicting a refractive index of about 1.3474 at 1.0 percent. Leave-one-out cross-validation and a 95 percent prediction interval confirmed the stability of this extrapolation, although the authors honestly note that the five-point dataset remains limited and that direct measurements at higher concentrations are a priority for future work. They are equally transparent that the laboratory calibration concentrations are roughly five orders of magnitude higher than the parts-per-billion levels of the WHO guideline, so the study should be read as a demonstration of refractive-index sensitivity and optimization methodology rather than a direct simulation of field-realistic arsenic levels.</p>
<p>Within the specified refractive-index window from 1.330 for pure water to 1.3474, the manually tuned baseline sensor performed strongly. The resonance dip sat at 79.78 degrees for pure water and shifted progressively to 85.70, 85.86, and 86.34 degrees as arsenic-derived refractive indices rose, yielding sensitivities of 361.42, 365.17, and 377.01 degrees per refractive-index unit with linewidths of only about 2.4 to 2.6 degrees. The SNR-limited refractive-index detection limit remained near 1.1 by 10 to the minus 6 RIU across all concentrations. Comparative screening showed that the low-index Ohara S-FPL53 prism nearly tripled the sensitivity of a conventional BK7 prism, that copper outperformed silver in figure of merit by more than an order of magnitude while matching its sensitivity, and that thickness sweeps identified roughly 50-nanometer copper and 2-nanometer ZnSe as the sweet spots balancing sensitivity against resonance sharpness. Against published aqueous SPR sensors operating near the water refractive-index region, the design&#8217;s 377 degrees per RIU was the highest angular sensitivity reported among the compared structures.</p>
<p>The centerpiece of the study, however, is a head-to-head comparison of three metaheuristic algorithms, Differential Evolution, Particle Swarm Optimization, and a Genetic Algorithm, all run with identical population sizes of 30, identical generation counts of 40, identical search bounds, and the same transfer-matrix fitness evaluation. Differential Evolution and Particle Swarm Optimization converged to nearly identical thickness configurations, with copper near 59.3 nanometers, nickel at 1 nanometer, and ZnSe at 2 nanometers, and delivered the sharpest resonances: quality factors up to 67.64, figures of merit approaching 202 per RIU, and linewidths narrowed to about 1.22 degrees. The Genetic Algorithm instead pushed angular sensitivity beyond 308 degrees per RIU at the cost of broader dips and lower quality factors. Across 25 independent runs, DE and PSO converged rapidly with minimal variability, standard deviations of 0.0051 and 0.3019 respectively, while GA varied far more, with a standard deviation of 6.0231. A multi-objective Differential Evolution run further improved average figure of merit and quality factor by 51.57 percent and 169.45 percent at the expense of a 33.89 percent sensitivity reduction, giving designers a tunable trade-off between spectral resolution and raw sensitivity.</p>
<p>Fabrication feasibility and robustness were examined in detail. Every layer can be produced with mature thin-film techniques: thermal or electron-beam evaporation and atomic layer deposition for the magnesium fluoride spacer, magnetron sputtering for copper, RF sputtering for the protective nickel cap, and evaporation, sputtering, or chemical vapor deposition for ZnSe. A tolerance analysis with plus-or-minus 5 and 10 percent thickness perturbations showed that the magnesium fluoride layer is essentially immune to error, that copper thickness most strongly governs resonance sharpness and quality factor, and that the ultrathin nickel and ZnSe films are most critical per nanometer for preserving sensitivity, underscoring the value of atomic-scale deposition control for the thinner layers. Even under worst-case simultaneous minus-10 percent deviations the sensor retained a sensitivity above 311 degrees per RIU, while positive deviations pushed performance as high as 443.79 degrees per RIU.</p>
<p>The authors are careful about the road to deployment. Because the structure transduces bulk refractive index rather than binding arsenic specifically, selective quantification in real groundwater, which contains iron, manganese, bicarbonate, dissolved organic matter, and other constituents, will require complementary surface functionalization, reference-channel compensation, or multivariate calibration. Temperature fluctuations alone shift the refractive index of water by roughly 1 by 10 to the minus 4 RIU per degree Celsius, comparable to the signals of low arsenic concentrations, so field instruments will need thermal compensation, vibration-stable angular interrogation or a move toward fixed-angle schemes, and periodic recalibration against arsenic-free references, ideally on low-power solar-supplemented electronics suited to rural Bangladesh. Even so, the combination of a low-cost copper plasmonic layer rather than gold, sharp optimized resonances, demonstrated fabrication tolerance, and a transparent, reproducible optimization framework makes this multilayer design a compelling transduction platform. With appropriate arsenic-selective chemistry layered on top, the same architecture could ultimately serve decentralized tube-well screening, and the authors plan experimental fabrication, stability testing, and validation with real groundwater samples from arsenic-affected regions as the next steps.</p>
<p><strong>Subject of Research:</strong> Metaheuristic optimization of a multilayer surface plasmon resonance sensor for arsenic monitoring in groundwater in Bangladesh</p>
<p><strong>Article Title:</strong> Comparative metaheuristic optimization of a multilayer SPR sensor for arsenic monitoring in groundwater in Bangladesh</p>
<p><strong>Article References:</strong> Imam, K. T., Jamil, M. I., &amp; Rahman, M. A. (2026). Comparative metaheuristic optimization of a multilayer SPR sensor for arsenic monitoring in groundwater in Bangladesh. <em>Results in Optics, 25</em>, Article 101134. <a href="https://doi.org/10.1016/j.rio.2026.101134" rel="noopener noreferrer">https://doi.org/10.1016/j.rio.2026.101134</a></p>
<p><strong>Image Credits:</strong> AI Generated</p>
<p><strong>DOI:</strong> <a href="https://doi.org/10.1016/j.rio.2026.101134" rel="noopener noreferrer">10.1016/j.rio.2026.101134</a></p>
<p><strong>Keywords:</strong> surface plasmon resonance, arsenic detection, groundwater, Bangladesh, metaheuristic optimization, Differential Evolution, Particle Swarm Optimization, Genetic Algorithm, copper plasmonics, refractive index sensing, Kretschmann configuration, water quality monitoring</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">199360</post-id>	</item>
		<item>
		<title>New Self-Adaptive Optimizer Bridges the Continuous-Discrete Divide to Green Cloud Scheduling</title>
		<link>https://scienmag.com/new-self-adaptive-optimizer-bridges-the-continuous-discrete-divide-to-green-cloud-scheduling/</link>
		
		<dc:creator><![CDATA[Gavin Prescott]]></dc:creator>
		<pubDate>Sat, 12 Sep 2026 19:12:49 +0000</pubDate>
				<category><![CDATA[Technology and Engineering]]></category>
		<category><![CDATA[carbon footprint reduction in ICT]]></category>
		<category><![CDATA[carbon-aware scheduling]]></category>
		<category><![CDATA[combinatorial task assignment algorithms]]></category>
		<category><![CDATA[continuous-discrete optimization in AI workloads]]></category>
		<category><![CDATA[cross-domain adaptation]]></category>
		<category><![CDATA[cross-domain optimization framework]]></category>
		<category><![CDATA[data center emissions]]></category>
		<category><![CDATA[data center energy efficiency]]></category>
		<category><![CDATA[differential evolution]]></category>
		<category><![CDATA[energy-aware cloud resource scheduling]]></category>
		<category><![CDATA[exascale AI energy management]]></category>
		<category><![CDATA[Green AI]]></category>
		<category><![CDATA[green cloud computing]]></category>
		<category><![CDATA[Green cloud scheduling]]></category>
		<category><![CDATA[memetic algorithm]]></category>
		<category><![CDATA[metaheuristics]]></category>
		<category><![CDATA[multi-objective optimization]]></category>
		<category><![CDATA[open-access green AI research]]></category>
		<category><![CDATA[particle swarm optimization]]></category>
		<category><![CDATA[self-adaptation]]></category>
		<category><![CDATA[self-adaptive memetic optimizer]]></category>
		<category><![CDATA[service level agreements]]></category>
		<category><![CDATA[service-level agreement preservation]]></category>
		<category><![CDATA[sustainable cloud computing]]></category>
		<guid isPermaLink="false">https://scienmag.com/?p=197748</guid>

					<description><![CDATA[Researchers have unveiled a self-adaptive memetic optimizer and a cross-domain adaptation framework that translates elite continuous optimization into carbon-aware, SLA-respecting cloud scheduling, outperforming native discrete algorithms across all tested scenarios.]]></description>
										<content:encoded><![CDATA[<p>The digital world runs on data centers, and data centers run on electricity. As artificial intelligence workloads surge into the exascale era, the Information and Communication Technology sector has accumulated a carbon footprint so large and fast-growing that it now threatens global sustainability targets. A new open-access study published in Discover Informatics proposes a strikingly original answer to this problem: a scheduling algorithm that smuggles the raw power of elite continuous optimization techniques into the stubbornly discrete world of cloud task assignment, cutting carbon emissions while still honoring the service-level agreements that businesses cannot afford to breach. The result, its authors argue, is a complete end-to-end pathway for solving one of Green AI&#8217;s hardest problems.</p>
<p>The work, led by Raza Hasan of Southampton Solent University together with Salman Mahmood, Sellappan Palaniappan, and Deborah Adedigba, makes a dual contribution. The first half is a brand-new continuous optimizer called the Self-adaptive Memetic Optimizer, or SA-MO. The second half is a cross-domain adaptation framework that lets this real-valued algorithm tackle the combinatorial puzzle of assigning tasks to servers, producing a scheduler the team calls d-SA-MO. The core insight is simple but provocative: decades of progress in continuous numerical optimization, exemplified by competition-winning algorithms from the IEEE Congress on Evolutionary Computation, has largely gone untapped by scheduling researchers because the two domains speak different mathematical languages.</p>
<p>SA-MO itself is a synthesis of three architectural principles drawn from the state of the art in evolutionary computation. Its global search engine hybridizes Differential Evolution with Particle Swarm Optimization, dynamically choosing between a diversity-preserving DE/rand/1 exploratory operator, which builds new candidate solutions from the vector differences of randomly selected population members, and an exploitative PSO-style operator that pulls individuals toward personal-best and global-best positions. A linearly decaying switch probability, starting at 0.9 and falling to 0.1, ensures the search begins with broad exploration of the fitness landscape and gradually intensifies toward refinement. Layered on top is a memetic local search routine based on Powell&#8217;s Conjugate Direction method, applied stochastically to the top performers in the trial population. Because the decoded scheduling objective behaves as a black-box function with no analytically computable gradient, Powell&#8217;s method was chosen precisely because it does not require derivatives. Finally, borrowing from Evolution Strategies, each individual carries an array of strategy parameters, or mutation step sizes, that are themselves mutated and evolved, allowing the algorithm to learn the most effective search strengths for whatever landscape it faces.</p>
<p>Before touching a single cloud workload, the team validated the SA-MO engine on ten standard continuous benchmark functions against two elite competitors: L-SHADE and CMA-ES. Under the evaluation budget matched to the scheduling task, SA-MO achieved the lowest mean error on several functions, including the Sphere, Schwefel, and Dixon-Price problems, and the authors characterize the engine as competitive with, rather than definitively superior to, the CEC champions. That honesty matters; the point of the exercise was not to break convergence records but to demonstrate that the new engine belongs in the same tier as the field&#8217;s best before being entrusted with an NP-hard scheduling problem.</p>
<p>The bridge from continuous to discrete is where the paper&#8217;s novelty concentrates. Continuous optimizers manipulate real-valued vectors in n-dimensional space, while cloud scheduling is a binary assignment problem: each of n tasks must go to exactly one of k heterogeneous, geographically distributed servers. Earlier attempts to cross this divide have well-documented flaws. Naive rounding destroys the gradient information continuous optimizers depend on and often produces infeasible schedules requiring repair. Random-key encodings have mostly been confined to simplified single-objective problems like traveling-salesman variants. Purpose-built discrete metaheuristics operate natively on schedules but cannot inherit two decades of continuous-optimization innovation. The new framework sidesteps all of this with a priority-based encoding and decoding scheme. Each solution inside the optimizer is a continuous vector of task priorities; a deterministic decoder ranks the tasks and greedily assigns them to servers, respecting capacity constraints and producing feasible schedules every time. The optimizer thus treats the discrete problem as a black-box continuous function, its memetic and self-adaptive machinery untouched.</p>
<p>The scheduling problem itself is formalized as a bi-objective optimization. Because energy consumption and carbon emissions are related by a simple multiplicative factor, the team optimizes carbon directly, weighting each server&#8217;s energy use by the time-variable carbon intensity of its local electricity grid, modeled from real-world 24-hour traces provided by the ElectricityMaps API. Minimizing this objective rewards routing workloads toward regions and time windows where renewables dominate the energy mix. The second optimized objective is SLA satisfaction, with violations triggered when total latency, processing time plus network delay, exceeds each task&#8217;s contractual threshold. Energy consumption is reported as a secondary monitoring metric. The two competing objectives are fused into a single Composite Score, normalized by a scaling constant set at one million, an order-of-magnitude calibration confirmed by sensitivity analysis.</p>
<p>The empirical campaign was extensive: seven algorithm variants, six operational scenarios ranging from a low-carbon Green Grid to high-contention environments, and 30 independent runs each, totaling 1,260 optimization runs on problem instances of 500 tasks and 20 heterogeneous servers. The headline result is unambiguous. d-SA-MO achieved the best mean Composite Score, the lowest carbon emissions, and the fewest SLA violations in every single scenario, with the tightest variance. A Friedman omnibus test rejected equality of algorithms with a p-value of roughly one times ten to the minus 23, and pairwise Wilcoxon signed-rank tests with Holm-Bonferroni correction confirmed the advantage over the strongest native discrete baseline, a state-of-the-art memetic algorithm called MAJO, at p below 1.12 times ten to the minus 8. Effect sizes were equally emphatic: in the High Contention scenario, Cliff&#8217;s delta reached 0.94 against MAJO, meaning d-SA-MO won 94 percent of paired comparisons, and the advantage stayed in the very large effect band across all six environments.</p>
<p>An ablation study dissects why the architecture works. Removing the memetic local search dropped the mean score from 65.35 to 62.76 in the High Redundancy scenario, a statistically significant loss proving that global operators alone lack the precision of hybridized exploitation. Disabling self-adaptation was even more revealing: performance barely changed in the benign Green Grid setting but collapsed by more than five points in the rugged Dirty Grid landscape, demonstrating that adaptive parameter control is the algorithm&#8217;s insurance policy against harsh environments. Replacing the hybrid engine with a standard genetic search consistently underperformed the full model. The paper also established that the framework itself, not just the engine, is general-purpose: when the same priority-based bridge was fitted to standard Differential Evolution and Particle Swarm Optimization, the resulting schedulers d-DE and d-PSO both surpassed the native discrete MAJO, with median Composite Scores near 78 and 76 respectively against roughly 72.</p>
<p>Practicality was tested through scalability experiments scaling from 100 tasks and 10 servers to 2,000 tasks and 50 servers. The theoretical complexity of O(Gmax times Npop times (n log n + nk)) translated into polynomial runtime growth in practice, and remarkably, the adapted continuous algorithm actually outpaced its discrete rival: at the largest scale, d-SA-MO finished in 99.05 plus or minus 10.07 seconds versus 165.58 plus or minus 18.63 for MAJO, a difference the authors report as statistically significant. Solution quality degraded only slightly with scale, with d-SA-MO maintaining a persistent lead of about 3.3 to 3.5 points over MAJO at every instance size. Sensitivity analyses rounded out the validation, identifying p equal to 0.2 as the sweet spot for the local-search trigger probability and confirming, through a cross-evaluation procedure, that solutions trained under an overly large scaling constant mask their true carbon cost when judged at the canonical scale.</p>
<p>The implications reach beyond one scheduler. By proving that the supposed domain mismatch between continuous and discrete optimization is structural rather than inherent, the study opens a general route for deploying elite optimizers on combinatorial Green AI challenges, a result with direct relevance to United Nations Sustainable Development Goals on affordable and clean energy, industry and innovation, responsible consumption, and climate action. The authors note their simulator remains an abstraction, and they point to concrete next steps: extending SA-MO to true Pareto-based multi-objective frameworks such as NSGA-II and MOEA/D, validating the scheduler on a physical Kubernetes testbed, and exploring learned decoders that could replace the handcrafted priority bridge. For now, the message to cloud operators is clear: the most powerful mathematical engines ever built for optimization no longer need to stay in continuous space, and the climate may be the beneficiary.</p>
<p><strong>Subject of Research:</strong> Green cloud scheduling using a hybridized self-adaptive memetic optimizer adapted from continuous optimization via a cross-domain encoding framework</p>
<p><strong>Article Title:</strong> Hybridized self adaptive memetic optimization for green cloud scheduling using cross domain adaptation</p>
<p><strong>Article References:</strong> Hybridized self adaptive memetic optimization for green cloud scheduling using cross domain adaptation. (n.d.). <a href="https://doi.org/10.1007/s44564-026-00005-2" rel="noopener noreferrer">https://doi.org/10.1007/s44564-026-00005-2</a></p>
<p><strong>Image Credits:</strong> AI Generated</p>
<p><strong>DOI:</strong> <a href="https://doi.org/10.1007/s44564-026-00005-2" rel="noopener noreferrer">10.1007/s44564-026-00005-2</a></p>
<p><strong>Keywords:</strong> green cloud computing, carbon-aware scheduling, memetic algorithm, differential evolution, particle swarm optimization, self-adaptation, cross-domain adaptation, service level agreements, metaheuristics, multi-objective optimization, Green AI, data center emissions</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">197748</post-id>	</item>
		<item>
		<title>Smarter Missile Swarms: New Algorithm Weighs Survival Odds Mid-Flight</title>
		<link>https://scienmag.com/smarter-missile-swarms-new-algorithm-weighs-survival-odds-mid-flight/</link>
		
		<dc:creator><![CDATA[Grant Pearson]]></dc:creator>
		<pubDate>Thu, 03 Sep 2026 20:35:48 +0000</pubDate>
				<category><![CDATA[Space]]></category>
		<category><![CDATA[aerospace engineering advancements in missile algorithms]]></category>
		<category><![CDATA[anti-ship cruise missile]]></category>
		<category><![CDATA[anti-ship cruise missile adaptive targeting]]></category>
		<category><![CDATA[datalink]]></category>
		<category><![CDATA[defense technology for autonomous missile decision-making]]></category>
		<category><![CDATA[dynamic mission control]]></category>
		<category><![CDATA[in-flight missile replanning algorithms]]></category>
		<category><![CDATA[layered defense]]></category>
		<category><![CDATA[layered ship defense penetration probability]]></category>
		<category><![CDATA[missile collision avoidance in swarms]]></category>
		<category><![CDATA[missile swarm survival optimization]]></category>
		<category><![CDATA[mission effectiveness maximization in missile systems]]></category>
		<category><![CDATA[mission replanning]]></category>
		<category><![CDATA[Monte Carlo simulation]]></category>
		<category><![CDATA[network-centric warfare]]></category>
		<category><![CDATA[networked battlespace missile guidance]]></category>
		<category><![CDATA[particle swarm optimization]]></category>
		<category><![CDATA[probabilistic survivability modeling for missiles]]></category>
		<category><![CDATA[real-time missile trajectory reoptimization]]></category>
		<category><![CDATA[salvo attack]]></category>
		<category><![CDATA[simultaneous time-on-target]]></category>
		<category><![CDATA[survivability]]></category>
		<category><![CDATA[tactical datalink missile coordination]]></category>
		<category><![CDATA[weapon-target assignment]]></category>
		<guid isPermaLink="false">https://scienmag.com/?p=186710</guid>

					<description><![CDATA[Researchers in South Korea have developed a particle swarm optimization framework that lets datalink-enabled anti-ship cruise missiles replan target assignments, impact courses, and salvo timing in flight to maximize probabilistic survivability through layered ship defenses.]]></description>
										<content:encoded><![CDATA[<p>A modern anti-ship cruise missile is no longer a fire-and-forget weapon that simply races toward a fixed set of coordinates. In the networked battlespaces now being imagined by militaries around the world, missiles in flight can receive updated targeting information over tactical datalinks, reassess the threats arrayed against them, and adjust their plans accordingly. Translating that vision into working algorithms, however, is a formidable mathematical challenge, because every replanning decision must weigh a constantly shifting web of probabilities: the chance that a given missile penetrates layered ship defenses, the likelihood that salvo timing saturates those defenses, and the risk that maneuvering missiles collide with one another. A new study published in the International Journal of Aeronautical and Space Sciences tackles this problem head-on, presenting an optimization framework that lets a datalink-enabled anti-ship cruise missile, or ASCM, replan its mission in flight by explicitly maximizing probabilistic survivability alongside mission effectiveness.</p>
<p>The research, conducted by Kwangrae Jeong of the Agency for Defense Development in Daejeon, Republic of Korea, and Seungkeun Kim of the Department of Aerospace Engineering at Chungnam National University, frames the in-flight replanning task as a time-bounded optimization problem. The mission control variables at the heart of the framework include target assignment, which determines which missile strikes which ship; the impact course, meaning the bearing from which each missile approaches its target; and simultaneous time-on-target, or STOT, offsets, which stagger or synchronize the arrival times of missiles so that they overwhelm defensive systems in a coordinated fashion. Rather than treating these variables independently, the framework optimizes them jointly, recognizing that the choice of approach direction changes the defensive layers a missile must penetrate, while the choice of arrival timing changes how many incoming threats a ship&#8217;s combat system must handle at once.</p>
<p>Central to the approach is a probabilistic layered defense survivability model. Instead of assuming that a missile either certainly survives or certainly is destroyed, the model treats each stage of the terminal engagement as a stochastic process, estimating the probability that a missile passes through outer and inner defensive layers and reaches its impact point. Because closed-form solutions to such layered engagement models are generally intractable when realistic geometries, sensor performance, and interceptor behavior are involved, the researchers rely on Monte Carlo–based estimation. In essence, the framework repeatedly simulates engagement outcomes under random draws from the relevant uncertainty distributions and uses the resulting statistics to score any candidate mission plan. This makes survivability a measurable, comparable quantity: for any proposed combination of target assignments, impact courses, and STOT offsets, the framework can produce an estimate of how many missiles are expected to survive to impact and how effective the overall salvo will be.</p>
<p>Solving the resulting optimization problem is where the computational ingenuity of the study becomes apparent. The search space is combinatorial in target assignment, continuous in impact course and timing offsets, and expensive to evaluate because every candidate plan requires Monte Carlo simulation. The authors turn to particle swarm optimization, a bio-inspired algorithm originally introduced by Kennedy and Eberhart, in which a population of candidate solutions, called particles, moves through the search space under the influence of both their own best findings and the swarm&#8217;s collective best. PSO is well suited to mixed discrete-continuous problems of this kind, but its convergence depends heavily on how fitness is evaluated. To keep the replanning loop fast enough for operational use, the study introduces a fast–fine fitness evaluation strategy, in which candidate plans are first screened with a computationally cheap, approximate evaluation and only the most promising ones are promoted to a finer, more expensive Monte Carlo assessment. This mirrors established principles in fitness approximation and simulation optimization, where the goal is to spend limited computation where it most improves the solution.</p>
<p>Operational constraints are handled through a repair-based procedure rather than simple rejection. In many real deployments, missiles flying convergent trajectories toward the same target group risk mid-air collision, and plans that ignore this hazard are unusable regardless of how well they score on survivability. Instead of penalizing infeasible candidate plans and hoping the swarm avoids them, the repair procedure modifies infeasible solutions so that inter-missile collision avoidance and other operational constraints are satisfied, effectively nudging every particle back into the feasible region before it is judged. This constraint-handling philosophy draws on work in evolutionary computation showing that repairing solutions often outperforms penalty-based schemes, especially when feasible regions are narrow and constraints are tightly coupled to the decision variables.</p>
<p>The benchmark against which the new framework is measured is telling. The researchers compare their optimized plans with a densest-STOT baseline, a strategy that maximizes the concentration of missiles arriving simultaneously to saturate ship defenses. Saturation attack concepts have a long history in naval warfare analysis, from salvo models of missile combat to route planning studies for cruise missiles, and the densest-STOT approach embodies the intuitive idea that the harder it is for a combat system to engage many targets at once, the more missiles will leak through. The simulation results, however, show that intuitively appealing density is not always optimal. By trading some timing density for better approach geometry and assignment choices, the survivability-based optimizer achieves improved mission effectiveness and improved survivability compared with the baseline, demonstrating that explicitly modeling the probabilistic structure of layered defenses uncovers plans that simple saturation heuristics miss.</p>
<p>The datalink dimension of the study is what elevates it from a planning exercise to a blueprint for dynamic mission control. In a network-centric warfare environment, launch platforms, sensor assets, and the missiles themselves form a tactical network through which targeting updates and threat information flow continuously. Prior work on airborne tactical networks and disruption-tolerant networking has explored how to keep such links robust at the communications edge, and prior guidance research has addressed cooperative salvo attack for multiple missiles. What has been missing, the authors argue, is a methodological bridge that converts networked situational awareness into concrete in-flight replanning decisions under uncertainty. Their framework provides exactly that bridge: when new threat or target information arrives over the datalink, the time-bounded replanning problem can be re-solved, and updated target assignments, impact courses, and STOT offsets can be pushed back to the missiles before their terminal phases begin.</p>
<p>The technical architecture also reflects hard real-time limits. Because replanning must complete within a bounded window of flight time, the fast–fine evaluation strategy and repair procedures are not merely conveniences but necessities. The researchers&#8217; use of Monte Carlo estimation within a simulation-optimization loop follows a well-established line of research on stochastic optimization and reliability estimation, including particle swarm approaches coupled with Monte Carlo simulation for complex network reliability problems. By combining these threads with a realistic layered defense model, the study offers something rarer: an end-to-end pipeline in which engagement statistics, constraint handling, and swarm-based search are tuned to the operational tempo of a missile engagement rather than to an abstract benchmark function.</p>
<p>The implications reach beyond the specific weapon system studied. Weapon–target assignment and firing scheduling problems have been treated extensively in the defense operations research literature, from knowledge-based threat evaluation systems to approximate dynamic programming for interceptor fire control, and increasingly with evolutionary and swarm methods for UAV swarm task assignment in hostile environments. The present framework contributes a distinct perspective by making the attacker&#8217;s own survivability, rather than expected damage alone, a first-class objective in a replanning loop that can respond to networked updates. In an era when ship defenses are growing more layered and more automated, the side that can recompute its salvo plan faster and more realistically holds a measurable edge, and the authors position their work as a methodological basis for practical dynamic mission control of ASCMs in exactly these contested, network-centric environments.</p>
<p>For all its military specificity, the study is also a case study in modern optimization practice: a stochastic, expensive-to-evaluate, mixed-integer problem solved by combining swarm intelligence with tiered fitness evaluation and constraint repair, validated against a meaningful operational baseline. Jeong developed the model, performed the simulations, and analyzed the results, while Kim conceived the study concept and critically revised the manuscript, with the research receiving no external funding. As navies invest in both networked offensive weapons and more capable layered defenses, the mathematical race between saturation and survival is accelerating. Work like this suggests that the decisive factor may not be the raw speed or number of missiles, but the quality and timeliness of the probability-weighted reasoning performed onboard and across the network that guides them.</p>
<p><strong>Subject of Research:</strong> Probabilistic survivability-based in-flight mission replanning optimization for datalink-enabled anti-ship cruise missiles</p>
<p><strong>Article Title:</strong> Probabilistic Survivability-Based Mission Replanning Optimization for the Datalink-Enabled Anti-ship Cruise Missile</p>
<p><strong>Article References:</strong> Jeong, K., &amp; Kim, S. (2026). Probabilistic Survivability-Based Mission Replanning Optimization for the Datalink-Enabled Anti-ship Cruise Missile. <em>International Journal of Aeronautical and Space Sciences</em>. <a href="https://doi.org/10.1007/s42405-026-01268-7" rel="noopener noreferrer">https://doi.org/10.1007/s42405-026-01268-7</a></p>
<p><strong>Image Credits:</strong> AI Generated</p>
<p><strong>DOI:</strong> <a href="https://doi.org/10.1007/s42405-026-01268-7" rel="noopener noreferrer">10.1007/s42405-026-01268-7</a></p>
<p><strong>Keywords:</strong> anti-ship cruise missile, mission replanning, particle swarm optimization, Monte Carlo simulation, survivability, layered defense, simultaneous time-on-target, datalink, network-centric warfare, weapon-target assignment, salvo attack, dynamic mission control</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">186710</post-id>	</item>
	</channel>
</rss>
