Welcome![Sign In][Sign Up]
Location:
Search - BEFORE TEXT MODIFY

Search list

[Algorithmhyplas

Description: ************************************************************************ * * * * * THIS IS THE H Y P L A S 2.0 README FILE * * ----------------- * * * * HYPLAS is a finite element program for implicit small and large * * strain analisys of hyperelastic and elasto-plastic two-dimensional * * and axisymmetric solids * * * * HYPLAS v2.0 is the companion software to the textbook: * * EA de Souza Neto, D Peric & DRJ Owen. Computational Methods for * * Plasticity: Theory and Applications. Wiley, Chichester, 2008. * * (www.wiley.com/go/desouzaneto) * * * * Copyright (c) 1998-2008 EA de Souza Neto, D Peric, D.R.J. Owen * *----------------------------------------------------------------------* * File last updated: 18 October 2008 * * * * This file belongs in the directory ../HYPLAS_v2.0 * ************************************************************************ * * * I M P O R T A N T * * * * READ SECTIONS 0 TO 3 OF THIS FILE CAREFULLY BEFORE ATTEMPTING * * TO COMPILE AND RUN THE PROGRAM HYPLAS ON YOUR COMPUTER !! * * * * THE AUTHORS DO NOT GUARANTEE THAT ANY SUGGESTIONS/INSTRUCTIONS * * GIVEN IN THIS README FILE WILL WORK ON ANY PARTICULAR OPERATING * * SYSTEM. IF YOU DECIDE TO FOLLOW ANY SUGGESTIONS/INSTRUCTIONS * * GIVEN HERE YOU MUST DO SO AT YOUR OWN RISK. * * * * * * BUG REPORTS: Please send bug reports to * * * * hyplas_v2.0@live.co.uk * * * * Messages sent to the authors' personal email addresses * * will NOT be answered. * ************************************************************************ This file contains the following sections: 0. Copyright statement and disclaimer 0.(a) Copyright statement 0.(b) Disclaimer 0.(c) Conditions of use 1. Introduction 1.(a) Note on portability 2. Compiling and running HYPLAS 2.(a) Memory requirements 2.(b) Testing a newly compiled executable 3. The HYPLAS directory tree 4. Cross-referencing between the source code and the textbook 5. HYPLAS error messaging 6. Further remarks on HYPLAS ************************************************************************ 0. COPYRIGHT STATEMENT AND DISCLAIMER ================================== 0.(a) Copyright statement ------------------- You may only use this program for your own private purposes. You are not allowed, in any circumstances, to distribute this program (including its source code, executable and any other files related to it, either in their original version or any modifications introduced by you, the authors or any other party) in whole or in part, either freely or otherwise, in any medium, without the prior written consent of the copyright holders. 0.(b) Disclaimer ---------- This program (including its source code, executable and any other files related to it) is provided "as is" without warranty of any kind, either expressed or implied, including, but not limited to, any implied warranties of fitness for purpose. In particular, THIS PROGRAM IS BY NO MEANS GUARANTEED TO BE FREE FROM ERRORS. This program (or any modification incorporated to it by you, the authors or any other party) will run entirely at your risk. The results produced by this program are in no way guaranteed to be fit for any purpose. Under no circumstances will the authors/copyright holders be liable to anyone for damages, including any general, special, incidental or consequential damages arising from the use or inability to use the program (including, but not limited to, loss or corruption of data, failure of the program to operate in any particular way as well as damages arising from the use of any results produced by the program for any purpose). 0.(c) Conditions of use ----------------- You may only use this program if you fully understand and agree with the terms of the above disclaimer. You must not use this program if you do not agree with or do not understand (fully or in part) these conditions of use. 1. INTRODUCTION ============ HYPLAS is a finite element code for small and large strain analysis of hyperelastic and elasto-plastic solids. Most procedures implemented in HYPLAS are described in detail in its companion textbook: EA de Souza Neto, D Peric & DRJ Owen. Computational Methods for Plasticity: Theory and Applications. Wiley, Chichester, 2008 (www.wiley.com/go/desouzaneto). 1.(a) Note on Portability ------------------- HYPLAS has been written in standard ANSI FORTRAN 77. Currently, the only known (and deliberate) exceptions to the FORTRAN 77 ANSI standard are the instructions: INCLUDE '' used in many routines to include the HYPLAS database files (common blocks and global variables), and; CALL GETENV('HYPLASHOME',HYPLASHOME) used in subroutine "ERRPRT" (file ../HYPLAS_v2.0/src/GENERAL/errprt.f). This instruction inquires the name of the system environment variable HYPLASHOME and writes it on the character string HYPLASHOME. This instruction is NOT part of the ANSI FORTRAN 77 standard, but seems to work in most currently available FORTRAN 77 compilers. 2. COMPILING AND RUNNING H Y P L A S ================================== The HYPLAS source code is stored in directory ../HYPLAS_v2.0/src/ (../HYPLAS_v2.0/ being the current directory) and all its subdirectories. To generate an executable file, you just need to compile the FORTRAN source files: ../HYPLAS_v2.0/src/hyplas.f and ../HYPLAS_v2.0/src/*/*.f together. We recommend that the executable HYPLAS be stored in the directory ../HYPLAS_v2.0/bin to which the environment variable HYPLASHOME should be set (see below how to set a system environmental variable). WINDOWS (R) systems ------------------- On Microsoft Windows(R) systems, HYPLAS has been successfully compiled using Intel Visual Fortran Compiler(R) integrated with Microsoft Visual Studio(R). Here you only need to create a project that contains all Fortran source files mentioned above as well as the include files ..\HYPLAS_v2.0\src\*.INC On a Windows XP system, the system environment variable HYPLASHOME can be set as follows: 1. Open a File Manager 2. Right-click on the "My Computer" icon 3. Select "Properties" on the drop-down menu 4. A new window named "System Properties" will pop-up. Here select the "Advanced" tab. 5. On the "Advanced" tab, click the "Environment Variables" button. 6. A new window titled "Environment Variables" will pop-up. Here click the button "New" in the "System Variables" section of the window. 7. A new window will pop-up titled "New System Variable". Here you should fill the fields "Variable name" and "Variable Value", respectively, with HYPLASHOME and the path name (in full) of the directory ..\HYPLAS_v2.0\bin. 8. Press "OK" on the relevant pop-up windows. 9. The next time the computer is REBOOTED, this variable will be set to the correct path and HYPLAS should be able to find the error messages file ERROR.RUN if required. UNIX/LINUX systems ------------------ In a UNIX/LINUX operating system using a C-shell, for instance, the HYPLASHOME environment variable should be set with the command: setenv HYPLASHOME where here denotes the full path to the directory ../HYPLAS_v2.0/bin. To compile HYPLAS (from directory ../HYPLAS_v2.0/src) with a FORTRAN 77 compiler such as g77, you can use the command: g77 -o ../bin/hyplas hyplas.f */*.f Note that the executable file "hyplas" will be stored in the directory ../HYPLAS_2.0/bin (i.e. the directory set in the HYPLASHOME environment variable). Alternatively, you may use the Makefile provided (with suitable modifications, if needed) to create the HYPLAS executable. IMPORTANT: Before generating a HYPLAS executable, read Sections 2.(a) and 2.(b) below. 2.(a) Memory Requirements ------------------- HYPLAS memory requirements depend on the array dimensioning parameters set in files: ../HYPLAS_v2.0/src/ ELEMENTS.INC GLBDBASE.INC MATERIAL.INC MAXDIM.INC Files ELEMENTS.INC, GLBDBASE.INC and MATERIAL.INC contain parameters which are associated with the currently implemented finite elements and materials. DO NOT MODIFY THEM ! unless you are absolutely sure of what you are doing (only developers coding new elements or new material models/analysis types may need to modify them by changing the existing dimensioning parameters and/or including new parameters). The ONLY dimensioning file that can be safely modified by the average user is the file MAXDIM.INC This file contains the array dimensioning parameters related to the maximum permissible dimension of problems to be analysed by HYPLAS. These parameters include the maximum number of nodes, elements, element groups, etc. If necessary, CHANGE THESE PARAMETERS TO SUIT YOUR PROBLEM SIZE/MEMORY REQUIREMENTS before compiling HYPLAS. 2.(b) Testing a newly compiled executable ----------------------------------- After you have successfully compiled the HYPLAS source code and created an executable file, the next step is to run some tests to verify that HYPLAS is working well. To do this, proceed as follows: The directory ../HYPLAS_v2.0/book_examples/data_files contains a series of data files named .dat of benchmarked examples described in the companion textbook. The corresponding (benchmarked) result files are in the directory ../HYPLAS_v2.0/book_examples/result_files This directory contains a series of result files named .res generated with the current version of HYPLAS on a tested platform. All these files have been named such that their names start with the textbook section number where the corresponding example is described. For instance, files 14_9_2_tresca.dat and 14_9_2_tresca.res refer to a problem described in section 14.9.2 of the textbook, and so on. To check that HYPLAS is working well on your platform, after compiling HYPLAS, run the program HYPLAS for the examples of files .dat and compare the newly generated results .res with their benchmarked counterparts (of the same filename) in the result_files directory. To run an example, execute HYPLAS and use the keyboard to enter the name of the corresponding data file in full (including the extension .dat). To compare the benchmarked .res files against their newly generated you may proceed as follows: 1. On MICROSOFT WINDOWS systems - Here we have successfully used the software "ExamDiff" (the task was made particularly easy by selecting "View" and then the "Show Differences Only" option - this refers to version 1.8 of this software). 2. On UNIX/LINUX systems - Here we use the "diff" command from a shell window (and set the option to ignore blank spaces). A shell script may be used to perform this task automatically (including running HYPLAS and checking for result file differences) for all benchmarked examples provided. IMPORTANT: THE ONLY ACCEPTABLE DIFFERENCES BETWEEN A THE NEWLY GENERATED RESULT FILES AND THEIR BENCHMARKED COUNTERPARTS ARE THE DIMENSIONING PARAMETERS (FROM FILE MAXDIM.INC) USED TO COMPILE THE NEW EXECUTABLE (THESE PARAMETERS ARE PRINTED RIGHT AT THE BEGINNING OF THE RESULT FILES) AND NUMERICAL DIFFERENCES IN RESULTS DUE TO NUMERICAL "ROUNDING-OFF" (THESE ARE VERY SMALL DIFFERENCES THAT DEPEND ON THE PRECISION OF ARITHMETIC OPERATIONS IN THE PLATFORM USED). ALSO NOTE THAT THE EXAMPLES OF THE COMPANION TEXTBOOK DO NOT COVER ALL FEATURES OF HYPLAS. HENCE THIS TEST DOES NOT GUARANTEE THAT EVERYTHING IS WORKING PROPERLY. 3. THE H Y P L A S DIRECTORY TREE ================================ 3.(a) Summary ------- ../ HYPLAS_v2.0/ bin/ book_examples/ data_files/ result_files/ man/ html/ src/ CRYSTAL/ DAMAGE/ DAMAGED_ELASTIC/ DRUCKER_PRAGER/ ELASTIC/ ELEMENTS/ GENERAL/ MATERIALS/ MATHS/ MOHR_COULOMB/ OGDEN/ TRESCA/ VON_MISES/ VON_MISES_MIXED/ 3.(b) Description ----------- The HYPLAS program directory tree is organised as follows: ../HYPLAS_v2.0/ (this directory) This is the HYPLAS root directory, where the HYPLAS directory tree starts. ../HYPLAS_v2.0/bin/ This directory contains the file ERROR.RUN where most HYPLAS error/warning messages are. IMPORTANT: the environment variable HYPLASHOME should be set to this directory. Otherwise, HYPLAS will not find its error/warning messages when required. We also recommend that the EXECUTABLE of HYPLAS be stored in this directory. ../HYPLAS_v2.0/book_examples/ This directory has the following subdirectories: ../HYPLAS_v2.0/book_examples/data_files ../HYPLAS_v2.0/book_examples/result_files Refer to Section 2.(b) above for further details. ../HYPLAS_v2.0/man/ This is the HYPLAS documentation/manuals directory. It contains the following files: input_man.txt - A concise input data manual for HYPLAS in ASCII format; hyplas_calltree.txt - Contains a flowgraph (shows the call tree) of HYPLAS in ASCII-format. Note: calls to function subprograms are not included in this flowgraph; and the subdirectory: ../HYPLAS_v2.0/man/html This directory contains the hypertext (HTML) format Fortran source code and of manual pages of the entire HYPLAS program. Manual pages with descriptions of each function/subprogram including their argument list are linked to their corresponding HTML-format source code. This allows the user the navigate through the HYPLAS source code using a web browser. To start at the main program, use your web browser to open the file hyplas.html. This facility should be helpful to those trying to understand the flow of program HYPLAS. ../HYPLAS_v2.0/src/ This directory (and its subdirectories) contains the Fortran source code of HYPLAS. The files containing the sources are named following the standard practice: .f where is the name of the FORTRAN procedure (subroutine, function subprogram, etc.) whose source code is in file .f. The source code of the HYPLAS main program is in file hyplas.f and the HYPLAS database (COMMON blocks, array dimensioning parameters and other global parameters) is coded in the "include files" ELEMENTS.INC GLDBASE.INC MATERIAL.INC MAXDIM.INC in this directory. In addition, this directory contains a file named "Makefile" (UNIX-LINUX Release only) which may be used for compiling and linking HYPLAS in UNIX/LINUX systems. The subdirectories of ../HYPLAS_v2.0/src are as follows: ../HYPLAS_v2.0/src/CRYSTAL Contains the source code of all procedures related to the finite strain single crystal plasticity model implemented in HYPLAS. ../HYPLAS_v2.0/src/DAMAGE Source files of the procedures related to the Lemaitre ductile damage model implementation. ../HYPLAS_v2.0/src/DAMAGED_ELASTIC Source files of the procedures related to the damaged elasticity model with crack closure effect. ../HYPLAS_v2.0/src/DRUCKER_PRAGER Source files of the procedures related to the implemented Drucker-Prager plasticity model. ../HYPLAS_v2.0/src/ELASTIC Source files of the procedures related to the linear elasticity model (Hencky model under large strains) implemented. ../HYPLAS_v2.0/src/ELEMENTS Source files of the element interfaces and element-related procedures. ../HYPLAS_v2.0/src/GENERAL Source files of general procedures. ../HYPLAS_v2.0/src/MATERIALS Source files of the material interfaces. ../HYPLAS_v2.0/src/MATHS Source files of the mathematical procedures. ../HYPLAS_v2.0/src/MOHR_COULOMB Source files of the procedures related to the implemented Mohr-Coulomb plasticity model. ../HYPLAS_v2.0/src/OGDEN Source files of the procedures related to the implemented Ogden hyperelasticity model. ../HYPLAS_v2.0/src/TRESCA Source files of the procedures related to the implemented Tresca plasticity model. ../HYPLAS_v2.0/src/VON_MISES Source files of the procedures related to the implemented von Mises plasticity model with isotropic hardening. ../HYPLAS_v2.0/src/VON_MISES_MIXED Source files of the procedures related to the implemented von Mises plasticity model with mixed isotropic/kinematic hardening. 4. CROSS-REFERENCING BETWEEN THE SOURCE CODE AND THE TEXTBOOK ========================================================== Many references are made in the textbook to various subprograms of HYPLAS. These are usually made when a particular procedure described in the text is implemented in the program. The reader should refer to the textbook index. Also, a substantial number of comment lines have been added to the source code of HYPLAS with reference to sections, figures, boxes, etc of the textbook related to the part of the code in question. Such references are usually displayed after the word "REFERENCE:" (in capitals) on commented lines. Searching for this word will take you to the line of code where the particular routine has a reference to the textbook. NOTE: Occasional references to other textbooks/journal papers are also made following the word "REFERENCE:" on commented lines. 5. HYPLAS ERROR MESSAGING ====================== Most error/warning messages issued by HYPLAS are in the ASCII-format file ERROR.RUN (kept in the HYPLASHOME directory - ../HYPLAS_v2.0/bin). All such error/warning messages have an identification code (e.g. ED0015) which is printed both to the standard output (this is usually the computer screen) and to the relevant results file. If you wish to find where in the source code a particular message is being issued, then perform a search for the corresponding message identification code in the entire source code of HYPLAS. 6. FURTHER REMARKS ON HYPLAS ========================= 6.(a) Program efficiency THIS SECTION IS OF INTEREST ONLY TO THOSE WANTING TO MAKE HYPLAS RUN FASTER. It is particularly stressed in the textbook that this program has not been designed having efficiency in mind (refer to Section 5.1.2 of the textbook). Its structure has been designed mainly to illustrate in a relatively clear manner the computer implementation of the techniques and algorithms described in the text, with a particular view to the implementation of solid constitutive models and finite elements. For those who are especially interested in the speed of the code, there are a few tips that could help in this direction. Unfortunately, these involve modifications to the source code which is probably most appropriate to readers with a good level of experience in finite element programming. To those with this particular interest, we can suggest the following: (i) The use of faster linear solvers This is probably the change that would result in a greater gain in efficiency. The Frontal Method adopted in subroutine FRONT (file ../HYPLAS_v2.0/src/GENERAL/front.f) has been designed originally to save memory (back in the days when computer memory was severely limited). There are currently a vast number of methodologies which focus on speeding up the linear solution, in addition to reducing memory storage requirements (which is a particularly important issue in the solution of large scale problems). Some of these are extensions/refinements of the original Frontal solver. We remark that a number of such procedures (with their respective source codes) are available (conditions may apply) from the LAPACK (Linear Algebra PACKage - http://www.netlib.org/lapack) repository or from the HSL Library (http://www.cse.cse.scitech.ac.uk/nag/hsl). For the reader interested in gaining speed, we would recommend the replacement of the existing solver of FRONT by a faster one. We remark though that this is a substantial programming task. Another aspect here is the fact that computing times in FRONT are directly linked to the frontwidth of the system which, in the present version of HYPLAS is fixed and depends, for a given mesh, on how the degrees of freedom are numbered (node numbering). The incorporation of a frontwidth optimiser (which re-numbers the degrees of freedom in order to minimise the frontwidth) in FRONT could produce some good savings in computing times. Such savings become particularly noticeable in larger problems where the original node numbering produces an excessively large frontwidth. (ii) Material-specific computations The issues pointed out here affect only the computing times for specific material models and are expected to have a much lower impact in overall speed than the linear solver issue discussed above. Some of the material model-specific computations carried out in HYPLAS could be made a bit faster. For example, for isotropic models whose stress update is carried out in the principal stress space (such as the Tresca and Mohr-Coulomb models - see routines SUTR and SUMC, files ../HYPLAS_v2.0/src/TRESCA/sutr.f and ../HYPLAS_v2.0/MOHR_COULOMB/sumc.f, respectively) the spectral decomposition of the stress in carried out in the state update update routine and then repeated in the corresponding routine for computation of the consistent tangent operator (refer to files ../HYPLAS_v2.0/src/TRESCA/cttr.f and ../HYPLAS_v2.0/src/MOHR_COULOMB/ctmc.f, respectively, for the Tresca and Mohr-Coulomb plasticity models). Some savings in computing time can be achieved here by storing the stress eigenprojection tensors (these can be stored as state variables) during the execution of the state updating and then retrieving them later for use in the computation of the consistent tangent operator. This change can be incorporated to the code relatively easily. The computation of the exponential map and is derivative for the single crystal plasticity model (routines EXPMAP, file ../HYPLAS_v2.0/src/CRYSTAL/expmap.f and DEXPMP, file ../HYPLAS_v2.0/src/CRYSTAL/dexpmp.f) is carried out in three dimensions (these routines have been adapted from an earlier three-dimensional code). To improve efficiency, these can be adapted to work only in two-dimensional problems by removing the unnecessary operations related to the third dimension. 6.(b) Output of nodal averaged values The reader should be aware that the way in which nodal averaged values of stresses and other variables are calculated in HYPLAS is very basic (and rudimentary). This feature of the program is made available only to help those interested in producing contour plots, etc from results presented in HYPLAS result files and should be useful in many circumstances of interest. This facility has in fact been used in producing many of the figures presented in the textbook. But note, for example, that the values of incremental plastic multipliers for plasticity models may take (inadmissible) negative values when extrapolated from Gauss-point to nodes and averaged. We remark that more sophisticated and refined techniques of transferring Gauss point values of variables to nodal points and obtaining the corresponding smoothed field are available in the current literature. These fall outside the scope of the companion textbook of HYPLAS.
Platform: | Size: 11008084 | Author: gtcewli3 | Hits:

[CommunicationBlueToothExc_Plus

Description: 很多网友来信反应说之前发布的源代码文件包里缺少文件,我下载打开一看果真如此,实在惭愧之极啊,现请更新过来,您现在将要下载的是更新后没有问题的源代码。 利用蓝牙(Bluetooth) APIs 编写的多种方式进行蓝牙设备查找、服务发现启动,蓝牙虚拟串口的通信,支持16进制和字符串两种方式。 你可以任意修改复制本代码,但请保留这段文字不要修改。 希望我能为中国的软件行业尽一份薄力! ◆◆◆ 作者 ◆◆◆ 谢红伟 · chrys · chrys@163.com · http://www.viction.net ◆◆◆ 日期 ◆◆◆ 2008年06月24日 17点11分-Many netizens said that a letter from the reaction before the release of source code files bag lack of paper, I download what we can see in the case, it is extremely ashamed ah, please update them, you will now have to download the update no problem with the source code. Bluetooth (Bluetooth) APIs prepared a variety of ways to find Bluetooth device, service discovery start, Bluetooth virtual serial port communications, to support the 16-band and string in two ways. You can modify a copy of any code, but please do not modify this text retained. I hope I can fulfill China s software industry thin edge! ◆ ◆ ◆ ◆ ◆ ◆ Author谢红伟chrys chrys@163.com http://www.viction.net ◆ ◆ ◆ Date ◆ ◆ ◆ 2008 on 24 day 06 years 17 point 11 hours
Platform: | Size: 110592 | Author: 谢红伟 | Hits:

[Game Hook Cracktlbb

Description: 点按键精灵的增加按扭出现一个脚本编辑器,打开鼠标动作,点 里面的抓点alt+ctrl+1抓1个点(稻草人脚下)。alt+ctrl+12抓第2个点(鼠标移到你想要种植的项目上面)记住坐标。把刚才第一个点的坐标替换上面脚本里的395 196 第二个点的坐标替换795 250 。把修改好的脚本的复制到一个新建的文本文档里。在把这个文本放到按键精灵的script文件夹。重新打开按键精灵home脚本前打勾。当前窗口有效或者天龙八部有效。(人必须站在草人下) 按HOME开始 想结束的时候按 END这个脚本是5分钟的 对了上面脚本有错误下部的300000改成600300 脚本只能种植不能收粮食的哦。还有 天龙里种植是不用答题的所以不用害怕被发现(天龙主要靠答题系统和文字屏蔽系统发现外挂和非法言论)-Point increase in the wizard button button appears a Script Editor, open the mouse movements, point inside the grasping points, alt+ ctrl+1 grasping a point (Scarecrow foot). alt+ ctrl+12 grasp the first two points (move your mouse over the items you want to grow above) remember the coordinates. To just the first coordinates of a point above the script to replace the 395,196 to replace the coordinates of the second point of 795.25 thousand. To modify a copy of a good script into a new text document inside. Key in bringing this text into the wizard s script folder. Re-open the script before the tick button wizard home. Tian Long Ba Bu effective or efficient the current window. (People must stand under Cheuk-yan) by HOME start to think about the end of the press END This script is 5 minutes on top of the script errors on the lower part of the script can only be planted 300,000 can not be changed to 600.3 thousand received food oh. There is no need to plant Dragon so I do not answer in fe
Platform: | Size: 1024 | Author: 张大永 | Hits:

[WEB CodePHPPFlashPbbs

Description: 超酷PHP+Flash留言簿 使用前请用任意文本编辑器打开config.php文件参照注释修改环境变量定义-Cool PHP+ Flash book before use with any text editor to open config.php file to modify the environment variable is defined with reference to comments
Platform: | Size: 631808 | Author: wed | Hits:

[matlabSkin

Description: BRC MATLAB code for BRC.fig BRC, by itself, creates a new BRC or raises the existing singleton*. H = BRC returns the handle to a new BRC or the handle to the existing singleton CALLBACK ,hObject,eventData,handles,...) calls the local function named CALLBACK in BRC.M with the given input arguments.BRC Property , Value ,...) creates a new BRC or raises the existing singleton.Starting from the left, property value pairs are applied to the GUI before BRC_OpeningFcn gets called.An unrecognized property name or invalid value makes property application stop. All inputs are passed to BRC_OpeningFcn via varargin.See GUI Options on GUIDE s Tools menu. Choose "GUI allows only one.instance to run (singleton)".Edit the above text to modify the response to help.Begin initialization code - DO NOT EDIT-BRC MATLAB code for BRC.fig BRC, by itself, creates a new BRC or raises the existing singleton*. H = BRC returns the handle to a new BRC or the handle to the existing singleton CALLBACK ,hObject,eventData,handles,...) calls the local function named CALLBACK in BRC.M with the given input arguments.BRC Property , Value ,...) creates a new BRC or raises the existing singleton.Starting from the left, property value pairs are applied to the GUI before BRC_OpeningFcn gets called.An unrecognized property name or invalid value makes property application stop. All inputs are passed to BRC_OpeningFcn via varargin.See GUI Options on GUIDE s Tools menu. Choose "GUI allows only one.instance to run (singleton)".Edit the above text to modify the response to help.Begin initialization code - DO NOT EDIT
Platform: | Size: 141312 | Author: prabhu | Hits:

[Delphi VCLdingshishanchuwenjianjia

Description: 本小软件的主要用法: 2009年3月15日 首先,点击注册.bat,让程序注册到服务里;然后就可以运行.exe文件设置你所要删除文件的时间。 lijiang.ini配置文件用于保留你所设置后的信息,unreg.bat用于卸载该软件的服务。 该软件的主要功能: 实现的主要目的是为了对指定目录下按指定的时间对旧文件夹进行自动删除操作,可以删除任意的文件夹,删除文件夹的时候主要用时间判断进行遍历。 密码的初始密码为000,lijiang.ini配置文件的密码信息为加密后的密码,修改密码页面输入旧密码后文本编辑框自动跳转为MD5加密后的密码;修改密码时一定需要以前的密码并且你新输入后的密码也一定要记住。 发现bug或则你对该软件补充功能后请告诉本人一声,本人MSN: 02913572287967@126.com *********************** 2009年6月6日 修改程序可以删除指定目录下的任何文件夹。在按照指定的日期和时间删除任何的目录。 gbq修改:02913572287967@126.com-The small software usage: March 15, 2009 First, click on the registration bat, the program is registered to the service then you can run the exe file to set the time you want to delete file. lijiang.ini configuration file is used to retain information after you set the, unreg.bat to uninstall the software services. The main features of the software: The main purpose is to achieve the operation specified time under specified directory on the old folder is automatically deleted, you can delete any folder, delete folder traversal time judge. Initial password password 000, lijiang.ini password information of the configuration file for the encrypted password, modify the password page, enter the old password after the text edit box automatically jump to the MD5 encrypted password necessarily change the password before password and your newly entered password must remember. Found a bug or complementary function of the software Please tell I heard that I MSN: 029135722
Platform: | Size: 247808 | Author: gong | Hits:

[ISAPI-IEgov_v3.6_build0618

Description: 一套专为地方政府建站开发的政府网站管理系统 新闻发布、删除新闻、修改新闻、管理新闻、上传新闻图片。全新版本,这套系统,集成了广告图片、广告文字、系统前台自动生成解决了修改的方便。 升级更新: 1、后台升级了删除类别同时可以删除本类别里的所有信息功能 2、升级了后台美工 3、修复了后台以前错误的链接 4、修复了后台新闻搜索查找功能更加精确 5、前台更新了相关页面的调用数据。-Build a set designed for the local government website management system developed by the government press releases, press delete, modify, news, management news, upload news photos. The new version of the system that integrates advertising images, ad text, the system automatically generates solved foreground modify convenience. Upgrade update: 1, the background while upgrading to delete category can delete all of the information in this category function 2, the upgrade of the background art 3, fixes backstage before the wrong link 4, fixes lookup feature backstage news search more precise 5, front Updates the relevant pages call the data.
Platform: | Size: 9299968 | Author: xyhs2010 | Hits:

[File Formatasp-xin-wen-fa-bu

Description: 目标设计 用ASP完成网络新闻发布系统的总体设计及各个细化模块的具体编程实现所开发的新闻发布网站系统必须具有新闻发布、新闻修改系统、各类新闻显示及相关内容浏览等功能。 新闻发布与新闻修改 在新闻浏览之前,要对新闻进行发布。在发布的时候,出点错误和遗漏是在所难免,这时就需要对新闻进行修改。因为新闻是直接与广大浏览者进行会面的,所以必须对所发布的新闻做到尽可能的正确、准确,这样浏览者才会经常浏览我们所发布的新闻。 系统功能 1. 可以进行文本操作; 2. 添加一个数据库项目; 3. 删除一个数据库项目; 4. 修改一个数据库项目; 5. 浏览各类新闻; 6. 对新闻进行菜单分类 7. 显示每条新闻的相关新闻 -Targeted Design Using ASP to complete the overall design and the various refinement module online news publishing system developed specific programming news publishing site system must have press releases, news modify the system, all kinds of news show and related content browsing. Press Releases and News modification Before news browsing, to publish news. In the release, the point of errors and omissions are inevitable, then you need to press to be modified. Because the news is directly related to the majority of viewers were met, it must be done on the possible release of the news is correct, accurate, so the viewer will often visit our press releases. System Functions 1. The text operations can be carried out 2. Add a project 3. To delete a project 4. Modify a project 5. Browse all kinds of news 6. Press carried menu categories 7. Display each news related news
Platform: | Size: 74752 | Author: 许家硕 | Hits:

[OS programVerCreateUseForBuild

Description: 版本修改工具。能修改指定VC工程的版本号,用于使用代码自动编译系统,编译前的版本生成工作,需要结合SVN.用到了SEHLL命令报文截取技术,文本替换技术。-Modified version of the tool. Can modify the version number of the specified VC project for automated build system using the code, compile version before generating work, requires a combination of SVN. Uses SEHLL command packet interception technology, text replacement technology.
Platform: | Size: 11264 | Author: 牛友胜 | Hits:

[WEB CodeiTunestore_v1.0

Description: 之前在国外卖几十美金一份,现在开放给大家。 本程序查询的是APP STORE中国区的应用,建议做个英文站,便于推广。 优点: 1、开源内核开发而成,支持伪静态,无数据库,所有应用的文本信息都缓存到本地,加快访问速度,避免频繁的请求APP STORE 的接口。 2、响应式布局,可以在手机端正常访问。 安装说明: 1、include/config.php 第二行,替换为你的网址 2、修改htaccess中的伪静态信息 3、使用美国 app store 修改方法:index.php里查询 cn 替换成us 即可。-Before a foreign sell tens of dollars, is now open to everyone. The program queries the application APP STORE China area, it is recommended to be the English station, easy to promote. Benefits: 1, open-source kernel was developed to support the pseudo-static, no , text messages all applications are cached locally, speeding up access speed, avoiding frequent requests APP STORE interface. 2, responsive layout, you can normally access the phone side. Installation instructions: 1, include/config.php second line, replacing your site 2, modify htaccess pseudo static information 3, using the US app store         Modification method: index.php in query cn us to replace.
Platform: | Size: 226304 | Author: xxpudn38 | Hits:

[WEB Codeguahao_v3.0

Description: 安装说明:导入sql.gz到数据库,修改config.php中相应的设置即可。 使用说明:前台 index.php 后台 admin.php 账号 admin 密码 111 特别提醒:本系统采用UTF-8编码,请勿使用Windows记事本直接编辑以免造成错误或乱码。 短信需要购买才可使用。-Installation instructions: import sql.gz to the , modify the settings in the corresponding config.php. Use: front index.php Background admin.php account password admin 111 Special remind: the UTF-8 encoding the system, do not use the Windows Notepad to edit directly to avoid errors or garbled. Text messages need to be purchased before they can be used.
Platform: | Size: 936960 | Author: 王维 | Hits:

[Web ServerddDiann

Description: 增加是否允许用户注册选项,重些登陆验证代码,取消SessionTimeout设置,改成前后台登陆验证设置,重写短消息单元,所有短信功能在个页面完成,更改相关短信连接和图片设置,美化相关小图片,修正若干个小问题,全新界面正装上市 丰富用户字段,重命名相关文件,以方便使用管理,适合开发规范,重写修改密码,修改资料,店铺标志上传,店铺公告,店铺连接代码,店铺资料修改,商品发布、修改、删除功能,二手发布,管理,修改功能代码,兼职发布,管理,修改功能代码,进一步美化界面-Whether the increase option allows users to register, heavier landing verification code cancel SessionTimeout settings changed before and after the station login authentication settings, rewrite short message unit, all SMS in a complete page, change the settings related to text messages and pictures connected to beautify related small picture, a number of small problems corrected, the new interface is loaded listed Rich user field, rename the relevant documents to facilitate the use and management, for the development of specifications, rewriting change passwords, modify data, store logo upload, store showroom, shop connection code, store the information changes, product releases, modify, delete function, used publish, manage, modify the function code, part-time publish, manage, modify the function code, and further beautify the interface
Platform: | Size: 2309120 | Author: 褚凯莉 | Hits:

[CSharpcommunication-system

Description: 1、开发环境:vs2010 sqlserver2008 2、使用说明:(1)使用前请先启动服务器,客户端连接服务器,默认服务器地址为本机,若要实现两台电脑之间通讯,修改IP地址即可 (2)消息发送区,可以实现服务器和客户端的对话,并可以查看聊天记录 (3)文件发送区,选择本地文件相互发送,目前只能发送文本格式,接收文件默认在D盘根目录下,默认文件名为b.txt 3、注意事项:(1)若第一次打开关闭后,第二次打开不能成功,请查看端口是否被占用-1, the development environment: vs2010 sqlserver2008 2, the use of instructions: (1) before you start the server, the client to connect the server, the default server address for the machine, to achieve communication between the two computers, modify the IP address (2) send the message area, you can achieve the server and client dialogue, and can view the chat history (3) send the file area, the local file to send each other, can only send text format, the default file in the D root directory, the default file name b.txt 3, Note: (1) If the first open and close, the second open can not be successful, please check whether the port is occupied
Platform: | Size: 525312 | Author: 宋丹丹 | Hits:

[AI-NN-PRutf8''Traffic-sign-recognition

Description: 项目基于Tensorflow进行实现。 #### 文件说明: --- * input_data.py: 图片的输入 * traffic_sign_cnn.py: 用cnn进行训练分类 * testDemo.py: 用于测试已经训练出来的模型,输入单个图片输出结果,并分类到文件夹 #### 数据集说明: --- * 这里是列表文本使用的是比利时的交通标志数据集,可以网上自己找,里面有62个分类。 #### 网络说明: --- * 这里是列表文本这里是列表文本CNN网络包含两个卷积层,两个全连接层。识别率大概在95% 左右,可以自己根据需要自己修改参数提高识别率 另外,训练开始前需要先在项目目录下新建文件夹./log/train/,用来保存模型参数,数据集的目录结构大概是./data/train/00001(标签)/图片(The project is based on Tensorflow. #### File Description: --- * input_data.py: input of the picture * traffic_sign_cnn.py: Training classification with cnn * testDemo.py: Used to test the trained model, enter the result of a single image output, and categorize it into a folder #### Data Set Description: --- * Here is a list of texts using the Belgian traffic sign data set, which can be found online, with 62 categories. #### Network Description: --- * Here is the list text Here is the list text The CNN network consists of two convolutional layers, two fully connected layers. The recognition rate is about 95%, you can modify the parameters by yourself to improve the recognition rate In addition, before the start of training, you need to create a new folder in the project directory. / Log / train /, used to save the model parameters, the directory structure of the data set is probably ./data/train/00001 (tag) / picture)
Platform: | Size: 430080 | Author: lionkiss | Hits:

CodeBus www.codebus.net