本文整理汇总了PHP中make_navigation函数的典型用法代码示例。如果您正苦于以下问题:PHP make_navigation函数的具体用法?PHP make_navigation怎么用?PHP make_navigation使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了make_navigation函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: load_style
$root = "";
require $root . "navigation.php";
?>
<html>
<head>
<title>Download and Installation</title>
<?php
load_style($root);
?>
</head>
<body>
<?php
make_navigation("download", $root);
?>
<div class="content">
<h1>Subversion Repository Information</h1>
You may access the SVN source tree for the latest code. You can get access
to the SVN repository via:
<div class="fragment">
<pre>svn checkout https://libmesh.svn.sourceforge.net/svnroot/libmesh/trunk/libmesh </pre>
</div>
If you would like to contribute to the project you will need a SourceForge
developer account, or you can contribute patches. To create a patch from a
modified SVN tree simply do:
<div class="fragment">
<pre>svn diff > patch </pre>
</div>
示例2: load_style
<?php
$root = "";
require $root . "navigation.php";
?>
<html>
<head>
<?php
load_style($root);
?>
</head>
<body>
<?php
make_navigation("transient_ex2", $root);
?>
<div class="content">
<a name="comments"></a>
<br><br><br> <h1> The source file transient_ex2.C with comments: </h1>
<div class = "comment">
<h1>Transient Example 2 - The Newmark System and the Wave Equation</h1>
<br><br>This is the eighth example program. It builds on
the previous example programs. It introduces the
NewmarkSystem class. In this example the wave equation
is solved using the time integration scheme provided
by the NewmarkSystem class.
<br><br>This example comes with a cylindrical mesh given in the
示例3: load_style
$root = "";
require $root . "navigation.php";
?>
<html>
<head>
<title>libMesh Applications</title>
<?php
load_style($root);
?>
</head>
<body>
<?php
make_navigation("applications", $root);
?>
<div class="content">
<h2>Here you will find presentations, organized by application area, that use libMesh</h2>
<ul>
<li> Foo </li>
<li> Bar </li>
</ul>
<h2>Natural Convection</h2>
<ul>
<li> <a href="http://cfdlab.ae.utexas.edu/~benkirk/adv_flows_project.pdf">Ben's Adavnced Flows Class Project</a> </li>
</ul>
<h2>Exterior Acoustics</h2>
示例4: load_style
<?php
$root = "";
require $root . "navigation.php";
?>
<html>
<head>
<?php
load_style($root);
?>
</head>
<body>
<?php
make_navigation("adjoints_ex4", $root);
?>
<div class="content">
<a name="comments"></a>
<br><br><br> <h1> The source file femparameters.h with comments: </h1>
<div class = "comment">
</div>
<div class ="fragment">
<pre>
#ifndef __fem_parameters_h__
#define __fem_parameters_h__
#include <limits>
#include <string>
示例5: load_style
$root = "";
require $root . "navigation.php";
?>
<html>
<head>
<title>libMesh Developers</title>
<?php
load_style($root);
?>
</head>
<body>
<?php
make_navigation("developers", $root);
?>
<?php
function dev_table_entry($pic, $name, $homepage, $other, $titles, $institutions)
{
?>
<table>
<tr>
<td>
<?php
echo "<img src=\"{$pic}\">";
?>
</td>
<td>
<?php
示例6: make_menu
function make_menu()
{
return make_navigation();
}
示例7: load_style
<?php
$root = "";
require $root . "navigation.php";
?>
<html>
<head>
<?php
load_style($root);
?>
</head>
<body>
<?php
make_navigation("systems_of_equations_ex2", $root);
?>
<div class="content">
<a name="comments"></a>
<br><br><br> <h1> The source file systems_of_equations_ex2.C with comments: </h1>
<div class = "comment">
<h1>Systems Example 2 - Unsteady Nonlinear Navier-Stokes</h1>
<br><br>This example shows how a simple, unsteady, nonlinear system of equations
can be solved in parallel. The system of equations are the familiar
Navier-Stokes equations for low-speed incompressible fluid flow. This
example introduces the concept of the inner nonlinear loop for each
timestep, and requires a good deal of linear algebra number-crunching
at each step. If you have a ExodusII viewer such as ParaView installed,
the script movie.sh in this directory will also take appropriate screen
示例8: load_style
<?php
$root = "../";
require $root . "navigation.php";
?>
<html>
<head>
<title>LibMesh Class Documentation</title>
<?php
load_style($root);
?>
</head>
<body>
<?php
make_navigation("documentation", $root);
?>
<div class="content">
<div>
示例9: load_style
<?php
$root = "";
require $root . "navigation.php";
?>
<html>
<head>
<?php
load_style($root);
?>
</head>
<body>
<?php
make_navigation("fem_system_ex1", $root);
?>
<div class="content">
<a name="comments"></a>
<br><br><br> <h1> The source file naviersystem.h with comments: </h1>
<div class = "comment">
</div>
<div class ="fragment">
<pre>
#include "libmesh/fem_system.h"
using namespace libMesh;
</pre>
示例10: load_style
<?php
$root = "";
require $root . "navigation.php";
?>
<html>
<head>
<?php
load_style($root);
?>
</head>
<body>
<?php
make_navigation("subdomains_ex2", $root);
?>
<div class="content">
<a name="comments"></a>
<br><br><br> <h1> The source file subdomains_ex2.C with comments: </h1>
<div class = "comment">
<h1>Subdomains Example 2 - Subdomain-Restricted Variables</h1>
<br><br>This example builds on the fourth example program by showing how
to restrict solution fields to a subdomain (or union of
subdomains).
<br><br>
示例11: load_style
<?php
$root = "";
require $root . "navigation.php";
?>
<html>
<head>
<?php
load_style($root);
?>
</head>
<body>
<?php
make_navigation("solution_transfer_ex1", $root);
?>
<div class="content">
<a name="comments"></a>
<br><br><br> <h1> The source file main.C with comments: </h1>
<div class = "comment">
</div>
<div class ="fragment">
<pre>
#include "libmesh/libmesh.h"
#include "libmesh/mesh.h"
#include "libmesh/mesh_generation.h"
#include "libmesh/explicit_system.h"
#include "libmesh/equation_systems.h"
示例12: load_style
<?php
$root = "";
require $root . "navigation.php";
?>
<html>
<head>
<title>libMesh Publications</title>
<?php
load_style($root);
?>
</head>
<body>
<?php
make_navigation("publications", $root);
?>
<div class="content">
<h2>Please use the following citation to reference libMesh</h2>
<!-- This document was automatically generated with bibtex2html 1.96
(see http://www.lri.fr/~filliatr/bibtex2html/),
with the following command:
bibtex2html -d -r --nodoc --single -nofooter libmesh.bib -->
<table>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="libMeshPaper">1</a>]
</td>
示例13: load_style
require $root . "navigation.php";
?>
<!-- $Id: externalsoftware.php,v 1.7 2007-09-09 20:02:19 benkirk Exp $ -->
<html>
<head>
<title>Packages used by libMesh</title>
<?php
load_style($root);
?>
</head>
<body>
<?php
make_navigation("externalsoftware", $root);
?>
<div class="content">
<h1>External Packages</h1>
<code>libMesh</code> interfaces to a number of high-quality software packages to provide certain functionality. This page provides a list of packages and a description of their use in the library.
<h2>MPI</h2> The <a href="http://www-unix.mcs.anl.gov/mpi">Message Passing Interface</a> is a standard for parallel programming using the message passing model. PETSc requires MPI for its functionality. <code>libMesh</code> makes use of MPI to when running in parallel for certain operations, including its <code>ParallelMesh</code> distributed-memory, fully unstructured mesh implementation.
<h2>TBB</h2> Since February 2008 <code>libMesh</code> can be configured to use the <a href="http://threadingbuildingblocks.org/">Threading Building Blocks</a> for thread-based parallelism on shared memory machines. Several key algorithms in the library have been refactored to be multithreaded, and this effort will continue as additional profiling reveals additional serial bottlenecks. It is envisioned that for certain classes of problems multilevel parallelism (e.g. message passing between nodes and threading within nodes) will prove more scalable than message passing alone, especially with the introduction of commodity multi-core processors. The reality is that for implicit problems this can only be achieved with a parallel linear algebra library that also uses multilevel parallelism.
<hr>
<h2>PETSc - Parallel Linear & Nonlinear Solvers</h2> The Portable, Extensible Toolkit for Scientific Computation <a href="http://www.mcs.anl.gov/petsc">(PETSc)</a> is a suite of data structures and routines for the scalable (parallel) solution of scientific applications modeled by partial differential equations.
<h3>SLEPc</h3> The Scalable Library for Eigenvalue Computations <a href="http://www.grycap.upv.es/slepc">(SLEPc)</a> is a library for the solution of large scale sparse eigenvalue problems on parallel computers. It is an extension of PETSc and can be used for either standard or generalized eigenproblems, with real or complex arithmetic.
示例14: del_cust
echo "<td><a title='Xem thông tin chi tiết' href='#'>" . $value['full_name'] . "</a></td>";
echo "<td>" . $value['birthday'] . "</td>";
echo "<td>" . $value['phone'] . "</td>";
echo "<td>" . $value['city_name'] . "</td>";
echo "<td align='center'><a target='_blank' href='" . __SITE_CONTEXT . "admin/customer/update?id={$key}'>Sửa</a></td>";
echo "<td align='center'><a href='#' onclick='return del_cust({$key})'>Xóa</a></td>";
echo '</tr>';
}
}
?>
</tbody>
</table>
<br />
<?php
echo make_navigation($list_cust['page_num'], $page, $url);
}
?>
<br />
<?php
} else {
// if ( $list_cust != NULL)
?>
<div style="color:green;font-size:20px;text-align:center">Nhấn nút Search để bắt đầu tìm kiếm</div>
<br />
<?php
}
?>
</p>
示例15: load_style
<?php
$root = "";
require $root . "navigation.php";
?>
<html>
<head>
<?php
load_style($root);
?>
</head>
<body>
<?php
make_navigation("vector_fe_ex2", $root);
?>
<div class="content">
<a name="comments"></a>
<br><br><br> <h1> The source file laplace_exact_solution.h with comments: </h1>
<div class = "comment">
</div>
<div class ="fragment">
<pre>
#include "libmesh/libmesh_common.h"
using namespace libMesh;
#ifndef __laplace_exact_solution_h__