Source author record

Song Jiang

Song Jiang appears in the imported research catalog. Authorship, coauthor and topic links are available while profile ownership is still unclaimed.

ResearcherUnclaimed source record

Catalog footprint

What is connected

32works
11topics
4close collaborators

Actions

Connect this record

Log in to claim

Research graph

See the researcher in context

Open full explorer

Inspect adjacent papers, topics, institutions and collaborators without losing the researcher page.

Building this map preview

BZPEER is loading the nearby papers, people, topics and institutions for this page.

Published work

32 published item(s)

preprint2026arXiv

On the global stability and large time behavior of solutions of the Boussinesq equations

We study the two dimensional viscous Boussinesq equations, which model stratified flows in a circular domain under the influence of a general gravitational potential $f$. First, we show that the Boussinesq equations admit steady-state solutions only in the form of hydrostatic equilibria, $(\mathbf{u},ρ,p) = (0, ρ_s, p_s)$, where the pressure gradient satisfies $\nabla p_s = -ρ_s \nabla f$. Moreover, the relation between $ρ_s$ and $f$ is constrained by $(\partial_y ρ_s, -\partial_x ρ_s) \cdot (\partial_x f, \partial_y f) = 0$, which allows us to write $\nabla ρ_s = h(x,y) \nabla f$ for some scalar function $h(x,y)$. Second, we prove that any hydrostatic equilibrium $(0, ρ_s, p_s)$ is linearly unstable if $h(x_0, y_0) > 0$ at some point $(x, y) = (x_0, y_0)$. This instability coincides with the classical Rayleigh--Taylor instability. Third, by employing a series of regularity estimates, we reveal that although the presence of the Rayleigh--Taylor instability makes perturbations around the unstable equilibrium grow exponentially in time, the system ultimately converges to a state of hydrostatic equilibrium. The analysis is carried out for perturbations about an arbitrary hydrostatic equilibrium, covering both stable and unstable configurations. Finally, we derive a necessary and sufficient condition on the initial density perturbation under which the density converges to a profile of the form $-γf + β$ with constants $γ, β> 0$. This result underscores the system's inherent tendency to settle into a hydrostatic state, even in the presence of Rayleigh--Taylor instability.

preprint2022arXiv

Length-independent quantum transport through topological band states of graphene nanoribbons

Atomically precise graphene nanoribbons (GNRs) have emerged as promising candidates for nanoelectronic applications due to their widely tunable energy band gaps resulting from lateral quantum confinement and edge effects. Here we report on the electronic transport characterization of an edge-modified GNR suspended between the tip of a scanning tunneling microscope (STM) and a Au(111) substrate. Differential conductance measurements on this metal-GNR-metal junction reveal loss-less transport properties (inverse decay length $β< 0.001 /\overset{\circ}{\mathrm{A}}$) with high conductance ($\sim 0.1$ G$_0$) at low voltages (50 meV) over long distances ($z > 10$ nm). The transport behavior is sensitive to the coupling between ribbon and electrodes, an effect that is rationalized using tight-binding and density functional theory simulations. From extensive modelling we infer that the length-independent transport is a manifestation of band transport through topological valence states, which originate from the zigzag segments on the GNR edges.

preprint2022arXiv

On Inhibition of Rayleigh--Taylor Instability by a Horizontal Magnetic Field in Non-resistive MHD Fluids: the Viscous Case

It is still open whether the phenomenon of inhibition of Rayleigh--Taylor (RT) instability by a horizontal magnetic field can be mathematically verified for a non-resistive \emph{viscous} magnetohydrodynamic (MHD) fluid in a two-dimensional (2D) horizontal slab domain, since it was roughly proved in the linearized case by Wang in \cite{WYC}. In this paper, we prove such inhibition phenomenon by the (nonlinear) inhomogeneous, incompressible, \emph{viscous case} with \emph{Navier (slip) boundary condition}. More precisely, we show that there is a critical number of field strength $m_{\mm{C}}$, such that if the strength $|m|$ of a horizontal magnetic field is bigger than $m_{\mm{C}}$, then the small perturbation solution around the magnetic RT equilibrium state is {algebraically} stable in time. In addition, we also provide a nonlinear instability result for the case $|m|\in[0, m_{\mm{C}})$. The instability result presents that a horizontal magnetic field can not inhibit the RT instability, if it's strength is too small.

