Include Package parasitics in IBIS File Spartan6, TQG144

Hi,
want to generate an IBIS-File from my project within ISE 14.7, and it works, bot there is the following message inside the file:
[Package]
|WARNING:PostProcessors - IBIS [Package] Section data is not currently
|available for tqg144. Please use XilinxUpdate utility to check
|availability of updated models. Using default package data:
|DEFAULT
|variable        typ               min                  max
R_pkg           300.00m           300.00m              300.00m
L_pkg           4.00nH            4.00nH               4.00nH
C_pkg           2.00pF            2.00pF               2.00pF
|
The official downloaded IBIS-File uses the correct parasitics:
|TQG144
|variable typ min max
R_pkg 130.00m 123.00m 137.00m
L_pkg 8.30nH 7.50nH 9.20nH
C_pkg 1.00pF 0.80pF 1.30pF
Now i am trying to implement the official values into ISE, but i couldn't find any option inside the GUI, so i tried the command line tools (http://www.xilinx.com/support/documentation/sw_manuals/xilinx14_1/devref.pdf), where i found the IBISWriter.
But none of the specified options seem to help me... I found another help file under [Installation path]\14.7\ISE_DS\PlanAhead\doc\eng\man\write_ibis , which is openable with a normal text editor. It specifies two options, which sound very good for me:
-ibs <arg> - Specify an updated generic IBIS models file. This is used to
override the IBIS models found in the tool installation under the parts
directory. This argument is required for any parts that do not have generic
models in the installation directory.
-pkg <arg> - Specify an updated per pin parasitic package data file. This
is used to override the parasitic package file found in the the tool
installation hierarchy under the parts directory. This argument is required
for any parts that do not have generic models in the installation
directory.
But if i try the following command:
C:\Xilinx\14.7\ISE_DS>ibiswriter -ibs C:\Users\Administrator\Downloads\spartan6_ibis\spartan6.ibs C:\Xilinx\14.7\ISE_DS\PlanAhead\data\parts\xilinx\spartan6\spartan6.ibs
i get:
ERROR:Portability:90 - Command line error: Switch "-ibs" is not allowed.
I don't want to copy the files manually, because i just don't know what i have to edit, too.
And i don't want to edit the IBIS-file manually each time i change a signal.
Is anyone able to help me?

Hi,
Proably you can create the IBIS file using the ISE 14.7. Then change the specific values for the  tqg14 package manually in the .ibs file. It should be the same thing as doing it with the tool.
However I would cross check if there are any other difference apart from the tqg14 information.

