<?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>lightweight quantum chemistry on laptops and smartphones &#8211; Science</title>
	<atom:link href="https://scienmag.com/tag/lightweight-quantum-chemistry-on-laptops-and-smartphones/feed/" rel="self" type="application/rss+xml" />
	<link>https://scienmag.com</link>
	<description></description>
	<lastBuildDate>Thu, 24 Sep 2026 01:23:41 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.1.2</generator>

<image>
	<url>https://scienmag.com/wp-content/uploads/2024/07/cropped-scienmag_ico-32x32.jpg</url>
	<title>lightweight quantum chemistry on laptops and smartphones &#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>Quantum Chemistry in a Browser Tab: New Platform Runs Full Calculations With Zero Installation</title>
		<link>https://scienmag.com/quantum-chemistry-in-a-browser-tab-new-platform-runs-full-calculations-with-zero-installation/</link>
		
		<dc:creator><![CDATA[Bethany Barker]]></dc:creator>
		<pubDate>Thu, 24 Sep 2026 01:23:41 +0000</pubDate>
				<category><![CDATA[Technology and Engineering]]></category>
		<category><![CDATA[browser computing]]></category>
		<category><![CDATA[browser tab quantum simulations]]></category>
		<category><![CDATA[client-side quantum chemistry tools]]></category>
		<category><![CDATA[cloud-free quantum chemistry platforms]]></category>
		<category><![CDATA[computational chemistry]]></category>
		<category><![CDATA[coupled cluster]]></category>
		<category><![CDATA[density functional theory]]></category>
		<category><![CDATA[electronic structure]]></category>
		<category><![CDATA[full quantum chemistry computations online]]></category>
		<category><![CDATA[GANSU Lite]]></category>
		<category><![CDATA[GANSU Lite molecular modeling]]></category>
		<category><![CDATA[GPU-native quantum chemistry software]]></category>
		<category><![CDATA[Hartree–Fock]]></category>
		<category><![CDATA[Hiroshima University]]></category>
		<category><![CDATA[lightweight quantum chemistry on laptops and smartphones]]></category>
		<category><![CDATA[open-source software]]></category>
		<category><![CDATA[quantum chemistry]]></category>
		<category><![CDATA[quantum chemistry browser platform]]></category>
		<category><![CDATA[vibrational analysis]]></category>
		<category><![CDATA[web-based electronic-structure calculations]]></category>
		<category><![CDATA[web-based vibrational analysis and Hessian computations]]></category>
		<category><![CDATA[web-enabled Hartree–Fock and DFT calculations]]></category>
		<category><![CDATA[WebAssembly]]></category>
		<category><![CDATA[zero-install quantum chemistry software]]></category>
		<guid isPermaLink="false">https://scienmag.com/?p=211930</guid>

					<description><![CDATA[A new browser-based platform called GANSU Lite runs full quantum chemistry calculations, from Hartree–Fock to coupled cluster and vibrational analysis, entirely on the client with no installation, server, or account.]]></description>
										<content:encoded><![CDATA[<p>For decades, running a quantum chemistry calculation has meant installing software. Researchers typed keyword-heavy input decks, managed Python environments, compiled source trees, or queued jobs on clusters just to predict something as simple as the shape of a water molecule. A team at Hiroshima University has now collapsed that entire workflow into a single web address. Their new platform, GANSU Lite, performs genuine electronic-structure calculations—Hartree–Fock, density-functional theory, coupled cluster, vibrational analysis, and more—entirely inside a browser tab, with nothing installed, no server involved, and no account required. A user opens a URL, picks a molecule, and presses Run.</p>
<p>The software, described in the journal SoftwareX, is the work of Yasuaki Ito and colleagues, who built it as a lightweight companion to their GPU-native research code GANSU. Where GANSU targets CUDA-equipped supercomputers and research-sized molecules, GANSU Lite targets the hardware a person already owns: a laptop, a tablet, or even a smartphone. The distinction matters because, as the authors note in their survey of the existing landscape, no prior package combines a full self-consistent-field (SCF) engine, density-functional theory, post-Hartree–Fock correlation methods, analytic derivatives, Hessians, and vibrational analysis while running entirely on the client side. Web front ends such as WebMO and CalcUS hide the installation behind institutional servers; browser viewers such as Jmol and 3Dmol.js render molecules but solve nothing. GANSU Lite is, by its authors&#8217; account, the first tool to do both.</p>
<p>Two features of the modern web platform make this possible. The first is WebAssembly, a binary instruction format that lets developers compile code written in fast systems languages—in this case Rust—and run it in the browser at near-native speed. GANSU Lite&#8217;s arithmetic-heavy kernels, including the electron-repulsion integrals, Fock matrix builds, molecular-orbital transformations, and coupled-cluster amplitudes that dominate the wall time of a calculation, are compiled Rust modules shipped as static assets. The second is the Web Worker, a genuine background thread that keeps the interface responsive. The entire SCF driver runs off the main UI thread, so a multi-second calculation never freezes the page; a live panel reports the current iteration, and users can cancel a running job at any time without reloading.</p>
<p>The architecture splits cleanly into two layers. A TypeScript layer handles everything the browser sees: the document structure, the Three.js scene graph that renders and rotates molecules, session storage, and the SCF control flow with its convergence tests and DIIS bookkeeping. The Rust layer owns the dense floating-point work—the two-electron integrals that describe how every pair of electrons interacts, the effective potentials assembled from them, and the derivative machinery for gradients and Hessians. Within each SCF iteration, one-electron integrals are computed in TypeScript while the two-electron block dispatches among three classical integral-evaluation schemes—McMurchie–Davidson, Obara–Saika, and Rys quadrature—chosen by the angular momentum of each shell quartet, with Schwarz screening and eight-fold permutation symmetry trimming the workload. Resolution-of-identity approximations, which factorize the two-electron integrals to cut their cost, are available for Coulomb, exchange, and MP2 terms.</p>
<p>The deployed site exposes eight task-focused pages. A free-form single-point calculator accepts molecules from a built-in library of more than two dozen species—ranging from hydrogen and small ions up to benzene, naphthalene, and vitamin C—or from a pasted or uploaded XYZ file. Seven curated pages each isolate one concept: basis-set convergence plots total energy against basis-set label; a Walsh diagram page sweeps bond angles and overlays orbital-energy curves; a vibrational page computes harmonic frequencies and simulated infrared spectra; a potential-energy-scan page stretches bonds; a multi-method page places Hartree–Fock, MP2, and CCSD side by side; and pages for geometry optimization and atomic charges round out the set. Seven standard basis sets, from the minimal STO-3G to the triple-zeta def2-TZVP, are selectable with a row of buttons.</p>
<p>The method list reads like a syllabus for computational chemistry. Restricted, unrestricted, and restricted-open-shell Hartree–Fock; Kohn–Sham DFT with LDA, GGA, meta-GGA, and hybrid functionals including B3LYP and PBE0; Grimme&#8217;s D2 dispersion correction; MP2 and MP3 perturbation theory; coupled-cluster singles and doubles; and three excited-state methods—CIS, ADC(2), and TDDFT—that predict the wavelengths at which molecules absorb light. Every calculation runs to convergence in the browser; nothing is precomputed on a server. Results arrive as tables of orbital energies, Mulliken and Löwdin charges, and Wiberg bond orders, alongside plots drawn on HTML canvas: convergence curves, potential-energy profiles, and simulated spectra.</p>
<p>Three-dimensional orbital isosurfaces, too expensive to render comfortably in the calculator itself, are delegated to a sibling tool called MOrbVis. With one click, GANSU Lite serializes the converged wavefunction as a standard Molden record, writes it into the browser&#8217;s sessionStorage, and opens MOrbVis in a new tab, which reads the record and renders interactive orbitals with positive and negative lobes and cross-section cuts. Because the handoff travels through sessionStorage rather than a network, the wavefunction never leaves the browser and is discarded when the tab closes—preserving the platform&#8217;s zero-upload guarantee. And because Molden is a standard interchange format, the same wavefunction can be opened in desktop tools such as Molden or Avogadro.</p>
<p>The benchmark results are striking. On four devices—a Windows desktop, a Windows laptop, an Apple-silicon laptop, and an iPhone 16 Pro Max—the heaviest test workload, a Hessian calculation for carbon dioxide, completed in 17 to 36 seconds, while single-point and optimization tasks finished in under five seconds everywhere. At a fixed 150-basis-function workload, the phone actually outran both Windows machines, completing in 91.9 seconds against 152.5 and 175.4 seconds, because the kernel is single-threaded WebAssembly with SIMD instructions, so a fast single core beats many slower ones. Correctness was verified against the established PySCF package: Hartree–Fock and MP2 total energies for small molecules in three basis sets agreed to within two millionths of a Hartree. WebAssembly&#8217;s pinning of floating-point arithmetic to a well-specified IEEE-754 subset means the same calculation yields essentially identical answers across browsers and operating systems—a quiet but consequential win for reproducibility.</p>
<p>The limits are honest and well mapped. The two-electron integrals are held in memory, and their storage grows as the fourth power of system size, so calculations hit WebAssembly&#8217;s 32-bit address-space ceiling of 4 gigabytes at roughly 200 basis functions—regardless of how much RAM the machine has. The iPhone fails earlier and for a different reason: iOS reclaims tabs that hold too much memory for too long, illustrating that on mobile, being able to allocate memory and being able to sustain it are different things. The single-threaded design is itself a deliberate trade-off, since multi-threaded WebAssembly requires cross-origin isolation headers that are awkward to provide on plain static hosts. The authors are candid that GANSU Lite trades peak throughput for reach; it does not replace research-grade packages, and they do not claim it does.</p>
<p>What the platform removes instead is the barrier between curiosity and computation. A lecturer can compute and display a result live during a talk on whatever machine the room provides. A reader can check a published number by opening a URL rather than installing a package to reproduce a single data point. An author can attach a live, re-runnable demonstration to a paper, letting anyone inspect a claim on any device. In classrooms and outreach settings, where provisioning software on every machine is impractical or forbidden, every participant can run the same calculation from a shared link. The enabling idea is simple and, in retrospect, obvious: the calculation travels as a URL, and the computation happens on whatever hardware is already at hand. Released under the BSD-3-Clause license with a public demo and repository, GANSU Lite turns the browser tab—arguably the most universally available computing environment ever deployed—into a working quantum chemistry laboratory.</p>
<p><strong>Subject of Research:</strong> A zero-install, browser-based quantum chemistry platform built on WebAssembly and Web Workers</p>
<p><strong>Article Title:</strong> GANSU lite: A zero-install, browser-based quantum chemistry platform</p>
<p><strong>Article References:</strong> Ito, Y., Fujii, H., Tsuji, S., Nakano, K., &amp; Kasagi, A. (2026). GANSU lite: A zero-install, browser-based quantum chemistry platform. <em>SoftwareX, 36</em>, Article 103046. <a href="https://doi.org/10.1016/j.softx.2026.103046" rel="noopener noreferrer">https://doi.org/10.1016/j.softx.2026.103046</a></p>
<p><strong>Image Credits:</strong> AI Generated</p>
<p><strong>DOI:</strong> <a href="https://doi.org/10.1016/j.softx.2026.103046" rel="noopener noreferrer">10.1016/j.softx.2026.103046</a></p>
<p><strong>Keywords:</strong> quantum chemistry, GANSU Lite, WebAssembly, electronic structure, Hartree–Fock, density-functional theory, coupled cluster, browser computing, vibrational analysis, Hiroshima University, open-source software, computational chemistry</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">211930</post-id>	</item>
	</channel>
</rss>