preprint2022arXiv

Relational Message Passing for Fully Inductive Knowledge Graph Completion

In knowledge graph completion (KGC), predicting triples involving emerging entities and/or relations, which are unseen when the KG embeddings are learned, has become a critical challenge. Subgraph reasoning with message passing is a promising and popular solution. Some recent methods have achieved good performance, but they (i) usually can only predict triples involving unseen entities alone, failing to address more realistic fully inductive situations with both unseen entities and unseen relations, and (ii) often conduct message passing over the entities with the relation patterns not fully utilized. In this study, we propose a new method named RMPI which uses a novel Relational Message Passing network for fully Inductive KGC. It passes messages directly between relations to make full use of the relation patterns for subgraph reasoning with new techniques on graph transformation, graph pruning, relation-aware neighborhood attention, addressing empty subgraphs, etc., and can utilize the relation semantics defined in the ontological schema of KG. Extensive evaluation on multiple benchmarks has shown the effectiveness of techniques involved in RMPI and its better performance compared with the existing methods that support fully inductive KGC. RMPI is also comparable to the state-of-the-art partially inductive KGC methods with very promising results achieved. Our codes and data are available at https://github.com/zjukg/RMPI.

preprint2021arXiv

Asymptotic Behaviors of Global Solutions to the Two-Dimensional Non-resistive MHD Equations with Large Initial Perturbations

This paper is concerned with the asymptotic behaviors of global strong solutions to the incompressible non-resistive viscous magnetohydrodynamic (MHD) equations with large initial perturbations in two-dimensional periodic domains in Lagrangian coordinates. First, motivated by the odevity conditions imposed in [Arch. Ration. Mech. Anal. 227 (2018), 637--662], we prove the existence and uniqueness of strong solutions under some class of large initial perturbations, where the strength of impressive magnetic fields depends increasingly on the $H^2$-norm of the initial perturbation values of both velocity and magnetic field. Then, we establish time-decay rates of strong solutions. Moreover, we find that $H^2$-norm of the velocity decays faster than the perturbed magnetic field. Finally, by developing some new analysis techniques, we show that the strong solution convergence in a rate of the field strength to the solution of the corresponding linearized problem as the strength of the impressive magnetic field goes to infinity. In addition, an extension of similar results to the corresponding inviscid case with damping is presented.

preprint2021arXiv

REMIX: Efficient Range Query for LSM-trees

LSM-tree based key-value (KV) stores organize data in a multi-level structure for high-speed writes. Range queries on traditional LSM-trees must seek and sort-merge data from multiple table files on the fly, which is expensive and often leads to mediocre read performance. To improve range query efficiency on LSM-trees, we introduce a space-efficient KV index data structure, named REMIX, that records a globally sorted view of KV data spanning multiple table files. A range query on multiple REMIX-indexed data files can quickly locate the target key using a binary search, and retrieve subsequent keys in sorted order without key comparisons. We build RemixDB, an LSM-tree based KV-store that adopts a write-efficient compaction strategy and employs REMIXes for fast point and range queries. Experimental results show that REMIXes can substantially improve range query performance in a write-optimized LSM-tree based KV-store.

preprint2020arXiv

Strong Solutions of the Equations for Viscoelastic Fluids in Some Classes of Large Data

