/** * total functions and definitions * * @package total */ if ( ! function_exists( 'total_setup' ) ) : /** * Sets up theme defaults and registers support for various WordPress features. * * Note that this function is hooked into the after_setup_theme hook, which * runs before the init hook. The init hook is too late for some features, such * as indicating support for post thumbnails. */ function total_setup() { /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. * If you're building a theme based on total, use a find and replace * to change 'total' to the name of your theme in all the template files */ load_theme_textdomain( 'total', get_template_directory() . '/languages' ); // Add default posts and comments RSS feed links to head. add_theme_support( 'automatic-feed-links' ); /* * Let WordPress manage the document title. * By adding theme support, we declare that this theme does not use a * hard-coded tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /* * Enable support for Post Thumbnails on posts and pages. * * @link http://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails */ add_theme_support( 'post-thumbnails' ); add_image_size( 'total-portfolio-thumb', 400, 400, true ); add_image_size( 'total-team-thumb', 350, 420, true ); add_image_size( 'total-blog-thumb', 400, 280, true ); add_image_size( 'total-thumb', 100, 100, true ); add_image_size( 'total-blog-header', 720, 360, true ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary Menu', 'total' ), ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'total_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); add_theme_support( 'custom-logo', array( 'height' => 62, 'width' => 300, 'flex-height' => true, 'flex-width' => true, 'header-text' => array( '.ht-site-title', '.ht-site-description' ), ) ); add_theme_support( 'woocommerce' ); add_theme_support( 'wc-product-gallery-zoom' ); add_theme_support( 'wc-product-gallery-lightbox' ); add_theme_support( 'wc-product-gallery-slider' ); /* * This theme styles the visual editor to resemble the theme style, * specifically font, colors, icons, and column width. */ add_editor_style( array( 'css/editor-style.css', total_fonts_url() ) ); } endif; // total_setup add_action( 'after_setup_theme', 'total_setup' ); /** * Set the content width in pixels, based on the theme's design and stylesheet. * * Priority 0 to make it available to lower priority callbacks. * * @global int $content_width */ function total_content_width() { $GLOBALS['content_width'] = apply_filters( 'total_content_width', 640 ); } add_action( 'after_setup_theme', 'total_content_width', 0 ); /** * Enables the Excerpt meta box in Page edit screen. */ function total_add_excerpt_support_for_pages() { add_post_type_support( 'page', 'excerpt' ); } add_action( 'init', 'total_add_excerpt_support_for_pages' ); /** * Register widget area. * * @link http://codex.wordpress.org/Function_Reference/register_sidebar */ function total_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Right Sidebar', 'total' ), 'id' => 'total-right-sidebar', 'description' => __( 'Add widgets here to appear in your sidebar.', 'total' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); register_sidebar( array( 'name' => esc_html__( 'Left Sidebar', 'total' ), 'id' => 'total-left-sidebar', 'description' => __( 'Add widgets here to appear in your sidebar.', 'total' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); register_sidebar( array( 'name' => esc_html__( 'Shop Sidebar', 'total' ), 'id' => 'total-shop-sidebar', 'description' => __( 'Add widgets here to appear in your sidebar of shop page.', 'total' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer One', 'total' ), 'id' => 'total-footer1', 'description' => __( 'Add widgets here to appear in your Footer.', 'total' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Two', 'total' ), 'id' => 'total-footer2', 'description' => __( 'Add widgets here to appear in your Footer.', 'total' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Three', 'total' ), 'id' => 'total-footer3', 'description' => __( 'Add widgets here to appear in your Footer.', 'total' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Four', 'total' ), 'id' => 'total-footer4', 'description' => __( 'Add widgets here to appear in your Footer.', 'total' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); } add_action( 'widgets_init', 'total_widgets_init' ); if ( ! function_exists( 'total_fonts_url' ) ) : /** * Register Google fonts for Total. * * @since Total 1.0 * * @return string Google fonts URL for the theme. */ function total_fonts_url() { $fonts_url = ''; $fonts = array(); $subsets = 'latin,latin-ext'; /* * Translators: If there are characters in your language that are not supported * by Open Sans, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Pontano Sans font: on or off', 'total' ) ) { $fonts[] = 'Pontano Sans'; } /* * Translators: If there are characters in your language that are not supported * by Inconsolata, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Oswald font: on or off', 'total' ) ) { $fonts[] = 'Oswald:400,700,300'; } /* * Translators: To add an additional character subset specific to your language, * translate this to 'greek', 'cyrillic', 'devanagari' or 'vietnamese'. Do not translate into your own language. */ $subset = _x( 'no-subset', 'Add new subset (greek, cyrillic, devanagari, vietnamese)', 'total' ); if ( 'cyrillic' == $subset ) { $subsets .= ',cyrillic,cyrillic-ext'; } elseif ( 'greek' == $subset ) { $subsets .= ',greek,greek-ext'; } elseif ( 'devanagari' == $subset ) { $subsets .= ',devanagari'; } elseif ( 'vietnamese' == $subset ) { $subsets .= ',vietnamese'; } if ( $fonts ) { $fonts_url = add_query_arg( array( 'family' => urlencode(implode( '|', $fonts )) , 'subset' => urlencode($subsets) , ), '//fonts.googleapis.com/css' ); } return esc_url_raw($fonts_url); } endif; /** * Enqueue scripts and styles. */ function total_scripts() { wp_enqueue_script( 'jquery-nav', get_template_directory_uri() . '/js/jquery.nav.js', array('jquery'), '1.00', true ); wp_enqueue_script( 'owl-carousel', get_template_directory_uri() . '/js/owl.carousel.js', array('jquery'), '1.00', true ); wp_enqueue_script( 'isotope-pkgd', get_template_directory_uri() . '/js/isotope.pkgd.js', array('jquery', 'imagesloaded' ), '1.00', true ); wp_enqueue_script( 'nivo-lightbox', get_template_directory_uri() . '/js/nivo-lightbox.js', array('jquery'), '1.00', true ); wp_enqueue_script( 'superfish', get_template_directory_uri() . '/js/superfish.js', array('jquery'), '1.00', true ); wp_enqueue_script( 'jquery-stellar', get_template_directory_uri() . '/js/jquery.stellar.js', array('imagesloaded'), '1.00', false ); wp_enqueue_script( 'wow', get_template_directory_uri() . '/js/wow.js', array('jquery'), '1.00', true ); wp_enqueue_script( 'odometer', get_template_directory_uri() . '/js/odometer.js', array('jquery'), '1.00', true ); wp_enqueue_script( 'waypoint', get_template_directory_uri() . '/js/waypoint.js', array('jquery'), '1.00', true ); wp_enqueue_script( 'total-custom', get_template_directory_uri() . '/js/total-custom.js', array('jquery'), '1.01', true ); wp_localize_script( 'total-custom', 'total_localize', array('template_path' => get_template_directory_uri() )); wp_enqueue_style( 'total-style', get_stylesheet_uri(), array( 'animate', 'font-awesome', 'owl-carousel', 'nivo-lightbox'), '1.0' ); wp_enqueue_style( 'total-fonts', total_fonts_url(), array(), null ); wp_enqueue_style( 'animate', get_template_directory_uri() . '/css/animate.css', array(), '1.0' ); wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/css/font-awesome.css', array(), '4.4.0' ); wp_enqueue_style( 'owl-carousel', get_template_directory_uri() . '/css/owl.carousel.css', array(), '1.3.3' ); wp_enqueue_style( 'nivo-lightbox', get_template_directory_uri() . '/css/nivo-lightbox.css', array(), '1.3.3' ); wp_add_inline_style( 'total-style', total_dymanic_styles() ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'total_scripts' ); /** * Enqueue admin style */ function total_admin_scripts() { wp_enqueue_style( 'total-admin-style', get_template_directory_uri() . '/inc/css/admin-style.css', array(), '1.0' ); wp_enqueue_media(); wp_enqueue_script( 'total-admin-scripts', get_template_directory_uri() . '/inc/js/admin-scripts.js', array('jquery'), '1.00', true ); } add_action( 'admin_enqueue_scripts', 'total_admin_scripts' ); /** * Breadcrumb */ require get_template_directory() . '/inc/breadcrumbs.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/inc/template-tags.php'; /** * Custom functions that act independently of the theme templates. */ require get_template_directory() . '/inc/total-functions.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer.php'; /** * Metabox additions. */ require get_template_directory() . '/inc/total-metabox.php'; /** * FontAwesome Array */ require get_template_directory() . '/inc/font-awesome-list.php'; /** * Welcome Page. */ require get_template_directory() . '/welcome/welcome.php'; /** * Demo Import. */ require get_template_directory() . '/welcome/importer.php'; /** * Dynamic Styles additions. */ require get_template_directory() . '/inc/style.php'; /** * Widgets additions. */ require get_template_directory() . '/inc/widgets/widget-fields.php'; require get_template_directory() . '/inc/widgets/widget-contact-info.php'; require get_template_directory() . '/inc/widgets/widget-personal-info.php'; require get_template_directory() . '/inc/widgets/widget-latest-post.php'; <!DOCTYPE html> <html lang="en-US"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="http://gmpg.org/xfn/11"> <link rel="pingback" href="https://www.calorytech.com/xmlrpc.php"> <link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet"> <link rel='dns-prefetch' href='//s.w.org' /> <script type="text/javascript"> window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.0\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/www.calorytech.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.5.18"}}; !function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){var a=String.fromCharCode;p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,e),0,0);e=i.toDataURL();return p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,t),0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(!p||!p.fillText)return!1;switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])?!1:!s([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!s([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]);case"emoji":return!s([55357,56424,8205,55356,57212],[55357,56424,8203,55356,57212])}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(n=t.source||{}).concatemoji?c(n.concatemoji):n.wpemoji&&n.twemoji&&(c(n.twemoji),c(n.wpemoji)))}(window,document,window._wpemojiSettings); </script> <style type="text/css"> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 .07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='wp-block-library-css' href='https://www.calorytech.com/wp-includes/css/dist/block-library/style.min.css?ver=5.5.18' type='text/css' media='all' /> <link rel="https://api.w.org/" href="https://www.calorytech.com/wp-json/" /><link rel="alternate" type="application/json" href="https://www.calorytech.com/wp-json/wp/v2/pages/16" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.calorytech.com/xmlrpc.php?rsd" /> <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://www.calorytech.com/wp-includes/wlwmanifest.xml" /> <meta name="generator" content="WordPress 5.5.18" /> <link rel="canonical" href="https://www.calorytech.com/technology/" /> <link rel='shortlink' href='https://www.calorytech.com/?p=16' /> <link rel="alternate" type="application/json+oembed" href="https://www.calorytech.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.calorytech.com%2Ftechnology%2F" /> <link rel="alternate" type="text/xml+oembed" href="https://www.calorytech.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.calorytech.com%2Ftechnology%2F&format=xml" /> <link rel="icon" href="https://www.calorytech.com/wp-content/uploads/2020/01/2020-01-24.png" sizes="32x32" /> <link rel="icon" href="https://www.calorytech.com/wp-content/uploads/2020/01/2020-01-24.png" sizes="192x192" /> <link rel="apple-touch-icon" href="https://www.calorytech.com/wp-content/uploads/2020/01/2020-01-24.png" /> <meta name="msapplication-TileImage" content="https://www.calorytech.com/wp-content/uploads/2020/01/2020-01-24.png" /> <style type="text/css" id="wp-custom-css"> .ref_text p { font-size: 14px; } </style> </head> <body class="page-template-default page page-id-16 wp-custom-logo"> <div id="ht-page"> <header id="ht-masthead" class="ht-site-header"> <div class="ht-container ht-clearfix"> <div id="ht-site-branding"> <a href="https://www.calorytech.com/" class="custom-logo-link" rel="home"><img width="1230" height="337" src="https://www.calorytech.com/wp-content/uploads/2022/12/Logo.png" class="custom-logo" alt="CALORY TECH" srcset="https://www.calorytech.com/wp-content/uploads/2022/12/Logo.png 1230w, https://www.calorytech.com/wp-content/uploads/2022/12/Logo-300x82.png 300w, https://www.calorytech.com/wp-content/uploads/2022/12/Logo-1024x281.png 1024w, https://www.calorytech.com/wp-content/uploads/2022/12/Logo-768x210.png 768w" sizes="(max-width: 1230px) 100vw, 1230px" /></a> </div><!-- .site-branding --> <nav id="ht-site-navigation" class="ht-main-navigation"> <div class="toggle-bar"><span></span></div> <div class="ht-menu ht-clearfix"><ul id="menu-primary-menu" class="ht-clearfix"><li id="menu-item-26" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-26"><a href="https://www.calorytech.com/">Home</a></li> <li id="menu-item-23" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-23"><a href="https://www.calorytech.com/about-us/">About Us</a></li> <li id="menu-item-28" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-28"><a href="https://www.calorytech.com/products/">Products</a></li> <li id="menu-item-29" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-16 current_page_item menu-item-29"><a href="https://www.calorytech.com/technology/" aria-current="page">Technology</a></li> <li id="menu-item-332" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-332"><a href="https://www.calorytech.com/media/">Media</a></li> <li id="menu-item-25" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-25"><a href="https://www.calorytech.com/contact-us/">Contact Us</a></li> </ul></div> </nav><!-- #ht-site-navigation --> </div> </header><!-- #ht-masthead --> <div id="ht-content" class="ht-site-content ht-clearfix"> <header class="ht-main-header"> <div class="ht-container"> <h1 class="ht-main-title">Technology</h1> </div> </header><!-- .entry-header --> <div class="ht-container"> <div id="primary" class="content-area"> <main id="main" class="site-main"> <article id="post-16" class="post-16 page type-page status-publish hentry"> <div class="page-content"> <div style="display: none;"></div> <p>[vc_row bg_type=”image” parallax_style=”vcpb-default” bg_image_new=”id^109|url^http://www.calorytech.comwp-content/uploads/2020/01/2020-01-18.png|caption^null|alt^null|title^null|description^null” bg_image_repeat=”no-repeat” bg_img_attach=”fixed” bg_override=”ex-full” css=”.vc_custom_1579342043071{padding-top: 6em !important;padding-bottom: 6em !important;}”][vc_column css=”.vc_custom_1579342026812{margin-top: 2px !important;margin-bottom: 2px !important;padding-top: 0px !important;padding-bottom: 0px !important;}”][vc_custom_heading text=”Technology” font_container=”tag:h2|font_size:45|text_align:center|color:%23ffffff” use_theme_fonts=”yes” el_class=”banner-head” css=”.vc_custom_1579341975774{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}”][/vc_column][/vc_row][vc_row gap=”15″ bg_type=”bg_color” bg_override=”ex-full” css=”.vc_custom_1579354621620{padding-bottom: 5px !important;}”][vc_column width=”1/2″][vc_custom_heading text=”Battery Packs with PCC<sup>TM</sup> Thermal Management System” use_theme_fonts=”yes” el_class=”customhead-h1″][vc_separator color=”custom” align=”align_left” border_width=”3″ el_width=”10″ accent_color=”#00b0f0″][vc_single_image image=”116″ img_size=”full” css=”.vc_custom_1579351156353{margin-bottom: 15px !important;}”][vc_column_text el_class=”txt-h” css=”.vc_custom_1579524215652{margin-bottom: 2px !important;padding-top: 0.2em !important;}”]<span style="font-weight: 400;">CaloryTech Lithium-ion battery packs are designed using a patented passive thermal management system developed and commercialized in the USA for more than a decade in numerous applications such as electric bikes, material handling systems, solar charging systems, robotic systems, drones, stationary grid storage systems, electric delivery vehicles etc.<br /> </span><span style="font-weight: 400;"><br /> </span><span style="font-weight: 400;">Lithium-ion battery packs are integrated with a UL-94 (V-0 rating) certified Phase Change Composite (PCC</span><span style="font-weight: 400;"><sup>TM</sup></span><span style="font-weight: 400;">) material consisting of a high thermal conductivity graphite porous material microencapsulated with phase change material of suitable melting temperature.</span>[/vc_column_text][/vc_column][vc_column width=”1/2″][vc_custom_heading text=”How does PCC<sup>TM</sup> work?” use_theme_fonts=”yes” el_class=”customhead-h1″][vc_separator color=”custom” align=”align_left” border_width=”3″ el_width=”10″ accent_color=”#00b0f0″][vc_single_image image=”119″ img_size=”full” onclick=”link_image”][/vc_column][/vc_row][vc_row css=”.vc_custom_1579354605236{margin-top: 5px !important;}”][vc_column][vc_custom_heading text=”PCC<sup>TM</sup> (Phase Change Composite) Value Proposition” use_theme_fonts=”yes” el_class=”customhead-h1″][vc_separator color=”custom” align=”align_left” border_width=”3″ el_width=”10″ accent_color=”#00b0f0″][vc_tta_accordion style=”flat” shape=”square” color=”white” c_icon=”triangle” c_position=”right” active_section=”1″ collapsible_all=”true” el_class=”accord-color”][vc_tta_section title=”Value Proposition # 1 – Mitigates Battery Fires” tab_id=”1579351247495-fdc7c554-234e”][vc_row_inner][vc_column_inner width=”1/2″][vc_column_text el_class=”txt-h”]CaloryTech Lithium-ion batteries are inherently protected by a patented Phase Change Composite (PCC) material that has been proven to mitigate fire and thermal runaway propagation of entire battery packs in laboratory tests such as Nail Penetration Test.[/vc_column_text][/vc_column_inner][vc_column_inner width=”1/2″][vc_images_carousel images=”123,369,370″ img_size=”full” speed=”2000″ autoplay=”yes” wrap=”yes” el_class=”slid-tech”][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=”Value Proposition # 2 – Cooler Battery Packs in Summer” tab_id=”1579354004010-76bda989-f8c3″][vc_row_inner][vc_column_inner][vc_column_text el_class=”txt-h”]CaloryTech Lithium-ion batteries integrated with Phase Change Composite (PCC) material maintains the battery packs cooler in hot climate temperatures, thereby reducing battery degradation and extending battery life.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=”Value Proposition # 3 – Longer Cycle Life” tab_id=”1579354192125-fca367c9-a335″][vc_row_inner][vc_column_inner][vc_column_text el_class=”txt-h”]CaloryTech Lithium-ion batteries integrated with Phase Change Composite (PCC) material can extend battery cycle life owing to better temperature regulation inside battery packs.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=”Value Proposition # 4 – Increased Run Time” tab_id=”1579354322702-6de7a22c-6471″][vc_row_inner][vc_column_inner][vc_column_text el_class=”txt-h”]CaloryTech Lithium-ion batteries integrated with Phase Change Composite (PCC) material extends run time in high power applications where temperature rise needs to be reduced.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=”Value Proposition # 5 – Robust Battery Models” tab_id=”1579354463298-61cfbea3-6917″][vc_row_inner][vc_column_inner width=”1/2″][vc_column_text el_class=”txt-h”]CaloryTech’s  strategic industrial partner AllCell Technologies, USA has more than fifteen years of testing and validation data for various cell chemistries from different vendors which are very crucial for robust battery design</p> <p>Our team has developed robust Battery Life Cycle Modeling tools to assist in life cycle prediction of our battery packs in various operating conditions. Our team has in depth experience in battery thermal modeling for optimal design and development of batteries for various applications[/vc_column_text][/vc_column_inner][vc_column_inner width=”1/2″][vc_single_image image=”128″ img_size=”full”][vc_column_text el_class=”ref_text”]<strong>Ref:</strong> Semi-Empirical Modeling of Capacity Fade: A Practical Approach for Battery Pack Manufacturers <a href="https://iopscience.iop.org/journal/1938-5862" target="_blank" rel="noopener noreferrer">ECS Transactions,</a>  <a href="https://iopscience.iop.org/volume/1938-5862/73" target="_blank" rel="noopener noreferrer">Volume 73,</a> <a href="https://iopscience.iop.org/issue/1938-5862/73/1" target="_blank" rel="noopener noreferrer">Number 1</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][/vc_tta_accordion][/vc_column][/vc_row]</p> </div><!-- .entry-content --> </article><!-- #post-## --> </main><!-- #main --> </div><!-- #primary --> </div> </div><!-- #content --> <footer id="ht-colophon" class="ht-site-footer"> <div id="ht-bottom-footer"> <div class="ht-container"> <div class="ht-site-info"> <div class="foot-space"> <div class="ali-ma">E-mail Us : <a href="mailto:info@calorytech.com">info@calorytech.com</a></div> <span>Copyright© 2023Calorytech</span> <span>|</span><span><a href="https://aimconsultant.in/" target="_blank" rel="nofollow">Designed and Developed by AIM CONSULTANT</a></span>. </div><!-- #site-info --> </div> </div> </footer><!-- #colophon --> </div><!-- #page --> <div id="ht-back-top" class="ht-hide"><i class="fa fa-angle-up" aria-hidden="true"></i></div> <script type='text/javascript' src='https://www.calorytech.com/wp-includes/js/wp-embed.min.js?ver=5.5.18' id='wp-embed-js'></script> </body> <script>'undefined'=== typeof _trfq || (window._trfq = []);'undefined'=== typeof _trfd && (window._trfd=[]),_trfd.push({'tccl.baseHost':'secureserver.net'},{'ap':'cpsh-oh'},{'server':'sg2plzcpnl506136'},{'dcenter':'sg2'},{'cp_id':'5024282'},{'cp_cl':'8'}) // Monitoring performance to make your website faster. If you want to opt-out, please contact web hosting support.</script><script src='https://img1.wsimg.com/traffic-assets/js/tccl.min.js'></script></html>