It is possible that there isn’t enough space available in the TEMP directory, even though there is enough free disk space where you want to save the file.
Yes. To create a WMF file from a single document page choose File=>More File Functions. From the list box that appears, choose the command Save active page as a Windows-Meta-File (.wmf).
Yes.
Choose File=>More File Functions the function EPS: Save document pages as EPS files. Before you use this function please read the help: File=>More File Functions=>Save document pages as EPS files.
To calculate a matrix on a rectangular grid of scatted data, three gridding methods are used:
Pro and Cons of the three methods:
The following figure the two diagrams at the top display linear interpolated maps, the diagrams in the middle non linear interpolated maps and the diagrams at the bottom display Thin-Plate-Spline interpolated maps.
Not directly. You need to have a tool like the Distiller from Adobe (http://www.adobe.com) or the free Ghostscript (see http://www.cs.wi.edu/~ghost/index.html).
You need to edit the Windows-Registry:
Type the following command into UniPlot’s command window:
WriteProfileInt("Settings", "StartUp", 0);
The next time you start UniPlot the box will not appear. To switch it on again, type in the following command:
WriteProfileInt("Settings", "StartUp", 1);
In a style file, attributes such as line style, color, width, marker type etc., will be saved to plot datasets. 1D and 2D datasets have approx. 50 attributes to choose from and 3D datasets have approx. 100 attributes. The attributes are saved in a style file under a name such as 2D-Red for example. A style file can contain as many 1D, 2D, 3D styles as you wish. In UniPlot, only one style file can be loaded at a time. The styles of the currently loaded file will be shown in the Toolbar Dataset Style box.
All style file editing functions are gathered in the Dataset Style dialog box. This dialog box can be opened by the command Tools=>Dataset Style Configuration. New style files can be created in this dialog box or available files opened.
For 3D datasets a style contains isoline values and fill colors as well as the standard plot attributes. Example: The isoline values 200, 210, 220, 300, 320, 340, 400, 500, 1000 for a fuel consumption map can be defined. The style can be used for script automation or for the manual data import.
The standard import filter expects that all columns are of equal length. If your sheet has rows with missing values or columns with different numbers of rows you can import the data with the UTX-filter. To do so you need to add some elements to your sheet. Look at the following example:
N Mom BE TOel
1/min Nm g/kWh C
1000 100 400 80
1500 200 250 90
2000 330 100
2500 95
To enable UniPlot to import the data with the help of the UTX-Import filter add the following 4 lines to the sheet so it looks like this:
UXX-BEGIN
Kanalname=$1
Einheit=$2
UXX-END
N Mom BE TOel
1/min Nm g/kWh C
1000 100 400 80
1500 200 350 90
2000 330 100
2500 95
Save your changes.
To import the Excel file:
The UTX-Format supports other features. To find out more about the UTX-Format see UTX Data File Format in the online help system.
If the intake and exhaust valve curves have equal CA range (e.g. 0 degrees to 360 degrees) you can hatch fill the overlapping part as follows:
You can also calculate the area of the overlapping part. Choose Data=>More Data Functions (2D) and from the list the function Data=>Compute area.
The Unix date can be converted to Excel date using the following formula:
time = unixtime/86400 + 25569
The following listing contains a formula. Save the file in the formula directory, see Tools=>Formula Configuration. Open the file and set the channel names (Name with Unix date and name for Excel date). Press F4 and then choose Tools=>Update Formulalist.
// Unixtime -> Exceltime
//
def _fi_time(bInfo)
{
ssUnixTime = "time_unix"; // <- Unix time channel name
ssExcelTime = "time"; // <- Excel time channel name.
if (bInfo) {
return [ssExcelTime; ..
""; ..
""; ..
ssUnixTime; ..
""; ..
"%.1lf"];
}
ncid = get_ncid();
if (ncid != -1) {
varid = nc_varid(ncid, ssExcelTime);
if (varid != -1) {
if (nc_attinq_datatype(ncid, varid, "datatype") == -1) {
nc_redef(ncid);
nc_attput(ncid, varid, "datatype", NC_CHAR, "datetime");
nc_endef(ncid);
}
}
}
_fich_unixtime = ch(ssUnixTime);
_fich_time = _fich_unixtime ./ 86400 + 25569;
set_ch(ssExcelTime, _fich_time, ssUnixTime);
}
id-1662212