We study the existence and uniqueness of global strong solutions to the equations of an incompressible viscoelastic fluid in a spatially periodic domain, and show that a unique strong solution exists globally in time if the initial deformation and velocity are small for the given physical parameters. In particular, the initial velocity can be large for the large elasticity coefficient. The result of this paper mathematically verifies that the elasticity can prevent the formation of singularities of strong solutions with large initial velocity, thus playing a similar role to viscosity in preventing the formation of singularities in viscous flows. Moreover, for given initial velocity perturbation and zero initial deformation around the rest state, we find, as the elasticity coefficient or time go to infinity, that (1) any straight line segment $l^0$ consisted of fluid particles in the rest state, after being bent by a velocity perturbation, will turn into a straight line segment that is parallel to $l^0$ and has the same length as $l^0$. (2) the motion of the viscoelastic fluid can be approximated by a linear pressureless motion in Lagrangian coordinates, even when the initial velocity is large. Moreover, the above mentioned phenomena can also be found in the corresponding compressible fluid case.

preprint2019arXiv

An Efficient High-Order Gas-Kinetic Scheme (I): Euler equations

In this paper, an efficient high-order gas-kinetic scheme (EHGKS) is proposed to solve the Euler equations for compressible flows. We re-investigate the underlying mechanism of the high-order gas-kinetic scheme (HGKS) and find a new strategy to improve its efficiency. The main idea of the new scheme contains two parts. Firstly, inspired by the state-of-art simplifications on the third-order HGKS, we extend the HGKS to the case of arbitrary high-order accuracy and eliminate its unnecessary high-order dissipation terms. Secondly, instead of computing the derivatives of particle distribution function and their complex moments, we introduce a Lax-Wendroff procedure to compute the high-order derivatives of macroscopic quantities directly. The new scheme takes advantage of both HGKS and the Lax-Wendroff procedure, so that it can be easily extended to the case of arbitrary high-order accuracy with practical significance. Typical numerical tests are carried out by EHGKS, with the third, fifth and seventh-order accuracy. The presence of good resolution on the discontinuities and flow details, together with the optimal CFL numbers, validates the high accuracy and strong robustness of EHGKS. To compare the efficiency, we present the results computed by the EHGKS, the original HGKS and Runge-Kutta-WENO-GKS. This further demonstrates the advantages of EHGKS.

preprint2015arXiv

Convergence of the complete electromagnetic fluid system to the full compressible magnetohydrodynamic equations

The full compressible magnetohydrodynamic equations can be derived formally from the complete electromagnetic fluid system in some sense as the dielectric constant tends to zero. This process is usually referred as magnetohydrodynamic approximation in physical books. In this paper we justify this singular limit rigorously in the framework of smooth solutions for well-prepared initial data.

preprint2015arXiv

HFVS: An Arbitrary High Order Flux Vector Splitting Method

In this paper, a new scheme of arbitrary high order accuracy in both space and time is proposed to solve hyperbolic conservative laws. Based on the idea of flux vector splitting(FVS) scheme, we split all the space and time derivatives in the Taylor expansion of the numerical flux into two parts: one part with positive eigenvalues, another part with negative eigenvalues. According to a Lax-Wendroff procedure, all the time derivatives are then replaced by space derivatives. And the space derivatives is calculated by WENO reconstruction polynomial. One of the most important advantages of this new scheme is easy to implement.In addition, it should be pointed out, the procedure of calculating the space and time derivatives in numerical flux can be used as a building block to extend the current first order schemes to very high order accuracy in both space and time. Numerous numerical tests for linear and nonlinear hyperbolic conservative laws demonstrate that new scheme is robust and can be high order accuracy in both space and time.

preprint2015arXiv

Non-relativistic limit of the compressible Navier-Stokes-Fourier-P1 approximation model arising in radiation hydrodynamics

As is well-known that the general radiation hydrodynamics models include two mainly coupled parts: one is macroscopic fluid part, which is governed by the compressible Navier-Stokes-Fourier equations, another is radiation field part, which is described by the transport equation of photons. Under the two physical approximations: "gray" approximation and P1 approximation, one can derive the so-called Navier-Stokes-Fourier-P1 approximation radiation hydrodynamics model from the general one. In this paper we study the non-relativistic limit problem for the Navier-Stokes-Fourier-P1 approximation model due to the fact that the speed of light is much larger than the speed of the macroscopic fluid. Our results give a rigorous derivation of the widely used macroscopic model in radiation hydrodynamics.

