65,590 research outputs found

    Nature of Decoupling in the Mixed Phase of Extremely Type-II Layered Superconductors

    Full text link
    The uniformly frustrated layered XY model is analyzed in its Villain form. A decouple pancake vortex liquid phase is identified. It is bounded by both first-order and second-order decoupling lines in the magnetic field versus temperature plane. These transitions, respectively, can account for the flux-lattice melting and for the flux-lattice depinning observed in the mixed phase of clean high-temperature superconductors.Comment: 11 pages of PLAIN TeX, 1 postscript figure, published version, many change

    On defensive alliances and line graphs

    Get PDF
    Let Γ\Gamma be a simple graph of size mm and degree sequence δ1δ2...δn\delta_1\ge \delta_2\ge ... \ge \delta_n. Let L(Γ){\cal L}(\Gamma) denotes the line graph of Γ\Gamma. The aim of this paper is to study mathematical properties of the alliance number, a(L(Γ){a}({\cal L}(\Gamma), and the global alliance number, γa(L(Γ))\gamma_{a}({\cal L}(\Gamma)), of the line graph of a simple graph. We show that δn+δn112a(L(Γ))δ1.\lceil\frac{\delta_{n}+\delta_{n-1}-1}{2}\rceil \le {a}({\cal L}(\Gamma))\le \delta_1. In particular, if Γ\Gamma is a δ\delta-regular graph (δ>0\delta>0), then a(L(Γ))=δa({\cal L}(\Gamma))=\delta, and if Γ\Gamma is a (δ1,δ2)(\delta_1,\delta_2)-semiregular bipartite graph, then a(L(Γ))=δ1+δ212a({\cal L}(\Gamma))=\lceil \frac{\delta_1+\delta_2-1}{2} \rceil. As a consequence of the study we compare a(L(Γ))a({\cal L}(\Gamma)) and a(Γ){a}(\Gamma), and we characterize the graphs having a(L(Γ))<4a({\cal L}(\Gamma))<4. Moreover, we show that the global-connected alliance number of L(Γ){\cal L}(\Gamma) is bounded by γca(L(Γ))D(Γ)+m11,\gamma_{ca}({\cal L}(\Gamma)) \ge \lceil\sqrt{D(\Gamma)+m-1}-1\rceil, where D(Γ)D(\Gamma) denotes the diameter of Γ\Gamma, and we show that the global alliance number of L(Γ){\cal L}(\Gamma) is bounded by γa(L(Γ))2mδ1+δ2+1\gamma_{a}({\cal L}(\Gamma))\geq \lceil\frac{2m}{\delta_{1}+\delta_{2}+1}\rceil. The case of strong alliances is studied by analogy

    Offensive alliances in cubic graphs

    Full text link
    An offensive alliance in a graph Γ=(V,E)\Gamma=(V,E) is a set of vertices SVS\subset V where for every vertex vv in its boundary it holds that the majority of vertices in vv's closed neighborhood are in SS. In the case of strong offensive alliance, strict majority is required. An alliance SS is called global if it affects every vertex in V\SV\backslash S, that is, SS is a dominating set of Γ\Gamma. The global offensive alliance number γo(Γ)\gamma_o(\Gamma) (respectively, global strong offensive alliance number γo^(Γ)\gamma_{\hat{o}}(\Gamma)) is the minimum cardinality of a global offensive (respectively, global strong offensive) alliance in Γ\Gamma. If Γ\Gamma has global independent offensive alliances, then the \emph{global independent offensive alliance number} γi(Γ)\gamma_i(\Gamma) is the minimum cardinality among all independent global offensive alliances of Γ\Gamma. In this paper we study mathematical properties of the global (strong) alliance number of cubic graphs. For instance, we show that for all connected cubic graph of order nn, 2n5γi(Γ)n2γo^(Γ)3n4γo^(L(Γ))=γo(L(Γ))n,\frac{2n}{5}\le \gamma_i(\Gamma)\le \frac{n}{2}\le \gamma_{\hat{o}}(\Gamma)\le \frac{3n}{4} \le \gamma_{\hat{o}}({\cal L}(\Gamma))=\gamma_{o}({\cal L}(\Gamma))\le n, where L(Γ){\cal L}(\Gamma) denotes the line graph of Γ\Gamma. All the above bounds are tight

    Topological defects and misfit strain in magnetic stripe domains of lateral multilayers with perpendicular magnetic anisotropy

    Get PDF
    Stripe domains are studied in perpendicular magnetic anisotropy films nanostructured with a periodic thickness modulation that induces the lateral modulation of both stripe periods and inplane magnetization. The resulting system is the 2D equivalent of a strained superlattice with properties controlled by interfacial misfit strain within the magnetic stripe structure and shape anisotropy. This allows us to observe, experimentally for the first time, the continuous structural transformation of a grain boundary in this 2D magnetic crystal in the whole angular range. The magnetization reversal process can be tailored through the effect of misfit strain due to the coupling between disclinations in the magnetic stripe pattern and domain walls in the in-plane magnetization configuration

    Global defensive k-alliances in graphs

    Get PDF
    Let Γ=(V,E)\Gamma=(V,E) be a simple graph. For a nonempty set XVX\subseteq V, and a vertex vVv\in V, δX(v)\delta_{X}(v) denotes the number of neighbors vv has in XX. A nonempty set SVS\subseteq V is a \emph{defensive kk-alliance} in Γ=(V,E)\Gamma=(V,E) if δS(v)δSˉ(v)+k,\delta_S(v)\ge \delta_{\bar{S}}(v)+k, vS.\forall v\in S. A defensive kk-alliance SS is called \emph{global} if it forms a dominating set. The \emph{global defensive kk-alliance number} of Γ\Gamma, denoted by γka(Γ)\gamma_{k}^{a}(\Gamma), is the minimum cardinality of a defensive kk-alliance in Γ\Gamma. We study the mathematical properties of γka(Γ)\gamma_{k}^{a}(\Gamma)

    The Gremlin Graph Traversal Machine and Language

    Full text link
    Gremlin is a graph traversal machine and language designed, developed, and distributed by the Apache TinkerPop project. Gremlin, as a graph traversal machine, is composed of three interacting components: a graph GG, a traversal Ψ\Psi, and a set of traversers TT. The traversers move about the graph according to the instructions specified in the traversal, where the result of the computation is the ultimate locations of all halted traversers. A Gremlin machine can be executed over any supporting graph computing system such as an OLTP graph database and/or an OLAP graph processor. Gremlin, as a graph traversal language, is a functional language implemented in the user's native programming language and is used to define the Ψ\Psi of a Gremlin machine. This article provides a mathematical description of Gremlin and details its automaton and functional properties. These properties enable Gremlin to naturally support imperative and declarative querying, host language agnosticism, user-defined domain specific languages, an extensible compiler/optimizer, single- and multi-machine execution models, hybrid depth- and breadth-first evaluation, as well as the existence of a Universal Gremlin Machine and its respective entailments.Comment: To appear in the Proceedings of the 2015 ACM Database Programming Languages Conferenc

    Long-Range Order of Vortex Lattices Pinned by Point Defects in Layered Superconductors

    Full text link
    How the vortex lattice orders at long range in a layered superconductor with weak point pinning centers is studied through a duality analysis of the corresponding frustrated XY model. Vortex-glass order emerges out of the vortex liquid across a macroscopic number of weakly coupled layers in perpendicular magnetic field as the system cools down. Further, the naive magnetic-field scale determined by the Josephson coupling between adjacent layers is found to serve as an upperbound for the stability of any possible conventional vortex lattice phase at low temperature in the extreme type-II limit.Comment: 13 pgs., 1 table, published versio
    corecore