Similar Messages

  • 100 packages for 100 seperate files in SSIS 2012---------

    Hi,
    I am new to this Microsoft Forum.
    I have worked for last 3 years in MSBI(mainly SSIS and SSAS). Recently I have joined a new company and been assigned to new project. Here we have to first build Operational Data Stores from 50 source files (which is built-100 tables). then from this we need
    to pull data in Data Warehousing and later Cube.
    My question is: My architect telling me to create 100 separate packages for each source file from source to staging (one to one source to staging mapping) and connect it through master package. then when we pull data from staging to Dev. there would
    be 30 destination tables so 30 packages!!
    I have not designed any ETL in this way.
    the files can be segregated as per daily, monthly, weekly and quarterly, so I would have created daily, monthly and so on package. In each package I would have included source to staging and staging to development phase.
    His points are, testing team  can work separately on each package, multiple developers can work on separate files at the same time. can anyone tell me how feasible the design is.....advantage/disadvantage... But Would  it be good to handle
    100 odd packages for one database where I can achieve this by creating 6 packages.
    thanks, Rims

    Hi Rims,
    Personally, I agree with your architect's opinion from the perspective of "multi-developer" as well as "unit test your SSIS packages".
    If your main concern of creating dedicated SSIS packages is time consuming, I would recommend you to have a look at BIML / Mist. You can quickly get the idea from this YouTube video: https://www.youtube.com/watch?v=RKi2zIoFUAg
    Basically, BIML / Mist can help you to build a SSIS code generator to loop through your database objects and generate SSIS packages on the fly. If you take this approach, it would be faster to create 100 SSIS packages than 6 customized SSIS packages.
    Regards,
    George Qiao

  • Package comments and excluded files

    I have an ant target to generate javadoc for a whole package structure minus one sub-package and one class, plus a few classes from another package:
      <target name="doc">
        <mkdir dir="${build}/docs/api"/>
        <javadoc destdir="${build}/docs/api/"
          use="true"
          windowtitle="Public API">
          <classpath>
            <path refid="3rdparty.jar.path"/>
          </classpath>
          <fileset dir="${build}">
            <include name="com/company/pkg1/**"/>
            <exclude name="com/company/pkg1/util/**"/>
            <exclude name="com/company/pkg1/server/ServiceMBean.java"/>
            <include name="com/company/pkg2/CustomerReport.java"/>
            <include name="com/company/pkg2/DeprecatedReport.java"/>
            <include name="com/company/pkg2/Report.java"/>
            <include name="com/company/pkg2/TagReport.java"/>
          </fileset>
        </javadoc>
      </target>This worked fine until I started including package.html files for package documentation. Running this with package.html in com/company/pkg1 gives the following error:
    javadoc: Illegal package name: "C:\abc\def\com\company\pkg1\package.html"
    After playing around, I found that if I shift the 3 <include> and <exclude> lines referring to pkg1 out of the <fileset> tag and into a <packageset> tag, then the package comments work. However, then the exclude for the individual java class (ServiceMBean.java) does not work. Likewise, shifting the file exclude back to the fileset tag still does not exclude it.
    It seems that I must decide whether to have package comments or the ability to exclude individual files, but not both. Is there any way around this?

    Well, it is a known issue. And actually, issue is with DBMS_METADATA, not with DATAPUMP, which simply uses DBMS_METADATA:
    SQL> create or replace package
      2  --comment
      3  MyPkg
      4  is
      5  a number;
      6  end;
      7  /
    Package created.
    SQL> select text from user_source where name = 'MYPKG' order by line;
    TEXT
    package
    --comment
    MyPkg
    is
    a number;
    end;
    6 rows selected.
    SQL> select dbms_metadata.get_ddl('PACKAGE','MYPKG') from dual;
    DBMS_METADATA.GET_DDL('PACKAGE','MYPKG')
      CREATE OR REPLACE PACKAGE "SCOTT"."MYPKG"
    is
    a number;
    end;
    SQL> You should put comments after package name:
    SQL> create or replace package
      2  MyPkg
      3  --comment
      4  is
      5  a number;
      6  end;
      7  /
    Package created.
    SQL> select dbms_metadata.get_ddl('PACKAGE','MYPKG') from dual;
    DBMS_METADATA.GET_DDL('PACKAGE','MYPKG')
      CREATE OR REPLACE PACKAGE "SCOTT"."MYPKG"
    --comment
    is
    a number;
    end;
    SQL> SY.

  • While Installing adobe reader and acrobat im getting error 1406 this error. I had already tried every possible step including special permission in registry file. Please help..

    While Installing adobe reader and acrobat im getting error 1406 this error. I had already tried every possible step including special permission in registry file. Please help..

    What is your operating system?  Is there anything else beside the number 1406?

  • Including scaling information in binary file, which can be plotted in graph

    I need to plot a graph from a from a bin file, I am able to plot the graph using read binary file vi but the scaling is nowhere close to what it needs to be.
    Its in auto scaling mode, if I set the values manually by giving maximum and minimum values the graph disappears,
    I believe it has something to do with some missing header file not included in the binary file as of now.
    Can anyone help , I need to know , how to add header in the binary file so that I include the information of scales or units of measurements of the data which has to be plotted.

    Hi Shrikant,
    you include "header information" the same way as you include "data" in your binary file: You simply write that information to the file...
    When trying to plot "the file" you read both parts (header and data), one after the other!
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • [svn] 670: -major update to the mpl packaging target - this will now package up the correct files that are mpl

    Revision: 670
    Author: [email protected]
    Date: 2008-02-26 18:14:40 -0800 (Tue, 26 Feb 2008)
    Log Message:
    -major update to the mpl packaging target - this will now package up the correct files that are mpl
    -this target is not called within this build script. to build this pkg use: ant mpl-package
    Modified Paths:
    flex/sdk/branches/3.0.x/build.xml

    One small thing - I believe the reason why some of my drivers were messing up was because they were SP2 specific; the older drivers and the ones that were compatible with both SP and 2 were fine.
    As soon as I did the reinstall, all of the drivers/programs that were not working, worked (aside from the ones that I mentioned in my attached email above).
    So, if after uninstalling the old SP2 you are told that loads of drivers/programs will not work, fear not - most should fix themselves upon installing the new SP2.
    G

  • Append line into all.js file to include in the Mozilla config file

    I need to make settings globally to Firefox 23. To lock the settings the instructions state to:
    Append line into all.js file to include in the Mozilla config file
    The problem is, I cannot locate the all.js in the firefox directory. Also the changes do not appear to act globally on a public machine. The changes stay in my profile. Any assistance will be greatly appreciated.

    hello, please implement the preferences lock file as it's described at http://kb.mozillazine.org/Locking_preferences

  • [solved] remove packages from a txt file list

    as the subject header says, I want to run "pacman -R" and have it read a list of packages from a text file.
    Is this possible????
    text file is formatted as such....
    file1
    file2
    file3
    Last edited by orphius (2013-07-09 08:11:53)

    Please remember to mark your thread as [Solved] by editing your first post and prepending it to the title.

  • To Generate Oracle Package from OWB *.mdl file

    Hi,
    I want to generate an Oracle Package from OWB *.mdl file. I know this can be done using the OWB GUI. But is there a way to automate this using a script for a given set of mappings?
    Such a thing is required because I have a large number of mappings and i need to create the Oracle package scripts for the same.

    Hi borkur,
    As you told I tried the same in OMBPlus. I created a file called "comp_src.txt" with the following code:
    proc compile_mappings {} {
    OMBCONNECT owbrepos/owbrepos@blrkec20974d:1521:FDMD1B
    OMBCC 'FDM/BOE'
    OMBCOMPILE MAPPING 'BOE_EXPN_POPULATE_IU_1' OUTPUT VALIDATION_RESULT TO '/nav' WRITE
    SUCCESS
    OUTPUT GENERATION_SCRIPTS TO '/nav'.
    OMBCOMPILE TABLE 'T1' OUTPUT GENERATION_SCRIPTS TO '/nav'
    But i am getting an error message as below:
    OMB+> source C:/oracle/ora93/owb/bin/win32/comp_src.txt
    OMB+> compile_mappings
    Cannot establish connection in single-user mode!
    OMB+>
    I am new to OMBPlus and i came to know that Multi-user mode is default. Then why i am getting this error (Cannot establish connection in single-user mode!)
    Regards,
    Naveen

  • Export or package a DPS folio file to a html format

    Can you export or package a DPS folio file to a html format, packed with all of the images? Thank you for letting me know

    Thank you for letting me know Neil. Is it possible to export the DPS Folio File to any other format than .folio, which could be accessible for someone who doesn't have InDesign or an Adobe account?
    Thank you for your help!
    Fanny

  • Including packages in package hierarchy

    Hi,
    What is the purpose of including packages in package hierarchy?
    How can I define use access for them? what is the use?
    Please help me out in this.
    Thanks and regards,
    Lakshmi Reghuvaran

    Hello Lakshmi
    The <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/fd/f39de8ae6f11d596c000a0c94260a5/content.htm">SAP Online Help</a> says the following to this topic:
    <b>Goals of the Package Concept</b>
    When SAP created the package architecture in R/3 Enterprise, its goals were:
    To improve the structure of the software
    To encapsulate software functions more strictly
    To make well-defined interfaces available to all applications
    To clarify responsibilities
    The very same goals can be applied to your own packages, either if you are a professional software supplier for SAP or a customer.
    Regards
      Uwe

  • Is this possible to package flash 8 swf file with AIR

    Hi All,
    Is this possible to package flash 8 swf file with AIR
    packager or load flash 8 swf file in AIR?
    Any info on AIR would be greatful.
    Thanks,
    Shailesh

    Yes.
    -ted

  • Packaging an In Design file

    I am trying to package an In Design file but keep getting the message 'Cannot copy necessary linked file(s).  Any suggestions for a fix or an easy way around this please?

    Ask in the ID forum and by all means provide info about your computer, your document, your linked/ placed files and so on. Nobody can even begin to guess based on such non-information.
    Mylenium

  • How do i "show package contents" on .webtemplate files that have arrow

    Hi,
    Quick question:
    How do i "show package contents" on .webtemplate files that have a small arrow attached on the file icon. Its a template a downloaded from 11mystics.com (free). When i right click the icon there is no "show package contents" available on the drop down menu....
    Thanx!

    When you bring up the contextual menu for the icon, choose "Show Original". This will take you to where the original file is and you should be able to "Show Package Contents" on it.

  • Need help: how to make a package into a jar file?

    I tried to make a package into a jar file by using:
    jar cf a.jar packagedirectory
    But when I import one class of this package in an other application, by using:
    javac -cp path\a.jar; app.java
    the compliler can not find the calss.
    The interesting thing is if I do not put the package into the jar file, it works well.
    Here is my sample code under path D:\b\b1
    package b1;
    public class Son
         int x = 10;
         public Son(){
         public int getX(){
              return x;
    and the application code under path d:\b
    import b1.Son;
    public class Father
         public Father(){
         public static void main(String[] args)
              Son son = new Son();
              System.out.println("Hello World!"+son.getX());
    Thanks for any advise.
    Xin Cheng

    You must make sure that you are in the right directory
    when you do your jar command to create the archive.
    [home/trejkaz/proj/test/classes]% jar -cf a.jar
    path/to/package/*.class
    Thank you very much.
    Yes, I did as what you said, but it does not work.
    Here is what I did:
    1. Edit Father.java in D:\b
    2. Edit Son.java in D:\b\b1
    3. Compile Son.java
    4. Complie Father.java
    5. Make the a.jar by
    command jar cf a.jar D:\b\b1\ (I cheked the content of the a.jar, it seems right.)
    a.jar is in directory D:\b
    6. Delete Son.class in D:\b\b1
    7. Run Father.class by
    command: java -classpath D:\b\a.jar; Father
    error message is: Exception in thread "main" java.lang.NoClassDefFoundError: b1/Son
    at Father.main(Father.java:11)
    What is the problem?
    Thanks again.

Maybe you are looking for