preprint2015arXiv

On Linear Instability and Stability of the Rayleigh-Taylor Problem in Magnetohydrodynamics

We investigate the stabilizing effects of the magnetic fields in the linearized magnetic Rayleigh-Taylor (RT) problem of a nonhomogeneous incompressible viscous magnetohydrodynamic fluid of zero resistivity in the presence of a uniform gravitational field in a three-dimensional bounded domain, in which the velocity of the fluid is non-slip on the boundary. By adapting a modified variational method and careful deriving \emph{a priori} estimates, we establish a criterion for the instability/stability of the linearized problem around a magnetic RT equilibrium state. In the criterion, we find a new phenomenon that a sufficiently strong horizontal magnetic field has the same stabilizing effect as that of the vertical magnetic field on growth of the magnetic RT instability. In addition, we further study the corresponding compressible case, i.e., the Parker (or magnetic buoyancy) problem, for which the strength of a horizontal magnetic field decreases with height, and also show the stabilizing effect of a sufficiently large magnetic field.

preprint2015arXiv

On the vanishing resistivity limit and the magnetic boundary-layers for one-dimensional compressible magnetohydrodynamics

We consider an initial-boundary value problem for the one-dimensional equations of compressible isentropic viscous and non-resistive magnetohydrodynamic flows. The global well-posedness of strong solutions with general large data is established. Moreover, the vanishing resistivity limit is justified and the thickness of magnetic boundary layers is analyzed. The proofs of these results are based on a full use of the so-called "effective viscous flux", the material derivative and the structure of the equations.

preprint2014arXiv

Existence of strong solutions to the steady Navier-Stokes equations for a compressible heat-conductive fluid with large forces

We prove that there exists a strong solution to the Dirichlet boundary value problem for the steady Navier-Stokes equations of a compressible heat-conductive fluid with large external forces in a bounded domain $R^d (d = 2, 3)$, provided that the Mach number is appropriately small. At the same time, the low Mach number limit is rigorously verified. The basic idea in the proof is to split the equations into two parts, one of which is similar to the steady incompressible Navier-Stokes equations with large forces, while another part corresponds to the steady compressible heat-conductive Navier-Stokes equations with small forces. The existence is then established by dealing with these two parts separately, establishing uniform in the Mach number a priori estimates and exploiting the known results on the steady incompressible Navier-Stokes equations.

preprint2014arXiv

Low Mach number limit for the full compressible magnetohydrodynamic equations with general initial data

The low Mach number limit for the full compressible magnetohydrodynamic equations with general initial data is rigorously justified in the whole space $\mathbb{R}^3$. The uniform in Mach number estimates of the solutions in a Sobolev space are obtained on a time interval independent of the Mach number. The limit is proved by using the established uniform estimates and a theorem due to Métiver and Schochet [Arch. Ration. Mech. Anal. 158 (2001), 61-90] for the Euler equations that gives the local energy decay of the acoustic wave equations.

preprint2014arXiv

Nonlinear Rayleigh-Taylor Instability for Nonhomogeneous Incompressible Viscous Magnetohydrodynamic Flows

We investigate the nonlinear instability of a smooth Rayleigh-Taylor steady-state solution (including the case of heavier density with increasing height) to the three-dimensional incompressible nonhomogeneous magnetohydrodynamic (MHD) equations of zero resistivity in the presence of a uniform gravitational field. We first analyze the linearized equations around the steady-state solution. Then we construct solutions of the linearized problem that grow in time in the Sobolev space $H^k$, thus leading to the linear instability. With the help of the constructed unstable solutions of the linearized problem and a local well-posedness result of smooth solutions to the original nonlinear problem, we establish the instability of the density, the horizontal and vertical velocities in the nonlinear problem. Moreover, when the steady magnetic field is vertical and small, we prove the instability of the magnetic field. This verifies the physical phenomenon: instability of the velocity leads to the instability of the magnetic field through the induction equation.

preprint2013arXiv

Global Weak Solutions to the Equations of Compressible Flow of Nematic Liquid Crystals in Two Dimensions

We consider weak solutions to a two-dimensional simplified Ericksen-Leslie system of compressible flow of nematic liquid crystals. An initial-boundary value problem is first studied in a bounded domain. By developing new techniques and estimates to overcome the difficulties induced by the supercritical nonlinearity in the equations of angular momentum on the direction field, and adapting the standard three-level approximation scheme and the weak convergence arguments for the compressible Navier-Stokes equations, we establish the global existence of weak solutions under a restriction imposed on the initial energy including the case of small initial energy. Then the Cauchy problem with large initial data is investigated, and we prove the global existence of large weak solutions by using the domain expansion technique and the rigidity theorem, provided that the second component of initial data of the direction field satisfies some geometric angle condition.

preprint2013arXiv

Incompressible limit of the non-isentropic ideal magnetohydrodynamic equations

We study the incompressible limit of the compressible non-isentropic ideal magnetohydrodynamic equations with general initial data in the whole space $\mathbb{R}^d$ ($d=2,3$). We first establish the existence of classic solutions on a time interval independent of the Mach number. Then, by deriving uniform a priori estimates, we obtain the convergence of the solution to that of the incompressible magnetohydrodynamic equations as the Mach number tends to zero.

preprint2013arXiv

On Instability and Stability of Three-Dimensional Gravity Driven Viscous Flows in a Bounded Domain

We investigate the instability and stability of some steady-states of a three-dimensional nonhomogeneous incompressible viscous flow driven by gravity in a bounded domain $Ω$ of class $C^2$. When the steady density is heavier with increasing height (i.e., the Rayleigh-Taylor steady-state), we show that the steady-state is linear unstable (i.e., the linear solution grows in time in $H^2$) by constructing a (standard) energy functional and exploiting the modified variational method. Then, by introducing a new energy functional and using a careful bootstrap argument, we further show that the steady-state is nonlinear unstable in the sense of Hadamard. When the steady density is lighter with increasing height, we show, with the help of a restricted condition imposed on steady density, that the steady-state is linearly globally stable and nonlinearly locally stable in the sense of Hadamard.

preprint2013arXiv

On Multi-dimensional Compressible Flows of Nematic Liquid Crystals with Large Initial Energy in a Bounded Domain

We study the global existence of weak solutions to a multi-dimensional simplified Ericksen-Leslie system for compressible flows of nematic liquid crystals with large initial energy in a bounded domain $Ω\subset \mathbb{R}^N$, where N=2 or 3. By exploiting a maximum principle, Nirenberg's interpolation inequality and a smallness condition imposed on the $N$-th component of initial direction field $\mf{d}_0$ to overcome the difficulties induced by the supercritical nonlinearity $|\nabla{\mathbf d}|^2{\mathbf d}$ in the equations of angular momentum, and then adapting a modified three-dimensional approximation scheme and the weak convergence arguments for the compressible Navier-Stokes equations, we establish the global existence of weak solutions to the initial-boundary problem with large initial energy and without any smallness condition on the initial density and velocity.

preprint2013arXiv

On the existence of weak solutions to the three-dimensional steady compressible Navier-Stokes equations in bounded domains

We prove the existence of a weak solution to the three-dimensional steady compressible isentropic Navier-Stokes equations in bounded domains for any specific heat ratio γ> 1. Generally speaking, the proof is based on the new weighted estimates of both pressure and kinetic energy for the approximate system which result in some higher integrability of the density, and the method of weak convergence. Comparing with [12] where the spatially periodic case was studied, here we have to control the additional integral terms of both pressure and kinetic energy involving with the points near the boundary which become degenerate when the points approach the boundary. Such integral terms are estimated using some new techniques, i.e., we use the techniques of the mirror image and boundary straightening to prove that the weighted estimates of both pressure and kinetic energy for the points near the boundary can be controlled by the weighted estimates for the points on the boundary. Moreover, we prove that once the weighted estimates of the kinetic energy in the direction of the unit normal to the boundary are bounded, we can control the weighted estimates of the total energy on the boundary.

preprint2012arXiv

Global weak solutions to the two-dimensional Navier-Stokes equations of compressible heat-conducting flows with symmetric data and forces

We prove the global existence of weak solutions to the Navier-Stokes equations of compressible heat-conducting fluids in two spatial dimensions with initial data and external forces which are large and spherically symmetric. The solutions will be obtained as the limit of the approximate solutions in an annular domain. We first derive a number of regularity results on the approximate physical quantities in the "fluid region", as well as the new uniform integrability of the velocity and temperature in the entire space-time domain by exploiting the theory of the Orlicz spaces. By virtue of these a priori estimates we then argue in a manner similar to that in [Arch. Rational Mech. Anal. 173 (2004), 297-343] to pass to the limit and show that the limiting functions are indeed a weak solution which satisfies the mass and momentum equations in the entire space-time domain in the sense of distributions, and the energy equation in any compact subset of the "fluid region".

preprint2012arXiv

Low Mach number limit for the multi-dimensional Full magnetohydrodynamic equations

The low Mach number limit for the multi-dimensional full magnetohydrodynamic equations, in which the effect of thermal conduction is taken into account, is rigorously justified in the framework of classical solutions with small density and temperature variations. Moreover, we show that for sufficiently small Mach number, the compressible magnetohydrodynamic equations admit a smooth solution on the time interval where the smooth solution of the incompressible magnetohydrodynamic equations exists. In addition, the low Mach number limit for the ideal magnetohydrodynamic equations with small entropy variation is also investigated. The convergence rates are obtained in both cases.

preprint2012arXiv

Nonlinear Instability for Nonhomogeneous Incompressible Viscous Fluids

We investigate the nonlinear instability of a smooth steady density profile solution of the threedimensional nonhomogeneous incompressible Navier-Stokes equations in the presence of a uniform gravitational field, including a Rayleigh-Taylor steady-state solution with heavier density with increasing height (referred to the Rayleigh-Taylor instability). We first analyze the equations obtained from linearization around the steady density profile solution. Then we construct solutions of the linearized problem that grow in time in the Sobolev space Hk, thus leading to a global instability result for the linearized problem. With the help of the constructed unstable solutions and an existence theorem of classical solutions to the original nonlinear equations, we can then demonstrate the instability of the nonlinear problem in some sense. Our analysis shows that the third component of the velocity already induces the instability, this is different from the previous known results.

preprint2012arXiv

On the Rayleigh-Taylor instability for incompressible viscous magnetohydrodynamic equations

We study the Rayleigh-Taylor problem for two incompressible, immiscible, viscous magnetohydrodynamic (MHD) flows, with zero resistivity, surface tension (or without surface tenstion) and special initial magnetic field, evolving with a free interface in the presence of a uniform gravitational field. First, we reformulate in Lagrangian coordinates MHD equations in a infinite slab as one for the Navier-Stokes equations with a force term induced by the fluid flow map. Then we analyze the linearized problem around the steady state which describes a denser immiscible fluid lying above a light one with an free interface separating the two fluids, and both fluids being in (unstable) equilibrium. By a general method of studying a family of modified variational problems, we construct smooth (when restricted to each fluid domain) solutions to the linearized problem that grow exponentially fast in time in Sobolev spaces, thus leading to an global instability result for the linearized problem. Finally, using these pathological solutions, we demonstrate the global instability for the corresponding nonlinear problem in an appropriate sense. In addition, we compute that the so-called critical number indeed is equal $\sqrt{g[\varrho]/2}$.

preprint2012arXiv

Rayleigh-Taylor instability for compressible rotating flows

In this paper, we investigate the Rayleigh-Taylor instability problem for two compressible, immiscible, inviscid flows rotating with an constant angular velocity, and evolving with a free interface in the presence of a uniform gravitational field. First we construct the Rayleigh-Taylor steady-state solutions with a denser fluid lying above the free interface with the second fluid, then we turn to an analysis of the equations obtained from linearization around such a steady state. In the presence of uniform rotation, there is no natural variational framework for constructing growing mode solutions to the linearized problem. Using the general method of studying a family of modified variational problems introduced in \cite{Y-I2}, we construct normal mode solutions that grow exponentially in time with rate like $e^{t\sqrt{c|ξ|-1}}$, where $ξ$ is the spatial frequency of the normal mode and the constant $c$ depends on some physical parameters of the two layer fluids. A Fourier synthesis of these normal mode solutions allows us to construct solutions that grow arbitrarily quickly in the Sobolev space $H^k$, and lead to an ill-posedness result for the linearized problem. Moreover, from the analysis we see that rotation diminishes the growth of instability. Using the pathological solutions, we then demonstrate the ill-posedness for the original non-linear problem in some sense.

preprint2012arXiv

Zero dissipation limit of full compressible Navier-Stokes equations with Riemann initial data

We consider the zero dissipation limit of the full compressible Navier-Stokes equations with Riemann initial data in the case of superposition of two rarefaction waves and a contact discontinuity. It is proved that for any suitably small viscosity $\varepsilon$ and heat conductivity $κ$ satisfying the relation \eqref{viscosity}, there exists a unique global piecewise smooth solution to the compressible Navier-Stokes equations. Moreover, as the viscosity $\varepsilon$ tends to zero, the Navier-Stokes solution converges uniformly to the Riemann solution of superposition of two rarefaction waves and a contact discontinuity to the corresponding Euler equations with the same Riemann initial data away from the initial line $t=0$ and the contact discontinuity located at $x=0$.

preprint2011arXiv

Incompressible limit of the compressible non-isentropic magnetohydrodynamic equations with zero magnetic diffusivity

We study the incompressible limit of the compressible non-isentropic magnetohydrodynamic equations with zero magnetic diffusivity and general initial data in the whole space $\mathbb{R}^d$ $(d=2,3)$. We first establish the existence of classic solutions on a time interval independent of the Mach number. Then, by deriving uniform a priori estimates, we obtain the convergence of the solution to that of the incompressible magnetohydrodynamic equations as the Mach number tends to zero.

preprint2010arXiv

A blow-up criterion for compressible viscous heat-conductive flows

We study an initial boundary value problem for the Navier-Stokes equations of compressible viscous heat-conductive fluids in a 2-D periodic domain or the unit square domain. We establish a blow-up criterion for the local strong solutions in terms of the gradient of the velocity only, which coincides with the famous Beale-Kato-Majda criterion for ideal incompressible flows.

preprint2010arXiv

Incompressible limit of the compressible magnetohydrodynamic equations with periodic boundary conditions

This paper is concerned with the incompressible limit of the compressible magnetohydrodynamic equations with periodic boundary conditions. It is rigorously shown that the weak solutions of the compressible magnetohydrodynamic equations converge to the strong solution of the viscous or inviscid incompressible magnetohydrodynamic equations as long as the latter exists both for the well-prepared initial data and general initial data. Furthermore, the convergence rates are also obtained in the case of the well-prepared initial data.

preprint2010arXiv

Incompressible limit of the compressible magnetohydrodynamic equations with vanishing viscosity coefficients

This paper is concerned with the incompressible limit of the compressible magnetohydrodynamic equations with vanishing viscosity coefficients and general initial data in the whole space $\mathbb{R}^d$ $ (d=2$ or 3). It is rigorously showed that, as the Mach number, the shear viscosity coefficient and the magnetic diffusion coefficient simultaneously go to zero, the weak solution of the compressible magnetohydrodynamic equations converges to the strong solution of the ideal incompressible magnetohydrodynamic equations as long as the latter exists.